Keyword Macro

Full text search for "REST"


Case-sensitive searching
Display context of search results
  • REST와 RESTful API의 차이 . . . . 53 matches
         #title RESTRESTful API의 차이
         #keywords RESTful API, REST
         한 줄 요약: REST는 이론적이고 이상적인 가이드라인을 가진 아키텍처 스타일이고, RESTful API는 REST에서 영감을 받아 REST의 아키텍처 스타일을 따르는 "실용적인 웹 API"이다.
         REST: Representational State Transfer의 약자로, 웹 기반 시스템에서 클라이언트와 서버 간의 통신 방식을 정의한 아키텍처 스타일이다. 자원(resource)을 URI로 식별하고 HTTP 메서드(GET, POST, PUT, DELETE 등)를 사용하여 자원에 대한 행위를 정의한다.
         RESTful API: REST 아키텍처 스타일을 따르는 API를 말한다. 즉, 자원을 URI로 식별하고 HTTP 메서드를 사용하여 자원에 대한 CRUD(Create, Read, Update, Delete) 작업을 수행하는 API를 의미한다.
         실용적이라는 말은 해석하기 나름이지만, 웹 API는 사용하기 쉬워야 한다는 데에는 다들 동의하는 편이다. 외부 개발자가 보았을 때 이해하기 쉬워야 하고, 일관되어야 하고, 예측 가능하고, REST의 많은 부분을 따라야 한다. REST의 일부 디자인 스타일을 구현하면 이런 종류의 사용 편의성이 생긴다. 사람들이 종종 오해하는 것과는 다르게, REST 제약은 원래 단기 생산성이나 개발자의 사용 편의성과는 정반대로 만들어졌다.
         > "REST는 수십 년 규모의 소프트웨어 설계입니다. 모든 세부사항은 소프트웨어의 수명을 연장하고 독립적으로 발전할 수 있게 하려는 것입니다. __제약의 상당수가 단기적인 효율 면에서는 부정적인 효과를 가져옵니다.__ (REST is software design on the scale of decades: every detail is intended to promote software longevity and independent evolution. Many of the constraints are directly opposed to short-term efficiency. Unfortunately, people are fairly good at short-term design, and usually awful at long-term design. Most don’t think they need to design past the current release.)" -- Wikipedia:Roy_Fielding
         그렇다면 실용적으로는 REST의 어느 부분을 적용하는 것이 가장 쉬울까? 명사를 이용해서 HTTP 동사가 동작을 취하는 자원(URI)을 일관되게 식별하는 것이 REST의 기본이다. REST에는 성능에 대한 특별한 요구사항은 없지만, 실용적으로는 캐시 자원을 참조하는 기능이 있으면 시스템의 수행과 확장을 돕는다. REST는 추상적인 모델로 여겨지기 때문에 시간에 따라 시스템이 변할 것이라는 사실을 직접적으로 고려하지 않지만, RESTful API는 실용적으로는 API를 변경할 때마다 가능한 이전 시스템과 호환성을 유지하는 방식으로 API 버전을 부여하면 상당한 유연성이 생긴다. 그리고 REST는 클라이언트와 서버를 확실히 분리한다는 설계 자체가 엄청난 이점이 있어 애플리케이션의 개발을 돕는 경향이 있기 때문에 웹 개발에서 영향력이 매우 커졌다. REST의 이런 면을 활용하면 결과적으로 쉽게 이해하고 확장할 수 있는, 공학적으로 우수한 애플리케이션을 만들 수 있다.
         RESTful API의 일부 특징은 REST와 상충한다. 가장 주목할 점은, 데이터 전송 방법으로 JSON을 채택한 것이다. JSON은 하이퍼텍스트 링크를 페이로드 할 수 없으므로(최소한 널리 수용된 링크 메커니즘이 없다.) REST의 HATEOAS(Hypermedia As The Engine Of Application State)를 실현할 수 없다. JSON을 사용하면 응답 유형 자체에 정의된 연결을 할 수 없다. 연결할 수 없는 매체를 사용하면, API는 자기 설명적이지 않게 되고 따라서 문서가 필요한 API가 된다. HATEOAS가 이론적으로는 설득력이 있어도, 지속적으로 구현하기에는 어려움이 있는 것이 사실이다. JSON이 웹 API를 위한 사실상 표준 데이터 전송 포맷으로 널리 채택되었기에 더욱 어렵다.
         REST 제약 중 하나가 일관된 인터페이스(Uniform Interface)라는 점을 상기해보자. 일관된 인터페이스는 거의 완전히 자기 설명적이다. 이상적으로는 이런 인터페이스로 된 시스템은 시스템의 진입점 이상의 가이드 문서가 필요하지 않다. RESTful API는 모든 자원에 대한 링크를 제공하고, 그 외의 설명을 추가하지 않는다. 현실적으로는, 웹 API의 문서가 잘되어 있으면 RESTful API가 훨씬 더 사용하기 쉽다.
         {{{#!chatgpt RESTful API의 일부 특징은 REST와 다른데, 다른 점들은 어떤 것들이 있습니까?
         RESTful API는 REST 아키텍처 스타일을 따르지만, REST와는 몇 가지 다른 특징이 있습니다. 다음은 RESTful API와 REST의 차이점입니다.
          1. Hypermedia 제어: RESTful API에서는 Hypermedia 제어(HATEOAS)를 사용하지 않아도 됩니다. 이는 REST에서 권장되는 방법입니다.
          2. Statelessness: RESTful API에서는 서버의 상태를 저장하고 있을 수 있습니다. 하지만 REST에서는 서버의 상태를 저장하지 않아야 합니다.
          3. URI 디자인: RESTful API에서는 URI 디자인에 대한 일관성이 덜 중요합니다. REST에서는 URI 디자인의 일관성이 매우 중요합니다.
          4. 메시지 형식: RESTful API에서는 JSON 형식을 많이 사용합니다. REST에서는 XML 형식을 많이 사용했지만, 요즘에는 JSON이 더 많이 사용됩니다.
          5. HTTP 메서드: RESTful API에서는 HTTP 메서드를 사용하지 않는 경우도 있습니다. 예를 들어, RPC(Remote Procedure Call)를 사용하여 API를 작성하는 경우에는 HTTP 메서드를 사용하지 않습니다. 반면, REST에서는 HTTP 메서드를 사용해야 합니다.
          6. URI 버전 관리: RESTful API에서는 URI 버전 관리를 하지 않아도 됩니다. REST에서는 URI 버전 관리를 해야 합니다.
         이러한 차이점들은 RESTful API가 REST와는 다른 특징을 가지고 있다는 것을 보여줍니다. 하지만, RESTful API는 여전히 REST 아키텍처 스타일을 따르기 때문에, REST와 매우 유사한 방식으로 동작합니다.
  • Blog/2022-06 . . . . 11 matches
         {{{#!blog hyacinth 2022-06-05T21:29:01 RESTRESTful API의 차이
         작년에 회사에 방문한 아마존의 솔루션 아키텍트로부터 로이 필딩이 만든 본래 의미의 REST에 대해 아주 자세히 설명을 들어서 세미나가 끝난 후 RESTRESTful API 차이를 정확히 알고 싶어서 질문을 했으나 구체적인 답을 듣지 못했다.
         어렴풋이 알고 있었으나 지금은 그 차이를 이제 안다. 위키 페이지를 만들었다. REST는 이론적이고 순수한 제약이 있는 이상적인 가이드라인이고 RESTful API는 REST에서 영감을 받아 REST의 특징을 적용한 실용적인 웹 API이다. ["RESTRESTful API의 차이"]
  • C++/모든 윈도우 메시지 종류 HEX DECIMAL 값 . . . . 4 matches
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>WM_MDIRESTORE</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>TB_SAVERESTOREA</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>TB_SAVERESTOREW</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>PSM_RESTARTWINDOWS</P></TD></TR>
  • NT status codes returned . . . . 4 matches
         <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 돋움; font-size: 12px; line-height: 18px; background-color: rgb(255, 255, 255); "><span class="Apple-style-span" style="widows: 2; text-transform: none; text-indent: 0px; border-collapse: separate; font: normal normal normal medium/24px Gulim; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(0, 0, 0); word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><span class="Apple-style-span" style="line-height: 18px; font-family: Gulim, Verdana, Tahoma; color: rgb(51, 51, 51); font-size: 12px; "><h4 id="subjcns!B21C645F6C9CFD52!195" class="beTitle" style="margin-top: 0px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 16px; line-height: 20px; color: rgb(51, 51, 51); ">NT status codes returned</h4><p class="beTitle" style="margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 20px; color: rgb(51, 51, 51); font-size: 16px; "> </p><span class="Apple-style-span" style="widows: 2; text-transform: none; text-indent: 0px; border-collapse: separate; font: normal normal normal medium/normal Gulim; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(0, 0, 0); word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; "><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; ">NT_SUCCESS(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is a success type (0 − 0x3FFFFFFF) or an informational type (0x40000000 − 0x7FFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="d0b6774c-6756-4be2-8399-01e662c7f7b6" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_INFORMATION(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is an informational type (0x40000000 − 0x7FFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="dae1c647-56d7-4462-83da-be8cfb1cb034" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_WARNING(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is a warning type (0x80000000 − 0xBFFFFFFF).</dd><dt style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; "><a target="_blank" class="con_link" id="2931dd35-15a3-4d50-966f-cf94f2899eb7" style="word-wrap: break-word; color: rgb(0, 51, 204); "></a>NT_ERROR(<em>Status</em>)</dt><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">Evaluates to TRUE if the return value specified by <em>Status</em> is an error type (0xC0000000 - 0xFFFFFFFF).</dd><dd style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "> </dd></span></span></span></span><p style="margin-top: 2px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 1.5; "> </p><p style="margin-top: 2px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; line-height: 1.5; "></p><table border="0" cellspacing="0" cellpadding="0" width="531" style="text-align: left; border-collapse: collapse; width: 398pt; "><colgroup><col width="95" style="width: 71pt; "><col width="436" style="width: 327pt; "></colgroup><tbody><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" width="95" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; width: 71pt; height: 16.5pt; border-top-color: windowtext; border-top-width: 0.5pt; border-top-style: solid; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000000</font></td><td class="xl67" width="436" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; width: 327pt; border-top-color: windowtext; border-top-width: 0.5pt; border-top-style: solid; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SUCCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000000</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_0</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_3</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAIT_63</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED_WAIT_0</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">000000BF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABANDONED_WAIT_63</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">000000C0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_APC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000100</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KERNEL_APC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000101</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALERTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000102</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000103</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000104</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPARSE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000105</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000106</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_ALL_ASSIGNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000107</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SOME_NOT_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000108</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPLOCK_BREAK_IN_PROGRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000109</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VOLUME_MOUNTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOTIFY_CLEANUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOTIFY_ENUM_DIR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_QUOTAS_FOR_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">0000010E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000110</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_TRANSITION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000111</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_DEMAND_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000112</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_COPY_ON_WRITE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000113</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_GUARD_PAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000114</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGE_FAULT_PAGING_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000115</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CACHE_PAGE_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000116</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CRASH_DUMP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000117</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_ALL_ZEROS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">00000118</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPARSE_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000000</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_WAS_SUSPENDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WORKING_SET_LIMIT_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_NOT_AT_BASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_STATE_CREATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SEGMENT_NOTIFICATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCAL_USER_SESSION_KEY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_CURRENT_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_MORE_WRITES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_RECOVERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_READ_RECOVERY_FROM_BACKUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_WRITE_RECOVERY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_COUNTER_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NULL_LM_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MACHINE_TYPE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_PARTIAL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_EXPEDITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECEIVE_PARTIAL_EXPEDITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENT_DONE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENT_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CHECKING_FILE_SYSTEM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FATAL_APP_EXIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PREDEFINED_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAS_UNLOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVICE_NOTIFICATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAS_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOG_HARD_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_WIN32</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_UNSIMULATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_CONTINUE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_SINGLE_STEP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">4000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_BREAKPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_CONTINUE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_LASTCHANCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_EXCEPTION_CHAIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_YIELD_PERFORMED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_RESUME_IGNORED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUARD_PAGE_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATATYPE_MISALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BREAKPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SINGLE_STEP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WAKE_SYSTEM_DEBUGGER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HANDLES_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_INHERITANCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUID_SUBSTITUTION_MADE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARTIAL_COPY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_PAPER_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_POWERED_OFF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_OFF_LINE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_EAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_EA_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_LIST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_EA_FLAG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VERIFY_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EXTRANEOUS_INFORMATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMIT_NECESSARY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILEMARK_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_CHANGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUS_RESET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_END_OF_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">8000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BEGINNING_OF_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SETMARK_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_DATA_DETECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_HAS_OPEN_HANDLES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_HAS_OPEN_HANDLES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">80000026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LONGJUMP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNSUCCESSFUL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_IMPLEMENTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_INFO_CLASS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INFO_LENGTH_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCESS_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IN_PAGE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_QUOTA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INITIAL_STACK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INITIAL_PC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_CID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_NOT_CANCELED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DEVICE_REQUEST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_END_OF_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEDIA_IN_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNRECOGNIZED_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONEXISTENT_SECTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MORE_PROCESSING_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEMORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONFLICTING_ADDRESSES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_MAPPED_VIEW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_FREE_VM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_DELETE_SECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SYSTEM_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_INSTRUCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOCK_SEQUENCE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VIEW_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000020</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_FILE_FOR_SECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALREADY_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCESS_DENIED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BUFFER_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_TYPE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONCONTINUABLE_EXCEPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DISPOSITION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000027</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNWIND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000028</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_STACK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000029</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_UNWIND_TARGET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARITY_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_DECOMMIT_VM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_COMMITTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PORT_ATTRIBUTES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000002F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_MESSAGE_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000030</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_MIX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000031</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_QUOTA_LOWER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000032</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000033</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000034</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000035</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_NAME_COLLISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000037</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000038</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_ALREADY_ATTACHED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000039</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECT_PATH_SYNTAX_BAD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_OVERRUN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_LATE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CRC_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000040</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_TOO_BIG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000041</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_CONNECTION_REFUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000042</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PORT_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000043</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARING_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000044</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000045</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PAGE_PROTECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000046</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MUTANT_NOT_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000047</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SEMAPHORE_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000048</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_ALREADY_SET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000049</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_NOT_IMAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SUSPEND_COUNT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_IS_TERMINATING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_WORKING_SET_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INCOMPATIBLE_FILE_MAP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_PROTECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000004F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EAS_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000050</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_TOO_LARGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000051</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONEXISTENT_EA_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000052</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_EAS_ON_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000053</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EA_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000054</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_LOCK_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000055</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCK_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000056</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DELETE_PENDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000057</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CTL_FILE_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000058</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNKNOWN_REVISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000059</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REVISION_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_OWNER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PRIMARY_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_IMPERSONATION_TOKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_DISABLE_MANDATORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LOGON_SERVERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000005F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_LOGON_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000060</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_PRIVILEGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000061</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIVILEGE_NOT_HELD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000062</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ACCOUNT_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000063</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000064</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_USER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000065</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GROUP_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000066</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000067</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_IN_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000068</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_NOT_IN_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000069</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LAST_ADMIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILL_FORMED_PASSWORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000006F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOGON_HOURS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000070</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_WORKSTATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000071</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_EXPIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000072</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000073</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NONE_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000074</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_LUIDS_REQUESTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000075</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LUIDS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000076</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SUB_AUTHORITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000077</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ACL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000078</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000079</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SECURITY_DESCR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROCEDURE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TOKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_INHERITANCE_ACL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RANGE_NOT_LOCKED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000007F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000080</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000081</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERVER_NOT_DISABLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000082</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_GUIDS_REQUESTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000083</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GUIDS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000084</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ID_AUTHORITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000085</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_AGENTS_EXHAUSTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000086</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VOLUME_LABEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000087</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECTION_NOT_EXTENDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000088</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_MAPPED_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000089</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_DATA_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_TYPE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_NAME_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ARRAY_BOUNDS_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_DENORMAL_OPERAND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_DIVIDE_BY_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000008F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_INEXACT_RESULT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000090</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_INVALID_OPERATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000091</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000092</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_STACK_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000093</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOAT_UNDERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000094</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTEGER_DIVIDE_BY_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000095</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTEGER_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000096</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRIVILEGED_INSTRUCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000097</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_PAGING_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000098</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000099</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALLOTTED_SPACE_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFFICIENT_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DFS_EXIT_PATH_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_DATA_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_CONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_POWER_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000009F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FREE_VM_NOT_AT_BASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMORY_NOT_ALLOCATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WORKING_SET_QUOTA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEDIA_WRITE_PROTECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_READY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_GROUP_ATTRIBUTES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_IMPERSONATION_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_OPEN_ANONYMOUS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_VALIDATION_CLASS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_TOKEN_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000A9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_MASTER_BOOT_RECORD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSTRUCTION_MISALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSTANCE_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PIPE_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000AF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_FUNCTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_CLOSING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_CONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_READ_MODE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_FORCED_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_NOT_STOPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000B9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_COULD_NOT_INTERPRET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_IS_A_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_NOT_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DUPLICATE_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_NETWORK_PATH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000BF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_DOES_NOT_EXIST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_COMMANDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADAPTER_HARDWARE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_NETWORK_RESPONSE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_NETWORK_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_REMOTE_ADAPTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRINT_QUEUE_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SPOOL_SPACE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PRINT_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000C9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_NAME_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_ACCESS_DENIED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DEVICE_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_NETWORK_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_NAMES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SESSIONS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000CF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARING_PAUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REQUEST_NOT_ACCEPTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_PAUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NET_WRITE_FAULT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROFILING_AT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SAME_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_RENAMED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VIRTUAL_CIRCUIT_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SECURITY_ON_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_WAIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000D9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_ACCESS_DOMAIN_INFO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANT_TERMINATE_SELF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_SERVER_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DOMAIN_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DOMAIN_ROLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000DF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_DOMAIN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPLOCK_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_OPLOCK_PROTOCOL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_DB_CORRUPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GENERIC_NOT_MAPPED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DESCRIPTOR_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_USER_BUFFER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000E9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_IO_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_CREATE_ERR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_MAP_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNEXPECTED_MM_EXTEND_ERR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000ED</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_LOGON_PROCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SESSION_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000EF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F0</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F1</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_3</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F2</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_4</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F3</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_5</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F4</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_6</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F5</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_7</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F6</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_8</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F7</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_9</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F8</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_10</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000F9</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_11</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FA</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PARAMETER_12</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FB</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FC</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REDIRECTOR_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FD</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_STACK_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FE</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_PACKAGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C00000FF</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_FUNCTION_TABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000100</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VARIABLE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000101</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DIRECTORY_NOT_EMPTY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000102</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_CORRUPT_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000103</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_A_DIRECTORY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000104</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_LOGON_SESSION_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000105</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SESSION_COLLISION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000106</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NAME_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000107</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILES_OPEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000108</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_IN_USE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000109</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MESSAGE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROCESS_IS_TERMINATING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LOGON_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_GUID_TRANSLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_IMPERSONATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_ALREADY_LOADED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000010F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_NOT_PRESENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000110</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_LID_NOT_EXIST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000111</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_LID_ALREADY_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000112</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_NOT_LID_OWNER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000113</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_COMMAND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000114</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_LID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000115</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_SELECTOR_NOT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000116</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ABIOS_INVALID_SELECTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000117</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LDT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000118</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000119</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_OFFSET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LDT_DESCRIPTOR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_NE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_INVALID_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RXACT_COMMIT_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MAPPED_FILE_SIZE_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000011F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_OPENED_FILES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000120</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000121</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_DELETE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000122</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_COMPUTER_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000123</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000124</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000125</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000126</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SPECIAL_USER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000127</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBERS_PRIMARY_GROUP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000128</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000129</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_THREADS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_THREAD_NOT_IN_PROCESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOKEN_ALREADY_IN_USE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_COMMITMENT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_LE_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000012F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_NOT_MZ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000130</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_PROTECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000131</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_IMAGE_WIN_16</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000132</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_SERVER_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000133</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIME_DIFFERENCE_AT_DC</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000134</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SYNCHRONIZATION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000135</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000136</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OPEN_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000137</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_PRIVILEGE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000138</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ORDINAL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000139</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ENTRYPOINT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONTROL_C_EXIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOCAL_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LINK_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000013F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LINK_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000140</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_CONNECTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000141</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000142</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_INIT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000143</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MISSING_SYSTEMFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000144</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNHANDLED_EXCEPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000145</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_APP_INIT_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000146</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PAGEFILE_CREATE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000147</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_PAGEFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000148</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000149</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WRONG_PASSWORD_CORE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_FLOAT_CONTEXT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PIPE_BROKEN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_CORRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_IO_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_EVENT_PAIR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000014F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNRECOGNIZED_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000150</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SERIAL_NO_DEVICE_INITED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000151</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000152</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_NOT_IN_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000153</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MEMBER_IN_ALIAS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000154</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALIAS_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000155</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000156</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SECRETS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000157</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SECRET_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000158</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INTERNAL_DB_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000159</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FULLSCREEN_MODE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_CONTEXT_IDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGON_TYPE_NOT_GRANTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_REGISTRY_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NT_CROSS_ENCRYPTION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_CTRLR_CONFIG_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000015F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_MISSING_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000160</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILL_FORMED_SERVICE_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000161</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000162</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNMAPPABLE_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000163</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNDEFINED_CHARACTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000164</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_VOLUME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000165</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_ID_MARK_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000166</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_WRONG_CYLINDER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000167</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_UNKNOWN_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000168</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FLOPPY_BAD_REGISTERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000169</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_RECALIBRATE_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_OPERATION_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DISK_RESET_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SHARED_IRQ_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FT_ORPHANING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000016E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000172</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PARTITION_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000173</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_BLOCK_LENGTH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000174</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_NOT_PARTITIONED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000175</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_LOCK_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000176</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNABLE_TO_UNLOAD_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000177</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EOM_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000178</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_MEDIA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_SUCH_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_MEMBER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KEY_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_LOG_SPACE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_SIDS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000017F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LM_CROSS_ENCRYPTION_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000180</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_KEY_HAS_CHILDREN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000181</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CHILD_MUST_BE_VOLATILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000182</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_CONFIGURATION_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000183</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000184</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_DEVICE_STATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000185</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IO_DEVICE_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000186</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEVICE_PROTOCOL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000187</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BACKUP_CONTROLLER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000188</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOG_FILE_FULL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000189</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_LATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TRUST_LSA_SECRET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_TRUST_SAM_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUSTED_DOMAIN_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUSTED_RELATIONSHIP_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_FILE_CORRUPT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000018F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_CANT_START</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000190</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRUST_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000191</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MUTANT_LIMIT_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000192</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETLOGON_NOT_STARTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000193</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_EXPIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000194</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_POSSIBLE_DEADLOCK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000195</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_CREDENTIAL_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000196</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REMOTE_SESSION_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000197</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVENTLOG_FILE_CHANGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000198</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000199</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOLOGON_SERVER_TRUST_ACCOUNT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_TRUST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000019C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FS_DRIVER_REQUIRED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000202</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_USER_SESSION_KEY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000203</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_SESSION_DELETED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000204</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_LANG_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000205</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFF_SERVER_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000206</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_BUFFER_SIZE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000207</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS_COMPONENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000208</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_ADDRESS_WILDCARD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000209</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_ADDRESSES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_ALREADY_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_CLOSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_DISCONNECTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_RESET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_NODES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000020F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000210</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_TIMED_OUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000211</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_NO_RELEASE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000212</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_NO_MATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000213</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_RESPONDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000214</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_INVALID_ID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000215</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TRANSACTION_INVALID_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000216</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_SERVER_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000217</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_CLIENT_SESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000218</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CANNOT_LOAD_REGISTRY_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000219</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DEBUG_ATTACH_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_SYSTEM_PROCESS_TERMINATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DATA_NOT_ACCEPTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_BROWSER_SERVERS_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VDM_HARD_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_CANCEL_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000021F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REPLY_MESSAGE_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000220</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MAPPED_ALIGNMENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000221</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_CHECKSUM_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000222</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOST_WRITEBEHIND_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000223</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CLIENT_SERVER_PARAMETERS_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000224</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PASSWORD_MUST_CHANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000225</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000226</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NOT_TINY_STREAM</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000227</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RECOVERY_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000228</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_STACK_OVERFLOW_READ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000229</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FAIL_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DUPLICATE_OBJECTID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_OBJECTID_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONVERT_TO_LARGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RETRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FOUND_OUT_OF_SCOPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000022F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ALLOCATE_BUCKET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000230</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROPSET_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000231</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_MARSHALL_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000232</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_VARIANT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000233</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DOMAIN_CONTROLLER_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000234</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ACCOUNT_LOCKED_OUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000235</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HANDLE_NOT_CLOSABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000236</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_REFUSED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000237</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_GRACEFUL_DISCONNECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000238</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_ALREADY_ASSOCIATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000239</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ADDRESS_NOT_ASSOCIATED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_INVALID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NETWORK_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_HOST_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PROTOCOL_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000023F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PORT_UNREACHABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000240</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REQUEST_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000241</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_ABORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000242</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_COMPRESSION_BUFFER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000243</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_USER_MAPPED_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000244</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_AUDIT_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000245</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TIMER_RESOLUTION_NOT_SET</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000246</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_CONNECTION_COUNT_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000247</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGIN_TIME_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000248</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LOGIN_WKSTA_RESTRICTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000249</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IMAGE_MP_UP_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000250</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INSUFFICIENT_LOGON_INFO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000251</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_DLL_ENTRYPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000252</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_BAD_SERVICE_ENTRYPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000253</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LPC_REPLY_LOST</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000254</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IP_ADDRESS_CONFLICT1</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000255</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_IP_ADDRESS_CONFLICT2</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000256</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_REGISTRY_QUOTA_LIMIT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000257</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PATH_NOT_COVERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000258</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_NO_CALLBACK_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000259</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LICENSE_QUOTA_EXCEEDED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_TOO_SHORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_TOO_RECENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PWD_HISTORY_CONFLICT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_PLUGPLAY_NO_DEVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000025F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_UNSUPPORTED_COMPRESSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000260</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_HW_PROFILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000261</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_INVALID_PLUGPLAY_DEVICE_PATH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000262</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_ORDINAL_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000263</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_ENTRYPOINT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000264</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_RESOURCE_NOT_OWNED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000265</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_TOO_MANY_LINKS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000266</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_QUOTA_LIST_INCONSISTENT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000267</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_FILE_IS_OFFLINE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000268</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_EVALUATION_EXPIRATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000269</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_ILLEGAL_DLL_RELOCATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_LICENSE_VIOLATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DLL_INIT_FAILED_LOGOFF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DRIVER_UNABLE_TO_LOAD</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_DFS_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_VOLUME_DISMOUNTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C000026F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0000270</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WX86_FLOAT_STACK_CHECK</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0009898</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">STATUS_WOW_ASSERTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_STRING_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_KIND_OF_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_BINDING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTSEQ_NOT_SUPPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_RPC_PROTSEQ</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_STRING_UUID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_ENDPOINT_FORMAT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NET_ADDR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_ENDPOINT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_TIMEOUT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_OBJECT_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ALREADY_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_TYPE_ALREADY_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ALREADY_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002000F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PROTSEQS_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020010</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_LISTENING</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020011</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_MGR_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020012</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_IF</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020013</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_BINDINGS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020014</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PROTSEQS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020015</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CANT_CREATE_ENDPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020016</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_OUT_OF_RESOURCES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020017</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SERVER_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020018</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SERVER_TOO_BUSY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020019</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NETWORK_OPTIONS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_CALL_ACTIVE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_FAILED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_FAILED_DNE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTOCOL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002001F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_TRANS_SYN</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020021</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020022</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_TAG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020023</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_BOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020024</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_ENTRY_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020025</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NAME_SYNTAX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020026</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_NAME_SYNTAX</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020028</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UUID_NO_ADDRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020029</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_DUPLICATE_ENDPOINT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_TYPE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_MAX_CALLS_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_STRING_TOO_LONG</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROTSEQ_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_PROCNUM_OUT_OF_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002002F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BINDING_HAS_NO_AUTH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020030</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020031</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHN_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020032</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_AUTH_IDENTITY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020033</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNKNOWN_AUTHZ_SERVICE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020034</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_INVALID_ENTRY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020035</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_CANT_PERFORM_OP</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020036</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_NOT_REGISTERED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020037</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOTHING_TO_EXPORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020038</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INCOMPLETE_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020039</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_VERS_OPTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_MEMBERS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_ALL_OBJS_UNEXPORTED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INTERFACE_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENTRY_ALREADY_EXISTS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENTRY_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002003F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NAME_SERVICE_UNAVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020040</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_NAF_ID</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020041</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CANNOT_SUPPORT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020042</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_CONTEXT_AVAILABLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020043</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INTERNAL_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020044</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ZERO_DIVIDE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020045</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ADDRESS_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020046</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_DIV_ZERO</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020047</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_UNDERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020048</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_FP_OVERFLOW</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030001</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_ENTRIES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030002</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CHAR_TRANS_OPEN_FAIL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030003</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CHAR_TRANS_SHORT_FILE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030004</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_IN_NULL_CONTEXT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030005</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CONTEXT_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030006</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CONTEXT_DAMAGED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030007</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_HANDLES_MISMATCH</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030008</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SS_CANNOT_GET_CALL_HANDLE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030009</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NULL_REF_POINTER</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_ENUM_VALUE_OUT_OF_RANGE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BYTE_COUNT_TOO_SMALL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003000C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BAD_STUB_DATA</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020049</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_IN_PROGRESS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_MORE_BINDINGS</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_GROUP_MEMBER_NOT_FOUND</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">EPT_NT_CANT_CREATE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C002004F</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_INTERFACES</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020050</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_CALL_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020051</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_BINDING_INCOMPLETE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020052</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_COMM_FAILURE</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020053</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UNSUPPORTED_AUTHN_LEVEL</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020054</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NO_PRINC_NAME</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020055</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_RPC_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">40020056</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_UUID_LOCAL_ONLY</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020057</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SEC_PKG_ERROR</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0020058</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_NOT_CANCELLED</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C0030059</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_ES_ACTION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005A</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_ES_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005B</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_STUB_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005C</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_PIPE_OBJECT</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005D</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_INVALID_PIPE_OPERATION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333" face="Verdana">C003005E</font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_WRONG_PIPE_VERSION</font></td></tr><tr height="22" style="height: 16.5pt; "><td class="xl65" height="22" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: 0.5pt; border-left-style: solid; background-color: transparent; height: 16.5pt; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font color="#333333"><font face="Verdana">400200AF</font></font></td><td class="xl67" style="border-bottom-color: windowtext; border-bottom-width: 0.5pt; border-bottom-style: solid; border-left-color: windowtext; border-left-width: initial; border-left-style: initial; background-color: transparent; border-top-color: windowtext; border-top-width: initial; border-top-style: initial; border-right-color: windowtext; border-right-width: 0.5pt; border-right-style: solid; "><font size="3" face="맑은 고딕">RPC_NT_SEND_INCOMPLETE</font></td></tr></tbody></table></span>
  • RESTful API를 이렇게 만들면 안된다 . . . . 3 matches
         #title RESTful API를 이렇게 만들면 안된다
         #keywords RESTful API, REST
  • Blog/2009-01 . . . . 2 matches
         '''{{{{font-size: 9pt; }HTTP\}}}'''{{{{font-size: 9pt; }에 대해 이해하고 있고, '''REST'''에도 관심을 가지고 좋아하신다면 이 프로젝트를 정말 즐겁게 하실 수 있을 것입니다.\}}}{{{{font-size: 9pt; }위 항목을 다 충족하긴 힘듭니다. 그저 한 두 항목에만 해당하더라도 자격은 충분합니다~.\}}}||
         ||<width="121" bgcolor="transparent">{{{{font-size: 9pt; }획득 예상 개발 능력\}}}{{{{font-size: 9pt; }(\}}}{{{{font-size: 9pt; }멘티가 배우게 될 것들)\}}}||<width="369" bgcolor="transparent">{{{{font-size: 9pt; }l \}}}{{{{font-size: 9pt; }Pythonic\}}}{{{{font-size: 9pt; }하게 프로그래밍하는 방법을 배울 수 있습니다. 특히 Java나 C/C++, PHP 등에서만 개발해보신 분이면 Python 언어의 매력에 흠뻑 취할 기회를 만들어드립니다. (멘토가 보장합니다!)\}}}{{{{font-size: 9pt; }l \}}}{{{{font-size: 9pt; }HTTP\}}}{{{{font-size: 9pt; }와 REST에 대해 이해할 수 있습니다.\}}}{{{{font-size: 9pt; }l \}}}{{{{font-size: 9pt; }Unit Test \}}}{{{{font-size: 9pt; }작성 방법을 배울 수 있습니다.\}}}{{{{font-size: 9pt; }l \}}}{{{{font-size: 9pt; }주어진 프레임워크를 가져다 쓰는 재미가 아니라, 자신만의 프레임워크를 설계하는 기쁨을 느낄 수 있습니다. (아마 본인의 프로그래밍 성향도 달라질 수 있을 것이라고 믿습니다. 좀 더 발전적으로요.)\}}}||
  • FrontPage . . . . 2 matches
         ["RESTRESTful API의 차이"] [[HTML(<span class="blog-user">)]]June 6, 2022[[HTML(</span>)]]
  • K8S . . . . 2 matches
         FORCE_RESTART 환경 변수에 현재 시간을 넣는다(이전 값에서 변경만 되면 어떤 값이든 괜찮다.).
         kubectl set env deployment/<DEPLOYMENT_NAME> FORCE_RESTART="$(date)"
         kubectl rollout restart deployment <DEPLOYMENT_NAME>
  • LocalKeywords . . . . 2 matches
         REST "RESTful API" JavaScript 브라우저
  • C++/MFC 메시지 맵에 대해 . . . . 1 match
          PTM_WARNING_RESTORE
  • Tools . . . . 1 match
         === Talend API Tester - Free Edition(REST Test 도구) {OK} ===
  • omr1/403/01 . . . . 1 match
          BOOL restart; // 스레드를 다시 시작할 때 사용.
          Env.restart = TRUE; // 스레드에 다시 시작 시그널을 보낸다.
          Env.restart = TRUE;
          Env.restart = FALSE; // RESTART 초기화
          if(Env.restart)
          Env.restart = FALSE;
Found 12 matching pages out of 1201 total pages

You can also click here to search title.