최정임 최정임 2023-02-08
230208 최정임 admin branch 추가
@adc9c7a1e872fa8f1ae1a93d0e21dd1fbf6fa8f0
 
client/resources/css/common.css (added)
+++ client/resources/css/common.css
@@ -0,0 +1,304 @@
+/* layout 공통 */
+/* grid */
+.main-grid {
+  height: 100%;
+  display: grid;
+  grid-template-columns: 0.9fr 0.9fr 1.1fr 1.1fr;
+  grid-template-rows: 1fr 0.1fr 0.1fr;
+  gap: 1rem;
+}
+
+.main-grid-admin {
+  height: 100%;
+  display: grid;
+  grid-template-columns: 0.9fr 0.9fr 1.1fr 1.1fr;
+  grid-template-rows: 0.5fr 0.1fr;
+  gap: 1rem;
+}
+
+.main-grid-government {
+  height: 100%;
+  display: grid;
+  grid-template-columns: 0.5fr 1fr 0.5fr 1fr;
+  grid-template-rows: 0.1fr 0.3fr 0.3fr 0.1fr;
+  gap: 1rem;
+}
+.main-grid-agency {
+  height: 100%;
+  display: grid;
+  grid-template-columns:1fr;
+  grid-template-rows: 0.1fr 0.3fr 0.3fr 0.1fr;
+  gap: 1rem;
+}
+.main-grid-hospital {
+  height: 100%;
+  display: grid;
+  grid-template-columns: 0.5fr 1fr 0.5fr 1fr;
+  grid-template-rows: 0.1fr 1fr 1fr;
+  gap: 1rem;
+}
+
+.main-grid-guardian {
+  height: 100%;
+  display: grid;
+  grid-template-columns: 0.9fr 0.9fr 1.1fr 1.1fr;
+  grid-template-rows: 0.5fr 0.1fr;
+  gap: 1rem;
+}
+
+.statistics-grid {
+  display: grid;
+  grid-template-columns: 1fr 1fr;
+  grid-template-rows: 1fr 1fr;
+  gap: 2rem;
+}
+
+.combine-left {
+  grid-column: 1/3;
+}
+
+.combine-left-government {
+  grid-column: 1/6;
+}
+
+.combine-right {
+  grid-column: 3/4;
+}
+
+.combine-right-government {
+  grid-column: 3/5;
+}
+
+.combine-top-government {
+  grid-row: 1/3;
+}
+
+.combine-all-government {
+  grid-row: 1/2;
+}
+
+.combine-middle-government {
+  grid-row: 2/4;
+}
+
+.combine-bottom-government {
+  grid-row: 2/3;
+}
+
+.combine-bottom-government2 {
+  grid-row: 2/5;
+}
+
+
+/* flex */
+.flex {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.flex-align-start {
+  display: flex;
+  justify-content: space-between;
+  align-items: flex-start;
+}
+
+.flex-align-column {
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+}
+
+.flex-center-column {
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+}
+
+.flex-start {
+  display: flex;
+  justify-content: flex-start;
+  align-items: center;
+}
+
+.flex-center {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+
+.flex-end {
+  display: flex;
+  justify-content: flex-end;
+  align-items: center;
+}
+
+.flex10 {
+  flex: 0 0 9.5%;
+}
+
+.flex15 {
+  flex: 0 0 14.5%;
+}
+
+.flex20 {
+  flex: 0 0 19.5%;
+}
+
+.flex25 {
+  flex: 0 0 24.5%;
+}
+
+
+.flex30 {
+  flex: 0 0 29.5%;
+}
+
+.flex40 {
+  flex: 0 0 39.5%;
+}
+
+.flex45 {
+  flex: 0 0 44.5%;
+}
+
+.flex50 {
+  flex: 0 0 49.5%;
+}
+
+.flex60 {
+  flex: 0 0 59.5%;
+}
+
+.flex70 {
+  flex: 0 0 69.5%;
+}
+
+.flex80 {
+  flex: 0 0 79.5%;
+}
+
+.flex85 {
+  flex: 0 0 84.5%;
+}
+
+.flex90 {
+  flex: 0 0 89.5%;
+}
+
+.flex100 {
+  flex: 0 0 100%;
+}
+
+/* width 공통 */
+.width100 {
+  width: 100%;
+}
+
+.width90 {
+  max-width: 90%;
+  height: 100%;
+  margin: auto;
+}
+
+.width80 {
+  max-width: 80%;
+  height: 100%;
+  margin: auto;
+}
+
+/* box 공통 */
+.row {
+  max-width: 100%;
+  height: 100%;
+}
+
+.content-box {
+  padding: 1.5rem;
+  border-radius: 0.5rem;
+  background-color: rgb(255, 255, 255);
+}
+
+/*체크박스 크기*/
+.checkCon {
+  width: 50%;
+}
+
+
+/* button 공통 */
+.btn-wrap {
+  margin-top: 1rem;
+}
+
+.btn-100 {
+  width: 100%;
+  border: 0;
+  color: #fff;
+  font-size: 1.6rem;
+  font-weight: 800;
+  padding: 0.5rem 1.5rem;
+  padding: 1rem;
+  margin-right: 1rem;
+}
+
+.btn-large {
+  width: 150px;
+  border: 0;
+  color: #fff;
+  font-size: 1.6rem;
+  font-weight: 800;
+  padding: 0.5rem 1.5rem;
+  padding: 1rem;
+  margin-right: 1rem;
+}
+
+.btn-small {
+  border: 0;
+  color: #fff;
+  font-size: 1.5rem;
+  font-weight: 800;
+  border-radius: 0.5rem;
+  padding: 0.5rem 1.5rem;
+  margin-right: 1rem;
+}
+
+.btn-large:last-child,
+.btn-small:last-child {
+  margin-right: 0;
+}
+
+/* button color */
+.green-btn {
+  background: #7D9D9C;
+}
+
+.beige-btn {
+  background: #e4dccf;
+}
+
+.gray-btn {
+  background: #cccccc;
+}
+
+
+/* margin */
+.margin-bottom {
+  margin-bottom: 1rem;
+}
+
+.margin-bottom2 {
+  margin-bottom: 2rem;
+}
+
+.margin-bottom5 {
+  margin-bottom: 5rem;
+}
+
+.margin-bottom10 {
+  margin-bottom: 10rem;
+}
+
+hr {
+  border-top: 1px solid #d1e4e3;
+  margin-top: 2rem
+}(No newline at end of file)
 
client/resources/css/layout.css (added)
+++ client/resources/css/layout.css
@@ -0,0 +1,259 @@
+@charset "utf-8";
+
+#root,
+#App {
+  max-width: 100%;
+  height: 100%;
+}
+
+#layout {
+  max-width: 100%;
+  height: 100%;
+  display: grid;
+  grid-template-areas:
+    "nav header"
+    "nav  main";
+  grid-template-columns: 250px 1fr;
+  grid-template-rows: 0.1fr 2.9fr;
+}
+#layout.expander{
+  grid-template-columns: 50px 1fr;
+}
+header {
+  padding: 1rem;
+  background-color: white;
+  grid-area: header;
+}
+
+.page-title span {
+  font-size: 1.8rem;
+  font-weight: bold;
+  margin-left: 1rem;
+}
+
+nav{
+  height: 100%;
+  background-color: #242d2e;
+  grid-area: nav;
+}
+
+.logo {
+  padding: 2rem 1rem;
+  font-size: large;
+  text-align: center;
+  color: #ffffff;
+  font-weight: bold;
+}
+/* 네비게이션 */
+
+.sidebar-item {
+  margin: 1rem 0;
+}
+
+.sidebar-item>a {
+  font-size: 1.6rem;
+  color: #ffffff;
+  margin: 0 3rem;
+
+}
+
+/* mui icon */
+.MuiSvgIcon-root {
+  display: block;
+}
+
+.sidebar-title {
+  margin: 0 3rem;
+}
+
+.sidebar-title span {
+  font-size: 1.6rem;
+  color: #e6e5e5;
+}
+
+.sidebar-title .toggle {
+  transition: transform .3s;
+}
+
+.sidebar-item.open .toggle {
+  transform: rotate(180deg);
+
+}
+nav li{cursor: pointer;}
+nav .sidebar-item{padding: 1rem 0 0 0;}
+.sidebar-content{background: #7D9D9C;}
+.sidebar-content .sidebar-item{padding: 1rem 0;}
+.sidebar-content .sidebar-item:hover{
+  background: #d1e4e3;
+}
+
+.sidebar-content {
+  display: none;
+  color: #ffffff;
+}
+
+.sidebar-item.open>.sidebar-content {
+  height: auto;
+  display: block;
+}
+
+.sidebar-content .sidebar-item a {
+  margin-left: 6rem;
+  color: #ffffff;
+  font-size: 1.6rem;
+}
+
+.sidebar-content .sidebar-item:hover a {
+  font-weight: bold;
+}
+
+.info-wrap{
+  border-top: 1px solid #4b4b4b;
+}
+
+.bottom-section {
+  padding: 1rem 4rem;
+}
+
+.info-id {
+  font-size: 1.5rem;
+  margin-right: 2rem;
+  color: #ffffff;
+}
+
+#pages {
+  max-width: 100%;
+  height: 100%;
+  padding: 2rem;
+  background-color: #e6e5e5;
+  grid-area: main;
+}
+
+
+main {
+  max-width: 100%;
+  height: 100%;
+}
+
+.content-wrap {
+  max-width: 100%;
+  height: 90vh;
+  padding: 2em;
+  background-color: #ffffff;
+}
+
+/* hierarchy menu */
+.hierarchy-menu {
+  background-color: #f8f8f8;
+  color: #333333;
+  height: 40vh;
+  overflow-y: auto;
+}
+.hierarchy-menu a { 
+  color: #333333;
+  text-decoration: none;
+}
+
+.hierarchy-menu a span{
+  font-size: 1.6rem;
+}
+
+/* List */
+.hierarchy-menu ul {
+  list-style: none;
+  margin: 0;
+  padding: 10px 0 0 0;
+  position: relative;
+}
+.hierarchy-menu ul ul:before {
+  content: '';
+  position: absolute;
+  top: 0;
+  bottom: 27px;
+  left: 6px;
+  border-left: 1px dashed #373E4B;
+}
+.hierarchy-menu > ul {
+  padding: 15px 0 10px 25px;
+}
+.hierarchy-menu > ul ul {
+  padding-left: 16px;
+}
+
+/* List items */
+.hierarchy-menu ul li {
+  display: block;
+  position: relative;
+}
+.hierarchy-menu > ul ul li:before {
+  content: '';
+  display: block;
+  height: 0px;
+  width: 20px;
+  border-bottom: 1px solid #7A7F87;
+  position: absolute;
+  left: -10px;
+  top: 16px;
+}
+.hierarchy-menu > ul ul li:after {
+  content: '';
+  display: block;
+  height: 43px;
+  width: 0;
+  border-left: 1px solid #7A7F87;
+  position: absolute;
+  left: -10px;
+  top: -27px;
+}
+.hierarchy-menu > ul ul li.group-lvl:before {
+  width: 7px;
+}
+.hierarchy-menu > ul ul li:first-child:after { 
+  height: 28px;
+  top: -12px;
+}
+
+/* Links */
+.hierarchy-menu ul a {
+  display: block;
+  padding: 6px 18px;
+  height: 44px;
+  position: relative;
+  color: #333333;
+  transition: 100ms;
+}
+.hierarchy-menu ul a:hover {
+  color: #7e9d9c;
+}
+.hierarchy-menu ul a.active {
+  color: #333333;
+  font-weight: bold;
+}
+
+.hierarchy-menu li.sub-nav > a:before {
+  position: absolute;
+  left: 4px;
+  top: 14px;
+  content: '';
+  width: 5px;
+  height: 5px;
+  border-bottom: 1px solid #333333;
+  border-right: 1px solid #333333;
+  -ms-transform: rotate(-45deg);
+  -webkit-transform: rotate(-45deg);
+  transform: rotate(-45deg);
+}
+.hierarchy-menu li.sub-nav.open > a:before {
+  -ms-transform: rotate(45deg);
+  -webkit-transform: rotate(45deg);
+  transform: rotate(45deg);
+}
+.hierarchy-menu li.sub-nav.open > a {
+  color: #333333;
+}
+.hierarchy-menu li.sub-nav > ul {
+  display: block;
+}
+.hierarchy-menu li.sub-nav.open > ul {
+  display: block;
+}
 
client/resources/css/main.css (added)
+++ client/resources/css/main.css
@@ -0,0 +1,770 @@
+/* 공통 */
+.logo {
+  font-size: 2.4rem;
+  font-family: "KoPubDotumBold_0";
+}
+
+header .page-title span {
+  font-family: "KoPubDotumBold_0";
+  font-size: 2.2rem;
+}
+
+.page-title svg {
+  display: none;
+}
+
+.join-btn{
+  background-color: transparent;
+}
+/* 카테고리 */
+.category{font-size: 1.6rem;}
+.category-btn{padding: 0; border-radius: 0;}
+.category ul{list-style: disc;}
+.category > ul >li{list-style: circle; }
+.category > ul > li > ul > li{list-style: circle; border: 1px solid red; }
+
+
+
+/* -----------------------------------------------지자체 */
+
+
+.map {
+  width: 100%;
+  height: calc(100% - 31px);
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+
+.statistics {
+  border: 1px solid #eeeeee;
+  border-radius: 5px;
+  padding: 1rem;
+}
+
+.statistics li {
+  width: 30%;
+  padding: 1rem;
+  text-align: center;
+  border-radius: 10px;
+  margin: 0.5rem;
+}
+
+.statistics li:nth-child(1) {
+  border: 1px solid #18924e;
+}
+
+.statistics li:nth-child(2) {
+  border: 1px solid #ec220c;
+}
+
+.statistics li:nth-child(3) {
+  border: 1px solid #2132e3;
+}
+.statistics li:nth-child(4) {
+  border: 1px solid #e3d621;
+}
+
+.statistics li p:nth-of-type(1) {
+  font-size: 1.6rem;
+  font-weight: bold;
+  margin-bottom: 1rem;
+}
+
+.statistics li p:nth-of-type(2) {
+  font-size: 1.6rem;
+  font-weight: bold;
+}
+
+.statistics li p:nth-of-type(2)::after {
+  content: "명";
+}
+
+.main-battery-title span::after {
+  content: " 님의";
+  margin-right: 1rem;
+  font-size: 1.4rem;
+}
+
+.combine-right-government h4::before {
+  content: "김복남 님의";
+  margin-right: 1rem;
+  font-size: 1.4rem;
+}
+.main-battery-title {
+  font-size: 1.6rem;
+  font-weight: 900;
+}
+.main-battery-title p{padding-right: 1rem;}
+.map svg {
+  display: block;
+}
+
+.temp p {
+  font-size: 3rem;
+  font-weight: bold;
+  color: rgb(103, 132, 220);
+  text-align: center;
+  padding-right: 1rem;
+}
+.temp::after {
+  content: " 입니다.";
+  font-size: 1.6rem;
+  font-weight: 500;
+}
+.battery p {
+  font-size: 3rem;
+  font-weight: bold;
+  color: rgb(255, 121, 121);
+  text-align: center;
+  padding-right: 1rem;
+}
+
+.battery::after {
+  content: " 남았습니다.";
+  font-size: 1.6rem;
+  font-weight: 500;
+}
+
+#chartdiv1 {
+  height: 22vh;
+}
+
+/* ------------------------------------------------보호자 */
+/* ------------------------------------- main page --------------------------------- */
+/* 사용자 정보*/
+.user-img {
+  width: 150px;
+  height: 150px;
+  background-color: #d8d8d8;
+  margin: auto;
+  display: block;
+  text-align: center;
+  border-radius: 50%;
+}
+
+.user-name-wrap,
+.user-img {
+  margin-bottom: 1rem;
+}
+
+.user-name {
+  font-size: 1.8rem;
+  font-weight: bold;
+}
+
+.user-grade {
+  font-size: 1rem;
+  border-radius: 0.5rem;
+  padding: 0.5rem 1rem;
+  background-color: #fdb0b0;
+  margin-left: 0.5rem;
+}
+
+.user-bir,
+.user-pnum,
+.user-add {
+  font-size: 1.6rem;
+  margin-bottom: 0.5rem;
+  text-align: center;
+}
+
+.user-add {
+  margin-bottom: 0;
+}
+
+/* 보호사 정보 */
+.caregiver-info p {
+  font-size: 1.6rem;
+  margin-bottom: 1rem;
+  font-weight: bold;
+}
+
+.caregiver-info span {
+  font-weight: normal;
+}
+
+.caregiver-info p:nth-of-type(4) {
+  margin-bottom: 0;
+}
+
+/* 날씨 api */
+#fullDate,
+#temp {
+  font-size: 1.6rem;
+  margin-right: 1rem;
+  text-align: center;
+}
+
+#temp {
+  font-weight: bold;
+  text-align: center;
+}
+
+.weather-img {
+  display: block;
+  margin: auto;
+}
+
+/* ------------------------------------- login page --------------------------------- */
+
+/* login */
+.login-wrap {
+  max-width: 100%;
+  max-height: 100%;
+  background-color: #f8f8f8;
+}
+
+.login-wrap h1 {
+  max-width: 100%;
+  text-align: center;
+  padding: 3rem;
+  font-size: 2.4rem;
+  background: #242d2e;
+  color: #ffffff;
+}
+
+.login-form h3 {
+  font-size: 2rem;
+  text-align: center;
+  margin-bottom: 2rem;
+}
+
+.container {
+  text-align: center;
+}
+
+.login-form {
+  width: 500px;
+  padding: 5rem 3rem;
+  margin: auto;
+  background-color: #ffffff;
+  border-radius: 1rem;
+}
+
+.login-form .login-inner {
+  margin-bottom: 2rem;
+}
+
+.login-form .login-inner .content {
+  width: 100%;
+  margin-bottom: 1rem;
+}
+
+.login-form .login-inner .fa-solid {
+  font-size: 2rem;
+  margin-bottom: 1rem;
+  color: #eee;
+}
+
+.login-form .login-inner input {
+  outline: none;
+  border: 0;
+  margin-bottom: 1rem;
+  padding: 1.5rem;
+  background: #eee;
+}
+
+.btn-bottom {
+  margin-top: 2rem;
+  border-top: 1px solid #eeeeee;
+}
+
+.join-login {
+  height: calc(100% - 92px);
+}
+
+/* ------------------------------------- 회원가입 page --------------------------------- */
+.join-group {
+  width: 600px;
+  background-color: #ffffff;
+  border-radius: 1rem;
+}
+
+.join-group h3 {
+  width: 100%;
+  font-size: 2rem;
+  padding: 3rem;
+  background: #f0ebe3;
+  border-radius: 1rem 1rem 0 0;
+}
+
+.join-inner {
+  margin: 0 auto;
+  padding: 3rem;
+  font-size: 1.4rem;
+}
+
+.join-inner-update {
+  width: 50%;
+  margin: 0 auto;
+  padding: 3rem;
+  font-size: 1.4rem;
+}
+
+.join-inner input {
+  padding: 1rem;
+  line-height: 2rem;
+}
+
+.join-inner #id {
+  max-width: 65%;
+  margin-right: 1rem;
+}
+
+/* ------------------------------------- 상세페이지들 --------------------------------- */
+/* 등록창 */
+.insert-table td {
+  padding: 2rem;
+  text-align: left;
+}
+
+/* 검색창 */
+
+.mobile-area-wrap {
+  display: none;
+}
+
+.search-group {
+  margin-bottom: 2rem;
+  box-shadow: 1px 1px 5px 1px rgba(209, 228, 227);
+}
+
+.search-group .btn-box {
+  padding-bottom: 0.5rem;
+}
+
+.detail-search table {
+  border-top: none;
+  border-bottom: none;
+}
+
+.detail-search table th,
+.detail-search table td {
+  background-color: #ffffff;
+  text-align: left;
+  font-size: 1.5rem;
+}
+
+.detail-search table th {
+  width: 14%;
+}
+
+.detail-search table td {
+  border-top: none;
+}
+
+.detail-search tbody tr:nth-of-type(2) select {
+  width: 24.4%;
+}
+
+.detail-search tbody tr:nth-of-type(3) td {
+  width: 100%;
+}
+
+.detail-search tbody tr:nth-of-type(3) th:nth-child(3) {
+  width: 23%;
+}
+
+.detail-search tbody tr:nth-of-type(3) td input {
+  margin-right: 1rem;
+}
+
+.area-wrap>div {
+  margin-top: 1rem;
+  width: 100%;
+}
+
+.select-area {
+  width: 100%;
+  padding: 1rem;
+  background-color: #d1e4e3;
+}
+
+.search-area {
+  padding: 2rem;
+}
+
+.search-area details {
+  margin-top: 1rem;
+}
+
+.search-area details summary {
+  font-weight: bold;
+  font-size: 1.4rem;
+}
+
+.search-line {
+  margin-bottom: 5rem;
+}
+
+.search-group #date {
+  width: 100%;
+}
+
+.area-wrap {
+  margin-bottom: 5rem;
+}
+
+.area {
+  position: relative;
+}
+
+.area>li {
+  padding: 1rem;
+}
+
+.area-list {
+  display: none;
+  position: absolute;
+  top: 100%;
+  left: 0;
+  width: 100%;
+  height: 8rem;
+  background-color: #ffffff;
+  border-radius: 0.3rem;
+  padding: 1rem;
+}
+
+.area-list ul li {
+  width: 100%;
+}
+
+input[type="radio"]#all,
+input[type="radio"]#no1,
+input[type="radio"]#no2,
+input[type="checkbox"]#no3,
+input[type="checkbox"]#no4,
+input[type="checkbox"]#no5,
+input[type="checkbox"]#no6,
+input[type="checkbox"]#no7,
+input[type="checkbox"]#no8 {
+  display: none;
+}
+
+#all:checked~div.area-list,
+#no1:checked~div.area-list,
+#no2:checked~div.area-list,
+#no3:checked~div.area-list,
+#no4:checked~div.area-list,
+#no5:checked~div.area-list,
+#no6:checked~div.area-list,
+#no7:checked~div.area-list,
+#no8:checked~div.area-list {
+  display: block;
+}
+
+.item {
+  display: inline-block;
+  font-size: 14px;
+  margin-top: 10px;
+  background-color: rgba(255, 255, 255, 0.5);
+  margin: 10px;
+}
+
+.item::after {
+  display: inline-block;
+  content: "\00d7";
+  font-size: 14px;
+  margin-left: 5px;
+
+}
+
+/* 노인등록 */
+.medicine {
+  height: 100px;
+}
+
+.senior-insert label {
+  padding: 0 4rem 0 1rem;
+
+}
+
+.senior-insert tr:nth-child(2) .gender {
+  padding: 2rem 1rem;
+}
+
+#section {
+  width: 100%;
+}
+
+/* 노인 상세 정보 */
+.senior-detail th {
+  text-align: left;
+  width: 15%;
+  border: 6px solid #ffffff;
+  background: #f0ebe3;
+  padding-left: 2rem;
+}
+
+.senior-detail td {
+  text-align: left;
+}
+
+.senior-detail td span {
+  padding-left: 1rem;
+}
+
+
+/* 복약 상세페이지 */
+
+.day-list {
+  height: 700px;
+  padding: 3rem;
+  border: 10px solid #7d9d9c;
+  overflow-y: auto;
+}
+
+.day-list ul li {
+  font-size: 1.6rem;
+  padding: 1rem 0;
+  border-top: 1px solid #eeeeee;
+}
+
+.detail-graph {
+  width: 100%;
+  height: 37%;
+  margin-bottom: 2rem;
+  padding: 2rem;
+  border: 1px solid #eeeeee;
+  border-radius: 5px;
+}
+
+.medicine-detail-table .btn-wrap {
+  margin: 0;
+}
+
+
+/* 복약 수정 페이지 */
+
+.medicine-detail th {
+  font-size: 1.4rem;
+}
+
+.modal-main table th {
+  text-align: center;
+}
+
+.medicine-revise tr:nth-child(3)>td div,
+.medicine-revise tr:nth-child(4)>td div,
+.medicine-revise tr:nth-child(5)>td div {
+  width: 50%;
+}
+
+.medicine-revise tr:nth-child(3)>td div input,
+.medicine-revise tr:nth-child(4)>td div input,
+.medicine-revise tr:nth-child(5)>td div input {
+  width: 20%;
+}
+
+.medicine-revise tr:nth-child(3)>td div label,
+.medicine-revise tr:nth-child(4)>td div label,
+.medicine-revise tr:nth-child(5)>td div label {
+  width: 50%;
+}
+
+/* 방문관리 */
+.visit-content {
+  height: 45%;
+}
+
+.visit-info {
+  max-width: 100%;
+  height: 90%;
+  padding: 2rem;
+  border-radius: 1rem;
+  background-color: #f8f8f8;
+}
+
+.visit-info ul li div {
+  height: 100%;
+}
+
+.visit-info ul li {
+  font-size: 1.6rem;
+  letter-spacing: 0.5rem;
+  margin-bottom: 1rem;
+}
+
+.visit-info ul li p {
+  padding: 1rem;
+  border: 1px solid #7d9d9c;
+  border-radius: 1rem;
+  height: 50%;
+}
+
+/* 방문 수정*/
+.visit-revise tr:nth-child(3) input {
+  width: 2rem;
+}
+
+.visit-revise tr:nth-child(3) label {
+  width: 10rem
+}
+
+/* 방문 상세 */
+.visit-detail th {
+  width: 22%;
+}
+
+/* 방문 등록 */
+.search-visit-insert {
+  margin-bottom: 3rem;
+}
+
+.search-visit-insert button {
+  width: 20%;
+}
+
+.search-visit-insert input {
+  margin-right: 1rem;
+}
+
+/* 장비 관리*/
+.equipment-search {
+  margin-bottom: 1rem;
+}
+
+.select100 {
+  width: 100%;
+}
+
+.equipment-table button {
+  background-color: #ffffff;
+  border: 1px solid #7D9D9C;
+  color: #7D9D9C;
+}
+
+/* 장비등록 */
+
+.user-list{
+  background-color: #eeeeee;
+  height: 57.8vh;
+}
+
+/* 모달 */
+.modal {
+  display: none;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 99;
+  background-color: rgba(0, 0, 0, 0.6);
+}
+
+.modal .modal-inner {
+  width: 80%;
+  max-width: 650px;
+  margin: 0 auto;
+  border-radius: 0.3rem;
+  background-color: #fff;
+  animation: modal-show 0.3s;
+  overflow: hidden;
+  border-radius: 1rem;
+}
+
+.modal .modal-inner .modal-header {
+  background-color: #f1f1f1;
+  font-size: 1.8rem;
+  font-weight: bold;
+  padding: 2rem;
+}
+
+.modal-main {
+  padding: 2rem;
+}
+
+.modal-main table th,
+.modal-main table td {
+  text-align: center;
+}
+
+.modal.openModal {
+  display: flex;
+  align-items: center;
+  animation: modal-bg-show 0.3s;
+}
+
+/* 사용자 관리 */
+.tab-menu-mobile{display: none;} 
+.tab-menu {
+  display: flex;
+}
+
+.tab-menu li {
+  width: 200px;
+  padding: 1rem;
+  background-color: #f8f8f8;
+  border-radius: 0.5rem 0.5rem 0 0;
+  font-size: 1.6rem;
+  text-align: center;
+  border: 1px solid #eeeeee;
+}
+
+.tab-menu li.active {
+  font-weight: bold;
+  background-color: #242d2e;
+  color: #ffffff;
+}
+
+.search-management select {
+  width: 15%;
+}
+
+.search-management input {
+  width: 20%;
+  margin-right: 1rem;
+}
+
+.tab-content table th {
+  background-color: #ffffff;
+}
+
+.tab-content table button {
+  background-color: #ffffff;
+  border: 1px solid #7D9D9C;
+  color: #7D9D9C;
+}
+
+.tab-container>div>div:nth-child(2) {
+  margin: 1rem 0;
+}
+
+/* 권한 설정 */
+.authority-table-mobile{display: none;}
+.authority-table-pc th,
+.authority-table-pc td {
+  padding: 1.5rem;
+}
+
+.authority-table-pc td:last-child {
+  padding: 0;
+}
+
+@keyframes modal-show {
+  from {
+    opacity: 0;
+    margin-top: -50px;
+  }
+
+  to {
+    opacity: 1;
+    margin-top: 0;
+  }
+}
+
+@keyframes modal-bg-show {
+  from {
+    opacity: 0;
+  }
+
+  to {
+    opacity: 1;
+  }
+}
+
+.mobile{
+  display: none;
+}(No newline at end of file)
 
client/resources/css/reset.css (added)
+++ client/resources/css/reset.css
@@ -0,0 +1,110 @@
+* {
+  margin: 0;
+  padding: 0;
+  box-sizing: border-box;
+}
+
+html {
+  max-width: 100%;
+  height: 100%;
+  font-size: 10px;
+}
+
+body {
+  max-width: 100%;
+  height: 100%;
+  color: #333333;
+}
+
+ul,
+ol,
+li {
+  list-style: none;
+}
+
+a {
+  text-decoration: none;
+  color: #333333;
+}
+
+img {
+  vertical-align: top;
+}
+
+table {
+  width: 100%;
+  border-collapse: collapse;
+  border-bottom: 1px solid #e4dccf;
+}
+
+th{
+  padding: 0.5rem;
+  font-weight: bold;
+  background: #f0ebe3;
+  font-size: 1.5rem;
+  text-align: center;
+}
+
+td {
+  padding: 1rem;
+  color: #333333;
+  font-size: 1.6rem;
+  text-align: center;
+  border-top: 1px solid #ececec;
+}
+tr{cursor: pointer;}
+
+button {
+  cursor: pointer;
+  border: none;
+  padding: 1rem;
+  border-radius: 1rem;
+}
+
+label{
+  font-size: 1.5rem;
+  text-align: left;
+  font-weight: bold;
+}
+
+input{
+  width: 100%;
+  border-radius: 0.5rem;
+  padding: 1rem;
+  border: 1px solid #eeeeee;
+}
+
+input[type="button"]{
+  width: 100%;
+  background: none;
+  padding: 1rem;
+  border: none;
+}
+
+select{
+  width: 32%;
+  padding: 1rem;
+  border-radius: 0.5rem;
+  margin-right: 1.1rem;
+  border: 1px solid #eeeeee;
+}
+
+select:last-child{
+  margin-right: 0rem;
+}
+
+details{
+  width: 100%;
+  padding: 1rem;
+  font-size: 1.6rem;
+}
+
+textarea{
+  width: 100%;
+  height: 150px;
+}
+
+@font-face{
+  font-family: "KoPubDotumBold_0" ;
+  src: url(/client/resources/files/font/KoPubDotumBold_0.ttf);
+}(No newline at end of file)
 
client/resources/css/responsive.css (added)
+++ client/resources/css/responsive.css
@@ -0,0 +1,1778 @@
+/* 공통 */
+@media all and (max-width:769px) {
+
+  /* 권한관리 */
+  .authority-table-pc {
+    display: none;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1) {
+    display: flex;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1)>div {
+    font-size: 1.6rem;
+    width: 100%;
+  }
+
+  .authority-table-mobile select {
+    margin: 1rem 0;
+  }
+
+  .authority-table-mobile {
+    display: block;
+  }
+
+  .authority-table-mobile thead {
+    display: inline-table;
+    width: 100%;
+  }
+
+  .authority-table-mobile tr,
+  .authority-table-mobile td {
+    display: revert;
+  }
+
+  .authority-table-mobile tr {
+    width: 100%;
+  }
+
+  .authority-table-mobile tr:nth-child(2) th:nth-child(1) {
+    width: 50%;
+  }
+
+  .authority-table-mobile td {
+    padding: 1rem;
+    width: 10%;
+  }
+
+  .authority-table-mobile tbody td input {
+    margin-right: 1rem;
+  }
+
+  .authority-table-mobile th {
+    width: 50%;
+  }
+
+  /* 레이아웃 */
+  #layout {
+    width: 100%;
+    height: 100%;
+    display: grid;
+    grid-template-areas:
+      "nav header"
+      "nav pages"
+      "nav  main";
+    grid-template-columns: 200px 1fr;
+    grid-template-rows: 0.1fr 1.9fr;
+  }
+
+  #layout.expander {
+    grid-template-columns: 0px 1fr;
+  }
+
+  #layout.on {
+    grid-template-columns: 0px 1fr;
+    grid-template-rows: 0.1fr 1.9fr;
+  }
+
+  #pages {
+    grid-area: pages;
+    padding: 0.5rem;
+  }
+
+  main {
+    padding: 0;
+  }
+
+  /* 보호자 메인 그리드 */
+  .main-grid-guardian {
+    height: 100%;
+    display: grid;
+    grid-template-columns: 1fr;
+    grid-template-rows: 0.5fr 0.1fr;
+    gap: 1rem;
+  }
+
+  /* 정부 메인 그리드 */
+  .main-grid-government {
+    display: grid;
+    grid-template-columns: 1fr;
+    grid-template-rows: 0.1fr 0.1fr 1fr;
+    gap: 0.5rem;
+  }
+
+  /* 병원 메인 그리드 */
+  .main-grid-hospital {
+    display: grid;
+    grid-template-columns: 1fr;
+    grid-template-rows: 0.1fr 0.1fr 1fr;
+    gap: 0.5rem;
+  }
+
+  .main-grid-government .content-box {
+    padding: 1rem;
+  }
+
+  .main-grid-government .content-box .table {
+    border: none;
+  }
+
+  .main-grid-government .combine-all-government {
+    grid-row: auto;
+  }
+
+  .main-grid-government .combine-right {
+    grid-column: auto;
+  }
+
+  .main-grid-government .combine-right-government,
+  .main-grid-government .combine-left,
+  .main-grid-hospital .combine-right-government,
+  .main-grid-hospital .combine-left {
+    grid-column: 1;
+  }
+
+  .main-grid-government .combine-bottom-government {
+    grid-column: 0;
+  }
+
+  header {
+    border-bottom: 1px solid #eeeeee
+  }
+
+  .header-flex {
+    display: flex;
+    justify-content: space-between;
+  }
+
+  /* 공통 */
+  .page-title svg {
+    display: block;
+  }
+
+  #fullDate,
+  #temp {
+    font-size: 1.2rem;
+  }
+
+  .content-wrap {
+    padding: 2rem 1rem;
+  }
+
+  nav {
+    position: fixed;
+    top: 58px;
+    left: -250px;
+    z-index: 10;
+    transition: 0.5s;
+  }
+
+  nav.on {
+    left: 0;
+    transition: 0.5s;
+  }
+
+
+  /* 메인 */
+
+  .react-calendar {
+    width: 100%;
+  }
+
+  .temp p {
+    font-size: 2rem;
+  }
+
+  .main-battery-title {
+    font-size: 1.4rem;
+    justify-content: flex-start;
+    padding-right: 1rem;
+  }
+
+  .main-battery-title p {
+    padding-right: 1rem;
+  }
+
+  .battery::after {
+    content: " 남았습니다.";
+    font-size: 1.4rem;
+    margin-left: 0;
+  }
+
+  .battery p {
+    font-size: 2rem;
+    padding-left: 0;
+    padding-right: 1rem;
+  }
+
+  #chartdiv1 {
+    height: 25vh;
+  }
+
+  .statistics li p:nth-of-type(1),
+  .statistics li p:nth-of-type(2) {
+    font-size: 1.4rem;
+  }
+
+  .weather-info {
+    width: 70%;
+    padding-right: 1rem;
+  }
+
+  .mobile .main-grid-guardian {
+    gap: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box {
+    padding: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box:nth-child(2)>div p {
+    font-size: 1.8rem;
+  }
+
+  /* 테이블 */
+
+  table {
+    display: table;
+    border: 0;
+  }
+
+  thead {
+    display: none;
+  }
+
+  tbody {
+    display: block;
+  }
+
+  tr {
+    display: block;
+    margin-bottom: 1rem;
+  }
+
+  td {
+    display: block;
+  }
+
+  tr>td::before {
+    display: inline-block;
+    width: 33%;
+    position: relative;
+  }
+
+  table td {
+    border: none;
+    position: relative;
+    border-bottom: 1px solid #eee;
+    font-size: 1.2rem;
+  }
+
+
+  table td span {
+    display: block;
+  }
+
+  table td::before {
+    position: absolute;
+    white-space: nowrap;
+    left: 1rem;
+    width: 100px;
+    border-radius: 10px;
+    text-align: center;
+    align-items: center;
+    background-color: #F0EBE3;
+    font-weight: 900;
+  }
+
+  /* 메인테이블 */
+  .none-medicine-list td:nth-of-type(1) {
+    font-weight: bold;
+    padding: 0.5rem;
+  }
+
+  .none-medicine-list td:nth-of-type(1)::before {
+    content: "";
+  }
+
+  .none-medicine-list td:nth-of-type(2):before {
+    content: "요양등급";
+  }
+
+  .none-medicine-list td:nth-of-type(3):before {
+    content: "생년월일";
+  }
+
+  .none-medicine-list td:nth-of-type(4):before {
+    content: "전화번호";
+  }
+
+  .none-medicine-list td:nth-of-type(5):before {
+    content: "주소";
+  }
+
+  .none-medicine-list td:nth-of-type(6):before {
+    content: "기저질환";
+  }
+
+  .recent-visit {
+    border: 0;
+  }
+
+  .recent-visit tr {
+    margin-bottom: 3rem;
+  }
+
+  .recent-visit td:nth-of-type(1) {
+    font-weight: bold;
+    padding: 0.5rem;
+  }
+
+  .recent-visit td:nth-of-type(1)::before {
+    content: "";
+  }
+
+  .recent-visit td:nth-of-type(2):before {
+    content: "방문목적";
+  }
+
+  .recent-visit td:nth-of-type(3):before {
+    content: "방문 상세 이유";
+  }
+
+  /* 시니어 조회 테이블 */
+  .senior-table td:nth-of-type(1) {
+    font-weight: bold;
+    padding: 0.5rem;
+  }
+
+  .senior-table td:nth-of-type(1)::before {
+    content: "";
+  }
+
+  .senior-table td:nth-of-type(2):before {
+    content: "No";
+  }
+
+  .senior-table td:nth-of-type(3):before {
+    content: "사용자등록번호";
+  }
+
+  .senior-table td:nth-of-type(4):before {
+    content: "요양등급";
+  }
+
+  .senior-table td:nth-of-type(5):before {
+    content: "이름";
+  }
+
+  .senior-table td:nth-of-type(6):before {
+    content: "생년월일";
+  }
+
+  .senior-table td:nth-of-type(7):before {
+    content: "전화번호";
+  }
+
+  .senior-table td:nth-of-type(8):before {
+    content: "주소";
+  }
+
+  .senior-table td:nth-of-type(9):before {
+    content: "기저질환";
+  }
+
+  /* 복약 조회 테이블*/
+  .medicine-table td {
+    padding-left: 14rem;
+  }
+
+  .medicine-table td:nth-of-type(1) {
+    display: block;
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .medicine-table td:nth-of-type(1):before {
+    display: none;
+    content: "";
+  }
+
+  .medicine-table td:nth-of-type(2):before {
+    content: "이름";
+  }
+
+  .medicine-table td:nth-of-type(3):before {
+    content: "생년월일";
+  }
+
+  .medicine-table td:nth-of-type(4):before {
+    content: "전화번호";
+  }
+
+  .medicine-table td:nth-of-type(5):before {
+    content: "주소";
+  }
+
+  .medicine-table td:nth-of-type(6):before {
+    content: "평균 복약률 ��";
+  }
+
+  /* 복약 상세페이지 테이블 */
+  .medicine-detail-table td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .medicine-detail-table td:nth-of-type(1)::before {
+    display: none;
+    content: "";
+  }
+
+  .medicine-detail-table td:nth-of-type(2):before {
+    content: "날짜";
+  }
+
+  .medicine-detail-table td:nth-of-type(3):before {
+    content: "복약상태 (아침)";
+  }
+
+  .medicine-detail-table td:nth-of-type(4):before {
+    content: "복약상태 (점심)";
+  }
+
+  .medicine-detail-table td:nth-of-type(5):before {
+    content: "복약상태 (저녁)";
+  }
+
+  .medicine-detail-table td:nth-of-type(6):before {
+    content: "필요 복용 횟수";
+  }
+
+  .medicine-detail-table td:nth-of-type(7):before {
+    content: "복약률";
+  }
+
+  .medicine-detail-table td:nth-of-type(8):before {
+    content: "수정 상세 사유";
+  }
+
+  .medicine-detail-table td:nth-of-type(9):before {
+    content: "수정자";
+  }
+
+  .medicine-detail-table td:nth-of-type(10)::before {
+    content: "수정일시";
+  }
+
+  .medicine-detail-table td:nth-of-type(11) {
+    padding: 1rem 1rem 0 1rem;
+  }
+
+  /* 댁내 온도 조회 테이블 */
+  .temperature-table td:nth-of-type(1) {
+    display: block;
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .temperature-table td:nth-of-type(1):before {
+    display: none;
+    content: "";
+  }
+
+  .temperature-table td:nth-of-type(2):before {
+    content: "이름";
+  }
+
+  .temperature-table td:nth-of-type(3):before {
+    content: "생년월일";
+  }
+
+  .temperature-table td:nth-of-type(4):before {
+    content: "전화번호";
+  }
+
+  .temperature-table td:nth-of-type(5):before {
+    content: "주소";
+  }
+
+  .temperature-table td:nth-of-type(6):before {
+    content: "최근 온도";
+  }
+
+  .temperature-table td:nth-of-type(7):before {
+    content: "상태";
+  }
+
+  /* 최근 일주일 댁내 온도 */
+  .temperature-modal td:nth-of-type(1) {
+    display: block;
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .temperature-modal td:nth-of-type(1):before {
+    display: none;
+    content: "";
+  }
+
+  .temperature-modal td:nth-of-type(2):before {
+    content: "날짜";
+  }
+
+  .temperature-modal td:nth-of-type(3):before {
+    content: "02:00";
+  }
+
+  .temperature-modal td:nth-of-type(4):before {
+    content: "10:00";
+  }
+
+  .temperature-modal td:nth-of-type(5):before {
+    content: "14:00";
+  }
+
+  .temperature-modal td:nth-of-type(6):before {
+    content: "23:00";
+  }
+
+  /* 방문 조회 테이블*/
+  .visit-table table td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .visit-table table td:nth-of-type(2):before {
+    content: "날짜";
+  }
+
+  .visit-table table td:nth-of-type(3):before {
+    content: "이름";
+  }
+
+  .visit-table table td:nth-of-type(4):before {
+    content: "방문 목적";
+  }
+
+  .visit-table table td:nth-of-type(5):before {
+    content: "방문 상세 사유";
+  }
+
+  .visit-table table td:nth-of-type(6):before {
+    content: "보호사 연락처";
+  }
+
+  /* 장비 조회 테이블*/
+  .equipment-table td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .equipment-table td:nth-of-type(2):before {
+    content: "No";
+  }
+
+  .equipment-table td:nth-of-type(3):before {
+    content: "장비명";
+  }
+
+  .equipment-table td:nth-of-type(4):before {
+    content: "시리얼 넘버";
+  }
+
+  .equipment-table td:nth-of-type(5):before {
+    content: "기기 상태";
+  }
+
+  .equipment-table td:nth-of-type(6):before {
+    content: "구매일";
+  }
+
+  .equipment-table td:nth-of-type(7):before {
+    content: "배터리 잔량";
+  }
+
+  .equipment-table td:nth-of-type(8):before {
+    content: "대여가능 여부";
+  }
+
+  .equipment-table td:nth-of-type(9):before {
+    content: "관리";
+  }
+
+  /* 장비 상세 목록 테이블*/
+  .equipment-detail td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+
+  .equipment-detail td:nth-of-type(2):before {
+    content: "장비명";
+  }
+
+  .equipment-detail td:nth-of-type(3):before {
+    content: "시리얼 넘버";
+  }
+
+  .equipment-detail td:nth-of-type(4):before {
+    content: "사용자명";
+  }
+
+  .equipment-detail td:nth-of-type(5):before {
+    content: "사용자관리번호";
+  }
+
+  .equipment-detail td:nth-of-type(6):before {
+    content: "위치";
+  }
+
+  .equipment-detail td:nth-of-type(7):before {
+    content: "대여 기간";
+  }
+
+  /* 장비등록창 */
+  .equipment-modal table td {
+    padding: 0;
+  }
+
+  /* 내정보수정 */
+  .join-inner {
+    width: 100%;
+  }
+
+  /* 권한 관리 테이블 */
+  .authority-table thead {
+    display: block;
+  }
+
+  /* 사용자 관리 */
+  /* 보호자 */
+  .protector-user td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .protector-user td:nth-of-type(2):before {
+    content: "사용자명";
+  }
+
+  .protector-user td:nth-of-type(3):before {
+    content: "사용자ID";
+  }
+
+  .protector-user td:nth-of-type(4):before {
+    content: "성별";
+  }
+
+  .protector-user td:nth-of-type(5):before {
+    content: "생년월일";
+  }
+
+  .protector-user td:nth-of-type(6):before {
+    content: "주소";
+  }
+
+  .protector-user td:nth-of-type(7):before {
+    content: "대상자 관리";
+  }
+
+  /* 보호사 */
+  .caregiver-user td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .caregiver-user td:nth-of-type(2):before {
+    content: "사용자명";
+  }
+
+  .caregiver-user td:nth-of-type(3):before {
+    content: "사용자ID";
+  }
+
+  .caregiver-user td:nth-of-type(4):before {
+    content: "관리기관";
+  }
+
+  .caregiver-user td:nth-of-type(5):before {
+    content: "성별";
+  }
+
+  .caregiver-user td:nth-of-type(6):before {
+    content: "생년월일";
+  }
+
+  .caregiver-user td:nth-of-type(7):before {
+    content: "주소";
+  }
+
+  .caregiver-user td:nth-of-type(8):before {
+    content: "대상자 관리";
+  }
+
+  /* 병원 */
+  .common-user td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .common-user td:nth-of-type(2):before {
+    content: "사용자명";
+  }
+
+  .common-user td:nth-of-type(3):before {
+    content: "사용자ID";
+  }
+
+  .common-user td:nth-of-type(4):before {
+    content: "관리기관";
+  }
+
+  .common-user td:nth-of-type(5):before {
+    content: "성별";
+  }
+
+  .common-user td:nth-of-type(6):before {
+    content: "생년월일";
+  }
+
+  .common-user td:nth-of-type(7):before {
+    content: "주소";
+  }
+
+  /* 관리자 */
+  .management-user td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .management-user td:nth-of-type(2):before {
+    content: "사용자명";
+  }
+
+  .management-user td:nth-of-type(3):before {
+    content: "사용자ID";
+  }
+
+  .management-user td:nth-of-type(4):before {
+    content: "성별";
+  }
+
+  .management-user td:nth-of-type(5):before {
+    content: "생년월일";
+  }
+
+  .management-user td:nth-of-type(6):before {
+    content: "주소";
+  }
+
+  .management-user td:nth-of-type(7):before {
+    content: "관리";
+  }
+}
+
+/* 테블릿 세로 (해상도 768px ~ 1023px)*/
+@media all and (min-width:768px) and (max-width:1023px) {
+
+
+  /* 메인 */
+  .content-box:nth-child(3)>div {
+    display: flex;
+  }
+
+  .temp p {
+    font-size: 2rem;
+  }
+
+  .main-battery-title {
+    font-size: 1.4rem;
+    justify-content: flex-start;
+    padding-right: 1rem;
+  }
+
+  .battery::after {
+    content: " 남았습니다.";
+    font-size: 1.4rem;
+    margin-left: 0;
+  }
+
+  .battery p {
+    font-size: 2rem;
+    padding-left: 0;
+    padding-right: 1rem;
+  }
+
+  /* 공통 */
+
+  /* 시니어 정보 상세 조회 */
+  .senior-detail {
+    border: 0;
+  }
+
+  .senior-detail th {
+    display: block;
+    width: 34%;
+  }
+
+  .senior-detail td {
+    padding: 0;
+  }
+
+  .senior-detail td span {
+    text-align: center;
+  }
+
+
+  /* 검색창 */
+  .mobile-area-wrap {
+    display: block;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div {
+    width: 100%;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div label {
+    width: 30%;
+    font-size: 1.6rem;
+  }
+
+  .mobile-area-wrap div select {
+    width: 70%;
+  }
+
+  .area-wrap {
+    display: none;
+  }
+
+  .search-area {
+    padding: 1rem;
+  }
+
+  .detail-search table tr,
+  .detail-search table th,
+  .detail-search table td {
+    display: block;
+  }
+
+  .detail-search table th {
+    width: 100%;
+  }
+
+  .detail-search table td::before {
+    display: none;
+  }
+
+  .detail-search table td {
+    padding: 0;
+    border: 0;
+  }
+
+  .detail-search table tr {
+    border: 0;
+  }
+
+  .detail-search tbody tr:nth-of-type(3) td {
+    width: 50%;
+    display: flex;
+  }
+
+  /* 복약 수정 페이지 */
+  .modal-main table th {
+    width: 100%;
+    display: block;
+  }
+
+  .modal-main table td {
+    padding: 0.5rem 0;
+  }
+
+  .medicine-revise tr {
+    border: 0;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div,
+  .medicine-revise tr:nth-child(4)>td div,
+  .medicine-revise tr:nth-child(5)>td div {
+    width: 50%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div input,
+  .medicine-revise tr:nth-child(4)>td div input,
+  .medicine-revise tr:nth-child(5)>td div input {
+    width: 20%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div label,
+  .medicine-revise tr:nth-child(4)>td div label,
+  .medicine-revise tr:nth-child(5)>td div label {
+    width: 50%;
+  }
+
+
+
+
+}
+
+/* 모바일 가로, 테블릿 세로 (해상도 480px ~ 767px)*/
+@media all and (min-width:480px) and (max-width:767px) {
+
+  /* 권한관리 */
+  .authority-table-pc {
+    display: none;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1) {
+    display: flex;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1)>div {
+    font-size: 1.6rem;
+    width: 100%;
+  }
+
+  .authority-table-mobile select {
+    margin: 1rem 0;
+  }
+
+  .authority-table-mobile {
+    display: block;
+  }
+
+  .authority-table-mobile thead {
+    display: inline-table;
+    width: 100%;
+  }
+
+  .authority-table-mobile tr,
+  .authority-table-mobile td {
+    display: revert;
+  }
+
+  .authority-table-mobile tr {
+    width: 100%;
+  }
+
+  .authority-table-mobile tr:nth-child(2) th:nth-child(1) {
+    width: 50%;
+  }
+
+  .authority-table-mobile td {
+    padding: 1rem;
+    width: 10%;
+  }
+
+  .authority-table-mobile tbody td input {
+    margin-right: 1rem;
+  }
+
+  .authority-table-mobile tbody td label {}
+
+  .authority-table-mobile th {
+    width: 50%;
+  }
+
+  /* 사용자 관리 */
+  .tab-menu-mobile {
+    display: block;
+    padding: 1rem;
+    background-color: #ffffff;
+  }
+
+  .tab-menu {
+    display: none;
+  }
+
+  /* 공통 */
+  /* 보호자 메인 그리드 */
+  .pc {
+    display: none;
+  }
+
+  .mobile {
+    display: block;
+  }
+
+  .mobile .main-grid-guardian {
+    gap: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box {
+    padding: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box:nth-child(2)>div p {
+    font-size: 1.8rem;
+  }
+
+  .mobile .main-grid-guardian .content-box:nth-child(7)>div {
+    justify-content: flex-start;
+  }
+
+  .mobile .main-grid-guardian .combine-right-government,
+  .mobile .main-grid-guardian .combine-left {
+    grid-column: 1;
+  }
+
+  .mobile .main-grid-guardian .combine-bottom-government {
+    grid-column: 0;
+  }
+
+  /* button */
+
+  .btn-large {
+    font-size: 1.4rem;
+    width: 20%;
+  }
+
+
+
+  /* 로그인 */
+  .login-wrap h1 {
+    font-size: 1.8rem;
+    line-height: 1rem;
+  }
+
+  .login-wrap h3 {
+    margin: 20% 0 5% 0;
+    font-size: 2rem;
+    text-align: center;
+  }
+
+  .login-form .login-inner .content {
+    width: 80%;
+    margin: 1rem auto;
+  }
+
+  .container {
+    width: 100%;
+    margin: 0;
+    padding: 2rem;
+  }
+
+  .container .btn-wrap {
+    margin-top: 5rem;
+  }
+
+  .container button {
+    width: 30%;
+  }
+
+  /* 검색창 */
+  .mobile-area-wrap {
+    display: block;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div {
+    width: 100%;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div label {
+    width: 30%;
+    font-size: 1.6rem;
+  }
+
+  .mobile-area-wrap div select {
+    width: 70%;
+  }
+
+  .area-wrap {
+    display: none;
+  }
+
+  .search-area {
+    padding: 1rem;
+  }
+
+  .detail-search table tr,
+  .detail-search table th,
+  .detail-search table td {
+    display: block;
+  }
+
+  .detail-search table th {
+    width: 100%;
+  }
+
+  .detail-search table td::before {
+    display: none;
+  }
+
+  .detail-search table td {
+    padding: 0;
+    border: 0;
+  }
+
+  .detail-search table tr {
+    border: 0;
+  }
+
+  .detail-search tbody tr:nth-of-type(3) td {
+    width: 50%;
+    display: flex;
+  }
+
+  /* 시니어 정보 상세 조회 */
+  .senior-detail {
+    border: 0;
+  }
+
+  .senior-detail th {
+    display: block;
+    width: 34%;
+  }
+
+  .senior-detail td span {
+    text-align: center;
+  }
+
+
+  /* 시니어 등록창 */
+  .senior-insert th {
+    font-size: 1.4rem;
+  }
+
+
+  /* 복약 수정 페이지 */
+  .medicine-revise tr {
+    border: 0;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div,
+  .medicine-revise tr:nth-child(4)>td div,
+  .medicine-revise tr:nth-child(5)>td div {
+    width: 50%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div input,
+  .medicine-revise tr:nth-child(4)>td div input,
+  .medicine-revise tr:nth-child(5)>td div input {
+    width: 20%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div label,
+  .medicine-revise tr:nth-child(4)>td div label,
+  .medicine-revise tr:nth-child(5)>td div label {
+    width: 50%;
+  }
+
+  /* 복약 상세페이지 */
+  .medicine-detail-graph {
+    display: block;
+  }
+
+  /* 복약 수정 페이지 */
+  .modal-main table th {
+    width: 100%;
+    display: block;
+  }
+
+  .modal-main table td {
+    padding: 0.5rem 0;
+  }
+
+  /* 최근 일주일 댁내 온도(모달창) */
+  .temperature-modal td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .temperature-modal td:nth-of-type(2):before {
+    content: "날짜";
+  }
+
+  .temperature-modal td:nth-of-type(3):before {
+    content: "02:00";
+  }
+
+  .temperature-modal td:nth-of-type(4):before {
+    content: "10:00";
+  }
+
+  .temperature-modal td:nth-of-type(5):before {
+    content: "14:00";
+  }
+
+  .temperature-modal td:nth-of-type(6):before {
+    content: "23:00";
+  }
+
+
+
+  /* 방문 관리 상세 페이지 */
+  /* 방문 수정 페이지 */
+  .visit-revise th {
+    width: 40%;
+    font-size: 1.4rem;
+  }
+
+  .visit-revise tr:nth-child(3) td {
+    display: block;
+  }
+
+  .visit-revise tr:nth-child(3) td>div {
+    display: flex;
+    margin: 0.5rem 0;
+  }
+
+  /* 방문 등록 */
+  .user-list {
+    display: none;
+  }
+
+  .insert {
+    display: block;
+  }
+
+  .insert table tr:nth-child(6) td {
+    display: block;
+  }
+
+  .insert tr:nth-child(6) td>div {
+    display: flex;
+    margin: 0.5rem 0;
+  }
+
+  .insert tr:nth-child(6) td>div input {
+    width: 50%;
+  }
+
+  /* 장비조회 */
+
+  /* 장비 상세 조회 */
+
+  /* 장비등록 */
+
+  .equipment-insert tr:nth-child(5) td {
+    width: 28%;
+  }
+
+  .equipment-insert tr:nth-child(6) td {
+    width: 100%;
+  }
+
+  .equipment-insert tr:nth-child(5) td select {
+    display: flex;
+    justify-content: flex-start;
+    width: 100%;
+  }
+
+  .equipment-insert tr:nth-child(5) td input {
+    display: table;
+    width: 90%;
+  }
+
+  .equipment-insert tr:nth-child(6) td select {
+    display: flex;
+    justify-content: flex-start;
+    width: 100%;
+  }
+
+  /* 내정보수정 */
+  .join-inner {
+    width: 100%;
+  }
+
+}
+
+/* 모바일 가로, 테블릿 세로 (해상도 ~ 479px)*/
+@media all and (max-width:479px) {
+
+  /* 권한관리 */
+  .authority-table-pc {
+    display: none;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1) {
+    display: flex;
+  }
+
+  .authority-table-mobile thead tr:nth-child(1)>div {
+    font-size: 1.6rem;
+    width: 100%;
+  }
+
+  .authority-table-mobile select {
+    margin: 1rem 0;
+  }
+
+  .authority-table-mobile {
+    display: block;
+  }
+
+  .authority-table-mobile thead {
+    display: inline-table;
+    width: 100%;
+  }
+
+  .authority-table-mobile tr,
+  .authority-table-mobile td {
+    display: revert;
+  }
+
+  .authority-table-mobile tr {
+    width: 100%;
+  }
+
+  .authority-table-mobile tr:nth-child(2) th:nth-child(1) {
+    width: 50%;
+  }
+
+  .authority-table-mobile td {
+    padding: 1rem;
+    width: 10%;
+  }
+
+  .authority-table-mobile tbody td input {
+    margin-right: 1rem;
+  }
+
+  .authority-table-mobile tbody td label {}
+
+  .authority-table-mobile th {
+    width: 50%;
+  }
+
+  /* 사용자관리 */
+  .tab-menu-mobile {
+    display: block;
+    padding: 1rem;
+    background-color: #ffffff;
+  }
+
+  .tab-menu {
+    display: none;
+  }
+
+  .search-management {
+    justify-content: space-between;
+  }
+
+  .search-management select {
+    width: 22%;
+  }
+
+  .search-management input {
+    width: 30%;
+    margin-right: 1rem;
+  }
+
+  .search-management button {
+    width: 20%;
+  }
+
+  /* 공통 */
+  table td {
+    border: none;
+    position: relative;
+    border-bottom: 1px solid #eee;
+    font-size: 1.2rem;
+    padding-left: 10rem;
+  }
+
+  .header-flex {
+    display: flex;
+    justify-content: flex-start;
+  }
+
+  /* 보호자 메인 그리드 */
+  .pc {
+    display: none;
+  }
+
+  .mobile {
+    display: block;
+  }
+
+  .mobile .main-grid-guardian {
+    gap: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box {
+    padding: 0.5rem;
+  }
+
+  .mobile .main-grid-guardian .content-box:nth-child(2)>div p {
+    font-size: 1.8rem;
+  }
+
+  .mobile .main-grid-guardian .content-box:nth-child(7)>div {
+    justify-content: flex-start;
+  }
+
+  .mobile .main-grid-guardian {
+    grid-template-columns: 1fr;
+    grid-template-rows: none;
+  }
+
+  .mobile .main-grid-guardian .combine-right-government,
+  .mobile .main-grid-guardian .combine-left {
+    grid-column: 1;
+  }
+
+  .mobile .main-grid-guardian .combine-bottom-government {
+    grid-column: 0;
+  }
+
+  /* button */
+
+  .btn-large {
+    font-size: 1.4rem;
+    width: 20%;
+  }
+
+  /* 로그인 */
+  .login-wrap h1 {
+    font-size: 1.8rem;
+    line-height: 1rem;
+  }
+
+  .login-wrap h3 {
+    margin: 20% 0 5% 0;
+    font-size: 2rem;
+    text-align: center;
+  }
+
+  .login-form .login-inner .content {
+    width: 80%;
+    margin: 1rem auto;
+  }
+
+  .container {
+    width: 100%;
+    margin: 0;
+    padding: 2rem;
+  }
+
+  .container .btn-wrap {
+    margin-top: 5rem;
+  }
+
+  .container button {
+    width: 30%;
+  }
+
+  /* 메인 */
+  .temp p {
+    font-size: 2rem;
+  }
+
+  .main-battery-title {
+    font-size: 1.4rem;
+    justify-content: flex-start;
+    padding-right: 1rem;
+  }
+
+  .battery::after {
+    content: " 남았습니다.";
+    font-size: 1.4rem;
+    margin-left: 0;
+  }
+
+  .battery p {
+    font-size: 2rem;
+    padding-left: 0;
+    padding-right: 1rem;
+  }
+
+  #chartdiv1 {
+    height: 25vh;
+  }
+
+  .statistics li p:nth-of-type(1),
+  .statistics li p:nth-of-type(2) {
+    font-size: 1.4rem;
+  }
+
+  .weather-info {
+    width: 70%;
+    padding-right: 1rem;
+  }
+
+  .recent-visit {
+    border: 0;
+  }
+
+  .recent-visit td {
+    padding-left: 12rem;
+  }
+
+  .recent-visit td:nth-of-type(1) {
+    font-weight: bold;
+    padding: 0.5rem;
+  }
+
+  .recent-visit td:nth-of-type(1)::before {
+    content: "";
+  }
+
+  .recent-visit td:nth-of-type(2):before {
+    content: "방문목적";
+  }
+
+  .recent-visit td:nth-of-type(3):before {
+    content: "방문 상세 이유";
+  }
+
+
+  /* 검색창 */
+
+  .mobile-area-wrap {
+    display: block;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div {
+    width: 100%;
+    margin-top: 1rem;
+  }
+
+  .mobile-area-wrap div label {
+    width: 30%;
+    font-size: 1.6rem;
+  }
+
+  .mobile-area-wrap div select {
+    width: 70%;
+  }
+
+  .area-wrap {
+    display: none;
+  }
+
+  .search-area {
+    padding: 1rem;
+  }
+
+  .detail-search table tr,
+  .detail-search table th,
+  .detail-search table td {
+    display: block;
+  }
+
+  .detail-search table th {
+    width: 100%;
+    margin: 1rem 0;
+  }
+
+  .detail-search table td::before {
+    display: none;
+  }
+
+  .detail-search table tr {
+    border: 0;
+  }
+
+  .detail-search table td {
+    padding: 0;
+    border: 0;
+  }
+
+  .detail-search tbody tr:nth-of-type(3) td {
+    width: 50%;
+    display: flex;
+  }
+
+  .detail-search tbody tr:nth-of-type(3) th:nth-child(3) {
+    width: 100%;
+  }
+
+  /* 시니어 정보 상세 조회 */
+  .senior-detail th,
+  .senior-detail td {
+    display: block;
+  }
+
+  .senior-detail th {
+    font-size: 1.2rem;
+    width: 100%;
+  }
+
+  .senior-detail td {
+    width: 100%;
+    font-size: 1.2rem;
+  }
+
+  .senior-detail td span {
+    width: 100%;
+    font-size: 1.2rem;
+    text-align: center;
+  }
+
+  /* 시니어 등록창 */
+  .senior-insert {
+    display: grid;
+  }
+
+  .senior-insert th {
+    font-size: 1.4rem;
+    width: 50%;
+    padding: 1rem 10rem;
+  }
+
+  .senior-insert td {
+    display: list-item;
+    padding-top: 1rem;
+  }
+
+  .senior-insert select {
+    width: 100%;
+  }
+
+  .senior-insert input {
+    width: 100%;
+  }
+
+  .senior-insert tr:nth-child(2) .gender {
+    padding: 1rem 1rem;
+    display: flex;
+    flex: 0 0 25%;
+  }
+
+  .senior-insert tr:nth-child(2) .gender input {
+    width: 25%;
+  }
+
+  .senior-insert td::marker {
+    content: "";
+  }
+
+  /* 복약조회*/
+
+  /* 복약 상세페이지 */
+  .medicine-detail-graph {
+    display: block;
+  }
+
+  /* 복약 수정 페이지 */
+  .modal-main table th,
+  .modal-main table td {
+    display: block;
+  }
+
+  .modal-main table th {
+    width: 100%;
+  }
+
+  .modal-main table td {
+    padding: 0.5rem 0 0 12rem;
+  }
+
+  .medicine-revise tr {
+    border: 0;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div,
+  .medicine-revise tr:nth-child(4)>td div,
+  .medicine-revise tr:nth-child(5)>td div {
+    width: 50%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div input,
+  .medicine-revise tr:nth-child(4)>td div input,
+  .medicine-revise tr:nth-child(5)>td div input {
+    width: 20%;
+  }
+
+  .medicine-revise tr:nth-child(3)>td div label,
+  .medicine-revise tr:nth-child(4)>td div label,
+  .medicine-revise tr:nth-child(5)>td div label {
+    width: 50%;
+  }
+
+
+  /* 댁내 온도 조회 */
+
+
+  /* 최근 일주일 댁내 온도(모달창) */
+  .temperature-modal td:nth-of-type(1) {
+    font-weight: 900;
+    padding: 1rem;
+  }
+
+  .temperature-modal td:nth-of-type(2):before {
+    content: "날짜";
+  }
+
+  .temperature-modal td:nth-of-type(3):before {
+    content: "02:00";
+  }
+
+  .temperature-modal td:nth-of-type(4):before {
+    content: "10:00";
+  }
+
+  .temperature-modal td:nth-of-type(5):before {
+    content: "14:00";
+  }
+
+  .temperature-modal td:nth-of-type(6):before {
+    content: "23:00";
+  }
+
+  /* 방문 조회 */
+
+  /* 방문 관리 상세 페이지 */
+  .senior-detail tr:nth-of-type(6) td {
+    display: flex;
+    justify-content: center;
+  }
+
+  .senior-detail td {
+    padding: 0;
+  }
+
+  /* 방문 수정 페이지 */
+  .visit-revise th {
+    width: 40%;
+    font-size: 1.4rem;
+  }
+
+  .visit-revise tr:nth-child(3) td {
+    display: block;
+  }
+
+  .visit-revise tr:nth-child(3) td>div {
+    display: flex;
+    margin: 0.5rem 0;
+  }
+
+  /* 방문 등록 */
+  .user-list {
+    display: none;
+  }
+
+  .insert {
+    display: block;
+  }
+
+  .insert table tr:nth-child(6) td {
+    display: block;
+  }
+
+  .insert tr:nth-child(6) td>div {
+    display: flex;
+    margin: 0.5rem 0;
+  }
+
+  .insert tr:nth-child(6) td>div input {
+    width: 50%;
+  }
+
+  /* 장비조회 */
+
+  /* 장비 상세 조회 */
+  /* 장비등록창 */
+  .equipment-modal tbody td {
+    padding: 0.5rem;
+  }
+
+
+}(No newline at end of file)
 
client/resources/files/font/KoPubDotumBold_0.ttf (Binary) (added)
+++ client/resources/files/font/KoPubDotumBold_0.ttf
Binary file is not shown
 
client/resources/files/font/SCDream5.otf (Binary) (added)
+++ client/resources/files/font/SCDream5.otf
Binary file is not shown
 
client/resources/files/icon/weather_type/01d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/01d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/01n.png (Binary) (added)
+++ client/resources/files/icon/weather_type/01n.png
Binary file is not shown
 
client/resources/files/icon/weather_type/02d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/02d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/03d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/03d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/03n.png (Binary) (added)
+++ client/resources/files/icon/weather_type/03n.png
Binary file is not shown
 
client/resources/files/icon/weather_type/04d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/04d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/04n.png (Binary) (added)
+++ client/resources/files/icon/weather_type/04n.png
Binary file is not shown
 
client/resources/files/icon/weather_type/09d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/09d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/10d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/10d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/10n.png (Binary) (added)
+++ client/resources/files/icon/weather_type/10n.png
Binary file is not shown
 
client/resources/files/icon/weather_type/11d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/11d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/13d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/13d.png
Binary file is not shown
 
client/resources/files/icon/weather_type/50d.png (Binary) (added)
+++ client/resources/files/icon/weather_type/50d.png
Binary file is not shown
 
client/views/component/Button.jsx (added)
+++ client/views/component/Button.jsx
@@ -0,0 +1,7 @@
+import React from 'react'
+
+export default function Button({btnName,className,onClick}) {
+  return (
+    <button className={className} onClick={onClick}>{btnName}</button>
+  )
+}
 
client/views/component/ContentTitle.jsx (added)
+++ client/views/component/ContentTitle.jsx
@@ -0,0 +1,38 @@
+import React from 'react'
+import styled from 'styled-components'
+
+export default function ContentTitle({contentTitle}) {
+  return (
+    <ContentTitleStyled>{contentTitle}</ContentTitleStyled>
+  )
+}
+
+const ContentTitleStyled = styled.p`
+  position: relative;
+  width: 100%;
+  font-size: 1.6rem;
+  font-weight: bold;
+  margin-bottom: 4rem;
+  &::after {
+    content: "";
+    position: absolute;
+    left: 0;
+    bottom: -11px;
+    height: 1px;
+    width: 100%;
+    max-width: 100%;
+    background-color: #d1e4e3;
+  }  
+  &::before {
+    content: "";
+    position: absolute;
+    z-index: 10;
+    left: 0;
+    bottom: -15px;
+    height: 8px;
+    width: 1rem;
+    margin-right: 1rem;
+    background-color: #7D9D9C;
+  }
+  
+`(No newline at end of file)
 
client/views/component/DetailSearch.jsx (added)
+++ client/views/component/DetailSearch.jsx
@@ -0,0 +1,484 @@
+import { style } from "d3";
+import React, { useState } from "react";
+
+import Button from "./Button.jsx";
+
+const CATEGORY_LIST = [
+  { id: 0, data: "서울" },
+  { id: 1, data: "인천" },
+  { id: 2, data: "경기" },
+  { id: 3, data: "경북" },
+  { id: 4, data: "경남" },
+  { id: 5, data: "전북" },
+  { id: 6, data: "전남" },
+  { id: 7, data: "제주" },
+];
+const CATEGORY_LIST1 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "광현리" },
+  { id: 1, data: "금구리" },
+  { id: 2, data: "내량리" },
+  { id: 3, data: "대북리" },
+  { id: 4, data: "대흥리" },
+  { id: 5, data: "동부리" },
+  { id: 6, data: "무성리" },
+  { id: 7, data: "사직리" },
+  { id: 8, data: "삽령리" },
+  { id: 9, data: "상곡리" },
+  { id: 10, data: "서부리" },
+  { id: 11, data: "수서리" },
+  { id: 12, data: "오곡리" },
+  { id: 13, data: "외량리" },
+  { id: 14, data: "용대리" },
+  { id: 15, data: "정리" },
+  { id: 15, data: "하곡리" },
+];
+const CATEGORY_LIST2 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "사리리" },
+  { id: 1, data: "보현리" },
+  { id: 2, data: "복성리" },
+  { id: 3, data: "위성리" },
+  { id: 4, data: "달산리" },
+  { id: 5, data: "송원리" },
+  { id: 6, data: "신계리" },
+  { id: 7, data: "도산리" },
+  { id: 8, data: "서경리" },
+  { id: 9, data: "평호리" },
+  { id: 10, data: "산법리" },
+  { id: 11, data: "내의리" },
+  { id: 12, data: "봉황리" },
+  { id: 13, data: "봉소리" },
+];
+const CATEGORY_LIST3 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "노행리" },
+  { id: 1, data: "오천리" },
+  { id: 2, data: "성리" },
+  { id: 3, data: "병수리" },
+  { id: 4, data: "불로리" },
+  { id: 5, data: "내리리" },
+  { id: 6, data: "중구리" },
+  { id: 7, data: "거매리" },
+  { id: 8, data: "장군리" },
+  { id: 9, data: "장기리" },
+  { id: 10, data: "금매리" },
+  { id: 11, data: "화계리" },
+  { id: 12, data: "마시리" },
+  { id: 13, data: "매곡리" },
+  { id: 14, data: "고곡리" },
+];
+const CATEGORY_LIST4 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "창평리" },
+  { id: 1, data: "가호리" },
+  { id: 2, data: "춘산리" },
+  { id: 3, data: "대율리" },
+  { id: 4, data: "동산리" },
+  { id: 5, data: "남산리" },
+  { id: 6, data: "명산리" },
+  { id: 7, data: "신화리" },
+];
+
+const CATEGORY_LIST5 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "나호리" },
+  { id: 1, data: "이화리" },
+  { id: 2, data: "두북리" },
+  { id: 3, data: "선곡리" },
+  { id: 4, data: "미성리" },
+  { id: 5, data: "모산리" },
+  { id: 6, data: "문덕리" },
+  { id: 7, data: "달산리" },
+  { id: 8, data: "봉산리" },
+];
+
+const CATEGORY_LIST6 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "읍내리" },
+  { id: 1, data: "수북리" },
+  { id: 2, data: "수서리" },
+  { id: 3, data: "이지리" },
+  { id: 4, data: "파전리" },
+  { id: 5, data: "신덕리" },
+  { id: 6, data: "지호리" },
+  { id: 7, data: "연계리" },
+  { id: 8, data: "매성리" },
+  { id: 9, data: "원산리" },
+  { id: 10, data: "금양리" },
+];
+const CATEGORY_LIST7 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "백학리" },
+  { id: 1, data: "삼산리" },
+  { id: 2, data: "봉림리" },
+  { id: 3, data: "무암리" },
+  { id: 4, data: "운산리" },
+  { id: 5, data: "화본리" },
+  { id: 6, data: "화전리" },
+];
+
+const CATEGORY_LIST8 = [
+  { id: 0, data: "전체" },
+  { id: 0, data: "화수리" },
+  { id: 1, data: "화북리" },
+  { id: 2, data: "괴산리" },
+  { id: 3, data: "학성리" },
+  { id: 4, data: "장곡리" },
+  { id: 5, data: "인곡리" },
+  { id: 6, data: "양지리" },
+  { id: 7, data: "낙전리" },
+  { id: 8, data: "가암리" },
+  { id: 9, data: "석산리" },
+  { id: 10, data: "학암리" },
+];
+
+const locations = [
+  {
+    id: "no1",
+    label: "군위읍",
+    list: CATEGORY_LIST1,
+  },
+  {
+    id: "no2",
+    label: "소보면",
+    list: CATEGORY_LIST2,
+  },
+];
+
+export default function DetailSearch({}) {
+  const [checkedList, setCheckedList] = useState([]);
+  const [selectArea, setSelectArea] = React.useState();
+
+  const onCheckedElement = (checked, item) => {
+    if (checked) {
+      setCheckedList([...checkedList, item]);
+    } else if (!checked) {
+      setCheckedList(checkedList.filter((el) => el !== item));
+    }
+  };
+
+  const onRemove = (item) => {
+    setCheckedList(checkedList.filter((el) => el !== item));
+  };
+
+  const categories = locations.map((location) => (
+    <li>
+      <label htmlFor={location.id}>{location.label}</label>
+      <input type="radio" name="location" id={location.id} />
+      <div className="area-list flex">
+        <ul className="flex">
+          {location.list.map((item) => (
+            <li className="flex-start">
+              <input
+                type="checkbox"
+                className="checkCon"
+                id={item.id}
+                value={item.data}
+                onChange={(e) => {
+                  onCheckedElement(e.target.checked, e.target.value);
+                }}
+                checked={checkedList.includes(item.data) ? true : false}
+              />
+              <label htmlFor={item.id}>{item.data}</label>
+            </li>
+          ))}
+        </ul>
+      </div>
+    </li>
+  ));
+
+  return (
+    <div className="search-group">
+      <div className="search-area">
+        <div className="detail-search">
+          <table>
+            <tbody>
+              <tr>
+                <th>검색</th>
+                <td colSpan={3}>
+                  <div className="flex">
+                    <select name="" id="">
+                      <option value="">사용자관리번호</option>
+                      <option value="">사용자 이름</option>
+                      <option value="">관리기관명</option>
+                    </select>
+                    <input type="text" />
+                  </div>
+                </td>
+              </tr>
+              <tr>
+                <th>지역</th>
+                <td>
+                  <div className="flex-start">
+                    <select name="" id="">
+                      <option>전체</option>
+                      <option>군위읍</option>
+                      <option>소보면</option>
+                      <option>효령면</option>
+                      <option>부계면</option>
+                      <option>우보면</option>
+                      <option>의흥면</option>
+                      <option>산성면</option>
+                      <option>삼국유사면</option>
+                    </select>
+                  </div>
+                </td>
+              </tr>
+            </tbody>
+          </table>
+        </div>
+        {/* <hr />
+        <details>
+          <summary>지역별 상세 조회</summary>
+          <div className="mobile-area-wrap">
+            <div className="flex">
+              <label>지역 선택</label>
+              <select>
+                <option>전체</option>
+                <option>군위읍</option>
+                <option>소보면</option>
+                <option>효령면</option>
+                <option>부계면</option>
+                <option>우보면</option>
+                <option>의흥면</option>
+                <option>산성면</option>
+                <option>삼국유사면</option>
+              </select>
+            </div>
+            <div className="flex">
+              <label>세부 지역 선택</label>
+              <select>
+                <option>전체</option>
+                <option>군위읍</option>
+                <option>소보면</option>
+                <option>효령면</option>
+                <option>부계면</option>
+                <option>우보면</option>
+                <option>의흥면</option>
+                <option>산성면</option>
+                <option>삼국유사면</option>
+              </select>
+            </div>
+          </div>
+          <div className="area-wrap">
+            <div>
+              <ul className="area flex">
+                <li>
+                  <label htmlFor="all">전체</label>
+                  <input type="checkbox" id="all" />
+                  <div className="area-list">
+                    <ul className="flex"></ul>
+                  </div>
+                </li>
+                {categories}
+                <li>
+                  <label htmlFor="no3">효령면</label>
+                  <input type="checkbox" id="no3" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST3.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}> {item.data} </label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+                <li>
+                  <label htmlFor="no4">부계면</label>
+                  <input type="checkbox" id="no4" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST4.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}>{item.data}</label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+                <li>
+                  <label htmlFor="no5">우보면</label>
+                  <input type="checkbox" id="no5" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST5.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}>{item.data}</label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+                <li>
+                  <label htmlFor="no6">의흥면</label>
+                  <input type="checkbox" id="no6" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST6.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}>{item.data}</label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+                <li>
+                  <label htmlFor="no7">산성면</label>
+                  <input type="checkbox" id="no7" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST7.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}>{item.data}</label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+                <li>
+                  <label htmlFor="no8">삼국유사면</label>
+                  <input type="checkbox" id="no8" />
+                  <div className="area-list flex">
+                    <ul className="flex-start">
+                      {CATEGORY_LIST8.map((item) => {
+                        return (
+                          <li className="flex">
+                            <input
+                              type="checkbox"
+                              className="checkCon"
+                              id={item.id}
+                              value={item.data}
+                              onChange={(e) => {
+                                onCheckedElement(
+                                  e.target.checked,
+                                  e.target.value
+                                );
+                              }}
+                              checked={
+                                checkedList.includes(item.data) ? true : false
+                              }
+                            />
+                            <label htmlFor={item.id}>{item.data}</label>
+                          </li>
+                        );
+                      })}
+                    </ul>
+                  </div>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </details> */}
+      </div>
+      <div className="select-area">
+        <div>
+          <p>{selectArea}</p>
+        </div>
+        <div>
+          <ul>
+            {checkedList.map((item) => {
+              return (
+                <Button
+                  className="item"
+                  btnName={item}
+                  onClick={() => onRemove(item)}
+                ></Button>
+              );
+            })}
+            <div className="btn-box flex-center">
+              <Button className={"btn-large gray-btn"} btnName={"초기화"} />
+              <Button className={"btn-large green-btn"} btnName={"조회"} />
+            </div>
+          </ul>
+        </div>
+      </div>
+    </div>
+  );
+}
 
client/views/component/Modal.jsx (added)
+++ client/views/component/Modal.jsx
@@ -0,0 +1,18 @@
+import React from "react";
+import Button from "./Button.jsx";
+
+export default function Modal({ children, open, close,header }) {
+  return (
+    <div class={open ? "openModal modal" : "modal"}>
+      {open ? (
+        <div className="modal-inner">
+          <div className="modal-header flex">
+            {header}
+            <Button className={"close"} onClick={close} btnName={"X"} />
+          </div>
+          <div className="modal-main">{children}</div>
+        </div>
+      ) : null}
+    </div>
+  );
+}
 
client/views/component/Search.jsx (added)
+++ client/views/component/Search.jsx
@@ -0,0 +1,49 @@
+import React from "react";
+import Button from "./Button.jsx";
+
+export default function Search() {
+  return (
+    <div className="search-group search-area">
+      <div className="flex search-line">
+        <div className="flex-start flex50">
+          <label className="flex15" htmlFor="name">
+            이름검색
+          </label>
+          <input
+            type="text"
+            name="name"
+            placeholder="조회할려는 이름을 입력해주세요."
+            autocomplete="off"
+            id="name"
+          />
+        </div>
+        <div className="flex-start flex45">
+          <label className="flex15" htmlFor="birth">
+            생년월일
+          </label>
+          <div className="info flex85" id="info__birth">
+            <select className="box" id="birth-year">
+              <option disabled selected>
+                출생 연도
+              </option>
+            </select>
+            <select className="box" id="birth-month">
+              <option disabled selected>
+                월
+              </option>
+            </select>
+            <select className="box" id="birth-day">
+              <option disabled selected>
+                일
+              </option>
+            </select>
+          </div>
+        </div>
+      </div>
+      <div className="btn-box flex-center">
+        <Button className={"btn-large gray-btn"} btnName={"초기화"} />
+        <Button className={"btn-large green-btn"} btnName={"조회"} />
+      </div>
+    </div>
+  );
+}
 
client/views/component/SubTitle.jsx (added)
+++ client/views/component/SubTitle.jsx
@@ -0,0 +1,24 @@
+import styled from "styled-components";
+import React from "react";
+
+export default function Title({subtitle, explanation, className,color}) {
+  return (
+      <div className={className} color={color}>
+        <TitleStyle>{subtitle}</TitleStyle>
+        <Explanation>{explanation}</Explanation>
+      </div>
+  );
+}
+
+const TitleStyle = styled.h4`
+  font-size: 1.6rem;
+  font-weight: bold;
+  padding: 0.5rem;
+  margin-right: 1rem;
+`;
+const Explanation = styled.p`
+  font-size: 1.4rem;
+  padding: 0.5rem;
+  color: ${(color) => color ? color : "#eeeeee"};
+  border-left: 2px solid #cccccc;
+`;
 
client/views/component/Table.jsx (added)
+++ client/views/component/Table.jsx
@@ -0,0 +1,56 @@
+import React from "react";
+// import styled from "styled-components";
+
+export default function Table({ head, contents, contentKey, onClick, className}) {
+  return (
+    <table className={className}>
+      <thead>
+        <tr>
+          {head.map((i) => {
+            return <th>{i}</th>;
+          })}
+        </tr>
+      </thead>
+      <tbody>
+        {contents.map((i, index) => {
+          return (
+            <tr key={index}>
+              {contentKey.map((kes) => {
+                return <td onClick={onClick}>{i[kes]}</td>;
+              })}
+            </tr>
+          );
+        })}
+      </tbody>
+    </table>
+  );
+}
+
+
+// const TableStyled = styled.table`
+//   border-top: 2px solid #2d303f;
+//   border-bottom: 1px solid #e4dccf;
+//   /* &:hover {
+//     background-color: #e4dccf;
+//   } */
+// `;
+
+// const TrStyled = styled.tr`
+//   cursor: pointer;
+// `;
+
+// const ThStyled = styled.th`
+//   padding: 1rem 0;
+//   font-weight: bold;
+//   background-color: #f0ebe3;
+//   font-size: 1.4rem;
+//   text-align: center;
+// `;
+
+// const TdStyled = styled.td`
+//   padding: 1rem 0;
+//   border-top: 1px solid #ececec;
+//   text-align: center;
+//   font-size: 1.3rem;
+//   background-color: #ffffff;
+// `;
 
client/views/component/Tabletitle.jsx (added)
+++ client/views/component/Tabletitle.jsx
@@ -0,0 +1,27 @@
+import React from 'react'
+import styled from 'styled-components'
+
+export default function TableTitle({tableTitle}) {
+  return (
+    <TableTitleStyled>{tableTitle}</TableTitleStyled>
+  )
+}
+
+const TableTitleStyled = styled.p`
+  width: 100%;
+  font-size: 1.6rem;
+  font-weight: bold;
+  margin-bottom: 2rem;
+  padding-bottom: 1rem;
+  text-align: center;
+  background-image:
+      linear-gradient(to right, #7D9D9C, #F0EBE3);
+  background-size: 13% 15%;
+  background-repeat: no-repeat;
+  background-position: center bottom;
+  &::before {
+    content: "김복남";
+    font-size: 1.8rem;
+  }  
+  
+`(No newline at end of file)
 
client/views/component/Title.jsx (added)
+++ client/views/component/Title.jsx
@@ -0,0 +1,25 @@
+import styled from "styled-components";
+import React from "react";
+
+export default function Title({ title, explanation }) {
+  return (
+    <div className="margin-bottom">
+      <TitleStyle className="title">{title}</TitleStyle>
+      <Explanation>{explanation}</Explanation>
+    </div>
+  );
+}
+
+const TitleStyle = styled.h4`
+  font-size: 1.6rem;
+  font-weight: bold;
+  padding: 0.5rem;
+  margin-right: 1rem;
+`;
+
+const Explanation = styled.p`
+  font-size: 1.4rem;
+  padding: 0.5rem;
+  color: #cccccc;
+  border-left: 2px solid #cccccc;
+`;
 
client/views/component/ToggleButton.jsx (added)
+++ client/views/component/ToggleButton.jsx
@@ -0,0 +1,29 @@
+import * as React from "react";
+import ToggleButton from "@mui/material/ToggleButton";
+import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
+
+export default function ColorToggleButton({
+  btnName1,
+  btnName2,
+  className,
+}) {
+  const [alignment, setAlignment] = React.useState(btnName1);
+
+  const handleChange = (event, newAlignment) => {
+    setAlignment(newAlignment);
+  };
+
+  return (
+    <ToggleButtonGroup
+      color="primary"
+      value={alignment}
+      exclusive
+      onChange={handleChange}
+      aria-label="Platform"
+      className={className}
+    >
+      <ToggleButton value={btnName1}>{btnName1}</ToggleButton>
+      <ToggleButton value={btnName2}>{btnName2}</ToggleButton>
+    </ToggleButtonGroup>
+  );
+}
 
client/views/component/chart/Chart.jsx (added)
+++ client/views/component/chart/Chart.jsx
@@ -0,0 +1,120 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class Chart extends Component {
+  componentDidMount() {
+    let root5 = am5.Root.new("chart");
+
+
+    root5._logo.dispose();
+// Set themes
+// https://www.amcharts.com/docs/v5/concepts/themes/
+root5.setThemes([
+  am5themes_Animated.new(root5)
+]);
+
+
+// Create chart
+// https://www.amcharts.com/docs/v5/charts/xy-chart/
+let chart = root5.container.children.push(am5xy.XYChart.new(root5, {
+  panX: true,
+  panY: true,
+  wheelX: "panX",
+  wheelY: "zoomX",
+  pinchZoomX:true
+}));
+
+// Add cursor
+// https://www.amcharts.com/docs/v5/charts/xy-chart/cursor/
+let cursor = chart.set("cursor", am5xy.XYCursor.new(root5, {}));
+cursor.lineY.set("visible", false);
+
+
+// Create axes
+// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+let xRenderer = am5xy.AxisRendererX.new(root5, { minGridDistance: 30 });
+xRenderer.labels.template.setAll({
+  rotation: -90,
+  centerY: am5.p50,
+  centerX: am5.p100,
+  paddingRight: 15
+});
+
+let xAxis = chart.xAxes.push(am5xy.CategoryAxis.new(root5, {
+  maxDeviation: 0.3,
+  categoryField: "country",
+  renderer: xRenderer,
+  tooltip: am5.Tooltip.new(root5, {})
+}));
+
+let yAxis = chart.yAxes.push(am5xy.ValueAxis.new(root5, {
+  maxDeviation: 0.3,
+  renderer: am5xy.AxisRendererY.new(root5, {})
+}));
+
+
+// Create series
+// https://www.amcharts.com/docs/v5/charts/xy-chart/series/
+let series = chart.series.push(am5xy.ColumnSeries.new(root5, {
+  name: "Series 1",
+  xAxis: xAxis,
+  yAxis: yAxis,
+  valueYField: "value",
+  sequencedInterpolation: true,
+  categoryXField: "country",
+  tooltip: am5.Tooltip.new(root5, {
+    labelText:"{valueY}"
+  })
+}));
+
+series.columns.template.setAll({ cornerRadiusTL: 5, cornerRadiusTR: 5 });
+series.columns.template.adapters.add("fill", function(fill, target) {
+  return chart.get("colors").getIndex(series.columns.indexOf(target));
+});
+
+series.columns.template.adapters.add("stroke", function(stroke, target) {
+  return chart.get("colors").getIndex(series.columns.indexOf(target));
+});
+
+
+// Set data
+let data = [{
+  country: "1주",
+  value: 80
+}, {
+  country: "2주",
+  value: 80
+}, {
+  country: "3주",
+  value: 70
+}, {
+  country: "4주",
+  value: 80
+}];
+
+xAxis.data.setAll(data);
+series.data.setAll(data);
+
+
+// Make stuff animate on load
+// https://www.amcharts.com/docs/v5/concepts/animations/
+series.appear(1000);
+chart.appear(1000, 100);
+
+  }
+
+  componentWillUnmount() {
+    if (this.root5) {
+      this.root5.dispose();
+    }
+  }
+
+  render() {
+    return <div id="chart" style={{ width: "100%", height: "90%" }}></div>;
+  }
+}
+
+
+export default Chart;
 
client/views/component/chart/Chart1.jsx (added)
+++ client/views/component/chart/Chart1.jsx
@@ -0,0 +1,158 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class Chart1 extends Component {
+  componentDidMount() {
+    let root1 = am5.Root.new("chartdiv1");
+
+    root1._logo.dispose();
+    root1.setThemes([am5themes_Animated.new(root1)]);
+
+    let chart = root1.container.children.push(
+      am5xy.XYChart.new(root1, {
+        panX: false,
+        panY: false,
+        wheelX: "panX",
+        wheelY: "zoomX",
+        layout: root1.verticalLayout,
+      })
+    );
+
+    // Define data
+    let data = [
+      {
+        date: "12/16",
+        moring: 1,
+        evening: 1,
+        night: 1,
+      },
+      {
+        date: "12/17",
+        moring: 0,
+        evening: 1,
+        night: 0,
+      },
+      {
+        date: "12/18",
+        moring: 1,
+        evening: 0,
+        night: 1,
+      },
+      {
+        date: "12/19",
+        moring: 1,
+        evening: 1,
+        night: 1,
+      },
+      {
+        date: "12/20",
+        moring: 0,
+        evening: 0,
+        night: 0,
+      },
+      {
+        date: "12/21",
+        moring: 0,
+        evening: 0,
+        night: 0,
+      },
+      {
+        date: "12/22",
+        moring: 0,
+        evening: 0,
+        night: 0,
+      },
+    ];
+
+    // Create Y-axis
+    let xAxis = chart.xAxes.push(
+      am5xy.CategoryAxis.new(root1, {
+        categoryField: "date",
+        renderer: am5xy.AxisRendererX.new(root1, {}),
+        tooltip: am5.Tooltip.new(root1, {}),
+      })
+    );
+
+    // Create X-Axis
+    xAxis.data.setAll(data);
+
+    let yAxis = chart.yAxes.push(
+      am5xy.ValueAxis.new(root1, {
+        min: 0,
+        renderer: am5xy.AxisRendererY.new(root1, {}),
+      })
+    );
+
+    let legend = chart.children.push(
+      am5.Legend.new(root1, {
+        centerX: am5.p50,
+        x: am5.p50,
+      })
+    );
+
+    function makeSeries(name, fieldName) {
+      let series = chart.series.push(
+        am5xy.ColumnSeries.new(root1, {
+          name: name,
+          stacked: true,
+          xAxis: xAxis,
+          yAxis: yAxis,
+          valueYField: fieldName,
+          categoryXField: "date",
+        })
+      );
+
+      series.columns.template.setAll({
+        tooltipText: "{name}, {categoryX}: {valueY}",
+        tooltipY: am5.percent(10),
+      });
+      series.data.setAll(data);
+
+      series.appear();
+
+      series.bullets.push(function () {
+        return am5.Bullet.new(root1, {
+          sprite: am5.Label.new(root1, {
+            text: "{valueY}",
+            fill: root1.interfaceColors.get("alternativeText"),
+            centerY: am5.p50,
+            centerX: am5.p50,
+            populateText: true,
+          }),
+        });
+      });
+
+      legend.data.push(series);
+    }
+
+    makeSeries("아침", "moring");
+    makeSeries("점심", "evening");
+    makeSeries("저녁", "night");
+
+    // Make stuff animate on load
+    // https://www.amcharts.com/docs/v5/concepts/animations/
+    chart.appear(1000, 100);
+
+    // Add cursor
+    chart.set("cursor", am5xy.XYCursor.new(root1, {}));
+
+    this.root1 = root1;
+  }
+
+  componentWillUnmount() {
+    if (this.root1) {
+      this.root1.dispose();
+    }
+  }
+
+  render() {
+    return (
+      <div id="chartdiv1" style={{ width: "100%", height:"17vh"}}></div>
+    );
+  }
+}
+
+export default Chart1;
+
 
client/views/component/chart/Chart2.jsx (added)
+++ client/views/component/chart/Chart2.jsx
@@ -0,0 +1,139 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class Chart2 extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("Chart2");
+
+    root._logo.dispose();
+    // Set themes
+    // https://www.amcharts.com/docs/v5/concepts/themes/
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/
+    let chart = root.container.children.push(
+      am5xy.XYChart.new(root, {
+        panX: true,
+        panY: true,
+        wheelX: "panX",
+        wheelY: "zoomX",
+        pinchZoomX: true,
+      })
+    );
+
+    chart.get("colors").set("step", 3);
+
+    // Add cursor
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/cursor/
+    let cursor = chart.set("cursor", am5xy.XYCursor.new(root, {}));
+    cursor.lineY.set("visible", false);
+
+    // Create axes
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+    let xAxis = chart.xAxes.push(
+      am5xy.DateAxis.new(root, {
+        maxDeviation: 0.3,
+        baseInterval: {
+          timeUnit: "day",
+          count: 1,
+        },
+        renderer: am5xy.AxisRendererX.new(root, {}),
+        tooltip: am5.Tooltip.new(root, {}),
+      })
+    );
+
+    let yAxis = chart.yAxes.push(
+      am5xy.ValueAxis.new(root, {
+        maxDeviation: 0.3,
+        renderer: am5xy.AxisRendererY.new(root, {}),
+      })
+    );
+
+    // Create series
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/series/
+    let series = chart.series.push(
+      am5xy.LineSeries.new(root, {
+        name: "Series 1",
+        xAxis: xAxis,
+        yAxis: yAxis,
+        valueYField: "value",
+        valueXField: "date",
+        tooltip: am5.Tooltip.new(root, {
+          labelText: "{valueY}",
+        }),
+      })
+    );
+    series.strokes.template.setAll({
+      strokeWidth: 2,
+      strokeDasharray: [3, 3],
+    });
+
+    // Set data
+    let data = [
+      {
+        date: new Date(2022, 8, 1).getTime(),
+        value: 0,
+      },
+      {
+        date: new Date(2022, 8, 2).getTime(),
+        value: 1,
+      },
+      {
+        date: new Date(2022, 8, 3).getTime(),
+        value: 1,
+      },
+      {
+        date: new Date(2022, 8, 4).getTime(),
+        value: 2,
+      },
+      {
+        date: new Date(2022, 8, 5).getTime(),
+        value: 3,
+      },
+      {
+        date: new Date(2022, 8, 6).getTime(),
+        value: 3,
+      },
+      {
+        date: new Date(2022, 8, 7).getTime(),
+        value: 7,
+      },
+      {
+        date: new Date(2022, 8, 8).getTime(),
+        value: 7,
+      },
+      {
+        date: new Date(2022, 8, 9).getTime(),
+        value: 8,
+      },
+      {
+        date: new Date(2022, 8, 10).getTime(),
+        value: 8,
+      },
+    ];
+
+    series.data.setAll(data);
+
+    // Make stuff animate on load
+    // https://www.amcharts.com/docs/v5/concepts/animations/
+    series.appear(1000);
+    chart.appear(1000, 100);
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="Chart2" style={{ width: "100%", height: "15vh" }}></div>;
+  }
+}
+
+export default Chart2;
 
client/views/component/chart/Chart3.jsx (added)
+++ client/views/component/chart/Chart3.jsx
@@ -0,0 +1,119 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class Chart3 extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("chart3");
+
+
+    root._logo.dispose();
+// Set themes
+// https://www.amcharts.com/docs/v5/concepts/themes/
+root.setThemes([
+  am5themes_Animated.new(root)
+]);
+
+
+// Create chart
+// https://www.amcharts.com/docs/v5/charts/xy-chart/
+let chart = root.container.children.push(am5xy.XYChart.new(root, {
+  panX: true,
+  panY: true,
+  wheelX: "panX",
+  wheelY: "zoomX",
+  pinchZoomX:true
+}));
+
+// Add cursor
+// https://www.amcharts.com/docs/v5/charts/xy-chart/cursor/
+let cursor = chart.set("cursor", am5xy.XYCursor.new(root, {}));
+cursor.lineY.set("visible", false);
+
+
+// Create axes
+// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+let xRenderer = am5xy.AxisRendererX.new(root, { minGridDistance: 30 });
+xRenderer.labels.template.setAll({
+  rotation: -90,
+  centerY: am5.p50,
+  centerX: am5.p100,
+  paddingRight: 15
+});
+
+let xAxis = chart.xAxes.push(am5xy.CategoryAxis.new(root, {
+  maxDeviation: 0.3,
+  categoryField: "country",
+  renderer: xRenderer,
+  tooltip: am5.Tooltip.new(root, {})
+}));
+
+let yAxis = chart.yAxes.push(am5xy.ValueAxis.new(root, {
+  maxDeviation: 0.3,
+  renderer: am5xy.AxisRendererY.new(root, {})
+}));
+
+
+// Create series
+// https://www.amcharts.com/docs/v5/charts/xy-chart/series/
+let series = chart.series.push(am5xy.ColumnSeries.new(root, {
+  name: "Series 1",
+  xAxis: xAxis,
+  yAxis: yAxis,
+  valueYField: "value",
+  sequencedInterpolation: true,
+  categoryXField: "country",
+  tooltip: am5.Tooltip.new(root, {
+    labelText:"{valueY}"
+  })
+}));
+
+series.columns.template.setAll({ cornerRadiusTL: 5, cornerRadiusTR: 5 });
+series.columns.template.adapters.add("fill", function(fill, target) {
+  return chart.get("colors").getIndex(series.columns.indexOf(target));
+});
+
+series.columns.template.adapters.add("stroke", function(stroke, target) {
+  return chart.get("colors").getIndex(series.columns.indexOf(target));
+});
+
+
+// Set data
+let data = [{
+  country: "60대",
+  value: 80
+}, {
+  country: "70대",
+  value: 80
+}, {
+  country: "80대",
+  value: 70
+}, {
+  country: "90대",
+  value: 65
+}];
+
+xAxis.data.setAll(data);
+series.data.setAll(data);
+
+
+// Make stuff animate on load
+// https://www.amcharts.com/docs/v5/concepts/animations/
+series.appear(1000);
+chart.appear(1000, 100);
+
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="chart3" style={{ width: "100%", height: "100%" }}></div>;
+  }
+}
+
+export default Chart3;
 
client/views/component/chart/ClusteredColumnChart.jsx (added)
+++ client/views/component/chart/ClusteredColumnChart.jsx
@@ -0,0 +1,152 @@
+import React,{ Component }  from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+export default class ClusteredColumnChart extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("chartdiv");
+    root._logo.dispose();
+    // Set themes
+    // https://www.amcharts.com/docs/v5/concepts/themes/
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/
+    let chart = root.container.children.push(
+      am5xy.XYChart.new(root, {
+        panX: false,
+        panY: false,
+        wheelX: "panX",
+        wheelY: "zoomX",
+        layout: root.verticalLayout,
+      })
+    );
+
+    // Add legend
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/legend-xy-series/
+    let legend = chart.children.push(
+      am5.Legend.new(root, {
+        centerX: am5.p50,
+        x: am5.p50,
+      })
+    );
+
+    let data = [
+      {
+        date: "2022.12.23",
+        lowest: 5,
+        highest: 18,
+      },
+      {
+        date: "2022.12.24",
+        lowest: 18,
+        highest: 26,
+      },
+      {
+        date: "2022.12.25",
+        lowest: 10,
+        highest: 29,
+      },
+      {
+        date: "2022.12.26",
+        lowest: 18,
+        highest: 26,
+      },
+      {
+        date: "2022.12.27",
+        lowest: 18,
+        highest: 26,
+      },
+      {
+        date: "2022.12.28",
+        lowest: 18,
+        highest: 26,
+      },
+      {
+        date: "2022.12.29",
+        lowest: 18,
+        highest: 26,
+      },
+    ];
+
+    // Create axes
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+    let xAxis = chart.xAxes.push(
+      am5xy.CategoryAxis.new(root, {
+        categoryField: "date",
+        renderer: am5xy.AxisRendererX.new(root, {
+          cellStartLocation: 0.1,
+          cellEndLocation: 0.9,
+        }),
+        tooltip: am5.Tooltip.new(root, {}),
+      })
+    );
+
+    xAxis.data.setAll(data);
+
+    let yAxis = chart.yAxes.push(
+      am5xy.ValueAxis.new(root, {
+        renderer: am5xy.AxisRendererY.new(root, {}),
+      })
+    );
+
+    // Add series
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/series/
+    function makeSeries(name, fieldName) {
+      let series = chart.series.push(
+        am5xy.ColumnSeries.new(root, {
+          name: name,
+          xAxis: xAxis,
+          yAxis: yAxis,
+          valueYField: fieldName,
+          categoryXField: "date",
+        })
+      );
+
+      series.columns.template.setAll({
+        tooltipText: "{name}, {categoryX}:{valueY}",
+        width: am5.percent(90),
+        tooltipY: 0,
+      });
+
+      series.data.setAll(data);
+
+      // Make stuff animate on load
+      // https://www.amcharts.com/docs/v5/concepts/animations/
+      series.appear();
+
+      series.bullets.push(function () {
+        return am5.Bullet.new(root, {
+          locationY: 0,
+          sprite: am5.Label.new(root, {
+            text: "{valueY}",
+            fill: root.interfaceColors.get("alternativeText"),
+            centerY: 0,
+            centerX: am5.p50,
+            populateText: true,
+          }),
+        });
+      });
+
+      legend.data.push(series);
+    }
+
+    makeSeries("최저온도", "lowest");
+    makeSeries("최고온도", "highest");
+
+    // Make stuff animate on load
+    // https://www.amcharts.com/docs/v5/concepts/animations/
+    chart.appear(1000, 100);
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="chartdiv" style={{ width: "100%", height: "22vh" }}></div>;
+  }
+}
 
client/views/component/chart/Donut1.jsx (added)
+++ client/views/component/chart/Donut1.jsx
@@ -0,0 +1,74 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+import * as am5percent from "@amcharts/amcharts5/percent";
+
+class Donut1 extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("Donut1");
+
+    root._logo.dispose();
+    // Set themes
+    // https://www.amcharts.com/docs/v5/concepts/themes/
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/
+    let chart = root.container.children.push(
+      am5percent.PieChart.new(root, {
+        layout: root.verticalLayout,
+        innerRadius: am5.percent(50),
+      })
+    );
+
+    // Create series
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Series
+    let series = chart.series.push(
+      am5percent.PieSeries.new(root, {
+        valueField: "value",
+        categoryField: "category",
+      })
+    );
+
+    // Set data
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Setting_data
+    series.data.setAll([
+      { value: 1, category: "1등급" },
+      { value: 2, category: "2등급" },
+      { value: 3, category: "3등급" },
+      { value: 3, category: "4등급" },
+      { value: 1, category: "5등급" },
+    ]);
+
+    // Create legend
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/legend-percent-series/
+    let legend = chart.children.push(
+      am5.Legend.new(root, {
+        centerX: am5.percent(50),
+        x: am5.percent(50),
+        marginTop: 15,
+        marginBottom: 15,
+      })
+    );
+
+    legend.data.setAll(series.dataItems);
+
+    // Play initial series animation
+    // https://www.amcharts.com/docs/v5/concepts/animations/#Animation_of_series
+    series.appear(1000, 100);
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="Donut1" style={{ width: "100%", height: "250px" }}></div>;
+  }
+}
+
+export default Donut1;
 
client/views/component/chart/Donut2.jsx (added)
+++ client/views/component/chart/Donut2.jsx
@@ -0,0 +1,68 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+import * as am5percent from "@amcharts/amcharts5/percent";
+
+class Donut2 extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("Donut2");
+
+    root._logo.dispose();
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/
+    let chart = root.container.children.push(
+      am5percent.PieChart.new(root, {
+        layout: root.verticalLayout,
+        innerRadius: am5.percent(50),
+      })
+    );
+
+    // Create series
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Series
+    let series = chart.series.push(
+      am5percent.PieSeries.new(root, {
+        valueField: "value",
+        categoryField: "category",
+      })
+    );
+
+    // Set data
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Setting_data
+    series.data.setAll([
+      { value: 5, category: "미복용" },
+      { value: 53, category: "복용" },
+    ]);
+
+    series.ticks.template.set("forceHidden", true);
+    series.labels.template.set("forceHidden", true);
+
+    let label = series.children.push(
+      am5.Label.new(root, {
+        text: "90%",
+        fontSize: 30,
+        centerX: am5.percent(50),
+        centerY: am5.percent(50),
+      })
+    );
+
+    // Play initial series animation
+    // https://www.amcharts.com/docs/v5/concepts/animations/#Animation_of_series
+    series.appear(1000, 100);
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="Donut2" style={{ width: "100%", height: "90%" }}></div>;
+  }
+}
+
+export default Donut2;
 
client/views/component/chart/Donut3.jsx (added)
+++ client/views/component/chart/Donut3.jsx
@@ -0,0 +1,68 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+import * as am5percent from "@amcharts/amcharts5/percent";
+
+class Donut3 extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("Donut3");
+
+    root._logo.dispose();
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/
+    let chart = root.container.children.push(
+      am5percent.PieChart.new(root, {
+        layout: root.verticalLayout,
+        innerRadius: am5.percent(50),
+      })
+    );
+
+    // Create series
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Series
+    let series = chart.series.push(
+      am5percent.PieSeries.new(root, {
+        valueField: "value",
+        categoryField: "category",
+      })
+    );
+
+    // Set data
+    // https://www.amcharts.com/docs/v5/charts/percent-charts/pie-chart/#Setting_data
+    series.data.setAll([
+      { value: 15, category: "미복약" },
+      { value: 53, category: "복약" },
+    ]);
+
+    series.ticks.template.set("forceHidden", true);
+    series.labels.template.set("forceHidden", true);
+
+    let label = series.children.push(
+      am5.Label.new(root, {
+        text: "15/53",
+        fontSize: 10,
+        centerX: am5.percent(50),
+        centerY: am5.percent(50),
+      })
+    );
+
+    // Play initial series animation
+    // https://www.amcharts.com/docs/v5/concepts/animations/#Animation_of_series
+    series.appear(1000, 100);
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="Donut3" style={{ width: "100%", height: "105px" }}></div>;
+  }
+}
+
+export default Donut3;
 
client/views/component/chart/LineColor.jsx (added)
+++ client/views/component/chart/LineColor.jsx
@@ -0,0 +1,177 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class LineColor extends Component {
+  componentDidMount() {
+    /* Chart code */
+    // Create root element
+    // https://www.amcharts.com/docs/v5/getting-started/#Root_element
+    let root = am5.Root.new("chartdiv");
+    root._logo.dispose();
+
+    // Set themes
+    // https://www.amcharts.com/docs/v5/concepts/themes/
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/
+    let chart = root.container.children.push(
+      am5xy.XYChart.new(root, {
+        panX: true,
+        panY: true,
+        wheelX: "panX",
+        wheelY: "zoomX",
+        layout: root.verticalLayout,
+        pinchZoomX: true,
+      })
+    );
+
+    // Add cursor
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/cursor/
+    let cursor = chart.set(
+      "cursor",
+      am5xy.XYCursor.new(root, {
+        behavior: "none",
+      })
+    );
+    cursor.lineY.set("visible", false);
+
+    let colorSet = am5.ColorSet.new(root, {});
+
+    // The data
+    let data = [
+      {
+        year: "1분기",
+        value: 23.5,
+        strokeSettings: {
+          stroke: colorSet.getIndex(0),
+        },
+        fillSettings: {
+          fill: colorSet.getIndex(0),
+        },
+        bulletSettings: {
+          fill: colorSet.getIndex(0),
+        },
+      },
+      {
+        year: "2분기",
+        value: 26,
+        fillSettings: {
+          fill: colorSet.getIndex(1),
+        },
+        bulletSettings: {
+          fill: colorSet.getIndex(1),
+        },
+      },
+      {
+        year: "3분기",
+        value: 30,
+        fillSettings: {
+          fill: colorSet.getIndex(2),
+        },
+        bulletSettings: {
+          fill: colorSet.getIndex(2),
+        },
+      },
+      {
+        year: "4분기",
+        value: 20,
+        fillSettings: {
+          fill: colorSet.getIndex(3),
+        },
+        bulletSettings: {
+          fill: colorSet.getIndex(3),
+        },
+      },
+    ];
+
+    // Create axes
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+    let xRenderer = am5xy.AxisRendererX.new(root, {});
+    xRenderer.grid.template.set("location", 0.5);
+    xRenderer.labels.template.setAll({
+      location: 0.5,
+      multiLocation: 0.5,
+    });
+
+    let xAxis = chart.xAxes.push(
+      am5xy.CategoryAxis.new(root, {
+        categoryField: "year",
+        renderer: xRenderer,
+        tooltip: am5.Tooltip.new(root, {}),
+      })
+    );
+
+    xAxis.data.setAll(data);
+
+    let yAxis = chart.yAxes.push(
+      am5xy.ValueAxis.new(root, {
+        maxPrecision: 0,
+        renderer: am5xy.AxisRendererY.new(root, {}),
+      })
+    );
+
+    let series = chart.series.push(
+      am5xy.LineSeries.new(root, {
+        xAxis: xAxis,
+        yAxis: yAxis,
+        valueYField: "value",
+        categoryXField: "year",
+        tooltip: am5.Tooltip.new(root, {
+          labelText: "{valueY}",
+          dy: -5,
+        }),
+      })
+    );
+
+    series.strokes.template.setAll({
+      templateField: "strokeSettings",
+      strokeWidth: 2,
+    });
+
+    series.fills.template.setAll({
+      visible: true,
+      fillOpacity: 0.5,
+      templateField: "fillSettings",
+    });
+
+    series.bullets.push(function () {
+      return am5.Bullet.new(root, {
+        sprite: am5.Circle.new(root, {
+          templateField: "bulletSettings",
+          radius: 5,
+        }),
+      });
+    });
+
+    series.data.setAll(data);
+    series.appear(1000);
+
+    // Add scrollbar
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/scrollbars/
+    chart.set(
+      "scrollbarX",
+      am5.Scrollbar.new(root, {
+        orientation: "horizontal",
+        marginBottom: 20,
+      })
+    );
+
+    // Make stuff animate on load
+    // https://www.amcharts.com/docs/v5/concepts/animations/
+    chart.appear(1000, 100);
+  }
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="chartdiv" style={{ width: "100%", height: "90%" }}></div>;
+  }
+}
+
+export default LineColor;
 
client/views/component/chart/Map.jsx (added)
+++ client/views/component/chart/Map.jsx
@@ -0,0 +1,325 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5map from "@amcharts/amcharts5/map";
+import am5geodata_usaLow from "../map";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+// import seniorjson from "../../component/senior.json";
+
+class Map extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("Map");
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // remove logo
+    root._logo.dispose();
+
+    let chart = root.container.children.push(
+      am5map.MapChart.new(root, {
+        panX: "rotateX",
+        // projection: am5map.geoAlbersUsa(),
+      })
+    );
+
+    // Create polygon series
+    let polygonSeries = chart.series.push(
+      am5map.MapPolygonSeries.new(root, {
+        geoJSON: am5geodata_usaLow,
+      })
+    );
+
+    polygonSeries.mapPolygons.template.setAll({
+      tooltipText: "{name}",
+    });
+
+    polygonSeries.mapPolygons.template.states.create("hover", {
+      fill: am5.color(0x297373),
+    });
+
+    let zoomOut = root.tooltipContainer.children.push(
+      am5.Button.new(root, {
+        x: am5.p100,
+        y: 0,
+        centerX: am5.p100,
+        centerY: 0,
+        paddingTop: 18,
+        paddingBottom: 18,
+        paddingLeft: 12,
+        paddingRight: 12,
+        dx: -20,
+        dy: 20,
+        themeTags: ["zoom"],
+        icon: am5.Graphics.new(root, {
+          themeTags: ["button", "icon"],
+          strokeOpacity: 0.7,
+          draw: function (display) {
+            display.moveTo(0, 0);
+            display.lineTo(12, 0);
+          },
+        }),
+      })
+    );
+
+    zoomOut.get("background").setAll({
+      cornerRadiusBL: 40,
+      cornerRadiusBR: 40,
+      cornerRadiusTL: 40,
+      cornerRadiusTR: 40,
+    });
+    zoomOut.events.on("click", function () {
+      if (currentSeries) {
+        currentSeries.hide();
+      }
+      chart.goHome();
+      zoomOut.hide();
+      currentSeries = regionalSeries.US.series;
+      currentSeries.show();
+    });
+    zoomOut.hide();
+
+    // =================================
+    // Set up point series
+    // =================================
+
+    // Load senior data
+    am5.net
+      .load(
+        "https://gist.githubusercontent.com/dbskfnd/e618b91a622b8efeb55ccc562c47864a/raw/23d9030fe1e6e42d6e43348d86b02f6aafa464e2/seniornumber.json"
+      )
+      .then(function (result) {
+        let seniors = am5.JSONParser.parse(result.response);
+        setupseniors(seniors);
+      });
+
+    let regionalSeries = {};
+    let currentSeries;
+
+    // Parses data and creats map point series for domestic and state-level
+    function setupseniors(data) {
+      console.log(data);
+
+      // Init country-level series
+      regionalSeries.US = {
+        markerData: [],
+        series: createSeries("seniors"),
+      };
+
+      // Set current series
+      currentSeries = regionalSeries.US.series;
+
+      // Process data
+      am5.array.each(data.query_results, function (senior) {
+        // Get senior data
+        senior = {
+          state: senior.MAIL_ST_PROV_C,
+          long: am5.type.toNumber(senior.LNGTD_I),
+          lat: am5.type.toNumber(senior.LATTD_I),
+          location: senior.co_loc_n,
+          city: senior.mail_city_n,
+          count: am5.type.toNumber(senior.count),
+        };
+
+        // Process state-level data
+        if (regionalSeries[senior.state] == undefined) {
+          let statePolygon = getPolygon("KR-" + senior.state);
+          if (statePolygon) {
+            let centroid = statePolygon.visualCentroid();
+
+            // Add state data
+            regionalSeries[senior.state] = {
+              target: senior.state,
+              type: "state",
+              name: statePolygon.dataItem.dataContext.name,
+              count: senior.count,
+              seniors: 1,
+              state: senior.state,
+              markerData: [],
+              geometry: {
+                type: "Point",
+                coordinates: [centroid.longitude, centroid.latitude],
+              },
+            };
+            regionalSeries.US.markerData.push(regionalSeries[senior.state]);
+          } else {
+            // State not found
+            return;
+          }
+        } else {
+          regionalSeries[senior.state].seniors++;
+          regionalSeries[senior.state].count += senior.count;
+        }
+
+        // Process city-level data
+        if (regionalSeries[senior.city] == undefined) {
+          regionalSeries[senior.city] = {
+            target: senior.city,
+            type: "city",
+            name: senior.city,
+            count: senior.count,
+            seniors: 1,
+            state: senior.state,
+            markerData: [],
+            geometry: {
+              type: "Point",
+              coordinates: [senior.long, senior.lat],
+            },
+          };
+          regionalSeries[senior.state].markerData.push(
+            regionalSeries[senior.city]
+          );
+        } else {
+          regionalSeries[senior.city].seniors++;
+          regionalSeries[senior.city].count += senior.count;
+        }
+
+        // Process individual senior
+        regionalSeries[senior.city].markerData.push({
+          name: senior.location,
+          count: senior.count,
+          seniors: 1,
+          state: senior.state,
+          geometry: {
+            type: "Point",
+            coordinates: [senior.long, senior.lat],
+          },
+        });
+      });
+      console.log(regionalSeries.US.markerData);
+      regionalSeries.US.series.data.setAll(regionalSeries.US.markerData);
+    }
+
+    // Finds polygon in series by its id
+    function getPolygon(id) {
+      let found;
+      polygonSeries.mapPolygons.each(function (polygon) {
+        if (polygon.dataItem.get("id") == id) {
+          found = polygon;
+        }
+      });
+      return found;
+    }
+
+    // Creates series with heat rules
+    function createSeries(heatfield) {
+      // Create point series
+      let pointSeries = chart.series.push(
+        am5map.MapPointSeries.new(root, {
+          valueField: heatfield,
+          calculateAggregates: true,
+        })
+      );
+
+      // Add senior bullet
+      let circleTemplate = am5.Template.new(root);
+      pointSeries.bullets.push(function () {
+        let container = am5.Container.new(root, {});
+
+        let circle = container.children.push(
+          am5.Circle.new(
+            root,
+            {
+              radius: 10,
+              fill: am5.color(0x000000),
+              fillOpacity: 0.7,
+              cursorOverStyle: "pointer",
+              tooltipText: "{name}:\n[bold]{seniors} seniors[/]",
+            },
+            circleTemplate
+          )
+        );
+
+        let label = container.children.push(
+          am5.Label.new(root, {
+            text: "{seniors}",
+            fill: am5.color(0xffffff),
+            populateText: true,
+            centerX: am5.p50,
+            centerY: am5.p50,
+            textAlign: "center",
+          })
+        );
+
+        // Set up drill-down
+        circle.events.on("click", function (ev) {
+          // Determine what we've clicked on
+          let data = ev.target.dataItem.dataContext;
+
+          // No id? Individual senior - nothing to drill down to further
+          if (!data.target) {
+            return;
+          }
+
+          // Create actual series if it hasn't been yet created
+          if (!regionalSeries[data.target].series) {
+            regionalSeries[data.target].series = createSeries("count");
+            regionalSeries[data.target].series.data.setAll(data.markerData);
+          }
+
+          // Hide current series
+          if (currentSeries) {
+            currentSeries.hide();
+          }
+
+          // Control zoom
+          if (data.type == "state") {
+            let statePolygon = getPolygon("KR-" + data.state);
+            polygonSeries.zoomToDataItem(statePolygon.dataItem);
+          } else if (data.type == "city") {
+            chart.zoomToGeoPoint(
+              {
+                latitude: data.geometry.coordinates[1],
+                longitude: data.geometry.coordinates[0],
+              },
+              64,
+              true
+            );
+          }
+          zoomOut.show();
+
+          // Show new targert series
+          currentSeries = regionalSeries[data.target].series;
+          currentSeries.show();
+        });
+
+        return am5.Bullet.new(root, {
+          sprite: container,
+        });
+      });
+
+      // Add heat rule for circles
+      pointSeries.set("heatRules", [
+        {
+          target: circleTemplate,
+          dataField: "value",
+          min: 10,
+          max: 30,
+          key: "radius",
+        },
+      ]);
+
+      // Set up drill-down
+      // TODO
+
+      return pointSeries;
+    }
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return (
+        <div
+          className="flex80"
+          id="Map"
+          style={{ width: "100%", height: "35vh", marginBottom: "1rem" }}
+        ></div>
+    );
+  }
+}
+
+export default Map;
 
client/views/component/chart/RowChart.jsx (added)
+++ client/views/component/chart/RowChart.jsx
@@ -0,0 +1,211 @@
+import React, { Component } from "react";
+import * as am5 from "@amcharts/amcharts5";
+import * as am5xy from "@amcharts/amcharts5/xy";
+import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
+
+class RowChart extends Component {
+  componentDidMount() {
+    let root = am5.Root.new("RowChart");
+
+    root._logo.dispose();
+    root.setThemes([am5themes_Animated.new(root)]);
+
+    // Create chart
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/
+    let chart = root.container.children.push(
+      am5xy.XYChart.new(root, {
+        panX: false,
+        panY: false,
+        wheelX: "none",
+        wheelY: "none",
+      })
+    );
+
+    // We don't want zoom-out button to appear while animating, so we hide it
+    chart.zoomOutButton.set("forceHidden", true);
+
+    // Create axes
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
+    let yRenderer = am5xy.AxisRendererY.new(root, {
+      minGridDistance: 30,
+    });
+
+    let yAxis = chart.yAxes.push(
+      am5xy.CategoryAxis.new(root, {
+        maxDeviation: 0,
+        categoryField: "network",
+        renderer: yRenderer,
+        tooltip: am5.Tooltip.new(root, { themeTags: ["axis"] }),
+      })
+    );
+
+    let xAxis = chart.xAxes.push(
+      am5xy.ValueAxis.new(root, {
+        maxDeviation: 0,
+        min: 0,
+        extraMax: 0.1,
+        renderer: am5xy.AxisRendererX.new(root, {}),
+      })
+    );
+
+    // Add series
+    // https://www.amcharts.com/docs/v5/charts/xy-chart/series/
+    let series = chart.series.push(
+      am5xy.ColumnSeries.new(root, {
+        name: "Series 1",
+        xAxis: xAxis,
+        yAxis: yAxis,
+        valueXField: "value",
+        categoryYField: "network",
+        tooltip: am5.Tooltip.new(root, {
+          pointerOrientation: "left",
+          labelText: "{valueX}",
+        }),
+      })
+    );
+
+    // Rounded corners for columns
+    series.columns.template.setAll({
+      cornerRadiusTR: 5,
+      cornerRadiusBR: 5,
+    });
+
+    // Make each column to be of a different color
+    series.columns.template.adapters.add("fill", function (fill, target) {
+      return chart.get("colors").getIndex(series.columns.indexOf(target));
+    });
+
+    series.columns.template.adapters.add("stroke", function (stroke, target) {
+      return chart.get("colors").getIndex(series.columns.indexOf(target));
+    });
+
+    // Set data
+    let data = [
+      {
+        network: "60대",
+        value: 80,
+      },
+      {
+        network: "70대",
+        value: 80,
+      },
+      {
+        network: "80대",
+        value: 70,
+      },
+      {
+        network: "90대",
+        value: 75,
+      },
+    ];
+
+    yAxis.data.setAll(data);
+    series.data.setAll(data);
+    sortCategoryAxis();
+
+    // Get series item by category
+    function getSeriesItem(category) {
+      for (var i = 0; i < series.dataItems.length; i++) {
+        let dataItem = series.dataItems[i];
+        if (dataItem.get("categoryY") == category) {
+          return dataItem;
+        }
+      }
+    }
+
+    chart.set(
+      "cursor",
+      am5xy.XYCursor.new(root, {
+        behavior: "none",
+        xAxis: xAxis,
+        yAxis: yAxis,
+      })
+    );
+
+    // Axis sorting
+    function sortCategoryAxis() {
+      // Sort by value
+      series.dataItems.sort(function (x, y) {
+        return x.get("valueX") - y.get("valueX"); // descending
+        //return y.get("valueY") - x.get("valueX"); // ascending
+      });
+
+      // Go through each axis item
+      am5.array.each(yAxis.dataItems, function (dataItem) {
+        // get corresponding series item
+        let seriesDataItem = getSeriesItem(dataItem.get("category"));
+
+        if (seriesDataItem) {
+          // get index of series data item
+          let index = series.dataItems.indexOf(seriesDataItem);
+          // calculate delta position
+          let deltaPosition =
+            (index - dataItem.get("index", 0)) / series.dataItems.length;
+          // set index to be the same as series data item index
+          dataItem.set("index", index);
+          // set deltaPosition instanlty
+          dataItem.set("deltaPosition", -deltaPosition);
+          // animate delta position to 0
+          dataItem.animate({
+            key: "deltaPosition",
+            to: 0,
+            duration: 1000,
+            easing: am5.ease.out(am5.ease.cubic),
+          });
+        }
+      });
+
+      // Sort axis items by index.
+      // This changes the order instantly, but as deltaPosition is set,
+      // they keep in the same places and then animate to true positions.
+      yAxis.dataItems.sort(function (x, y) {
+        return x.get("index") - y.get("index");
+      });
+    }
+
+    // update data with random values each 1.5 sec
+    // setInterval(function () {
+    //   updateData();
+    // }, 1500);
+
+    // function updateData() {
+    //   am5.array.each(series.dataItems, function (dataItem) {
+    //     let value =
+    //       dataItem.get("valueX") +
+    //       Math.round(Math.random() * 1000000000 - 500000000);
+    //     if (value < 0) {
+    //       value = 500000000;
+    //     }
+    //     // both valueY and workingValueY should be changed, we only animate workingValueY
+    //     dataItem.set("valueX", value);
+    //     dataItem.animate({
+    //       key: "valueXWorking",
+    //       to: value,
+    //       duration: 600,
+    //       easing: am5.ease.out(am5.ease.cubic),
+    //     });
+    //   });
+
+    //   sortCategoryAxis();
+    // }
+
+    // Make stuff animate on load
+    // https://www.amcharts.com/docs/v5/concepts/animations/
+    series.appear(1000);
+    chart.appear(1000, 100);
+
+    this.root = root;
+  }
+
+  componentWillUnmount() {
+    if (this.root) {
+      this.root.dispose();
+    }
+  }
+
+  render() {
+    return <div id="RowChart" style={{ width: "100%", height: "100%" }}></div>;
+  }
+}
+
+export default RowChart;
 
client/views/component/map.js (added)
+++ client/views/component/map.js
@@ -0,0 +1,4564 @@
+var rnsdnl = {
+  type: "FeatureCollection",
+  features: [
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.545531532405022, 36.291623830305831],
+              [128.545413944410484, 36.290833316275432],
+              [128.54539006806769, 36.290611957595026],
+              [128.545412549317007, 36.290454806260186],
+              [128.545430452839327, 36.29037421471233],
+              [128.545495722269806, 36.290272585250342],
+              [128.545691034514959, 36.290063697778258],
+              [128.545990796564382, 36.28981444007762],
+              [128.546189333680701, 36.289666705141215],
+              [128.546457655348178, 36.289598545312714],
+              [128.54682158528172, 36.289439786760084],
+              [128.547264937305954, 36.289220188447871],
+              [128.547564764866678, 36.288959286017736],
+              [128.547772338526499, 36.288759968101381],
+              [128.547849494291029, 36.288669092730153],
+              [128.549089326158395, 36.285704041397516],
+              [128.549585431438203, 36.284096563393291],
+              [128.549828995302335, 36.2827890265768],
+              [128.549905576742901, 36.281116930295333],
+              [128.55043974223608, 36.278544019464],
+              [128.551898075055817, 36.27490753313738],
+              [128.5532756395136, 36.273940435857938],
+              [128.553360564482489, 36.273885257532882],
+              [128.556807155423087, 36.273627941781442],
+              [128.556879601098103, 36.273641290209568],
+              [128.558911749104794, 36.27448334281663],
+              [128.559708970253666, 36.275040295513399],
+              [128.56076748478813, 36.27576827398925],
+              [128.561946603508801, 36.276463036796592],
+              [128.562648513552688, 36.276821108824223],
+              [128.562930419980404, 36.276848275477604],
+              [128.563164299344749, 36.276816472773696],
+              [128.563408961636583, 36.276740263816642],
+              [128.563764667683188, 36.276539166347689],
+              [128.563975311502048, 36.276340804635694],
+              [128.564064574046455, 36.276230124949905],
+              [128.564260116055607, 36.275845614481966],
+              [128.564348321202743, 36.275729860402691],
+              [128.56459154630096, 36.275466315420573],
+              [128.564692678066251, 36.275394853278101],
+              [128.565739028221827, 36.274723956230801],
+              [128.565988202268954, 36.274578759175292],
+              [128.566650853178061, 36.274244905947732],
+              [128.566723561723251, 36.27421252257637],
+              [128.566824329490828, 36.274206376884102],
+              [128.566908939990611, 36.274206667772148],
+              [128.568830769362393, 36.274477142074581],
+              [128.570347045659844, 36.274698020023934],
+              [128.570439610336507, 36.274717954036511],
+              [128.57121002959201, 36.274905450329712],
+              [128.571419153126499, 36.274978016816583],
+              [128.571471363091888, 36.27501086324235],
+              [128.573609260110118, 36.276726570407909],
+              [128.573771727292979, 36.276927622955455],
+              [128.573938358177685, 36.277135495621231],
+              [128.573962815705585, 36.277261290092937],
+              [128.574010602611651, 36.277726986574301],
+              [128.574034917907653, 36.277954606334383],
+              [128.574142520844475, 36.278235084114542],
+              [128.574251016304373, 36.278343953285287],
+              [128.575657513122707, 36.27947653627551],
+              [128.575874996427046, 36.279609907176678],
+              [128.576068192265637, 36.279646758537119],
+              [128.576360796737561, 36.279643780636796],
+              [128.580511163155563, 36.279485500629022],
+              [128.58134869903671, 36.279340311393227],
+              [128.585062239020317, 36.278510930544705],
+              [128.58898443993678, 36.277313851668517],
+              [128.589062860084169, 36.277282416951486],
+              [128.59023282637753, 36.277104170777726],
+              [128.590461582718291, 36.277077533379426],
+              [128.593148833167021, 36.277032020495646],
+              [128.593300279322648, 36.277068212372754],
+              [128.593573459407935, 36.277211811950629],
+              [128.593817140882521, 36.277379083744044],
+              [128.59401556193481, 36.277498173613594],
+              [128.594201093619318, 36.277562205514698],
+              [128.594450536045258, 36.277567026562949],
+              [128.594568056928011, 36.277539690104312],
+              [128.595518220325118, 36.277067950960934],
+              [128.596408400827329, 36.275907136225747],
+              [128.596501494865947, 36.275714397742981],
+              [128.597584317132998, 36.273035470513612],
+              [128.597668836487202, 36.272770253201521],
+              [128.597690044650903, 36.27249385597603],
+              [128.597700564565883, 36.272351199295244],
+              [128.597660752719747, 36.272052912926505],
+              [128.597653459187029, 36.271998339758241],
+              [128.597595974342113, 36.271764343103371],
+              [128.59756936224548, 36.271700744691742],
+              [128.597542836708527, 36.271637361839574],
+              [128.597552897235602, 36.271581893758714],
+              [128.597661051717267, 36.271428889571034],
+              [128.597768113490929, 36.27133026859147],
+              [128.598411383228438, 36.270811394664342],
+              [128.598480878496588, 36.270766021020712],
+              [128.599573431155619, 36.270436485624408],
+              [128.599820498010018, 36.270374184342288],
+              [128.601711815051374, 36.269928892095031],
+              [128.603588192467697, 36.26990049264554],
+              [128.603778608197047, 36.269911652016873],
+              [128.604843788541103, 36.270332606156458],
+              [128.605756477029445, 36.270723803964458],
+              [128.60599391371926, 36.270854378882149],
+              [128.606417261445642, 36.271027623392399],
+              [128.606952954951566, 36.27124335825556],
+              [128.607069704715315, 36.271268292154694],
+              [128.607736315999318, 36.271274000909656],
+              [128.608297499098683, 36.271241048528452],
+              [128.609537664913148, 36.27115033525638],
+              [128.609637414455079, 36.271115579042252],
+              [128.613340956560251, 36.269792583635414],
+              [128.616832828123506, 36.267670305186677],
+              [128.617440986439988, 36.267862332565244],
+              [128.618053317287263, 36.267993874805939],
+              [128.619709638558078, 36.267901544133338],
+              [128.623697556807656, 36.266878547177015],
+              [128.624016820759408, 36.266774472328628],
+              [128.626998048614354, 36.26537147930604],
+              [128.628839919839152, 36.263908606254482],
+              [128.632530920828685, 36.261988993668304],
+              [128.632669498185294, 36.261948170312365],
+              [128.636367070929481, 36.261180322720421],
+              [128.636969133749176, 36.260062835903959],
+              [128.638058328762696, 36.259068276849035],
+              [128.63820615222059, 36.258963907864789],
+              [128.63834470621984, 36.258878248338547],
+              [128.63903251932993, 36.258622130909281],
+              [128.639907461944688, 36.258300261059034],
+              [128.640312014279715, 36.258069184829523],
+              [128.640579877648207, 36.257903914171962],
+              [128.640652105697882, 36.257757362430581],
+              [128.640667267396083, 36.257572027812238],
+              [128.640410184982954, 36.254357946722727],
+              [128.640377721920458, 36.254157020283969],
+              [128.640017591084558, 36.252854844014642],
+              [128.638675529266209, 36.248161188489824],
+              [128.638340604590496, 36.247302794561634],
+              [128.638265581697141, 36.247142595605077],
+              [128.638242839571575, 36.247107217968292],
+              [128.638206262959699, 36.247075566262552],
+              [128.637801721300008, 36.246838671262694],
+              [128.637627629368609, 36.246761901738964],
+              [128.636443092151637, 36.246210729805682],
+              [128.635214638416329, 36.245633006881285],
+              [128.633113021895639, 36.24428640040685],
+              [128.633048925110501, 36.244243409014693],
+              [128.632863917346242, 36.244077372436976],
+              [128.632723074028661, 36.243910493656593],
+              [128.632666210268923, 36.243819126460934],
+              [128.631047481784748, 36.238775859586084],
+              [128.631047716234292, 36.238727558335661],
+              [128.631075535354, 36.238656914810655],
+              [128.631107877010209, 36.238616087265918],
+              [128.631156210950905, 36.238579106670876],
+              [128.631229690488993, 36.2385681572312],
+              [128.631420049661159, 36.238563145831186],
+              [128.631739890909955, 36.238560801927385],
+              [128.631884321644918, 36.238576123206926],
+              [128.632159365178694, 36.238612396097295],
+              [128.632485203603437, 36.238611515181184],
+              [128.632671060264101, 36.238595320677675],
+              [128.632783516232593, 36.238573395031942],
+              [128.633062114326208, 36.238493070307811],
+              [128.63335875798532, 36.238335924424739],
+              [128.633503727930048, 36.238237763518796],
+              [128.633738584199989, 36.238043221735573],
+              [128.634489033864554, 36.237353221798429],
+              [128.634535069812671, 36.237306854438671],
+              [128.634602070456538, 36.237204767243476],
+              [128.636574025009395, 36.233335980025423],
+              [128.636659764082026, 36.233148332069888],
+              [128.636673892654215, 36.233075914233751],
+              [128.63690019403586, 36.229759064115981],
+              [128.63610412145232, 36.226959183221346],
+              [128.636058604665266, 36.22689396954798],
+              [128.635934484666819, 36.226580875743281],
+              [128.635912053713241, 36.226476730333957],
+              [128.635903718402005, 36.226283214583383],
+              [128.635896103274092, 36.225961463517848],
+              [128.635890404447309, 36.224196212716834],
+              [128.632766225260383, 36.225764412235428],
+              [128.632189079565791, 36.225928909954014],
+              [128.628852711137938, 36.225559259353439],
+              [128.628728582643788, 36.225536248419758],
+              [128.627906740709278, 36.225279289286128],
+              [128.627739632792299, 36.225219097742134],
+              [128.625606933135941, 36.224328624039174],
+              [128.625500709607792, 36.224280987884399],
+              [128.619342068242105, 36.221161921193058],
+              [128.619268643841593, 36.221120594151238],
+              [128.619197935963314, 36.221069002317471],
+              [128.616210846876072, 36.218862693957703],
+              [128.615038194560668, 36.21775241833754],
+              [128.611791342722398, 36.214915134676339],
+              [128.606325764531618, 36.212170115683399],
+              [128.600632478437205, 36.208920442446342],
+              [128.600516124156115, 36.208862454487353],
+              [128.600351705286442, 36.208810539226853],
+              [128.60018965843588, 36.208770871512478],
+              [128.597602451928225, 36.208292570092745],
+              [128.59673805209593, 36.208168798724941],
+              [128.596373136093149, 36.208138822650568],
+              [128.595975070974561, 36.208153861387281],
+              [128.595800063037643, 36.208171835531985],
+              [128.595696057283902, 36.208198155533758],
+              [128.595607167651167, 36.208228682344249],
+              [128.595524631684299, 36.20827841805427],
+              [128.59544566629009, 36.208343945276297],
+              [128.592393007781226, 36.211478785498315],
+              [128.591206224046658, 36.212947448677603],
+              [128.589948485147943, 36.214359826728405],
+              [128.589586094439539, 36.21449823134197],
+              [128.588923014509561, 36.214750268407236],
+              [128.588494006696266, 36.21486802278487],
+              [128.588066506474917, 36.214955754179002],
+              [128.587772343204648, 36.214979418565719],
+              [128.587736923205199, 36.214966955297925],
+              [128.587696493121115, 36.214938061518232],
+              [128.584461406514748, 36.212293219593953],
+              [128.584363056991208, 36.212196255205299],
+              [128.584310106808772, 36.212136499509356],
+              [128.583216645796483, 36.210688627567784],
+              [128.583031143768181, 36.21029334402381],
+              [128.582688998717856, 36.209389259482023],
+              [128.58227766887768, 36.208178864639642],
+              [128.581448332476043, 36.205078471069534],
+              [128.580668506578775, 36.201791595887109],
+              [128.580577450718266, 36.200862076987853],
+              [128.580391455283689, 36.199598426262973],
+              [128.579640300860348, 36.196708486181571],
+              [128.57880848353534, 36.195095619942578],
+              [128.578768236204894, 36.195039975115549],
+              [128.57874322991654, 36.194976156790062],
+              [128.578738287592557, 36.194949349674665],
+              [128.578923174772598, 36.192561431441334],
+              [128.579063869441939, 36.191822907308676],
+              [128.579540508369803, 36.189385655198834],
+              [128.579571131639483, 36.189346713835292],
+              [128.580735311418579, 36.187916760387189],
+              [128.580801605072764, 36.187840931100538],
+              [128.580844774644305, 36.187822587575688],
+              [128.580877756486075, 36.187814471790048],
+              [128.580943665108805, 36.187814708701254],
+              [128.5813672725792, 36.187846962954524],
+              [128.581486324851568, 36.187855598478301],
+              [128.581656057307782, 36.1878664759533],
+              [128.582107301735618, 36.187837228767883],
+              [128.5821580639834, 36.187820945512719],
+              [128.582198713067555, 36.187802595440928],
+              [128.583691080381698, 36.186285412553481],
+              [128.583691306197238, 36.186242231448333],
+              [128.583686399449419, 36.186211383586944],
+              [128.583638510474231, 36.186163929457692],
+              [128.5832625150816, 36.185866602923511],
+              [128.582992375101639, 36.185678609987519],
+              [128.582206030112502, 36.185210705339074],
+              [128.582016541952811, 36.18510315897052],
+              [128.581864851965662, 36.185038891494848],
+              [128.579888856450907, 36.184212632879152],
+              [128.57913769135277, 36.183962068097799],
+              [128.578755772019775, 36.183827109594375],
+              [128.578492820900266, 36.183719294634074],
+              [128.5778814090325, 36.183384118195207],
+              [128.577110557749108, 36.182912364459234],
+              [128.576542155873426, 36.182268585657695],
+              [128.573544515941506, 36.178503506355746],
+              [128.573464091990132, 36.178383989265356],
+              [128.573423974004157, 36.178307801922962],
+              [128.572801434082436, 36.176948516677577],
+              [128.572786543282547, 36.176890903298194],
+              [128.572786902963657, 36.176825122514302],
+              [128.572833403762701, 36.176660831191818],
+              [128.572974953921545, 36.176221010295485],
+              [128.573093091472572, 36.175927464181207],
+              [128.573170006150349, 36.17576536032611],
+              [128.573170190047222, 36.17573041397732],
+              [128.573160223880365, 36.175699530714709],
+              [128.57311734524373, 36.17566237762405],
+              [128.571599437538822, 36.174581132254872],
+              [128.57150085680604, 36.174537608486887],
+              [128.571438789203512, 36.174522702946035],
+              [128.568430046925016, 36.174424437314713],
+              [128.568315986315838, 36.174430193631117],
+              [128.567588563101651, 36.17447689342184],
+              [128.563613321926198, 36.17495454429956],
+              [128.563171986513737, 36.175039265208063],
+              [128.561340520391866, 36.175415857935775],
+              [128.561272024982969, 36.175432057882063],
+              [128.560180657893596, 36.175939009623306],
+              [128.560160223145459, 36.175967704791702],
+              [128.560028584224909, 36.176398901267774],
+              [128.559992445369943, 36.176518005624423],
+              [128.559991989510792, 36.176598160251146],
+              [128.559991614854937, 36.176689460558279],
+              [128.559745689276781, 36.177641497045293],
+              [128.559725103371704, 36.177696909131555],
+              [128.559416138658094, 36.17828674280134],
+              [128.559130118424036, 36.178823514710224],
+              [128.558982030388421, 36.179024426860636],
+              [128.558913178205842, 36.179100233549669],
+              [128.558867441212641, 36.179122674886337],
+              [128.55883199807792, 36.17911843391159],
+              [128.557694738872868, 36.178350694655052],
+              [128.557659427225587, 36.178321791974483],
+              [128.557629244906536, 36.178284677090708],
+              [128.557449718246289, 36.178045925806252],
+              [128.556154612158906, 36.178037431930306],
+              [128.555150391260298, 36.178039125071784],
+              [128.553386722992911, 36.178050018364154],
+              [128.549120944464221, 36.178135795507039],
+              [128.549089874393701, 36.178147301656466],
+              [128.545868343660516, 36.181692623970775],
+              [128.545832140561743, 36.181767941421484],
+              [128.545667687599831, 36.182111789330939],
+              [128.54547430562485, 36.182736557501009],
+              [128.545384387672669, 36.183362054444153],
+              [128.54322496352475, 36.186888667050489],
+              [128.541520996299454, 36.188997823784405],
+              [128.540840899518656, 36.189594076909344],
+              [128.539496797741492, 36.191034934144263],
+              [128.539225415899011, 36.191356950884469],
+              [128.539160548581805, 36.19143794501219],
+              [128.539138676943338, 36.191505566811728],
+              [128.539145567917615, 36.191552023627317],
+              [128.539201657886139, 36.191694227467785],
+              [128.539463250816567, 36.192227233535668],
+              [128.539498329244083, 36.192345370600854],
+              [128.53949817564822, 36.192372455401632],
+              [128.539435564741183, 36.192560337733127],
+              [128.539087185407084, 36.193400497972],
+              [128.538974678288241, 36.193636802021032],
+              [128.538945881485887, 36.193667648678037],
+              [128.536344421366664, 36.195260803327358],
+              [128.535901829652659, 36.195491239083843],
+              [128.531260625326951, 36.197299103121807],
+              [128.525509643674127, 36.200132511566217],
+              [128.524084164858124, 36.200739152115823],
+              [128.524010053281074, 36.2007678830347],
+              [128.523950379823333, 36.200775378579479],
+              [128.523907436813374, 36.200775203266346],
+              [128.523002890213462, 36.200667543099229],
+              [128.522872161370685, 36.200693507276419],
+              [128.522907472168214, 36.201201094958392],
+              [128.522966718968235, 36.201501597141117],
+              [128.523105589298297, 36.201908557974924],
+              [128.523497613679865, 36.202904792455762],
+              [128.523523037767291, 36.202962664459015],
+              [128.523542495665595, 36.203000061676761],
+              [128.524977260733607, 36.204130537750309],
+              [128.525549257399405, 36.204442189799991],
+              [128.525774541227321, 36.204514006028411],
+              [128.525861843858706, 36.204548437690761],
+              [128.525982220596006, 36.204612707314809],
+              [128.5260972176672, 36.204682735870108],
+              [128.526258651763811, 36.204813426917198],
+              [128.526425784286829, 36.204960243926259],
+              [128.526549122676954, 36.205104025013178],
+              [128.528569577000553, 36.207670679012935],
+              [128.528697839021675, 36.208975846480314],
+              [128.528734019879266, 36.20933851298043],
+              [128.52875894485922, 36.209558612709991],
+              [128.529679416800008, 36.211717338410637],
+              [128.529817537028947, 36.211995446467853],
+              [128.52988356807586, 36.212072306878234],
+              [128.529944581389969, 36.212117968329942],
+              [128.530134730590703, 36.212211002691994],
+              [128.530712873478592, 36.21253148313702],
+              [128.5307929706251, 36.212599926103557],
+              [128.530820754518345, 36.212641126841312],
+              [128.530837927161343, 36.212688058878406],
+              [128.530854953551653, 36.212778963706526],
+              [128.531325717025481, 36.215544131485728],
+              [128.531345923550447, 36.215679734865425],
+              [128.5314724987077, 36.217314276550312],
+              [128.531217011649488, 36.218841959980431],
+              [128.531186375980951, 36.218980884518139],
+              [128.531172103086419, 36.219023369800816],
+              [128.530957760111136, 36.219271604961946],
+              [128.530785235349072, 36.219444038760976],
+              [128.530748284663616, 36.219483648784426],
+              [128.530650943374809, 36.21969134753698],
+              [128.530622571241224, 36.219769264808534],
+              [128.530616836097124, 36.219835940810491],
+              [128.530624429522362, 36.22001548821251],
+              [128.530690939019479, 36.220293850032625],
+              [128.530722032180051, 36.220376340532688],
+              [128.530814868771103, 36.220587144794429],
+              [128.530982893359806, 36.220870232943604],
+              [128.531024668471701, 36.220912916799087],
+              [128.531135194474331, 36.220973930117289],
+              [128.531210287265566, 36.221006847332113],
+              [128.531357098480612, 36.221044287688322],
+              [128.532385121056763, 36.221243785167438],
+              [128.533815663955806, 36.221499112773877],
+              [128.533964418932925, 36.221508245337141],
+              [128.534064185640119, 36.221508640786283],
+              [128.534216530139304, 36.221493535399915],
+              [128.534544964118993, 36.221435445799727],
+              [128.534783299740639, 36.221381028394013],
+              [128.534960244232479, 36.221344786023096],
+              [128.535100274104991, 36.221345311944603],
+              [128.535215787155352, 36.221350092219382],
+              [128.535491016209306, 36.221396317711623],
+              [128.535803814801, 36.221462880093327],
+              [128.536210246265398, 36.221569183711082],
+              [128.536398897500135, 36.221621000697368],
+              [128.536514167792802, 36.22166966221085],
+              [128.536634405803085, 36.221743939522916],
+              [128.536705804609824, 36.22180098368981],
+              [128.536837558450003, 36.221958122125052],
+              [128.536854993022132, 36.221982483265258],
+              [128.536896574375504, 36.22204063131818],
+              [128.536917284699001, 36.2220918112071],
+              [128.536930935880434, 36.222154312202889],
+              [128.537240460899937, 36.223902828358469],
+              [128.537293098456729, 36.224745538858159],
+              [128.537283944827891, 36.224807981455712],
+              [128.53725023878971, 36.224885877024441],
+              [128.537183187043524, 36.224976366435286],
+              [128.53708643833329, 36.225068279781738],
+              [128.535022082627364, 36.226907486491228],
+              [128.534946630009244, 36.226952605537498],
+              [128.533810137177937, 36.227600915774723],
+              [128.532311733967873, 36.228411600200459],
+              [128.529137023198444, 36.229557851058544],
+              [128.527122337179406, 36.231449945950857],
+              [128.52474021879047, 36.23356764611043],
+              [128.522775065325078, 36.234414926663227],
+              [128.52274559913144, 36.234429309822175],
+              [128.522692885332589, 36.234464512067447],
+              [128.52162768751225, 36.235718578768996],
+              [128.521588886741768, 36.235769507652314],
+              [128.521287248683734, 36.236197543271537],
+              [128.521236028483486, 36.236279615428749],
+              [128.5212004669105, 36.236365990257816],
+              [128.521189567225036, 36.236438313600736],
+              [128.521180308376728, 36.236514958322601],
+              [128.521179911741967, 36.236580204364813],
+              [128.521240002134533, 36.237030942139825],
+              [128.521246704283897, 36.237080618812634],
+              [128.521263860870931, 36.237131792003865],
+              [128.521341220938183, 36.2373230551311],
+              [128.521546600115613, 36.237756002197386],
+              [128.521960998515311, 36.238626485199717],
+              [128.522184484646999, 36.24072235991369],
+              [128.520686230387696, 36.243826597118556],
+              [128.520266667839735, 36.245519779616373],
+              [128.520233898657068, 36.2484892947829],
+              [128.520235357523802, 36.2485417567393],
+              [128.520259366658905, 36.248618448359686],
+              [128.520891430762191, 36.249560471355927],
+              [128.520946783003382, 36.24963698996801],
+              [128.520967568053265, 36.249659725424145],
+              [128.521117022015005, 36.249823183208967],
+              [128.521283997109265, 36.249988401509469],
+              [128.523758570298241, 36.252249093234738],
+              [128.52381433693597, 36.252281938531112],
+              [128.523877265959015, 36.252307697904598],
+              [128.52475530980189, 36.254316916138109],
+              [128.525743680658536, 36.257597466467494],
+              [128.52655751785025, 36.260847379095047],
+              [128.526899774375408, 36.262383282489019],
+              [128.529687948858879, 36.267143370639864],
+              [128.530148553802775, 36.269430439712657],
+              [128.530124645434711, 36.269497005781986],
+              [128.530159494769947, 36.269563803150184],
+              [128.530759017153173, 36.270383565381437],
+              [128.53082334286043, 36.270436201788343],
+              [128.532698779149058, 36.271850475666284],
+              [128.533785746657401, 36.272667872407574],
+              [128.533996641549493, 36.272773440430818],
+              [128.534337033772999, 36.272841424751114],
+              [128.53553944761947, 36.273041056596504],
+              [128.534887205346365, 36.27435421039489],
+              [128.532691936252661, 36.277507780177316],
+              [128.532350177269763, 36.277730354771016],
+              [128.531953931223029, 36.2779883987807],
+              [128.529805585528948, 36.278901145476297],
+              [128.527489751474661, 36.279017645667061],
+              [128.527183867963799, 36.279410517714489],
+              [128.52722282759234, 36.282298337733856],
+              [128.527456522467475, 36.284808157839826],
+              [128.527960928233028, 36.285444093844362],
+              [128.528661798820622, 36.286275025707816],
+              [128.529166794311209, 36.28681388327346],
+              [128.529338075428598, 36.292274874610662],
+              [128.529263811306464, 36.293871838144113],
+              [128.534153551464215, 36.295048121552256],
+              [128.536132136997935, 36.294985595294875],
+              [128.536161000068972, 36.294893109428713],
+              [128.536200877944964, 36.294835049436692],
+              [128.536283812956242, 36.294791673176015],
+              [128.537420262682275, 36.294513882766239],
+              [128.537609682346414, 36.294468377145613],
+              [128.538087958406265, 36.294432395894987],
+              [128.538705038480259, 36.294405716643922],
+              [128.543602156090856, 36.29252838171039],
+              [128.545531532405022, 36.291623830305831],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "군위읍",
+        id: "KR-rnsdnldmq",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-rnsdnldmq",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.455552514468735, 36.326730095192168],
+              [128.455568579630324, 36.326199333168098],
+              [128.455573809365035, 36.326106098922153],
+              [128.455687748278251, 36.325400731896856],
+              [128.455724119798731, 36.325311963501683],
+              [128.45576656067891, 36.325246723687769],
+              [128.455819157286669, 36.325209381831478],
+              [128.456017563188169, 36.325104767988364],
+              [128.458274423787458, 36.32425136391813],
+              [128.461277202240638, 36.32332314998505],
+              [128.46281567969092, 36.322888432931485],
+              [128.463196150200503, 36.322863651926475],
+              [128.464337675190762, 36.322759038038974],
+              [128.46470023183889, 36.322667287682656],
+              [128.466879092258267, 36.321974961237544],
+              [128.47116081131739, 36.320039580767087],
+              [128.472877094918658, 36.318353896603895],
+              [128.472934995241445, 36.318289623850184],
+              [128.472955562436482, 36.318260472977677],
+              [128.472971496868496, 36.318225252101236],
+              [128.473459920447766, 36.317067614598074],
+              [128.473216115596017, 36.316433019367452],
+              [128.473199634670522, 36.316399959146423],
+              [128.47315600022668, 36.316281160353086],
+              [128.473134986068118, 36.316144008401494],
+              [128.473208443682182, 36.312122950463561],
+              [128.473232893295034, 36.312079545724906],
+              [128.473266353631232, 36.312055713281126],
+              [128.473441116469331, 36.311963478611794],
+              [128.473774636276289, 36.311826189510462],
+              [128.473865595584073, 36.311795029810732],
+              [128.47392116826299, 36.311792307950213],
+              [128.474125085625047, 36.311787175556738],
+              [128.474315862875244, 36.311798552858015],
+              [128.475097881368697, 36.311810932108195],
+              [128.475351837667546, 36.311798530754153],
+              [128.47546123784025, 36.311789989664497],
+              [128.475570560777243, 36.311775519887199],
+              [128.478782198807409, 36.311217358939594],
+              [128.478839740079763, 36.3112056261362],
+              [128.478943658881491, 36.311183556353889],
+              [128.478988153621714, 36.311173281682748],
+              [128.479036468871954, 36.311158456445774],
+              [128.481648000578815, 36.309595502177054],
+              [128.481983143425339, 36.309362929952741],
+              [128.486307399682687, 36.308226954445786],
+              [128.486370287922114, 36.308230210163103],
+              [128.486412933502891, 36.30823039016218],
+              [128.487586713298839, 36.308213076487839],
+              [128.489975371321322, 36.307046686003773],
+              [128.490236748318495, 36.306885037265047],
+              [128.493118203261957, 36.304918001295853],
+              [128.496306811476956, 36.303638588705347],
+              [128.497875516006246, 36.30336914398832],
+              [128.49793952688438, 36.303414803802347],
+              [128.497992078165993, 36.303447082614341],
+              [128.498049635519124, 36.303472689923893],
+              [128.498326937849612, 36.303558001924237],
+              [128.498546473343566, 36.303613744959748],
+              [128.499734496698522, 36.303876458561646],
+              [128.499806985679157, 36.303887453827635],
+              [128.499905878325649, 36.303894560875996],
+              [128.49997843093243, 36.303893525794138],
+              [128.501852732459213, 36.303853301135831],
+              [128.5018981064012, 36.303849459986594],
+              [128.506197147510193, 36.303421315729324],
+              [128.508649372275499, 36.302635359108358],
+              [128.510675256750034, 36.300733584674028],
+              [128.510801348517646, 36.300663831027521],
+              [128.510891778632953, 36.300639825558662],
+              [128.510964306502984, 36.300642992272394],
+              [128.513393902116491, 36.30115881194402],
+              [128.51355991503533, 36.30121687334357],
+              [128.513998302879941, 36.301426116848617],
+              [128.514361483839821, 36.301654159517135],
+              [128.514602447592239, 36.30182655436753],
+              [128.514762999672143, 36.301908927162536],
+              [128.514928883840184, 36.30198848233902],
+              [128.515056151011692, 36.302014813006267],
+              [128.515153400803285, 36.302028102122186],
+              [128.517570345161602, 36.302040539182265],
+              [128.517841329600714, 36.302010088192198],
+              [128.517945932385999, 36.30198041156445],
+              [128.518011591258869, 36.301951975196715],
+              [128.518154530129749, 36.301861207726816],
+              [128.518320042896903, 36.301711311853367],
+              [128.518462528560946, 36.301567077757753],
+              [128.518714000046742, 36.301254085081531],
+              [128.518790306583895, 36.301146109638687],
+              [128.518847645688254, 36.301033055342202],
+              [128.518967006737739, 36.300905923662214],
+              [128.519632233630148, 36.300272771199658],
+              [128.519775561047993, 36.300170907259897],
+              [128.519878505414397, 36.300122564798194],
+              [128.520002595643007, 36.300088661557346],
+              [128.520273691637101, 36.300038126706816],
+              [128.523417053828126, 36.299493572151853],
+              [128.523546473793601, 36.299494092302133],
+              [128.523725984418547, 36.299529754106594],
+              [128.523847842200098, 36.299588460565978],
+              [128.524335030318241, 36.299864095682459],
+              [128.524578805619456, 36.299972799958745],
+              [128.524661328004527, 36.299996413511266],
+              [128.524762008563982, 36.299991002444571],
+              [128.524816061757662, 36.299970829481772],
+              [128.525586936597449, 36.299450147915714],
+              [128.525778327934461, 36.299305335068574],
+              [128.525919670962821, 36.299116650522159],
+              [128.526420810942312, 36.298002644146777],
+              [128.528640819615475, 36.294775421735636],
+              [128.529263811306464, 36.293871838144113],
+              [128.529338075428598, 36.292274874610662],
+              [128.529166794311209, 36.28681388327346],
+              [128.528661798820622, 36.286275025707816],
+              [128.527960928233028, 36.285444093844362],
+              [128.527456522467475, 36.284808157839826],
+              [128.52722282759234, 36.282298337733856],
+              [128.527183867963799, 36.279410517714489],
+              [128.527489751474661, 36.279017645667061],
+              [128.529805585528948, 36.278901145476297],
+              [128.531953931223029, 36.2779883987807],
+              [128.532350177269763, 36.277730354771016],
+              [128.532691936252661, 36.277507780177316],
+              [128.534887205346365, 36.27435421039489],
+              [128.53553944761947, 36.273041056596504],
+              [128.534337033772999, 36.272841424751114],
+              [128.533996641549493, 36.272773440430818],
+              [128.533785746657401, 36.272667872407574],
+              [128.532698779149058, 36.271850475666284],
+              [128.53082334286043, 36.270436201788343],
+              [128.530759017153173, 36.270383565381437],
+              [128.530159494769947, 36.269563803150184],
+              [128.530124645434711, 36.269497005781986],
+              [128.530148553802775, 36.269430439712657],
+              [128.529687948858879, 36.267143370639864],
+              [128.526899774375408, 36.262383282489019],
+              [128.52655751785025, 36.260847379095047],
+              [128.525743680658536, 36.257597466467494],
+              [128.52475530980189, 36.254316916138109],
+              [128.523877265959015, 36.252307697904598],
+              [128.52381433693597, 36.252281938531112],
+              [128.523758570298241, 36.252249093234738],
+              [128.521283997109265, 36.249988401509469],
+              [128.521117022015005, 36.249823183208967],
+              [128.520967568053265, 36.249659725424145],
+              [128.520946783003382, 36.24963698996801],
+              [128.520891430762191, 36.249560471355927],
+              [128.520259366658905, 36.248618448359686],
+              [128.520235357523802, 36.2485417567393],
+              [128.520233898657068, 36.2484892947829],
+              [128.520266667839735, 36.245519779616373],
+              [128.520686230387696, 36.243826597118556],
+              [128.522184484646999, 36.24072235991369],
+              [128.521960998515311, 36.238626485199717],
+              [128.521546600115613, 36.237756002197386],
+              [128.521341220938183, 36.2373230551311],
+              [128.521263860870931, 36.237131792003865],
+              [128.521246704283897, 36.237080618812634],
+              [128.521240002134533, 36.237030942139825],
+              [128.521179911741967, 36.236580204364813],
+              [128.521180308376728, 36.236514958322601],
+              [128.521189567225036, 36.236438313600736],
+              [128.5212004669105, 36.236365990257816],
+              [128.521236028483486, 36.236279615428749],
+              [128.521287248683734, 36.236197543271537],
+              [128.521588886741768, 36.235769507652314],
+              [128.52162768751225, 36.235718578768996],
+              [128.522692885332589, 36.234464512067447],
+              [128.52274559913144, 36.234429309822175],
+              [128.522775065325078, 36.234414926663227],
+              [128.52474021879047, 36.23356764611043],
+              [128.527122337179406, 36.231449945950857],
+              [128.529137023198444, 36.229557851058544],
+              [128.532311733967873, 36.228411600200459],
+              [128.533810137177937, 36.227600915774723],
+              [128.534946630009244, 36.226952605537498],
+              [128.535022082627364, 36.226907486491228],
+              [128.53708643833329, 36.225068279781738],
+              [128.537183187043524, 36.224976366435286],
+              [128.53725023878971, 36.224885877024441],
+              [128.537283944827891, 36.224807981455712],
+              [128.537293098456729, 36.224745538858159],
+              [128.537240460899937, 36.223902828358469],
+              [128.536930935880434, 36.222154312202889],
+              [128.536917284699001, 36.2220918112071],
+              [128.536896574375504, 36.22204063131818],
+              [128.536854993022132, 36.221982483265258],
+              [128.536837558450003, 36.221958122125052],
+              [128.536705804609824, 36.22180098368981],
+              [128.536634405803085, 36.221743939522916],
+              [128.536514167792802, 36.22166966221085],
+              [128.536398897500135, 36.221621000697368],
+              [128.536210246265398, 36.221569183711082],
+              [128.535803814801, 36.221462880093327],
+              [128.535491016209306, 36.221396317711623],
+              [128.535215787155352, 36.221350092219382],
+              [128.535100274104991, 36.221345311944603],
+              [128.534960244232479, 36.221344786023096],
+              [128.534783299740639, 36.221381028394013],
+              [128.534544964118993, 36.221435445799727],
+              [128.534216530139304, 36.221493535399915],
+              [128.534064185640119, 36.221508640786283],
+              [128.533964418932925, 36.221508245337141],
+              [128.533815663955806, 36.221499112773877],
+              [128.532385121056763, 36.221243785167438],
+              [128.531357098480612, 36.221044287688322],
+              [128.531210287265566, 36.221006847332113],
+              [128.531135194474331, 36.220973930117289],
+              [128.531024668471701, 36.220912916799087],
+              [128.530982893359806, 36.220870232943604],
+              [128.530814868771103, 36.220587144794429],
+              [128.530722032180051, 36.220376340532688],
+              [128.530690939019479, 36.220293850032625],
+              [128.530624429522362, 36.22001548821251],
+              [128.530616836097124, 36.219835940810491],
+              [128.530622571241224, 36.219769264808534],
+              [128.530650943374809, 36.21969134753698],
+              [128.530748284663616, 36.219483648784426],
+              [128.530785235349072, 36.219444038760976],
+              [128.530957760111136, 36.219271604961946],
+              [128.531172103086419, 36.219023369800816],
+              [128.531186375980951, 36.218980884518139],
+              [128.531217011649488, 36.218841959980431],
+              [128.5314724987077, 36.217314276550312],
+              [128.531345923550447, 36.215679734865425],
+              [128.531325717025481, 36.215544131485728],
+              [128.530854953551653, 36.212778963706526],
+              [128.530837927161343, 36.212688058878406],
+              [128.530820754518345, 36.212641126841312],
+              [128.5307929706251, 36.212599926103557],
+              [128.530712873478592, 36.21253148313702],
+              [128.530134730590703, 36.212211002691994],
+              [128.529944581389969, 36.212117968329942],
+              [128.52988356807586, 36.212072306878234],
+              [128.529817537028947, 36.211995446467853],
+              [128.529679416800008, 36.211717338410637],
+              [128.52875894485922, 36.209558612709991],
+              [128.528734019879266, 36.20933851298043],
+              [128.528697839021675, 36.208975846480314],
+              [128.528569577000553, 36.207670679012935],
+              [128.526549122676954, 36.205104025013178],
+              [128.526425784286829, 36.204960243926259],
+              [128.526258651763811, 36.204813426917198],
+              [128.5260972176672, 36.204682735870108],
+              [128.525982220596006, 36.204612707314809],
+              [128.525861843858706, 36.204548437690761],
+              [128.525774541227321, 36.204514006028411],
+              [128.525549257399405, 36.204442189799991],
+              [128.524977260733607, 36.204130537750309],
+              [128.523542495665595, 36.203000061676761],
+              [128.523523037767291, 36.202962664459015],
+              [128.523497613679865, 36.202904792455762],
+              [128.523105589298297, 36.201908557974924],
+              [128.522966718968235, 36.201501597141117],
+              [128.522907472168214, 36.201201094958392],
+              [128.522872161370685, 36.200693507276419],
+              [128.522002133161863, 36.200794718867719],
+              [128.518223073216149, 36.200565750804699],
+              [128.518089516795982, 36.200551709007151],
+              [128.518022864607758, 36.200539816063696],
+              [128.516607797583816, 36.20008213320277],
+              [128.516569798055002, 36.20006071399628],
+              [128.516536541409863, 36.200025703731392],
+              [128.516060671139542, 36.199464768672279],
+              [128.516008725080326, 36.199377507892343],
+              [128.515847134681479, 36.198968159154262],
+              [128.515694706444265, 36.198553620778029],
+              [128.515671603086247, 36.198423848130247],
+              [128.515662621902209, 36.198330977504114],
+              [128.515670396726563, 36.198241258838948],
+              [128.515685420999404, 36.198131107874907],
+              [128.515717254597234, 36.197999659153687],
+              [128.51580435969754, 36.197794999369378],
+              [128.515852889099534, 36.197659754134932],
+              [128.515867726153942, 36.197580507980597],
+              [128.515870580088432, 36.197495442343566],
+              [128.515852287492152, 36.197361808227143],
+              [128.515738117310008, 36.19701682377783],
+              [128.515355554353192, 36.195987548217381],
+              [128.515051262003453, 36.195446595535749],
+              [128.51256534643403, 36.191202858921372],
+              [128.509965001797326, 36.188256235247643],
+              [128.509841756157783, 36.188126127802725],
+              [128.508209923892991, 36.186414097418115],
+              [128.508065322443343, 36.18626652331546],
+              [128.507984560309211, 36.186221666575435],
+              [128.506654273024679, 36.185555340171817],
+              [128.506492429847754, 36.185498514973304],
+              [128.506101110064662, 36.185377307867597],
+              [128.504347749131909, 36.184989355717768],
+              [128.503342365575804, 36.186534346719903],
+              [128.503318063419783, 36.186598143929444],
+              [128.503264544763084, 36.186762287639588],
+              [128.502899992319669, 36.188961208693179],
+              [128.502870006093616, 36.189166833349724],
+              [128.502874428047448, 36.189223008105891],
+              [128.503089846029496, 36.190159317669071],
+              [128.503465166918829, 36.191915945363078],
+              [128.503559349060907, 36.192439484327892],
+              [128.503609966751242, 36.192733752498128],
+              [128.50357161962566, 36.192768380594181],
+              [128.498332078117187, 36.195864301513957],
+              [128.498062936818826, 36.195807113260841],
+              [128.497739550989422, 36.195768437721753],
+              [128.496792678986139, 36.195702948745861],
+              [128.496638098021577, 36.195709308016028],
+              [128.496462962000294, 36.195725608930296],
+              [128.496400557538323, 36.195757476234256],
+              [128.496371232961621, 36.195780009620847],
+              [128.496166498500742, 36.195937369929517],
+              [128.494986355667749, 36.197358383312],
+              [128.494874000173894, 36.197505003456023],
+              [128.494716236228669, 36.197711523062765],
+              [128.494732567750191, 36.199220252888459],
+              [128.494735755716164, 36.199400223552381],
+              [128.494747230289533, 36.199506433955868],
+              [128.494769944201039, 36.199623421500426],
+              [128.494873565500995, 36.199933338533839],
+              [128.495067940602752, 36.200398012702244],
+              [128.495124039268461, 36.20115607750845],
+              [128.494834731693601, 36.203085357194823],
+              [128.494485890843862, 36.205278020555156],
+              [128.491989308986774, 36.210281177397881],
+              [128.488760468887506, 36.213379477935035],
+              [128.488672380137672, 36.21354284291472],
+              [128.488579669279829, 36.213780189690887],
+              [128.488462331085742, 36.214094796451569],
+              [128.488461792420225, 36.214178355693512],
+              [128.488515862616083, 36.216136121041139],
+              [128.488527327124444, 36.216214548806519],
+              [128.489125368662513, 36.217261611297189],
+              [128.489576089760675, 36.218690079980426],
+              [128.489571628675179, 36.218746283403242],
+              [128.489540222866538, 36.218837072010466],
+              [128.489137924412489, 36.219717400053746],
+              [128.486289041413926, 36.223907035643826],
+              [128.4862635245604, 36.223926213959579],
+              [128.485997995026565, 36.223929154260411],
+              [128.485786042059459, 36.223920621573484],
+              [128.485511232102567, 36.223902110757805],
+              [128.485266039302815, 36.22387212789873],
+              [128.485023048836354, 36.223830895267341],
+              [128.483140451857366, 36.223708554516875],
+              [128.481005866941388, 36.223904004314342],
+              [128.480819298632213, 36.223950656729919],
+              [128.48045804856099, 36.224068364812638],
+              [128.479550855710272, 36.224480895277239],
+              [128.479535399217554, 36.224515550049475],
+              [128.479485652894027, 36.224712590627085],
+              [128.479458017577088, 36.224912351271776],
+              [128.479457626152282, 36.224968763509324],
+              [128.479475662687349, 36.225171877153201],
+              [128.479502393048676, 36.225310519509613],
+              [128.479539170576032, 36.225402207757604],
+              [128.479591046990919, 36.225512894522375],
+              [128.479747105626757, 36.225748447009956],
+              [128.479833156238925, 36.225843008696991],
+              [128.479943143967887, 36.225948809153685],
+              [128.479984281671591, 36.225980381527449],
+              [128.480089806334576, 36.226059120505312],
+              [128.480323376156946, 36.226188551274468],
+              [128.480378965384148, 36.226219218073815],
+              [128.480527915830265, 36.226270557923463],
+              [128.480624489716519, 36.226303648278076],
+              [128.481028620527638, 36.226398630796098],
+              [128.481288248503944, 36.226480591919213],
+              [128.481882206333637, 36.22677886058468],
+              [128.482592805896303, 36.227202968058535],
+              [128.482803333941831, 36.227346544070869],
+              [128.483040452309041, 36.227547601201401],
+              [128.485731485225273, 36.230486827180243],
+              [128.485914688195777, 36.23078021352039],
+              [128.486038868642623, 36.231039602912745],
+              [128.486089532165721, 36.231219878598495],
+              [128.486066498096932, 36.231343571129798],
+              [128.485245996591175, 36.233371408038522],
+              [128.485212659293126, 36.234040872654987],
+              [128.485198090098294, 36.234073550975658],
+              [128.485182607278091, 36.234108267939369],
+              [128.485115925905433, 36.234113598680445],
+              [128.484827423347241, 36.234067334286571],
+              [128.483163562002346, 36.233705634053507],
+              [128.482441720226404, 36.233545816906002],
+              [128.481931300586098, 36.233459199978931],
+              [128.481272863152185, 36.233360678798604],
+              [128.480525379997573, 36.233289890617122],
+              [128.480073783246837, 36.233271048452927],
+              [128.479762513946383, 36.233309082653193],
+              [128.479480849147222, 36.233347247806719],
+              [128.47927304236012, 36.233413875455213],
+              [128.479064949475173, 36.233525503514244],
+              [128.47881201654539, 36.233698819413291],
+              [128.478470174438456, 36.233877403821573],
+              [128.478240165134537, 36.233943926389792],
+              [128.478069616934619, 36.233976931659456],
+              [128.477973539723138, 36.233948392462395],
+              [128.477260145773158, 36.23348461243998],
+              [128.477046505702447, 36.233314866742354],
+              [128.476766733445913, 36.233071684614416],
+              [128.476442889244197, 36.232772014399778],
+              [128.476170599419817, 36.232517619766455],
+              [128.476134061731329, 36.232444298892133],
+              [128.476112856660535, 36.232292272856824],
+              [128.476107297186758, 36.232016537052161],
+              [128.476109103228225, 36.231746452269036],
+              [128.476022170691209, 36.231459077263892],
+              [128.475934162382458, 36.231329258744601],
+              [128.475823585274412, 36.231255646477038],
+              [128.474037283104764, 36.230398077663928],
+              [128.471907572832976, 36.229694561438173],
+              [128.470230973128196, 36.229303282079002],
+              [128.468785064079157, 36.229419643609106],
+              [128.466771019180925, 36.229559915637147],
+              [128.466708799636763, 36.229561321705596],
+              [128.466609860121309, 36.229542017174055],
+              [128.463426186269714, 36.228890138880942],
+              [128.463215602784629, 36.228830072088108],
+              [128.462145277866938, 36.228514066134125],
+              [128.462100201157853, 36.228498372523511],
+              [128.461986927100952, 36.228442389231645],
+              [128.454506608063099, 36.224690046366234],
+              [128.452916015324746, 36.223327281472436],
+              [128.450249593401082, 36.222019588190072],
+              [128.447017405393211, 36.220589717232869],
+              [128.446946903336851, 36.220580945333793],
+              [128.442285185374317, 36.218892337088178],
+              [128.440781697889264, 36.218014249099689],
+              [128.439611888605214, 36.219469523809138],
+              [128.439312535588158, 36.219874207321666],
+              [128.437803682722631, 36.22195026445911],
+              [128.437677934071189, 36.222134972477384],
+              [128.437613868219699, 36.222271538854777],
+              [128.437580718608814, 36.222386566242278],
+              [128.437635176957826, 36.223734082011184],
+              [128.437666803347611, 36.223854188516107],
+              [128.437727084890298, 36.22402909404714],
+              [128.437854119285902, 36.224319203146976],
+              [128.437905492474755, 36.224401937183835],
+              [128.43801616967832, 36.224525247259791],
+              [128.438068783783308, 36.224628571311442],
+              [128.438140521049974, 36.224827180703421],
+              [128.43822419869079, 36.225152852724875],
+              [128.438243049405088, 36.225265282675316],
+              [128.438284253539337, 36.226524039093391],
+              [128.438272089863744, 36.226618316637257],
+              [128.437676765944104, 36.2281185172044],
+              [128.437637004816565, 36.22818844624036],
+              [128.437597266502166, 36.228251344104002],
+              [128.437504335535465, 36.228375709921472],
+              [128.437321654013687, 36.228532981230245],
+              [128.43723884945436, 36.228590335718245],
+              [128.437080789217248, 36.228693250271235],
+              [128.436949470195827, 36.228757434921903],
+              [128.436717738731062, 36.22880914961577],
+              [128.436582214981996, 36.228854733200407],
+              [128.436426406564919, 36.228912755945991],
+              [128.436281646109876, 36.228993274290666],
+              [128.436121963061765, 36.229111353086296],
+              [128.435976844986641, 36.229239415691168],
+              [128.435609070904263, 36.229581414611147],
+              [128.435524321811954, 36.229671890663624],
+              [128.435370725643565, 36.229865689384106],
+              [128.434607818461103, 36.230987434123449],
+              [128.434573675774118, 36.231045850873457],
+              [128.434553601429712, 36.231108842037187],
+              [128.434218577658299, 36.232397632564449],
+              [128.434202895647189, 36.232475567263641],
+              [128.434195577382667, 36.232550993525983],
+              [128.434228642955816, 36.23283362419874],
+              [128.434268867427448, 36.233039385593266],
+              [128.434268736873946, 36.233104732593119],
+              [128.434265621702338, 36.233176801213716],
+              [128.434208534924323, 36.233687020256852],
+              [128.434195926010261, 36.233742210768156],
+              [128.434168802287672, 36.233858421488897],
+              [128.433593530429988, 36.235163624368106],
+              [128.433000366981503, 36.235579258532958],
+              [128.432434503372832, 36.235754982888068],
+              [128.430693583365468, 36.236051343768565],
+              [128.428138167397236, 36.236258048376527],
+              [128.426028322571199, 36.236376518952937],
+              [128.425639387297451, 36.236381813299722],
+              [128.425297759701238, 36.236395362665668],
+              [128.424892154957178, 36.236421320204492],
+              [128.42406446484523, 36.23655663755703],
+              [128.423914371357853, 36.23659277588326],
+              [128.423876989613547, 36.236612666384602],
+              [128.4238230280327, 36.236646761286764],
+              [128.423506100176724, 36.237760140614789],
+              [128.423399329722827, 36.238332420330771],
+              [128.423396015281469, 36.238451230568828],
+              [128.423580425579416, 36.23946839256169],
+              [128.423777041621094, 36.240364037350929],
+              [128.422034687049006, 36.242428747505976],
+              [128.421353610947676, 36.242646119606675],
+              [128.420634366399071, 36.242978837490313],
+              [128.42017318616314, 36.243232873795414],
+              [128.42005138462298, 36.243324594845042],
+              [128.419563231082947, 36.244746770158478],
+              [128.4194012419849, 36.245237603138882],
+              [128.41933271308892, 36.245537673176877],
+              [128.419324152284702, 36.245698833761345],
+              [128.420085575488145, 36.248103324668612],
+              [128.421297949905352, 36.250397921501879],
+              [128.421315235008962, 36.250423411407738],
+              [128.421391119832094, 36.250602102519657],
+              [128.421360707852671, 36.250730302304632],
+              [128.421014712371061, 36.251740612414238],
+              [128.420981054206152, 36.251809104997847],
+              [128.419368485034369, 36.254768864452799],
+              [128.419316774243185, 36.254855586126027],
+              [128.419162199583894, 36.255024692225071],
+              [128.419064577299253, 36.255090459146871],
+              [128.418956717020762, 36.255156258669381],
+              [128.418808011650071, 36.255221773249097],
+              [128.41847996091758, 36.255348599856625],
+              [128.418372424631457, 36.25538528355689],
+              [128.418110860726983, 36.255499998784906],
+              [128.418038976437686, 36.255545235313029],
+              [128.417915525633703, 36.255644041038927],
+              [128.417762782398512, 36.255819563633523],
+              [128.417190271128874, 36.256512646637177],
+              [128.417102513096609, 36.256628218364128],
+              [128.416633621568621, 36.257406068358307],
+              [128.416545470937962, 36.257571274093543],
+              [128.416565504831027, 36.257631479180027],
+              [128.419373904867342, 36.258854546981041],
+              [128.419440120141729, 36.258896331905611],
+              [128.419526426428064, 36.258962981323236],
+              [128.41963812583333, 36.25907121277924],
+              [128.420429668737142, 36.259857920771331],
+              [128.420544422041502, 36.259974990688946],
+              [128.420635724436863, 36.2600706937761],
+              [128.420742078738954, 36.260195471230958],
+              [128.420838327098181, 36.260316087446483],
+              [128.420914133342393, 36.260432416486815],
+              [128.420964259108473, 36.260561077677174],
+              [128.421034528100705, 36.260747784942922],
+              [128.42106896877408, 36.260921971006354],
+              [128.421107949445229, 36.261187193611292],
+              [128.421116939883461, 36.261340523357504],
+              [128.421115736730655, 36.261533364976195],
+              [128.421104666497115, 36.261645166547318],
+              [128.421077991151066, 36.261806606062251],
+              [128.421041180763609, 36.261938993715475],
+              [128.421004391629253, 36.262083725699327],
+              [128.42096730425564, 36.262253413125833],
+              [128.420945306549527, 36.262460403717476],
+              [128.42093348557907, 36.262688158167499],
+              [128.420931463432538, 36.262961560421616],
+              [128.420950910443111, 36.266558423574651],
+              [128.420964871906278, 36.266748994525898],
+              [128.420999502211203, 36.266910652357154],
+              [128.421460014860173, 36.268472741106109],
+              [128.421515241589304, 36.268617909927301],
+              [128.42195899651054, 36.269408503111414],
+              [128.422095304649332, 36.269636958964014],
+              [128.422176249587608, 36.269753354614153],
+              [128.422282752537939, 36.269873893918096],
+              [128.423097294287743, 36.270623555035492],
+              [128.423185355052738, 36.27069572245513],
+              [128.423342612038226, 36.27078380467394],
+              [128.424798798816511, 36.271560791421706],
+              [128.426442634900667, 36.273567778680047],
+              [128.426522763911095, 36.273674244644283],
+              [128.426985807966872, 36.276156132931135],
+              [128.426973779395581, 36.276218512887695],
+              [128.42613322148685, 36.277406463723857],
+              [128.426081091118334, 36.277473705012952],
+              [128.424337124092204, 36.278733887915216],
+              [128.424285580582136, 36.27876545447009],
+              [128.424237081704717, 36.278792158128311],
+              [128.424185544480139, 36.278806602983181],
+              [128.424100932662014, 36.27882575059941],
+              [128.423680528896568, 36.278889773546666],
+              [128.414021784282227, 36.283123556812292],
+              [128.413908228528527, 36.283185540411864],
+              [128.413729447953273, 36.283337048944936],
+              [128.413654594869371, 36.283419129768333],
+              [128.413584962333459, 36.283502698729656],
+              [128.413567487814305, 36.283533326051305],
+              [128.413544686535118, 36.283589097708756],
+              [128.412994162373167, 36.285072514093493],
+              [128.412193787590724, 36.286353456637556],
+              [128.412012347434768, 36.286620937759679],
+              [128.411537436498264, 36.287277891871582],
+              [128.411459092167064, 36.287380953675793],
+              [128.41143132132845, 36.287401824519335],
+              [128.41138972286879, 36.287428192725685],
+              [128.411254512693972, 36.287511163902586],
+              [128.413211413311416, 36.288931401191768],
+              [128.413488738447114, 36.289222115954963],
+              [128.414016786904796, 36.289805353329442],
+              [128.414078157945767, 36.289903425277046],
+              [128.41415368053265, 36.290164055833785],
+              [128.414203187548139, 36.290466178282976],
+              [128.414224932290978, 36.290786853413891],
+              [128.414199573443256, 36.290947497301936],
+              [128.414162524055428, 36.291064722509084],
+              [128.414106266472459, 36.291202796966495],
+              [128.413999574313408, 36.291417985860896],
+              [128.413928012084341, 36.291535072739933],
+              [128.413898273070032, 36.291582422286481],
+              [128.41386167883428, 36.291638191190074],
+              [128.413765912778416, 36.291745329927963],
+              [128.413659925972894, 36.291851057388499],
+              [128.413434529876127, 36.292085314739445],
+              [128.413302300000026, 36.292231380555947],
+              [128.413236154671239, 36.29230793676485],
+              [128.413202994584935, 36.292366523517124],
+              [128.413159917694685, 36.292587463333632],
+              [128.413024221875702, 36.29343145912555],
+              [128.412991440455755, 36.293663276347189],
+              [128.412999614138698, 36.29372899211095],
+              [128.413071102211148, 36.293861363833614],
+              [128.415241580493671, 36.297217440145666],
+              [128.415332153056681, 36.297341699412058],
+              [128.416635828583225, 36.298634957959443],
+              [128.416816534460054, 36.298809760726364],
+              [128.417041122123948, 36.299013540266564],
+              [128.417249047087438, 36.29913900283718],
+              [128.417410862399407, 36.299190084234347],
+              [128.417500492681256, 36.299204492271528],
+              [128.417588950459759, 36.299211406837685],
+              [128.419767376683353, 36.299100354539526],
+              [128.419807828025995, 36.299093817470521],
+              [128.419905580226612, 36.299077341148092],
+              [128.420147391175732, 36.299017516539266],
+              [128.420234104483797, 36.298988560505684],
+              [128.420435006550292, 36.298890488825997],
+              [128.4205610733149, 36.298825578291471],
+              [128.420722318854104, 36.298714539385138],
+              [128.420916648350016, 36.29857029868635],
+              [128.421052477130388, 36.298495267768736],
+              [128.421084630771077, 36.298481802050809],
+              [128.4211181940058, 36.298475221146262],
+              [128.421252112392494, 36.298475855286824],
+              [128.424233924352961, 36.298687557572329],
+              [128.427761997384664, 36.299132956132375],
+              [128.428491431317099, 36.299496653363676],
+              [128.430883055963335, 36.301095499788701],
+              [128.431212356796323, 36.301327507132306],
+              [128.431597293176765, 36.301641325046965],
+              [128.43183527824047, 36.301922372274824],
+              [128.432000573230283, 36.302140319974328],
+              [128.432157205671075, 36.302466304654928],
+              [128.432199118825395, 36.302581134376993],
+              [128.432216886562912, 36.302663753799116],
+              [128.432264096951457, 36.303152688889071],
+              [128.432279666563375, 36.303508277317597],
+              [128.432422634666466, 36.304242068137185],
+              [128.432454816109868, 36.304394343125907],
+              [128.432481531763642, 36.304470517190268],
+              [128.432523652056489, 36.304512431709604],
+              [128.433678973697823, 36.305436676710258],
+              [128.433887314281861, 36.305540746237007],
+              [128.434135008613453, 36.305637639267601],
+              [128.434481374501814, 36.305729847043047],
+              [128.434699506594086, 36.305743145577701],
+              [128.434957033487223, 36.305744351950842],
+              [128.435199620296657, 36.305716035633765],
+              [128.435617322074251, 36.305642323982156],
+              [128.435820825033773, 36.305569654087577],
+              [128.436000318380678, 36.305474799013339],
+              [128.436191702467994, 36.305350984136602],
+              [128.436332056391393, 36.305219092638815],
+              [128.436399562910509, 36.305106481591373],
+              [128.436560006169486, 36.304673699750317],
+              [128.436616807428891, 36.304562313757224],
+              [128.437131933768342, 36.304349900357806],
+              [128.437180348628374, 36.304352658986126],
+              [128.437579958822027, 36.304396265395248],
+              [128.437625351989226, 36.304416047354586],
+              [128.438349095865675, 36.305088290394842],
+              [128.438373042217108, 36.305110945841299],
+              [128.438427291324956, 36.305162291125853],
+              [128.438469122089117, 36.305228360903527],
+              [128.438846241529575, 36.305845102636631],
+              [128.438863930530346, 36.305908980966393],
+              [128.439217807337087, 36.312247022151318],
+              [128.439214408993109, 36.312300988046317],
+              [128.438951299577099, 36.31313729956419],
+              [128.438920246282265, 36.313227989345883],
+              [128.438798092193622, 36.313398366968862],
+              [128.438109158157943, 36.314020517168487],
+              [128.43843356726623, 36.314340622292413],
+              [128.439415348154625, 36.315053648274137],
+              [128.439915328984227, 36.315361865800845],
+              [128.440409912685197, 36.315663445267603],
+              [128.440464290382891, 36.315688227274272],
+              [128.440546014895233, 36.315705812784074],
+              [128.440651888082499, 36.315723434482436],
+              [128.441190151523415, 36.315757589144908],
+              [128.441417355294988, 36.315766040190169],
+              [128.441586895232064, 36.315788920260381],
+              [128.441782878364506, 36.315836072254406],
+              [128.441943025092655, 36.315895748837235],
+              [128.442175702952113, 36.315994973419379],
+              [128.442287463289574, 36.316047046243462],
+              [128.44380272163886, 36.31714742759381],
+              [128.445256377508088, 36.318317961300757],
+              [128.445301416308126, 36.318372139224707],
+              [128.44553917964214, 36.318998399686599],
+              [128.445550901886577, 36.319057302626199],
+              [128.445545769696963, 36.319356198059083],
+              [128.445544780891368, 36.319496043488094],
+              [128.445567968187135, 36.319633488062173],
+              [128.445600561610519, 36.319731872449559],
+              [128.450734008644872, 36.32575469027757],
+              [128.450973410389139, 36.326377957025699],
+              [128.45103232423827, 36.326505495143181],
+              [128.45115575032537, 36.32662852886407],
+              [128.451535736019565, 36.326961352807004],
+              [128.451598335843187, 36.327005261768996],
+              [128.451640096045026, 36.327022488832569],
+              [128.453964978109724, 36.327046492293881],
+              [128.454183570914608, 36.327034159120444],
+              [128.45470353397107, 36.326973550786477],
+              [128.455552514468735, 36.326730095192168],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "소보면",
+        id: "KR-thqhaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-thqhaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.635890404447309, 36.224196212716834],
+              [128.635959329115735, 36.223680481577503],
+              [128.635973733096421, 36.223546690132757],
+              [128.635951963368171, 36.223302940067029],
+              [128.635663623666233, 36.221306206894681],
+              [128.634984109536958, 36.219130200871554],
+              [128.634936490295701, 36.21901478811008],
+              [128.634865950806699, 36.218901100940897],
+              [128.63477925005563, 36.21879484847593],
+              [128.634660511846391, 36.218690321434053],
+              [128.634491285639939, 36.218587510751078],
+              [128.633376504213516, 36.217982899936459],
+              [128.633136258251483, 36.217868705920161],
+              [128.632852465968341, 36.217745095464963],
+              [128.632527379306055, 36.217602797471606],
+              [128.632258883567545, 36.217467032718403],
+              [128.631988838320609, 36.217328595516861],
+              [128.63192497128918, 36.217265126826099],
+              [128.631874812560397, 36.217192440324439],
+              [128.631868172719237, 36.217162690261048],
+              [128.631753654327355, 36.216234011144707],
+              [128.631758558604133, 36.216161585366123],
+              [128.631961539665042, 36.215399346759845],
+              [128.632276079020585, 36.214302201060697],
+              [128.633397336068214, 36.210592307438709],
+              [128.633752372342457, 36.209648231333425],
+              [128.633866043446744, 36.209357495865746],
+              [128.633893735030199, 36.209311166365175],
+              [128.633923668925604, 36.209283320886556],
+              [128.633964997121751, 36.209264869332735],
+              [128.634063778471614, 36.209233553276675],
+              [128.634705861453597, 36.209068447606988],
+              [128.634850561129099, 36.209040949706626],
+              [128.636564113344832, 36.208814415462527],
+              [128.638104533875008, 36.208612713707417],
+              [128.639921643865961, 36.208090662462602],
+              [128.640285669290307, 36.207663066925342],
+              [128.640625016306871, 36.207233053271644],
+              [128.640823694025443, 36.206952300218816],
+              [128.640883771786349, 36.206824864458618],
+              [128.640939218802657, 36.206517901287746],
+              [128.640981989473886, 36.206210907488696],
+              [128.640990071432839, 36.205854698380243],
+              [128.640910108875232, 36.204574119018581],
+              [128.640600786305669, 36.2026777093673],
+              [128.6404786203166, 36.202254068901347],
+              [128.639867038450888, 36.201141086162849],
+              [128.639822838949243, 36.201063529255499],
+              [128.639780675692066, 36.201020157116091],
+              [128.639724655121569, 36.200962568502213],
+              [128.638609058259732, 36.200214525546954],
+              [128.637804372560964, 36.199733182442358],
+              [128.637721860275917, 36.199686462703703],
+              [128.63767734271579, 36.199678573979185],
+              [128.63759779829897, 36.199675758329981],
+              [128.637438391061607, 36.199737222083186],
+              [128.637011264263236, 36.199890790840755],
+              [128.636359768240538, 36.200076964266778],
+              [128.636105028358998, 36.200109722216418],
+              [128.635554224450516, 36.20016740232154],
+              [128.633754455193099, 36.200352590266569],
+              [128.633690827665646, 36.200349814159146],
+              [128.629987146707634, 36.199995912539762],
+              [128.629923561064516, 36.199982789193548],
+              [128.629186609312114, 36.199699167069632],
+              [128.626057259977529, 36.198267489845279],
+              [128.62600968771676, 36.198236371015902],
+              [128.625183427319541, 36.196815431881589],
+              [128.623725592959943, 36.194107463961764],
+              [128.62338646462868, 36.193310447199082],
+              [128.623309438003503, 36.192786255540227],
+              [128.623285611452388, 36.192501344289994],
+              [128.623244995194312, 36.192346357906381],
+              [128.623188240263545, 36.192237779562497],
+              [128.623036540769931, 36.192023097874689],
+              [128.622079306088807, 36.190790505189476],
+              [128.621921159069899, 36.190593860403951],
+              [128.621744040075356, 36.190373939443361],
+              [128.621602364579928, 36.19027227920553],
+              [128.621481622623349, 36.190235763413625],
+              [128.620569517217177, 36.190008309896363],
+              [128.62035011016718, 36.189979233669376],
+              [128.620273777570901, 36.189971240427454],
+              [128.620140047570374, 36.189991467973371],
+              [128.619856363563258, 36.190091219988162],
+              [128.619623831458227, 36.190144675253102],
+              [128.619464292324238, 36.190146767025155],
+              [128.619368906560766, 36.190133555851823],
+              [128.617879373524516, 36.189563564887059],
+              [128.617784200428474, 36.189506482811474],
+              [128.617575268581845, 36.189286423495766],
+              [128.613751311033582, 36.185156415310146],
+              [128.612762397235855, 36.183960248041764],
+              [128.612656905224611, 36.183827878425127],
+              [128.612572662897946, 36.183722171834837],
+              [128.612196393007707, 36.183248640998194],
+              [128.611323848956516, 36.181811062002112],
+              [128.611163147006351, 36.181495660452441],
+              [128.611022268677829, 36.181138008163842],
+              [128.611006887607346, 36.181032126413214],
+              [128.610995852075945, 36.180691403757436],
+              [128.610983988445156, 36.179884978516178],
+              [128.611058164880774, 36.173993847464502],
+              [128.611062233176398, 36.173815767444069],
+              [128.611086399968315, 36.173484712787662],
+              [128.611205657573947, 36.172283934477029],
+              [128.611248347957144, 36.172015665187303],
+              [128.611303531531121, 36.171793872082887],
+              [128.6113486124286, 36.171683037642552],
+              [128.611406286465524, 36.17160062829057],
+              [128.611451018934957, 36.171562058110936],
+              [128.61154347838206, 36.171521075874395],
+              [128.611760136827428, 36.171452095778662],
+              [128.612075516638498, 36.171360199475814],
+              [128.61238196206358, 36.171261876413794],
+              [128.612413894512088, 36.171238769526241],
+              [128.612445962204021, 36.17118723835847],
+              [128.612539706832592, 36.170885570789537],
+              [128.612543306265536, 36.170800407123963],
+              [128.61250037772308, 36.16994277581253],
+              [128.612485041533603, 36.169829171249461],
+              [128.612460075793649, 36.169731000880709],
+              [128.612387620008178, 36.169586233334051],
+              [128.611775668303636, 36.168720941580467],
+              [128.611684034716404, 36.16859674848223],
+              [128.611495560188928, 36.168396285471587],
+              [128.611245456271234, 36.168155423862466],
+              [128.610878634321722, 36.167715474602261],
+              [128.610669991861016, 36.167456688890688],
+              [128.610190931769921, 36.16682222415578],
+              [128.610061517199284, 36.166620488968192],
+              [128.610008084049014, 36.166491242496434],
+              [128.609958775796485, 36.166173621725513],
+              [128.60992612040107, 36.165738734886283],
+              [128.610034301900242, 36.165091238278222],
+              [128.610047273018125, 36.165042262065811],
+              [128.610079306846899, 36.164998482150438],
+              [128.613009524067962, 36.163527361899106],
+              [128.613175276764821, 36.163455621526147],
+              [128.614485190452228, 36.16304294598131],
+              [128.614647663099845, 36.162991843708724],
+              [128.614857744860842, 36.162961561099912],
+              [128.615325369634576, 36.162952747820896],
+              [128.616069945761495, 36.162895765224242],
+              [128.616225886402731, 36.162878212180175],
+              [128.616286434527609, 36.162855185461389],
+              [128.61635027300332, 36.162808921170679],
+              [128.61643016811027, 36.162734322081413],
+              [128.617463657839977, 36.161433758070913],
+              [128.617848495621075, 36.160787157363956],
+              [128.617900116866821, 36.16063761577044],
+              [128.618172927655678, 36.159492430684381],
+              [128.618453329831539, 36.1579982197714],
+              [128.619603413962636, 36.154636307523909],
+              [128.620441794036566, 36.153861496862731],
+              [128.620496176733809, 36.153794565000389],
+              [128.62207746646186, 36.1508624390042],
+              [128.623244482074455, 36.148380597932487],
+              [128.623384232460467, 36.148098206893692],
+              [128.626280167574265, 36.143606461277258],
+              [128.631555728114677, 36.140705292804128],
+              [128.631615822522463, 36.140686528702851],
+              [128.633310407320067, 36.140540191224744],
+              [128.633468820371093, 36.140533912127168],
+              [128.633725470580856, 36.140556352012389],
+              [128.634920264935715, 36.140685853148454],
+              [128.635748312770318, 36.140803433038442],
+              [128.635953267967068, 36.140829755314165],
+              [128.636233408691623, 36.140819791779897],
+              [128.636346830898447, 36.140806602779151],
+              [128.636502107451889, 36.140757004406865],
+              [128.636699276557295, 36.140662879765983],
+              [128.643176296128331, 36.137388655487264],
+              [128.64321335638877, 36.137304889615898],
+              [128.643361149178077, 36.137067132095851],
+              [128.643446706228019, 36.136952366901177],
+              [128.644412609991605, 36.135704860796444],
+              [128.644979403960633, 36.134973108657185],
+              [128.645029632566292, 36.134927242383256],
+              [128.645146531461023, 36.134881574330578],
+              [128.645363574296141, 36.134809151516045],
+              [128.645632217782833, 36.134757172493188],
+              [128.645965635729738, 36.134758168375079],
+              [128.646340650523086, 36.134776864071213],
+              [128.646620547632693, 36.134815603121041],
+              [128.646978580674897, 36.134901918229801],
+              [128.650502146881024, 36.134667897430631],
+              [128.654808995426492, 36.13272539743906],
+              [128.65485061666098, 36.132699581413547],
+              [128.66009685750177, 36.128836337586407],
+              [128.662423747929694, 36.125029811849529],
+              [128.664037250186084, 36.122953281522754],
+              [128.661688131147713, 36.121837918315926],
+              [128.660542184740365, 36.12125842084788],
+              [128.650533120891396, 36.115196668251066],
+              [128.650122675341862, 36.11480758257202],
+              [128.649738812182619, 36.114460583846672],
+              [128.64776533466744, 36.112974627799822],
+              [128.647598529841275, 36.112852394673169],
+              [128.647026450698974, 36.112457459254358],
+              [128.64541127693343, 36.111511483784668],
+              [128.645363022187297, 36.111523938110523],
+              [128.644776079383178, 36.111679387772988],
+              [128.644703582627699, 36.111703550771963],
+              [128.639097423226133, 36.109852654420315],
+              [128.638990840739325, 36.109807897500602],
+              [128.638744721750896, 36.109674393981734],
+              [128.638516205649211, 36.109528136492408],
+              [128.638533356235399, 36.109423911591065],
+              [128.638964546323905, 36.107707600408887],
+              [128.639328892349567, 36.106831082721293],
+              [128.639413291992327, 36.106704728479649],
+              [128.639524234334885, 36.106615889231477],
+              [128.639619867288303, 36.10652012666953],
+              [128.639656231754174, 36.106442785236588],
+              [128.639690152587491, 36.106324033023107],
+              [128.640071400164004, 36.104970897929228],
+              [128.640143456434402, 36.104672661641246],
+              [128.640207250067704, 36.104145194182983],
+              [128.640188386925786, 36.103907004530747],
+              [128.63998185175592, 36.102923853264272],
+              [128.639937445632171, 36.102873524503998],
+              [128.639838014131271, 36.102834216596428],
+              [128.639659764214031, 36.102786273530349],
+              [128.639450568025268, 36.102732652829452],
+              [128.639272191310539, 36.102690283608979],
+              [128.639097322391677, 36.102656333458476],
+              [128.638908566672001, 36.102627808812436],
+              [128.63871291188633, 36.102621729775166],
+              [128.63852411881652, 36.102623936929916],
+              [128.638475958574503, 36.102640488596485],
+              [128.638386512944436, 36.102673632927818],
+              [128.638255709837836, 36.102768048246723],
+              [128.638183244861921, 36.102829186594327],
+              [128.638062413165386, 36.102975303136127],
+              [128.638004535697092, 36.103084606463945],
+              [128.63780377810852, 36.10350942718047],
+              [128.637605527815793, 36.103953727310959],
+              [128.637558430765154, 36.104022666893229],
+              [128.637344789566384, 36.10429237033496],
+              [128.637155649766157, 36.104490623151044],
+              [128.636831808548891, 36.104775838384015],
+              [128.636422113967654, 36.10508870823319],
+              [128.636221229628973, 36.105197184548409],
+              [128.636062307483513, 36.105253197810057],
+              [128.635413679815258, 36.105386642921736],
+              [128.635104283635968, 36.105423798434899],
+              [128.634541531179622, 36.105438852907682],
+              [128.633971359255213, 36.105415165255145],
+              [128.633659832344222, 36.105368346715991],
+              [128.633539295814785, 36.105341319136336],
+              [128.633370330212358, 36.105287800335596],
+              [128.633201072450106, 36.105233957705813],
+              [128.633140926461977, 36.10520206722498],
+              [128.633111163011591, 36.105182495368737],
+              [128.633068617785625, 36.105104344347467],
+              [128.632793672604265, 36.103829461861572],
+              [128.633413028810594, 36.102676669302568],
+              [128.633567985469568, 36.102574673352024],
+              [128.633778319200985, 36.102382284685753],
+              [128.633950497084726, 36.102133183079317],
+              [128.634211959493285, 36.1017193352275],
+              [128.634620650230602, 36.100876875383307],
+              [128.634634965973703, 36.100831046029604],
+              [128.631529078040273, 36.095133070290636],
+              [128.631303609451066, 36.094859574066589],
+              [128.631234470389614, 36.094803045770988],
+              [128.631122283180019, 36.094742236801096],
+              [128.626932949326374, 36.093332864095935],
+              [128.626874139238424, 36.093324946464499],
+              [128.626812396021023, 36.093302120798015],
+              [128.626769783262148, 36.093272875734215],
+              [128.625492726388813, 36.092247628490838],
+              [128.625458705425928, 36.092209585379564],
+              [128.625445110566233, 36.092149432482181],
+              [128.625337575590663, 36.091320978231963],
+              [128.625332104811321, 36.09123416388249],
+              [128.625359154525398, 36.091172974726362],
+              [128.625504296688177, 36.09093703685614],
+              [128.625682982811298, 36.090627673445823],
+              [128.625719678862396, 36.090522635263326],
+              [128.625547761841403, 36.088991103257634],
+              [128.625513274263881, 36.088818337569293],
+              [128.624538839649773, 36.086517916158066],
+              [128.624485850200301, 36.086408064631605],
+              [128.6244177110826, 36.086306550124867],
+              [128.623973984361299, 36.085854466023214],
+              [128.62374698429312, 36.085657366371301],
+              [128.623471676038463, 36.085393174018492],
+              [128.623348074427383, 36.085236151585235],
+              [128.623324156764227, 36.085177412259583],
+              [128.623330664940084, 36.085093161151129],
+              [128.623575834145043, 36.08367380641149],
+              [128.623676583887487, 36.083105107155298],
+              [128.623846316014351, 36.082206592996428],
+              [128.623912830884905, 36.082017189123022],
+              [128.623975766770116, 36.081882304454211],
+              [128.624113428844169, 36.081628493258989],
+              [128.622666080973573, 36.079510232550646],
+              [128.622515262878949, 36.079335909414091],
+              [128.622468849270348, 36.079291685118527],
+              [128.622413920068567, 36.079262406775499],
+              [128.622304368378309, 36.07921206006931],
+              [128.620702937816702, 36.078679850392184],
+              [128.620515818869933, 36.078619885051189],
+              [128.620187348864533, 36.07856691499537],
+              [128.617415414115044, 36.078300403063359],
+              [128.617328588170636, 36.078302025801371],
+              [128.6172188568259, 36.07831284305562],
+              [128.617122826388254, 36.078332911105406],
+              [128.616885298535806, 36.078437673163101],
+              [128.615922998924589, 36.078800297993617],
+              [128.614914196887526, 36.078977277463345],
+              [128.614500413006965, 36.079027232413701],
+              [128.614437244578369, 36.079027022011381],
+              [128.614374135310385, 36.079013217759474],
+              [128.612244913389247, 36.078313578348734],
+              [128.612136277941289, 36.078257875807772],
+              [128.611434024328673, 36.077778309165559],
+              [128.611233555278886, 36.077638698275265],
+              [128.611182160963637, 36.0775676843732],
+              [128.611117256725123, 36.077470145569563],
+              [128.610823101247433, 36.076967580956136],
+              [128.610682723257554, 36.076733081355975],
+              [128.610574483509311, 36.076597721668051],
+              [128.610276748642065, 36.076327384269391],
+              [128.610143851263388, 36.076218541243044],
+              [128.60999159496177, 36.076162694443013],
+              [128.609852771305555, 36.076148999426657],
+              [128.60769050832107, 36.076113072629973],
+              [128.606349951130113, 36.076190212721158],
+              [128.604944249889627, 36.076483968758602],
+              [128.604573576985985, 36.076549160503809],
+              [128.604284689614843, 36.076574782099335],
+              [128.603887547345948, 36.076606557865404],
+              [128.603718666774, 36.076610417652446],
+              [128.603400254076433, 36.076571673760164],
+              [128.601359317800501, 36.076313361868841],
+              [128.597851596595831, 36.075766994115554],
+              [128.597569011179644, 36.075648795235466],
+              [128.59738692271236, 36.075566357919094],
+              [128.597306308977693, 36.0755048921609],
+              [128.597211020291837, 36.075402542802749],
+              [128.597164207956808, 36.075310366918046],
+              [128.59701053776422, 36.074904415533084],
+              [128.596913029362696, 36.074692294058458],
+              [128.596821426297936, 36.074588701676625],
+              [128.596751855380802, 36.07451871955886],
+              [128.595727097252791, 36.073739224514085],
+              [128.595119961594889, 36.073333065687955],
+              [128.594708044582291, 36.073086363393571],
+              [128.589567018069431, 36.07074998791952],
+              [128.589137302644133, 36.070602058379869],
+              [128.588981751341976, 36.070565290106174],
+              [128.588886461242453, 36.0705520847578],
+              [128.588781589683094, 36.070546585235405],
+              [128.588180954133378, 36.070562530450701],
+              [128.587432072274083, 36.070611879060692],
+              [128.587266914076395, 36.070608681380214],
+              [128.587123906824502, 36.070592687224575],
+              [128.586952503286966, 36.070550823990807],
+              [128.585441342038763, 36.070115532300271],
+              [128.584705241711248, 36.06988830535289],
+              [128.583060782111176, 36.069261283049904],
+              [128.582873681008664, 36.069188332950795],
+              [128.580251295037243, 36.068004076706913],
+              [128.580054821632842, 36.067897480209396],
+              [128.579953540338494, 36.067824849265847],
+              [128.579912489795021, 36.067778204116117],
+              [128.579884324201316, 36.067710969909093],
+              [128.579828679392563, 36.067406056550112],
+              [128.579617263124447, 36.066606587755501],
+              [128.579560637160682, 36.066505619242761],
+              [128.579475423511468, 36.066394302520429],
+              [128.578127535378286, 36.06494561505869],
+              [128.577938837790725, 36.064778327583902],
+              [128.577302428235242, 36.064355117821719],
+              [128.576477317333342, 36.063811114180687],
+              [128.570950376316631, 36.060904809516053],
+              [128.570647541129745, 36.060753126760673],
+              [128.570239981218151, 36.060589000434987],
+              [128.569965118058661, 36.060493844943309],
+              [128.569825717695352, 36.060454150437515],
+              [128.569715648156745, 36.060444911168517],
+              [128.569469759849085, 36.060473133582235],
+              [128.569394932792392, 36.060497997533083],
+              [128.5693278098299, 36.060533251435039],
+              [128.569252920676007, 36.06058742390686],
+              [128.569180384173507, 36.060679179341882],
+              [128.568497894006839, 36.061814775163349],
+              [128.568385976745105, 36.062021476373268],
+              [128.567361974094212, 36.064502839478507],
+              [128.567320298368486, 36.064631666893575],
+              [128.565520550051502, 36.068377662019003],
+              [128.565388906470503, 36.068437847718641],
+              [128.565296011668522, 36.068496071514836],
+              [128.565213231062529, 36.068571046038741],
+              [128.565130346362935, 36.068664914016168],
+              [128.563507396419226, 36.070560551034625],
+              [128.56345787489775, 36.070660758907771],
+              [128.563429111189549, 36.070744296195336],
+              [128.563410536876262, 36.070850912534638],
+              [128.563401929950203, 36.071001482252619],
+              [128.563403054498451, 36.071279691584685],
+              [128.56340945117671, 36.071506640593192],
+              [128.563442597690965, 36.072496187406657],
+              [128.563444836771708, 36.072552629801955],
+              [128.563454860409593, 36.072607090063698],
+              [128.564820560084542, 36.075891475619954],
+              [128.565874986607099, 36.078706546902907],
+              [128.566441580461685, 36.081132940044668],
+              [128.567024425767158, 36.084002330652112],
+              [128.568426229334534, 36.087263134864038],
+              [128.56868477815533, 36.088747090714591],
+              [128.568714464226957, 36.088963915000242],
+              [128.568740745495774, 36.089780332019991],
+              [128.568723876468624, 36.089879502292476],
+              [128.568696650216737, 36.089986091689902],
+              [128.56863821940857, 36.090150988313297],
+              [128.568565569647149, 36.09030086506197],
+              [128.567891355147765, 36.092062825306279],
+              [128.567250657808785, 36.094768169616529],
+              [128.567240018403623, 36.094846530871514],
+              [128.567256039169052, 36.094921577730091],
+              [128.567417736119495, 36.095341315866143],
+              [128.567538797666828, 36.09572196837798],
+              [128.567552739697391, 36.095810418744442],
+              [128.567544234473417, 36.095863740788253],
+              [128.567102904941123, 36.096679266076102],
+              [128.567024159205857, 36.096802362006777],
+              [128.565168348822027, 36.098680398543912],
+              [128.565116793866991, 36.098725271717434],
+              [128.565040594240116, 36.098748328709455],
+              [128.563525355211141, 36.102213165920588],
+              [128.563639333814677, 36.102407068722904],
+              [128.564233651336025, 36.103674803161773],
+              [128.564340415126139, 36.103928255015546],
+              [128.564510007866772, 36.104345397504368],
+              [128.56454414039149, 36.104480170567335],
+              [128.564552307464737, 36.104568799601829],
+              [128.564835633017708, 36.109862320380849],
+              [128.56482469963484, 36.110030806212713],
+              [128.564808072656888, 36.110106734796275],
+              [128.564417666630419, 36.111091297642375],
+              [128.564395286291926, 36.111121134283657],
+              [128.564355254703372, 36.111152360138469],
+              [128.564298873269223, 36.11118459309867],
+              [128.563676129472412, 36.111446995129228],
+              [128.56309854374453, 36.111676697707871],
+              [128.56309562487732, 36.111900078509272],
+              [128.563122892606543, 36.112129174869267],
+              [128.563156003380755, 36.11222654013001],
+              [128.563635862360087, 36.113518537592334],
+              [128.564282435067213, 36.114721397818805],
+              [128.564303294379471, 36.114756449665528],
+              [128.564314342212441, 36.114785861265396],
+              [128.564311628550001, 36.114814155528293],
+              [128.564265851183137, 36.114999628149228],
+              [128.563900947073023, 36.116108416489425],
+              [128.56205862004461, 36.119177458153452],
+              [128.561989416800401, 36.119277406655939],
+              [128.561966862313966, 36.119298590598731],
+              [128.561933121388989, 36.119313719872892],
+              [128.559953846668208, 36.120011354635089],
+              [128.559903924093135, 36.120022255916055],
+              [128.559849020162233, 36.120027206084146],
+              [128.55981414970725, 36.120025976601248],
+              [128.559758145245752, 36.120008569533816],
+              [128.55915318994002, 36.119699829253662],
+              [128.559081097320188, 36.119661075272568],
+              [128.559038947798655, 36.119628570969539],
+              [128.558992079096441, 36.119587204871905],
+              [128.558844564312579, 36.119430684541939],
+              [128.558784958603496, 36.119384929613219],
+              [128.558726467769077, 36.119356329011723],
+              [128.558627249140017, 36.119320728242144],
+              [128.558542502701272, 36.119301216205685],
+              [128.558437832304747, 36.119289660355484],
+              [128.558354291423313, 36.119290338996592],
+              [128.558316839244327, 36.119294261585743],
+              [128.558061108203333, 36.119419489276012],
+              [128.556438683250974, 36.120336028772833],
+              [128.556288572981629, 36.12042253805582],
+              [128.555013429044351, 36.121204159473677],
+              [128.554950829600756, 36.121254581598002],
+              [128.554923184686544, 36.121290891640392],
+              [128.55266694097071, 36.125022092500259],
+              [128.552629188734613, 36.125098895552178],
+              [128.552622660776763, 36.125133310181134],
+              [128.552625052389686, 36.125160625318145],
+              [128.552766408505363, 36.125738454697199],
+              [128.552955072694374, 36.126060434271132],
+              [128.552997967380236, 36.126157384401267],
+              [128.553288604173872, 36.127225604983252],
+              [128.553295378244997, 36.127342690010224],
+              [128.55329715656913, 36.127458149336235],
+              [128.553293113596425, 36.127504710964679],
+              [128.55326797570325, 36.127588976099808],
+              [128.553148495457691, 36.127971719376688],
+              [128.553086899780055, 36.128096929695154],
+              [128.553018948400933, 36.128209239094069],
+              [128.552859576345185, 36.12835760006012],
+              [128.550726320099386, 36.129861637125146],
+              [128.54864016429741, 36.1309817040515],
+              [128.548606380568032, 36.131022500992351],
+              [128.548601882492136, 36.131070240232717],
+              [128.548606149692688, 36.131206628435528],
+              [128.548608929813582, 36.131295475844986],
+              [128.548629033900198, 36.131469568834994],
+              [128.548657244705083, 36.13156719353821],
+              [128.548715495237531, 36.131676540121802],
+              [128.548794720231939, 36.131789486721424],
+              [128.550026903908815, 36.133021587350505],
+              [128.5516471876997, 36.135303120872074],
+              [128.552570498314253, 36.138467895471372],
+              [128.552566003575777, 36.138515644675309],
+              [128.552523261356129, 36.138648604264162],
+              [128.552455423575509, 36.138737013656794],
+              [128.55024343768622, 36.140101417362857],
+              [128.550041281165221, 36.140151838221058],
+              [128.549764828553435, 36.140214957118985],
+              [128.54960065036272, 36.140244982649541],
+              [128.549398805285193, 36.140261349029878],
+              [128.549091686827296, 36.140284069916454],
+              [128.548835676675253, 36.140326621371258],
+              [128.548599956496304, 36.140376906424301],
+              [128.548465021322585, 36.140444627729444],
+              [128.548359333911066, 36.140546600598306],
+              [128.548240677799384, 36.140699706098381],
+              [128.548168474147189, 36.140832465850458],
+              [128.548146749776151, 36.140958643463946],
+              [128.548162602151393, 36.14111910901898],
+              [128.54820797313846, 36.141286440967939],
+              [128.548307246801812, 36.141469695327281],
+              [128.549111442157198, 36.145476202519923],
+              [128.549135816864748, 36.14562301616192],
+              [128.549134559851154, 36.145841360557696],
+              [128.54911666907384, 36.146035776321526],
+              [128.549006148031509, 36.14624218877789],
+              [128.548764149650509, 36.146686921610872],
+              [128.548657807559238, 36.146898110385962],
+              [128.548457609745668, 36.147357966541556],
+              [128.548316174507136, 36.147799369375143],
+              [128.548328341908331, 36.147888090196517],
+              [128.548919777036929, 36.148783320683563],
+              [128.549449461618451, 36.149384706883758],
+              [128.549545548499509, 36.14948745273081],
+              [128.549683684675898, 36.149600545436677],
+              [128.549838634418222, 36.149706915746641],
+              [128.550006411516222, 36.149786044671785],
+              [128.550115371120654, 36.149834211513806],
+              [128.550186650861377, 36.14988225705364],
+              [128.550270060743713, 36.14998701930147],
+              [128.550348987994795, 36.150154479520587],
+              [128.550427463042922, 36.150403862543691],
+              [128.550464266441594, 36.15057460861491],
+              [128.550471792877175, 36.150735033911623],
+              [128.550416416687995, 36.150857669143612],
+              [128.550361416513056, 36.150915406563108],
+              [128.549991969186777, 36.151083618565629],
+              [128.547773672667603, 36.151991306956852],
+              [128.546183129305689, 36.152638733800231],
+              [128.546053197676883, 36.152661566845637],
+              [128.545701487165246, 36.152741987892185],
+              [128.545260119843306, 36.152854753884078],
+              [128.545150256722337, 36.152887034551931],
+              [128.544466297191292, 36.153329953751928],
+              [128.544401689930481, 36.153372283148805],
+              [128.542541564017341, 36.154744717145682],
+              [128.542495981414845, 36.154792902967841],
+              [128.540788349071136, 36.160362382985141],
+              [128.540467346287926, 36.161462003801894],
+              [128.54045985043399, 36.161521953608656],
+              [128.540483482965442, 36.16155686442282],
+              [128.543008838875608, 36.164692236593353],
+              [128.544360272109998, 36.166111268473749],
+              [128.544403044898871, 36.166134652306084],
+              [128.544457794401694, 36.166150340812877],
+              [128.544536425270877, 36.166156438789379],
+              [128.544667539803754, 36.166160797710525],
+              [128.544813010533346, 36.166153626031949],
+              [128.54496808041813, 36.1661387299837],
+              [128.545087548764911, 36.166092767887186],
+              [128.545161665111948, 36.166056287143086],
+              [128.54551223741737, 36.165799869307861],
+              [128.545636859775954, 36.165688155023872],
+              [128.545759489025727, 36.165506780172912],
+              [128.545848116591543, 36.165435543837866],
+              [128.547861353701819, 36.164382804188385],
+              [128.547937707617876, 36.164371478097699],
+              [128.548264524776243, 36.164339845892492],
+              [128.54848387167965, 36.164336781176985],
+              [128.550359715681481, 36.164504240902652],
+              [128.550933967703912, 36.16456056109741],
+              [128.553118273639058, 36.164899583454194],
+              [128.553220648355847, 36.164927022288936],
+              [128.553339529639061, 36.164983595473366],
+              [128.553408468107392, 36.165018668509447],
+              [128.55346400141994, 36.165073248509323],
+              [128.553491438139162, 36.165100224066322],
+              [128.55354593943585, 36.165162335413989],
+              [128.553600331812049, 36.165237983157617],
+              [128.553628618250684, 36.165296123158129],
+              [128.554064898177472, 36.167287415611533],
+              [128.554115175460993, 36.167636626627619],
+              [128.554236019731718, 36.16949000922051],
+              [128.554307254191144, 36.170793786945346],
+              [128.554143177415312, 36.172072307824685],
+              [128.554135604544513, 36.172145795340157],
+              [128.55414227026489, 36.172232865118062],
+              [128.554251274526877, 36.173125635973996],
+              [128.554292328424708, 36.173405237453672],
+              [128.55431807795793, 36.17349045148665],
+              [128.554353443723244, 36.173562158066552],
+              [128.554507267099183, 36.173767791648764],
+              [128.554559408734264, 36.173822152065171],
+              [128.554791542101555, 36.173986658566186],
+              [128.555147215213736, 36.17433617956155],
+              [128.556019787504653, 36.175304873630992],
+              [128.556159527488091, 36.175467877271451],
+              [128.556236964240753, 36.175569488757311],
+              [128.556329202978276, 36.175701378785661],
+              [128.55658885418805, 36.176168556219466],
+              [128.556619520230782, 36.176226722140619],
+              [128.557449718246289, 36.178045925806252],
+              [128.557629244906536, 36.178284677090708],
+              [128.557659427225587, 36.178321791974483],
+              [128.557694738872868, 36.178350694655052],
+              [128.55883199807792, 36.17911843391159],
+              [128.558867441212641, 36.179122674886337],
+              [128.558913178205842, 36.179100233549669],
+              [128.558982030388421, 36.179024426860636],
+              [128.559130118424036, 36.178823514710224],
+              [128.559416138658094, 36.17828674280134],
+              [128.559725103371704, 36.177696909131555],
+              [128.559745689276781, 36.177641497045293],
+              [128.559991614854937, 36.176689460558279],
+              [128.559991989510792, 36.176598160251146],
+              [128.559992445369943, 36.176518005624423],
+              [128.560028584224909, 36.176398901267774],
+              [128.560160223145459, 36.175967704791702],
+              [128.560180657893596, 36.175939009623306],
+              [128.561272024982969, 36.175432057882063],
+              [128.561340520391866, 36.175415857935775],
+              [128.563171986513737, 36.175039265208063],
+              [128.563613321926198, 36.17495454429956],
+              [128.567588563101651, 36.17447689342184],
+              [128.568315986315838, 36.174430193631117],
+              [128.568430046925016, 36.174424437314713],
+              [128.571438789203512, 36.174522702946035],
+              [128.57150085680604, 36.174537608486887],
+              [128.571599437538822, 36.174581132254872],
+              [128.57311734524373, 36.17566237762405],
+              [128.573160223880365, 36.175699530714709],
+              [128.573170190047222, 36.17573041397732],
+              [128.573170006150349, 36.17576536032611],
+              [128.573093091472572, 36.175927464181207],
+              [128.572974953921545, 36.176221010295485],
+              [128.572833403762701, 36.176660831191818],
+              [128.572786902963657, 36.176825122514302],
+              [128.572786543282547, 36.176890903298194],
+              [128.572801434082436, 36.176948516677577],
+              [128.573423974004157, 36.178307801922962],
+              [128.573464091990132, 36.178383989265356],
+              [128.573544515941506, 36.178503506355746],
+              [128.576542155873426, 36.182268585657695],
+              [128.577110557749108, 36.182912364459234],
+              [128.5778814090325, 36.183384118195207],
+              [128.578492820900266, 36.183719294634074],
+              [128.578755772019775, 36.183827109594375],
+              [128.57913769135277, 36.183962068097799],
+              [128.579888856450907, 36.184212632879152],
+              [128.581864851965662, 36.185038891494848],
+              [128.582016541952811, 36.18510315897052],
+              [128.582206030112502, 36.185210705339074],
+              [128.582992375101639, 36.185678609987519],
+              [128.5832625150816, 36.185866602923511],
+              [128.583638510474231, 36.186163929457692],
+              [128.583686399449419, 36.186211383586944],
+              [128.583691306197238, 36.186242231448333],
+              [128.583691080381698, 36.186285412553481],
+              [128.582198713067555, 36.187802595440928],
+              [128.5821580639834, 36.187820945512719],
+              [128.582107301735618, 36.187837228767883],
+              [128.581656057307782, 36.1878664759533],
+              [128.581486324851568, 36.187855598478301],
+              [128.5813672725792, 36.187846962954524],
+              [128.580943665108805, 36.187814708701254],
+              [128.580877756486075, 36.187814471790048],
+              [128.580844774644305, 36.187822587575688],
+              [128.580801605072764, 36.187840931100538],
+              [128.580735311418579, 36.187916760387189],
+              [128.579571131639483, 36.189346713835292],
+              [128.579540508369803, 36.189385655198834],
+              [128.579063869441939, 36.191822907308676],
+              [128.578923174772598, 36.192561431441334],
+              [128.578738287592557, 36.194949349674665],
+              [128.57874322991654, 36.194976156790062],
+              [128.578768236204894, 36.195039975115549],
+              [128.57880848353534, 36.195095619942578],
+              [128.579640300860348, 36.196708486181571],
+              [128.580391455283689, 36.199598426262973],
+              [128.580577450718266, 36.200862076987853],
+              [128.580668506578775, 36.201791595887109],
+              [128.581448332476043, 36.205078471069534],
+              [128.58227766887768, 36.208178864639642],
+              [128.582688998717856, 36.209389259482023],
+              [128.583031143768181, 36.21029334402381],
+              [128.583216645796483, 36.210688627567784],
+              [128.584310106808772, 36.212136499509356],
+              [128.584363056991208, 36.212196255205299],
+              [128.584461406514748, 36.212293219593953],
+              [128.587696493121115, 36.214938061518232],
+              [128.587736923205199, 36.214966955297925],
+              [128.587772343204648, 36.214979418565719],
+              [128.588066506474917, 36.214955754179002],
+              [128.588494006696266, 36.21486802278487],
+              [128.588923014509561, 36.214750268407236],
+              [128.589586094439539, 36.21449823134197],
+              [128.589948485147943, 36.214359826728405],
+              [128.591206224046658, 36.212947448677603],
+              [128.592393007781226, 36.211478785498315],
+              [128.59544566629009, 36.208343945276297],
+              [128.595524631684299, 36.20827841805427],
+              [128.595607167651167, 36.208228682344249],
+              [128.595696057283902, 36.208198155533758],
+              [128.595800063037643, 36.208171835531985],
+              [128.595975070974561, 36.208153861387281],
+              [128.596373136093149, 36.208138822650568],
+              [128.59673805209593, 36.208168798724941],
+              [128.597602451928225, 36.208292570092745],
+              [128.60018965843588, 36.208770871512478],
+              [128.600351705286442, 36.208810539226853],
+              [128.600516124156115, 36.208862454487353],
+              [128.600632478437205, 36.208920442446342],
+              [128.606325764531618, 36.212170115683399],
+              [128.611791342722398, 36.214915134676339],
+              [128.615038194560668, 36.21775241833754],
+              [128.616210846876072, 36.218862693957703],
+              [128.619197935963314, 36.221069002317471],
+              [128.619268643841593, 36.221120594151238],
+              [128.619342068242105, 36.221161921193058],
+              [128.625500709607792, 36.224280987884399],
+              [128.625606933135941, 36.224328624039174],
+              [128.627739632792299, 36.225219097742134],
+              [128.627906740709278, 36.225279289286128],
+              [128.628728582643788, 36.225536248419758],
+              [128.628852711137938, 36.225559259353439],
+              [128.632189079565791, 36.225928909954014],
+              [128.632766225260383, 36.225764412235428],
+              [128.635890404447309, 36.224196212716834],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "효령면",
+        id: "KR-gyfudaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-gyfudaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.682068595257988, 36.116389065836756],
+              [128.681495075552988, 36.115470734862463],
+              [128.679959486988707, 36.113790194348383],
+              [128.679735864686734, 36.11361151080191],
+              [128.679576911212223, 36.113477531018766],
+              [128.678709485132401, 36.112712267137489],
+              [128.677918265183507, 36.11106035183257],
+              [128.677864026602037, 36.110906458543269],
+              [128.677544867032339, 36.109814318109116],
+              [128.67755010725017, 36.109757656603115],
+              [128.677842721979516, 36.107489281682483],
+              [128.67898499903805, 36.105661306110399],
+              [128.680057826285378, 36.105328300516881],
+              [128.6814538244559, 36.10532348021794],
+              [128.682837514450597, 36.105780373694216],
+              [128.68290225364467, 36.105808950918622],
+              [128.682961994676901, 36.105813150797957],
+              [128.68436101824247, 36.105606613064239],
+              [128.685179117267239, 36.105426725412777],
+              [128.685298962552622, 36.105366305428447],
+              [128.685373867354826, 36.105326042612589],
+              [128.687301436206752, 36.103606107587218],
+              [128.687431496677448, 36.103489014829805],
+              [128.687556591269271, 36.103363897151482],
+              [128.687671675635983, 36.103246864236155],
+              [128.687776879946, 36.103125747919691],
+              [128.689670759859837, 36.100066757926953],
+              [128.689775833241384, 36.099862362401112],
+              [128.69063394461719, 36.098134277735262],
+              [128.690710609381171, 36.097925201716926],
+              [128.690731806820992, 36.097842630022662],
+              [128.690782924732588, 36.097580593845457],
+              [128.690832941585739, 36.097257833201795],
+              [128.690825153341052, 36.097090274827252],
+              [128.690801537661855, 36.097024864484467],
+              [128.690640817232577, 36.09683943968664],
+              [128.68975744785655, 36.095774069282015],
+              [128.68767258696812, 36.093214690881382],
+              [128.687487772516249, 36.092970789802067],
+              [128.687458066790299, 36.092903207814928],
+              [128.687403013670746, 36.092675425268617],
+              [128.687429558710477, 36.092617096157433],
+              [128.687463737926947, 36.092568065393792],
+              [128.687559720183202, 36.092497935929558],
+              [128.6876230621952, 36.092459083631901],
+              [128.688199425491206, 36.092159586371544],
+              [128.688714895446111, 36.091897504090703],
+              [128.689492747009325, 36.091525248400437],
+              [128.689616871244311, 36.091471688246465],
+              [128.690514947032085, 36.091103359225713],
+              [128.690563184346985, 36.091091943591032],
+              [128.690618136194843, 36.091094158019104],
+              [128.694082494118931, 36.091456731141776],
+              [128.698648370340493, 36.092657693148873],
+              [128.698742367359131, 36.092699290972426],
+              [128.698858745573716, 36.092784931194934],
+              [128.699050187150533, 36.092957268432997],
+              [128.699132022710899, 36.093072108085707],
+              [128.699182636018151, 36.093164514833489],
+              [128.69919805091871, 36.093225021991771],
+              [128.699189671025238, 36.093355501628537],
+              [128.699185767807904, 36.094175239935971],
+              [128.699201300590602, 36.094207084801958],
+              [128.701433449605616, 36.094260461490563],
+              [128.701523615372537, 36.094260677019406],
+              [128.701621632792779, 36.09423868144512],
+              [128.701669042820129, 36.094222086804379],
+              [128.70171192158034, 36.094207073780609],
+              [128.701833666166863, 36.094137360655679],
+              [128.701955502121763, 36.09404215243547],
+              [128.702038048203718, 36.09397231575511],
+              [128.702132541870668, 36.093886592481013],
+              [128.702171693590827, 36.093809368602898],
+              [128.70223116135233, 36.09364719086178],
+              [128.702345872173453, 36.092296206034881],
+              [128.702342415434771, 36.092181577392694],
+              [128.702323050209685, 36.092108348381892],
+              [128.702009969590534, 36.091013493999853],
+              [128.701982869284194, 36.090927539132217],
+              [128.701055470200259, 36.08880277127966],
+              [128.700993056504558, 36.088719789919722],
+              [128.699487435743379, 36.087126734340949],
+              [128.699358314258689, 36.087065920184266],
+              [128.698448732975265, 36.08652317324681],
+              [128.698382400648057, 36.086449829038102],
+              [128.698277885274337, 36.086313676356163],
+              [128.697904996734422, 36.085575428919974],
+              [128.697831065542772, 36.085428813528203],
+              [128.697812295104853, 36.085228143253438],
+              [128.69781116676478, 36.084510150046],
+              [128.697823480766431, 36.08437012354478],
+              [128.698207025397181, 36.083310022955182],
+              [128.698293761901965, 36.08316063005288],
+              [128.698380492210561, 36.083039900106648],
+              [128.698463132479759, 36.082944603243021],
+              [128.698573232563916, 36.082836635753814],
+              [128.698722693641201, 36.082716064225323],
+              [128.69896126495334, 36.082546338936666],
+              [128.699153943545667, 36.082387668010647],
+              [128.699252282441535, 36.082279683269867],
+              [128.699362527844812, 36.08213666697872],
+              [128.699406160043225, 36.082018991970592],
+              [128.699501581005848, 36.081511574963621],
+              [128.699518665023163, 36.081167794599885],
+              [128.699500291883027, 36.080833509660643],
+              [128.69945042430453, 36.080577718056276],
+              [128.699380985042211, 36.080297425131086],
+              [128.699330499186971, 36.080176365682327],
+              [128.699272127485671, 36.080080698043275],
+              [128.69876586040786, 36.07941881171822],
+              [128.696021086671124, 36.077217587897579],
+              [128.693416510698768, 36.075058103062084],
+              [128.693389018147371, 36.075018376279125],
+              [128.693388260476894, 36.074958899557913],
+              [128.693418238145739, 36.07492644372271],
+              [128.693698984057221, 36.074731955085035],
+              [128.693747802833229, 36.074711280112147],
+              [128.69399019917077, 36.074582028331413],
+              [128.694057742419346, 36.074540294627447],
+              [128.694239714018352, 36.074393864549428],
+              [128.694394797495789, 36.07422320780752],
+              [128.694461759395949, 36.074128675687781],
+              [128.694499309410332, 36.07403612073329],
+              [128.6945220283921, 36.073847730278295],
+              [128.694515038146875, 36.073731811846542],
+              [128.694504578025857, 36.073682665920273],
+              [128.692846275163845, 36.06854276587557],
+              [128.691081028401385, 36.065672333189106],
+              [128.689242079432944, 36.062050616209781],
+              [128.689163784704277, 36.06189254072607],
+              [128.689129021007659, 36.061785463515776],
+              [128.688977821141179, 36.06106293249956],
+              [128.688976575246954, 36.061010827693067],
+              [128.688985697835079, 36.060976601853376],
+              [128.689009395625504, 36.06093773101518],
+              [128.689041384384609, 36.060902492207788],
+              [128.68911188688358, 36.060842400313724],
+              [128.689419797022737, 36.060611756999258],
+              [128.689712347575011, 36.060366586725515],
+              [128.689837353213363, 36.060216835850937],
+              [128.689916021191095, 36.060082517398293],
+              [128.690000577773958, 36.059865165859307],
+              [128.690045368520799, 36.059653050267286],
+              [128.690057047310432, 36.05953277002213],
+              [128.690165554417604, 36.057571735125542],
+              [128.690155877235867, 36.057434454956535],
+              [128.690128890650101, 36.057352739981134],
+              [128.68990255007688, 36.056942649123719],
+              [128.689842925653579, 36.056862265969109],
+              [128.689671109241914, 36.056666800505397],
+              [128.688846996491634, 36.055834457449478],
+              [128.685811922901564, 36.05403425492527],
+              [128.685484479778296, 36.053851433072523],
+              [128.684746912055942, 36.053457381758378],
+              [128.684161225950845, 36.053158332161487],
+              [128.683658288730214, 36.052901151678093],
+              [128.682538156289866, 36.052320484463166],
+              [128.681679698655898, 36.051857590224373],
+              [128.681028902491619, 36.051419669933765],
+              [128.680873772576376, 36.051279562871834],
+              [128.68066970887844, 36.051052731028754],
+              [128.680555529465948, 36.050912636701533],
+              [128.679136000085691, 36.049114063423097],
+              [128.679127289222095, 36.049072491308266],
+              [128.679126884017563, 36.049007290491851],
+              [128.679154894503341, 36.048914493877085],
+              [128.679389874419542, 36.048442250088542],
+              [128.679474812988929, 36.048323068138998],
+              [128.679523160903244, 36.048274710485629],
+              [128.680182102042039, 36.047712050019747],
+              [128.683320861562635, 36.04516078291639],
+              [128.686563449298518, 36.042512917808388],
+              [128.687624174015752, 36.040812843797546],
+              [128.690164491965561, 36.038136716867882],
+              [128.692697780101867, 36.036308378413239],
+              [128.692857408134955, 36.036234094694734],
+              [128.693059185775809, 36.036164219927684],
+              [128.695316840050594, 36.035422270977591],
+              [128.695711588510164, 36.035317371750907],
+              [128.695822312676057, 36.035292065020919],
+              [128.69628061671645, 36.035225823114232],
+              [128.696844635890812, 36.03536763723698],
+              [128.697533351538937, 36.033773249528487],
+              [128.697761749120787, 36.033355771975074],
+              [128.698150924950113, 36.033111980554544],
+              [128.698372453296003, 36.032977711642552],
+              [128.698538643074613, 36.032893960917001],
+              [128.698787273620979, 36.03278563765992],
+              [128.699136650488867, 36.032643311309805],
+              [128.699558102377893, 36.032487473796259],
+              [128.69968269503542, 36.032431632466441],
+              [128.699734696716774, 36.032381201734893],
+              [128.699821473332662, 36.032263538621933],
+              [128.700029378400558, 36.031975956602146],
+              [128.700085090116687, 36.031886246869327],
+              [128.700366748144972, 36.031315197784096],
+              [128.701067266358535, 36.027612726550771],
+              [128.701074143794727, 36.027509844624824],
+              [128.701058196199767, 36.027433286981633],
+              [128.699295512427568, 36.022033831227553],
+              [128.699208559774519, 36.021854202885748],
+              [128.697761909992806, 36.019440299511885],
+              [128.696877043380709, 36.018182454690127],
+              [128.695377431151854, 36.016433166622647],
+              [128.695245625371854, 36.016296647152906],
+              [128.695122550405046, 36.016367182575088],
+              [128.695069656736621, 36.016390026197854],
+              [128.694934412741446, 36.016423747879273],
+              [128.694743637641466, 36.016446240562111],
+              [128.694432316164352, 36.016430478172872],
+              [128.694217255046823, 36.016391986237778],
+              [128.692725719298096, 36.015952414460294],
+              [128.692455773976377, 36.015854841535806],
+              [128.69233266950684, 36.015789103449997],
+              [128.692284551028052, 36.015753645927923],
+              [128.692226945056859, 36.015677244102704],
+              [128.692110644885304, 36.015460931086317],
+              [128.692058525253259, 36.015401308929661],
+              [128.691976487919817, 36.015333155427378],
+              [128.69134750628254, 36.014964993302812],
+              [128.691010269206572, 36.014771716328333],
+              [128.690866314311393, 36.014706540780431],
+              [128.690811928097077, 36.014686758515253],
+              [128.690600142941378, 36.014634647721159],
+              [128.69040690248346, 36.014606568509464],
+              [128.687324922105063, 36.014227693141763],
+              [128.686664580315522, 36.014253807755104],
+              [128.685091398609188, 36.014362863215233],
+              [128.684996414991673, 36.014370449714363],
+              [128.684684785520744, 36.014433251523535],
+              [128.683622848160866, 36.014687114171963],
+              [128.676757448797616, 36.013989928622863],
+              [128.676664297037121, 36.013981930086651],
+              [128.67649747000857, 36.013979573949264],
+              [128.673344776124623, 36.014064731239415],
+              [128.667994878924645, 36.01413977270915],
+              [128.667913235742617, 36.014135585065127],
+              [128.667785459034008, 36.014109183848745],
+              [128.667405946009012, 36.014000141110259],
+              [128.667303504704478, 36.013950209726168],
+              [128.666909973879626, 36.013726615887101],
+              [128.666729022475067, 36.013596939107472],
+              [128.666685041620951, 36.013555556532467],
+              [128.666251469315853, 36.01306382983973],
+              [128.665930324648656, 36.01247980388478],
+              [128.665886617893392, 36.012279830315073],
+              [128.665760577117567, 36.011875777060993],
+              [128.665729977506345, 36.011809364554985],
+              [128.665693963223163, 36.011763241416702],
+              [128.664667193366938, 36.010804277497975],
+              [128.664549750940608, 36.010714555880071],
+              [128.66446408825098, 36.010660597788991],
+              [128.664416047626531, 36.010635790609669],
+              [128.664334352913926, 36.010615544657448],
+              [128.664223015710775, 36.010605088588505],
+              [128.663349502796166, 36.010592283515919],
+              [128.663274855541317, 36.010596428020463],
+              [128.663024373183106, 36.010622556018305],
+              [128.661698720201088, 36.010609789075843],
+              [128.659068177732962, 36.010397184453602],
+              [128.658987521324377, 36.010389090126743],
+              [128.655093045899719, 36.009728390011119],
+              [128.65335168524777, 36.008600243273079],
+              [128.653240829677827, 36.008501142304759],
+              [128.653182727040644, 36.008464026696061],
+              [128.653113984745886, 36.008431946563],
+              [128.65129211366704, 36.007652502998013],
+              [128.651219553367127, 36.007631084824041],
+              [128.651147023535373, 36.007622901771825],
+              [128.650946857381655, 36.007673281343102],
+              [128.650811921901777, 36.007730687825116],
+              [128.650768816836319, 36.007753649762464],
+              [128.650519575797546, 36.007886424829501],
+              [128.650322808084155, 36.008033473186998],
+              [128.650046533014631, 36.008242966791485],
+              [128.647766399218057, 36.009321617145396],
+              [128.644276778654472, 36.010562854647105],
+              [128.644230675978832, 36.010574118367309],
+              [128.644132818949089, 36.010583645418976],
+              [128.643987084380598, 36.010572226612425],
+              [128.643727009783788, 36.010516134291862],
+              [128.643471081731377, 36.010453250258109],
+              [128.643363575956613, 36.010426465517625],
+              [128.642920711819983, 36.010341833122617],
+              [128.642628895772134, 36.010292643751391],
+              [128.642153973199527, 36.01025354946556],
+              [128.641900347832518, 36.010261930076538],
+              [128.641783902687337, 36.010277768957245],
+              [128.641615403786915, 36.010314340042093],
+              [128.640612144655904, 36.010554962517766],
+              [128.640479286165458, 36.010711351722215],
+              [128.639464745696586, 36.012169709648546],
+              [128.638964210139875, 36.012985815236419],
+              [128.638586641353584, 36.014622267756558],
+              [128.637360247932946, 36.016969183731938],
+              [128.637331977568522, 36.017011696052883],
+              [128.637304338456772, 36.017041996476848],
+              [128.637230633720151, 36.017102230225895],
+              [128.637153151020641, 36.017145289421713],
+              [128.632728706132724, 36.019346582445365],
+              [128.631519474998015, 36.019768577374769],
+              [128.630215339728665, 36.020266686138449],
+              [128.625753651036575, 36.021995984938307],
+              [128.625657300933142, 36.02203638666866],
+              [128.625441825410263, 36.02216509586377],
+              [128.622575695827805, 36.02400335227231],
+              [128.622539304777291, 36.02402944985981],
+              [128.622519110268826, 36.024051558876764],
+              [128.622028139430881, 36.024757570457474],
+              [128.62128690436947, 36.025824590655709],
+              [128.621568722915185, 36.02663037112972],
+              [128.621854188673836, 36.027554016910102],
+              [128.621861971530194, 36.027619567838904],
+              [128.622018298063864, 36.03032570357356],
+              [128.621896820517293, 36.031689946515904],
+              [128.622344430256106, 36.034228562379575],
+              [128.623047554288831, 36.037083840845213],
+              [128.625363376449599, 36.040518292414937],
+              [128.626239763731917, 36.041995057256678],
+              [128.626363656698118, 36.042241105666925],
+              [128.627613133470902, 36.04531916016176],
+              [128.629348702161451, 36.051243462614863],
+              [128.629379776806559, 36.051479951921969],
+              [128.629389886660931, 36.051617053667563],
+              [128.629412422880307, 36.052772740906661],
+              [128.629408527032751, 36.055392032701015],
+              [128.629363918719662, 36.055813650429634],
+              [128.628959861919668, 36.057689539340991],
+              [128.628455270098726, 36.059602604651438],
+              [128.627837791332979, 36.062332608948921],
+              [128.627762248688867, 36.062699165500518],
+              [128.627728109120568, 36.06322969593662],
+              [128.627724993587151, 36.063770238922579],
+              [128.627778667824913, 36.068193009875692],
+              [128.628606561853076, 36.071550079223357],
+              [128.629485655949679, 36.074471557491961],
+              [128.630370827431676, 36.076087211377597],
+              [128.630430474191058, 36.076220874663015],
+              [128.630447303861644, 36.076277860208158],
+              [128.630460694905139, 36.076452124690384],
+              [128.630457467281616, 36.076618827042289],
+              [128.630352307752872, 36.077359298665137],
+              [128.630326946699512, 36.07740551672741],
+              [128.630306005456248, 36.077429996011197],
+              [128.630197735554844, 36.07753068472303],
+              [128.62939693780902, 36.078173651423782],
+              [128.627375926524081, 36.079638310853611],
+              [128.624113428844169, 36.081628493258989],
+              [128.623975766770116, 36.081882304454211],
+              [128.623912830884905, 36.082017189123022],
+              [128.623846316014351, 36.082206592996428],
+              [128.623676583887487, 36.083105107155298],
+              [128.623575834145043, 36.08367380641149],
+              [128.623330664940084, 36.085093161151129],
+              [128.623324156764227, 36.085177412259583],
+              [128.623348074427383, 36.085236151585235],
+              [128.623471676038463, 36.085393174018492],
+              [128.62374698429312, 36.085657366371301],
+              [128.623973984361299, 36.085854466023214],
+              [128.6244177110826, 36.086306550124867],
+              [128.624485850200301, 36.086408064631605],
+              [128.624538839649773, 36.086517916158066],
+              [128.625513274263881, 36.088818337569293],
+              [128.625547761841403, 36.088991103257634],
+              [128.625719678862396, 36.090522635263326],
+              [128.625682982811298, 36.090627673445823],
+              [128.625504296688177, 36.09093703685614],
+              [128.625359154525398, 36.091172974726362],
+              [128.625332104811321, 36.09123416388249],
+              [128.625337575590663, 36.091320978231963],
+              [128.625445110566233, 36.092149432482181],
+              [128.625458705425928, 36.092209585379564],
+              [128.625492726388813, 36.092247628490838],
+              [128.626769783262148, 36.093272875734215],
+              [128.626812396021023, 36.093302120798015],
+              [128.626874139238424, 36.093324946464499],
+              [128.626932949326374, 36.093332864095935],
+              [128.631122283180019, 36.094742236801096],
+              [128.631234470389614, 36.094803045770988],
+              [128.631303609451066, 36.094859574066589],
+              [128.631529078040273, 36.095133070290636],
+              [128.634634965973703, 36.100831046029604],
+              [128.634620650230602, 36.100876875383307],
+              [128.634211959493285, 36.1017193352275],
+              [128.633950497084726, 36.102133183079317],
+              [128.633778319200985, 36.102382284685753],
+              [128.633567985469568, 36.102574673352024],
+              [128.633413028810594, 36.102676669302568],
+              [128.632793672604265, 36.103829461861572],
+              [128.633068617785625, 36.105104344347467],
+              [128.633111163011591, 36.105182495368737],
+              [128.633140926461977, 36.10520206722498],
+              [128.633201072450106, 36.105233957705813],
+              [128.633370330212358, 36.105287800335596],
+              [128.633539295814785, 36.105341319136336],
+              [128.633659832344222, 36.105368346715991],
+              [128.633971359255213, 36.105415165255145],
+              [128.634541531179622, 36.105438852907682],
+              [128.635104283635968, 36.105423798434899],
+              [128.635413679815258, 36.105386642921736],
+              [128.636062307483513, 36.105253197810057],
+              [128.636221229628973, 36.105197184548409],
+              [128.636422113967654, 36.10508870823319],
+              [128.636831808548891, 36.104775838384015],
+              [128.637155649766157, 36.104490623151044],
+              [128.637344789566384, 36.10429237033496],
+              [128.637558430765154, 36.104022666893229],
+              [128.637605527815793, 36.103953727310959],
+              [128.63780377810852, 36.10350942718047],
+              [128.638004535697092, 36.103084606463945],
+              [128.638062413165386, 36.102975303136127],
+              [128.638183244861921, 36.102829186594327],
+              [128.638255709837836, 36.102768048246723],
+              [128.638386512944436, 36.102673632927818],
+              [128.638475958574503, 36.102640488596485],
+              [128.63852411881652, 36.102623936929916],
+              [128.63871291188633, 36.102621729775166],
+              [128.638908566672001, 36.102627808812436],
+              [128.639097322391677, 36.102656333458476],
+              [128.639272191310539, 36.102690283608979],
+              [128.639450568025268, 36.102732652829452],
+              [128.639659764214031, 36.102786273530349],
+              [128.639838014131271, 36.102834216596428],
+              [128.639937445632171, 36.102873524503998],
+              [128.63998185175592, 36.102923853264272],
+              [128.640188386925786, 36.103907004530747],
+              [128.640207250067704, 36.104145194182983],
+              [128.640143456434402, 36.104672661641246],
+              [128.640071400164004, 36.104970897929228],
+              [128.639690152587491, 36.106324033023107],
+              [128.639656231754174, 36.106442785236588],
+              [128.639619867288303, 36.10652012666953],
+              [128.639524234334885, 36.106615889231477],
+              [128.639413291992327, 36.106704728479649],
+              [128.639328892349567, 36.106831082721293],
+              [128.638964546323905, 36.107707600408887],
+              [128.638533356235399, 36.109423911591065],
+              [128.638516205649211, 36.109528136492408],
+              [128.638744721750896, 36.109674393981734],
+              [128.638990840739325, 36.109807897500602],
+              [128.639097423226133, 36.109852654420315],
+              [128.644703582627699, 36.111703550771963],
+              [128.644776079383178, 36.111679387772988],
+              [128.645363022187297, 36.111523938110523],
+              [128.64541127693343, 36.111511483784668],
+              [128.647026450698974, 36.112457459254358],
+              [128.647598529841275, 36.112852394673169],
+              [128.64776533466744, 36.112974627799822],
+              [128.649738812182619, 36.114460583846672],
+              [128.650122675341862, 36.11480758257202],
+              [128.650533120891396, 36.115196668251066],
+              [128.660542184740365, 36.12125842084788],
+              [128.661688131147713, 36.121837918315926],
+              [128.664037250186084, 36.122953281522754],
+              [128.66493120963861, 36.12298050516997],
+              [128.665170826355279, 36.123005073997582],
+              [128.665275232630222, 36.12303420870272],
+              [128.66532767442456, 36.123056237370548],
+              [128.665473758226454, 36.123156690319895],
+              [128.665667888978703, 36.123426957011311],
+              [128.665754110022277, 36.123630510132443],
+              [128.665841161822641, 36.123849032018896],
+              [128.665868507900313, 36.123945990088323],
+              [128.665961089713818, 36.124197416649672],
+              [128.666062109835252, 36.124342327733245],
+              [128.666148911048083, 36.124437121127727],
+              [128.666217657127362, 36.124492908469634],
+              [128.66825402504162, 36.124940729878233],
+              [128.668305000946361, 36.124943408712952],
+              [128.668342029248322, 36.124935921030492],
+              [128.668395020577037, 36.124908586666443],
+              [128.668734267308423, 36.124328254025677],
+              [128.669575596479888, 36.123617461729161],
+              [128.672608405936074, 36.121450314955105],
+              [128.672685870911835, 36.121408524884387],
+              [128.672725445988846, 36.12137719462369],
+              [128.672588356905294, 36.119250863698099],
+              [128.672383267020876, 36.118541961738551],
+              [128.672369965072477, 36.118457845932021],
+              [128.672383250835566, 36.118387669717343],
+              [128.672404147061059, 36.118329699497316],
+              [128.672492690337208, 36.118139870957776],
+              [128.67268330330964, 36.11776512975846],
+              [128.672763067023482, 36.117655584250066],
+              [128.672963289774799, 36.117556923311689],
+              [128.673062652501301, 36.117513746602874],
+              [128.673162093453868, 36.117479943035718],
+              [128.674528236696176, 36.117093378206263],
+              [128.674631219845708, 36.117115372435954],
+              [128.675157105998665, 36.11731515657106],
+              [128.675351482865238, 36.117393113186338],
+              [128.681441232833009, 36.117023991622993],
+              [128.68153674610133, 36.116999379293524],
+              [128.681647559257243, 36.116953262611723],
+              [128.681705054498394, 36.116906910946895],
+              [128.681827696008014, 36.116767732733258],
+              [128.682012107888454, 36.116486237105512],
+              [128.682068595257988, 36.116389065836756],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "부계면",
+        id: "KR-qnrPaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-qnrPaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.699854852004762, 36.20876218030719],
+              [128.698840717451901, 36.20785868945795],
+              [128.696897511046274, 36.205209216363329],
+              [128.696576817952916, 36.204754097206468],
+              [128.696565480769806, 36.204722447890376],
+              [128.696492612478409, 36.202850975892204],
+              [128.696504344735558, 36.202782177519367],
+              [128.696569214167198, 36.202611265494774],
+              [128.696620166230446, 36.202481211723253],
+              [128.696681413246921, 36.2023875893316],
+              [128.696837794010946, 36.201944022614946],
+              [128.696938061105186, 36.200259564630734],
+              [128.696498795262414, 36.197635758013142],
+              [128.697166895161502, 36.196444247269461],
+              [128.697294764936032, 36.195984975762663],
+              [128.696832317091236, 36.195436346772283],
+              [128.695698822612798, 36.194961529944869],
+              [128.695565277302251, 36.194910527185712],
+              [128.694809286987066, 36.194621794336399],
+              [128.693864868620466, 36.193932117648146],
+              [128.691972130840696, 36.191371465706325],
+              [128.691557741039077, 36.188958625864316],
+              [128.691549356592731, 36.188869647716103],
+              [128.691583301146352, 36.188793183882169],
+              [128.69172239604822, 36.18864446224746],
+              [128.692183219359123, 36.187962289176255],
+              [128.692594854705504, 36.185901741969261],
+              [128.692617313885165, 36.185698547560847],
+              [128.692593221411869, 36.185212001001382],
+              [128.692578648623709, 36.185157854752667],
+              [128.691409479820095, 36.181791057465865],
+              [128.690950233869756, 36.181362756146171],
+              [128.682804022907561, 36.178613532168548],
+              [128.682713856755242, 36.178592801282981],
+              [128.682544189796175, 36.178592341843853],
+              [128.680005287833524, 36.178822709616931],
+              [128.679846273504182, 36.178863281708807],
+              [128.679698016812836, 36.178927321132143],
+              [128.679524330096172, 36.179029349023018],
+              [128.679332289564286, 36.179201627275312],
+              [128.679071286624293, 36.179470337391159],
+              [128.678800122746452, 36.179797828025087],
+              [128.678600037041576, 36.18017506756906],
+              [128.678382207748996, 36.180473188329962],
+              [128.678131741221506, 36.180809304879148],
+              [128.677983153700126, 36.18094946976872],
+              [128.677874574658915, 36.181016540414674],
+              [128.67767939770107, 36.181074571629864],
+              [128.677516847988215, 36.181100501583487],
+              [128.673461359379672, 36.181386564516252],
+              [128.672974837525658, 36.181390346773888],
+              [128.67293433156712, 36.181379262971554],
+              [128.672858701771389, 36.18133806942518],
+              [128.672786786745661, 36.181270506346507],
+              [128.672778679420674, 36.181229878124221],
+              [128.67277447639259, 36.181187907164762],
+              [128.672776546048993, 36.181126975506118],
+              [128.672809817067588, 36.180939638621538],
+              [128.672842683176526, 36.180851882813215],
+              [128.672980878298034, 36.18060627463894],
+              [128.673129668221037, 36.180419239014725],
+              [128.673338825272396, 36.180234700968981],
+              [128.677637729096233, 36.17692908145527],
+              [128.677972218412208, 36.176737890575829],
+              [128.678308915968358, 36.176495715603863],
+              [128.679828514404335, 36.175259870040783],
+              [128.679835895986258, 36.175218898507048],
+              [128.679634999232661, 36.174913766495223],
+              [128.679312375415577, 36.174498391443116],
+              [128.678960182414727, 36.174119669073697],
+              [128.677881623481142, 36.171737215288076],
+              [128.676263706770129, 36.166358545080413],
+              [128.676253352991921, 36.166244295524599],
+              [128.6762682445233, 36.166133067712529],
+              [128.676312099725408, 36.166001392120897],
+              [128.6763810611304, 36.165907860676171],
+              [128.676439044868914, 36.165852369049489],
+              [128.676522274732662, 36.165799893672229],
+              [128.676710196447459, 36.165738911261847],
+              [128.677830886249211, 36.165520277578658],
+              [128.678235419933884, 36.165445237263505],
+              [128.679326210195484, 36.165251950402876],
+              [128.682073884226924, 36.164945523356565],
+              [128.685978474476144, 36.163997202744234],
+              [128.686058116678652, 36.163935913413987],
+              [128.686232169295351, 36.163734306100629],
+              [128.686326621724675, 36.163582256322229],
+              [128.686358019086867, 36.163464662289542],
+              [128.687936638306638, 36.160952525361012],
+              [128.689859409079276, 36.159484423265361],
+              [128.696790646632678, 36.155357771333186],
+              [128.697171880829842, 36.155193328988801],
+              [128.697493534812736, 36.155071132922764],
+              [128.697565775416024, 36.155053764015079],
+              [128.697684871260606, 36.155054050360611],
+              [128.697796672838564, 36.155071898863859],
+              [128.697976862491572, 36.155133861810334],
+              [128.698426495843648, 36.1555157199452],
+              [128.699304053352705, 36.155946644921436],
+              [128.700639223491493, 36.15636522427873],
+              [128.70092398502311, 36.156453817650068],
+              [128.701140401431161, 36.15648071509009],
+              [128.701335261563941, 36.156487054926359],
+              [128.701530217878769, 36.156469972248772],
+              [128.703859861391805, 36.156177620425773],
+              [128.704752237608716, 36.156060278726414],
+              [128.704817223195732, 36.156051655481548],
+              [128.70486784599666, 36.156025439528783],
+              [128.706232586468786, 36.154733171992],
+              [128.706525202827208, 36.153640046810416],
+              [128.70645487496671, 36.153147869280154],
+              [128.707187993153923, 36.150402852644291],
+              [128.707077633931306, 36.150051834337098],
+              [128.707037870901388, 36.148558967722693],
+              [128.707334452578209, 36.147339291710203],
+              [128.707623171391219, 36.145094027006067],
+              [128.70764755503609, 36.14484211706872],
+              [128.707654730805558, 36.144705950780349],
+              [128.707645255533237, 36.144562914315294],
+              [128.707632199563903, 36.14445942538773],
+              [128.707595813425769, 36.144325772772284],
+              [128.706707261268463, 36.142750455327722],
+              [128.706637103844912, 36.14264411588919],
+              [128.706535273021558, 36.142508954169102],
+              [128.706456734853901, 36.142416210009173],
+              [128.706391484749389, 36.142365586680185],
+              [128.706192236192493, 36.142253435349247],
+              [128.705546026688978, 36.141919237788308],
+              [128.702051197713985, 36.140559807380647],
+              [128.70122974817744, 36.140275438897497],
+              [128.700415356372957, 36.140087206088218],
+              [128.699511897803973, 36.139934776343217],
+              [128.698415005167959, 36.139986062136096],
+              [128.69800784577086, 36.139882919059822],
+              [128.697263101567501, 36.138208019357904],
+              [128.697155266499408, 36.137762829432866],
+              [128.696729473338337, 36.13599645785677],
+              [128.696729618092462, 36.135957982518889],
+              [128.696753552373082, 36.135888297059118],
+              [128.696885166113645, 36.13558078542512],
+              [128.696929855135721, 36.135516014904503],
+              [128.696974506945537, 36.135463213232917],
+              [128.697025028001093, 36.135410350176691],
+              [128.697093388981443, 36.13537214228252],
+              [128.697173554104637, 36.135328986042524],
+              [128.697298173131088, 36.135281182479375],
+              [128.69733971958351, 36.135252456887407],
+              [128.697375425535284, 36.13521405963904],
+              [128.697405252606018, 36.135168438732379],
+              [128.697426243232229, 36.135113165315197],
+              [128.697447385381764, 36.134988216903643],
+              [128.697477995684807, 36.134742993039964],
+              [128.697419448201885, 36.133849261547383],
+              [128.697356126079285, 36.133441688303996],
+              [128.697297183569731, 36.133247734500479],
+              [128.695951446869856, 36.130669011735435],
+              [128.695478735267045, 36.130018152525771],
+              [128.695073350401628, 36.129471124912946],
+              [128.694748692174073, 36.129140824271893],
+              [128.693147522265178, 36.127530757603822],
+              [128.692998557659479, 36.127388701338234],
+              [128.692789851721443, 36.127210081196388],
+              [128.692620841615451, 36.127080155623766],
+              [128.692436965719082, 36.126946110935862],
+              [128.692224861106808, 36.126812996943407],
+              [128.692070692483554, 36.126723570358372],
+              [128.689090806851851, 36.124594224339006],
+              [128.686826506147526, 36.122975761162806],
+              [128.686692327081261, 36.122862047200783],
+              [128.686493639386299, 36.122687488685806],
+              [128.686384395613715, 36.122585985416016],
+              [128.686300141438807, 36.12246032452498],
+              [128.685803155780434, 36.121131545581513],
+              [128.685783603661235, 36.121050566574553],
+              [128.685764407039045, 36.120852249832922],
+              [128.68575564219168, 36.120544661536108],
+              [128.685771362174222, 36.120362561789442],
+              [128.685802132478813, 36.120140035072367],
+              [128.68582281470168, 36.119966062942446],
+              [128.685818253618692, 36.119860791087888],
+              [128.68581351929268, 36.119792023366848],
+              [128.685582122657109, 36.119077479879259],
+              [128.685567285368279, 36.119041028747446],
+              [128.685462998055556, 36.118951718969349],
+              [128.685254307995109, 36.118781191389068],
+              [128.68504217065427, 36.118612193154078],
+              [128.682068595257988, 36.116389065836756],
+              [128.682012107888454, 36.116486237105512],
+              [128.681827696008014, 36.116767732733258],
+              [128.681705054498394, 36.116906910946895],
+              [128.681647559257243, 36.116953262611723],
+              [128.68153674610133, 36.116999379293524],
+              [128.681441232833009, 36.117023991622993],
+              [128.675351482865238, 36.117393113186338],
+              [128.675157105998665, 36.11731515657106],
+              [128.674631219845708, 36.117115372435954],
+              [128.674528236696176, 36.117093378206263],
+              [128.673162093453868, 36.117479943035718],
+              [128.673062652501301, 36.117513746602874],
+              [128.672963289774799, 36.117556923311689],
+              [128.672763067023482, 36.117655584250066],
+              [128.67268330330964, 36.11776512975846],
+              [128.672492690337208, 36.118139870957776],
+              [128.672404147061059, 36.118329699497316],
+              [128.672383250835566, 36.118387669717343],
+              [128.672369965072477, 36.118457845932021],
+              [128.672383267020876, 36.118541961738551],
+              [128.672588356905294, 36.119250863698099],
+              [128.672725445988846, 36.12137719462369],
+              [128.672685870911835, 36.121408524884387],
+              [128.672608405936074, 36.121450314955105],
+              [128.669575596479888, 36.123617461729161],
+              [128.668734267308423, 36.124328254025677],
+              [128.668395020577037, 36.124908586666443],
+              [128.668342029248322, 36.124935921030492],
+              [128.668305000946361, 36.124943408712952],
+              [128.66825402504162, 36.124940729878233],
+              [128.666217657127362, 36.124492908469634],
+              [128.666148911048083, 36.124437121127727],
+              [128.666062109835252, 36.124342327733245],
+              [128.665961089713818, 36.124197416649672],
+              [128.665868507900313, 36.123945990088323],
+              [128.665841161822641, 36.123849032018896],
+              [128.665754110022277, 36.123630510132443],
+              [128.665667888978703, 36.123426957011311],
+              [128.665473758226454, 36.123156690319895],
+              [128.66532767442456, 36.123056237370548],
+              [128.665275232630222, 36.12303420870272],
+              [128.665170826355279, 36.123005073997582],
+              [128.66493120963861, 36.12298050516997],
+              [128.664037250186084, 36.122953281522754],
+              [128.662423747929694, 36.125029811849529],
+              [128.66009685750177, 36.128836337586407],
+              [128.65485061666098, 36.132699581413547],
+              [128.654808995426492, 36.13272539743906],
+              [128.650502146881024, 36.134667897430631],
+              [128.646978580674897, 36.134901918229801],
+              [128.646620547632693, 36.134815603121041],
+              [128.646340650523086, 36.134776864071213],
+              [128.645965635729738, 36.134758168375079],
+              [128.645632217782833, 36.134757172493188],
+              [128.645363574296141, 36.134809151516045],
+              [128.645146531461023, 36.134881574330578],
+              [128.645029632566292, 36.134927242383256],
+              [128.644979403960633, 36.134973108657185],
+              [128.644412609991605, 36.135704860796444],
+              [128.643446706228019, 36.136952366901177],
+              [128.643361149178077, 36.137067132095851],
+              [128.64321335638877, 36.137304889615898],
+              [128.643176296128331, 36.137388655487264],
+              [128.636699276557295, 36.140662879765983],
+              [128.636502107451889, 36.140757004406865],
+              [128.636346830898447, 36.140806602779151],
+              [128.636233408691623, 36.140819791779897],
+              [128.635953267967068, 36.140829755314165],
+              [128.635748312770318, 36.140803433038442],
+              [128.634920264935715, 36.140685853148454],
+              [128.633725470580856, 36.140556352012389],
+              [128.633468820371093, 36.140533912127168],
+              [128.633310407320067, 36.140540191224744],
+              [128.631615822522463, 36.140686528702851],
+              [128.631555728114677, 36.140705292804128],
+              [128.626280167574265, 36.143606461277258],
+              [128.623384232460467, 36.148098206893692],
+              [128.623244482074455, 36.148380597932487],
+              [128.62207746646186, 36.1508624390042],
+              [128.620496176733809, 36.153794565000389],
+              [128.620441794036566, 36.153861496862731],
+              [128.619603413962636, 36.154636307523909],
+              [128.618453329831539, 36.1579982197714],
+              [128.618172927655678, 36.159492430684381],
+              [128.617900116866821, 36.16063761577044],
+              [128.617848495621075, 36.160787157363956],
+              [128.617463657839977, 36.161433758070913],
+              [128.61643016811027, 36.162734322081413],
+              [128.61635027300332, 36.162808921170679],
+              [128.616286434527609, 36.162855185461389],
+              [128.616225886402731, 36.162878212180175],
+              [128.616069945761495, 36.162895765224242],
+              [128.615325369634576, 36.162952747820896],
+              [128.614857744860842, 36.162961561099912],
+              [128.614647663099845, 36.162991843708724],
+              [128.614485190452228, 36.16304294598131],
+              [128.613175276764821, 36.163455621526147],
+              [128.613009524067962, 36.163527361899106],
+              [128.610079306846899, 36.164998482150438],
+              [128.610047273018125, 36.165042262065811],
+              [128.610034301900242, 36.165091238278222],
+              [128.60992612040107, 36.165738734886283],
+              [128.609958775796485, 36.166173621725513],
+              [128.610008084049014, 36.166491242496434],
+              [128.610061517199284, 36.166620488968192],
+              [128.610190931769921, 36.16682222415578],
+              [128.610669991861016, 36.167456688890688],
+              [128.610878634321722, 36.167715474602261],
+              [128.611245456271234, 36.168155423862466],
+              [128.611495560188928, 36.168396285471587],
+              [128.611684034716404, 36.16859674848223],
+              [128.611775668303636, 36.168720941580467],
+              [128.612387620008178, 36.169586233334051],
+              [128.612460075793649, 36.169731000880709],
+              [128.612485041533603, 36.169829171249461],
+              [128.61250037772308, 36.16994277581253],
+              [128.612543306265536, 36.170800407123963],
+              [128.612539706832592, 36.170885570789537],
+              [128.612445962204021, 36.17118723835847],
+              [128.612413894512088, 36.171238769526241],
+              [128.61238196206358, 36.171261876413794],
+              [128.612075516638498, 36.171360199475814],
+              [128.611760136827428, 36.171452095778662],
+              [128.61154347838206, 36.171521075874395],
+              [128.611451018934957, 36.171562058110936],
+              [128.611406286465524, 36.17160062829057],
+              [128.6113486124286, 36.171683037642552],
+              [128.611303531531121, 36.171793872082887],
+              [128.611248347957144, 36.172015665187303],
+              [128.611205657573947, 36.172283934477029],
+              [128.611086399968315, 36.173484712787662],
+              [128.611062233176398, 36.173815767444069],
+              [128.611058164880774, 36.173993847464502],
+              [128.610983988445156, 36.179884978516178],
+              [128.610995852075945, 36.180691403757436],
+              [128.611006887607346, 36.181032126413214],
+              [128.611022268677829, 36.181138008163842],
+              [128.611163147006351, 36.181495660452441],
+              [128.611323848956516, 36.181811062002112],
+              [128.612196393007707, 36.183248640998194],
+              [128.612572662897946, 36.183722171834837],
+              [128.612656905224611, 36.183827878425127],
+              [128.612762397235855, 36.183960248041764],
+              [128.613751311033582, 36.185156415310146],
+              [128.617575268581845, 36.189286423495766],
+              [128.617784200428474, 36.189506482811474],
+              [128.617879373524516, 36.189563564887059],
+              [128.619368906560766, 36.190133555851823],
+              [128.619464292324238, 36.190146767025155],
+              [128.619623831458227, 36.190144675253102],
+              [128.619856363563258, 36.190091219988162],
+              [128.620140047570374, 36.189991467973371],
+              [128.620273777570901, 36.189971240427454],
+              [128.62035011016718, 36.189979233669376],
+              [128.620569517217177, 36.190008309896363],
+              [128.621481622623349, 36.190235763413625],
+              [128.621602364579928, 36.19027227920553],
+              [128.621744040075356, 36.190373939443361],
+              [128.621921159069899, 36.190593860403951],
+              [128.622079306088807, 36.190790505189476],
+              [128.623036540769931, 36.192023097874689],
+              [128.623188240263545, 36.192237779562497],
+              [128.623244995194312, 36.192346357906381],
+              [128.623285611452388, 36.192501344289994],
+              [128.623309438003503, 36.192786255540227],
+              [128.62338646462868, 36.193310447199082],
+              [128.623725592959943, 36.194107463961764],
+              [128.625183427319541, 36.196815431881589],
+              [128.62600968771676, 36.198236371015902],
+              [128.626057259977529, 36.198267489845279],
+              [128.629186609312114, 36.199699167069632],
+              [128.629923561064516, 36.199982789193548],
+              [128.629987146707634, 36.199995912539762],
+              [128.633690827665646, 36.200349814159146],
+              [128.633754455193099, 36.200352590266569],
+              [128.635554224450516, 36.20016740232154],
+              [128.636105028358998, 36.200109722216418],
+              [128.636359768240538, 36.200076964266778],
+              [128.637011264263236, 36.199890790840755],
+              [128.637438391061607, 36.199737222083186],
+              [128.63759779829897, 36.199675758329981],
+              [128.63767734271579, 36.199678573979185],
+              [128.637721860275917, 36.199686462703703],
+              [128.637804372560964, 36.199733182442358],
+              [128.638609058259732, 36.200214525546954],
+              [128.639724655121569, 36.200962568502213],
+              [128.639780675692066, 36.201020157116091],
+              [128.639822838949243, 36.201063529255499],
+              [128.639867038450888, 36.201141086162849],
+              [128.6404786203166, 36.202254068901347],
+              [128.640600786305669, 36.2026777093673],
+              [128.640910108875232, 36.204574119018581],
+              [128.640990071432839, 36.205854698380243],
+              [128.640981989473886, 36.206210907488696],
+              [128.640939218802657, 36.206517901287746],
+              [128.640883771786349, 36.206824864458618],
+              [128.640823694025443, 36.206952300218816],
+              [128.640625016306871, 36.207233053271644],
+              [128.640285669290307, 36.207663066925342],
+              [128.639921643865961, 36.208090662462602],
+              [128.640181931874082, 36.208336930593482],
+              [128.641458857423203, 36.209963383000975],
+              [128.641595370834125, 36.210192493619608],
+              [128.641836049815225, 36.210648145399304],
+              [128.642012714409759, 36.211045653599356],
+              [128.642078317281971, 36.211241148757139],
+              [128.642177452985294, 36.211569744273916],
+              [128.642306549574187, 36.211940237033922],
+              [128.642342951849798, 36.212001724852975],
+              [128.642397735679566, 36.212059565468081],
+              [128.647602047703856, 36.216490547449766],
+              [128.649355852824101, 36.217686279025841],
+              [128.649837972491355, 36.217563071861271],
+              [128.652078016858042, 36.217094157818067],
+              [128.652217818590884, 36.21709275217912],
+              [128.652408107163808, 36.217117465393088],
+              [128.65274495456211, 36.217170533287593],
+              [128.653042718351401, 36.217264321961842],
+              [128.65344826312483, 36.217424381892194],
+              [128.655760686732805, 36.218498904017984],
+              [128.655856739495135, 36.218582916938772],
+              [128.655899880569052, 36.218659278710525],
+              [128.655931620354835, 36.218754168368889],
+              [128.655946893105721, 36.218921554809519],
+              [128.655956677546783, 36.219176717061423],
+              [128.655925417240468, 36.219505734101944],
+              [128.663386573916085, 36.221435946724526],
+              [128.664413881488173, 36.220947875769909],
+              [128.664783310924491, 36.219139961048434],
+              [128.666779234563933, 36.215347840783963],
+              [128.667447039090888, 36.212162290870495],
+              [128.667438336815138, 36.212037644385923],
+              [128.667448156200948, 36.211923659602874],
+              [128.667487349443235, 36.211858696072092],
+              [128.668868287095762, 36.209841815531114],
+              [128.669241134907736, 36.209321237074661],
+              [128.669356059203295, 36.209175199770932],
+              [128.669475941492749, 36.209123158070163],
+              [128.669864062779681, 36.208984738922688],
+              [128.671246295712763, 36.208614474257921],
+              [128.672812350139736, 36.208403488583365],
+              [128.672779409351278, 36.209129319499851],
+              [128.672769002656452, 36.209942976792412],
+              [128.673814444238104, 36.21180436872374],
+              [128.6738601184, 36.211863969009478],
+              [128.673928727078788, 36.211919931183864],
+              [128.674856685486446, 36.212495545233466],
+              [128.67492759284292, 36.212534853292411],
+              [128.681686553404148, 36.214909723460039],
+              [128.682764821984307, 36.215083556409041],
+              [128.684328796015876, 36.21474813430072],
+              [128.687896576786756, 36.213709801065193],
+              [128.687953965412049, 36.213678341326023],
+              [128.692168141166661, 36.213390822071652],
+              [128.692232130231929, 36.213435683371358],
+              [128.693028831132153, 36.21394411620274],
+              [128.693127259139118, 36.213998364457609],
+              [128.693189115977361, 36.214022669696242],
+              [128.693337966237095, 36.214065860177854],
+              [128.693447968702856, 36.214090288223865],
+              [128.693590118346123, 36.214111114033706],
+              [128.693908790753625, 36.214124910131225],
+              [128.69424822338371, 36.214122099852418],
+              [128.694363363025303, 36.214111576818368],
+              [128.694393220090859, 36.21410047519084],
+              [128.69650217485443, 36.212557348630035],
+              [128.69724108822669, 36.211824665724357],
+              [128.698824467281554, 36.209829119006422],
+              [128.699854852004762, 36.20876218030719],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "우보면",
+        id: "KR-dnqhaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-dnqhaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.79049329495183, 36.194863119370403],
+              [128.789786774369702, 36.19407251735992],
+              [128.789717888110943, 36.193982748676135],
+              [128.78970431575334, 36.193884672499273],
+              [128.78967517632006, 36.193161786982117],
+              [128.789685836885184, 36.193037107054458],
+              [128.789710653041055, 36.192810234296338],
+              [128.790578454124187, 36.188418879745328],
+              [128.791373790522925, 36.186246187372113],
+              [128.792169291950415, 36.184392429866989],
+              [128.792280425392391, 36.184182525495778],
+              [128.792363245524086, 36.183993388897356],
+              [128.792418948320943, 36.18383938518523],
+              [128.792921382329837, 36.181716175615364],
+              [128.793053744000844, 36.18106436090342],
+              [128.793498418120095, 36.178695604001533],
+              [128.793509378208825, 36.178471497761493],
+              [128.793185464773046, 36.176858521696971],
+              [128.792331392364048, 36.174058365423775],
+              [128.792267978017549, 36.173906673408922],
+              [128.792163634020199, 36.173725328459547],
+              [128.791968248472216, 36.173505026052773],
+              [128.791804593365299, 36.173353161605377],
+              [128.790267145374202, 36.17226917367649],
+              [128.790094156514073, 36.172198635126811],
+              [128.789387228223802, 36.170698202844406],
+              [128.789866489995887, 36.170405064199507],
+              [128.790313862230363, 36.170098942325147],
+              [128.790428167556485, 36.169951250040285],
+              [128.790469542325752, 36.169818198072562],
+              [128.790483731469095, 36.169616732315689],
+              [128.790488785385861, 36.169431858851077],
+              [128.790306595361869, 36.167667942984288],
+              [128.790270511530821, 36.167523682748516],
+              [128.788802315346913, 36.162725799529078],
+              [128.787873275553352, 36.160845972997166],
+              [128.78684890011229, 36.158864278315804],
+              [128.785565245447685, 36.156754566367972],
+              [128.785429117020726, 36.156552833151217],
+              [128.782804937269077, 36.153235369301576],
+              [128.782288757603595, 36.152674989446218],
+              [128.782171270097109, 36.152616454567131],
+              [128.782079774353889, 36.152610986755491],
+              [128.778838028342307, 36.153151672841211],
+              [128.77874225420166, 36.153184783802104],
+              [128.778623640342488, 36.153249285499442],
+              [128.77853664678554, 36.153400722091668],
+              [128.778476989374298, 36.153552209310327],
+              [128.778380750673051, 36.153755391577221],
+              [128.778271055214105, 36.153884604915632],
+              [128.778102008120612, 36.154058079025731],
+              [128.777955925589509, 36.154159512142201],
+              [128.777787190537765, 36.154222063428037],
+              [128.77695750589487, 36.154409122070831],
+              [128.776706835444031, 36.154443798544186],
+              [128.76779811417029, 36.153942125187449],
+              [128.76745135069342, 36.153911421125969],
+              [128.766984355554342, 36.153869222168289],
+              [128.766873422894719, 36.153846498002068],
+              [128.76633527972254, 36.153629635585503],
+              [128.766086081773693, 36.15344899967247],
+              [128.765878444267031, 36.15328721422172],
+              [128.765627411426152, 36.153038753146546],
+              [128.765566946441766, 36.152970465071029],
+              [128.765363524850102, 36.152640672224315],
+              [128.765345668386061, 36.15253746833816],
+              [128.765396371253701, 36.152294402692796],
+              [128.765574509898755, 36.151959462006175],
+              [128.765862157257232, 36.151462626102699],
+              [128.766220386614577, 36.151034193000491],
+              [128.76645741596451, 36.150754635062704],
+              [128.766535030863821, 36.150622150340787],
+              [128.766548899066265, 36.150537421826165],
+              [128.766535828727257, 36.150353180840085],
+              [128.766338978836956, 36.149746808785423],
+              [128.764911847931614, 36.146204782894664],
+              [128.764862211067367, 36.146094157967049],
+              [128.764699163041229, 36.145942768518225],
+              [128.763852810008899, 36.145334112935181],
+              [128.763299632817393, 36.145027201731864],
+              [128.762940796604312, 36.144397320518081],
+              [128.762623007319604, 36.139770937401643],
+              [128.762779198017967, 36.139181745592303],
+              [128.762971223316271, 36.137950809795143],
+              [128.762799285040188, 36.137967239093257],
+              [128.762378277861728, 36.138007474799849],
+              [128.76152864798263, 36.138131054515313],
+              [128.760773540563918, 36.138247111638599],
+              [128.760505412082921, 36.138305519258743],
+              [128.759764413249371, 36.138550896818849],
+              [128.754938400107193, 36.139159027235365],
+              [128.752610959675053, 36.139441657365964],
+              [128.749957937445174, 36.139679347403792],
+              [128.749043884303092, 36.139758483633521],
+              [128.748798128844669, 36.139761133178524],
+              [128.748435354313756, 36.139749841547847],
+              [128.748340003180544, 36.139742259504281],
+              [128.74831742578931, 36.139705361754167],
+              [128.748274988536053, 36.138773108744743],
+              [128.748254043599275, 36.137869195832216],
+              [128.74824730095915, 36.137577776144326],
+              [128.748261380240621, 36.13743410752226],
+              [128.748390223694088, 36.136907505354699],
+              [128.748541988537539, 36.136314606950783],
+              [128.748812422354177, 36.135403302325997],
+              [128.748949397440612, 36.135007746244817],
+              [128.74899107561734, 36.134757289088128],
+              [128.749260194288041, 36.132933721876618],
+              [128.749260371180981, 36.13287477309408],
+              [128.747102941208396, 36.129037127133842],
+              [128.746961414594949, 36.128866593639017],
+              [128.746776688385722, 36.128685957509809],
+              [128.740037936252349, 36.122818114946654],
+              [128.739879498348017, 36.122693135219045],
+              [128.739737032693995, 36.122581064570852],
+              [128.739662997089539, 36.122529341267992],
+              [128.739532084729632, 36.12247895658713],
+              [128.739071962332531, 36.12232319879714],
+              [128.738765212029705, 36.122236564037081],
+              [128.738664607998743, 36.122227695054299],
+              [128.73655094908878, 36.123759870666525],
+              [128.735242345892175, 36.124498371471965],
+              [128.733556889177663, 36.125478930036181],
+              [128.733480478685777, 36.125537335258841],
+              [128.732889341233545, 36.126043836986874],
+              [128.729946623534488, 36.128675038707982],
+              [128.72983483001218, 36.128781942070077],
+              [128.729720935281392, 36.128920646071819],
+              [128.728420163415308, 36.130754890257691],
+              [128.728397208732673, 36.130806744414123],
+              [128.728386861953169, 36.130845209829573],
+              [128.728382535808777, 36.130873668925702],
+              [128.727722689790312, 36.135275004892719],
+              [128.72764279854519, 36.135983255295052],
+              [128.72764686411702, 36.136028423460651],
+              [128.727901649357307, 36.137810959303458],
+              [128.72792416734103, 36.137854533692568],
+              [128.727957009518008, 36.137896421868646],
+              [128.728010467989179, 36.137956840125028],
+              [128.728160606694018, 36.138074414289072],
+              [128.728411639704376, 36.138279298638722],
+              [128.728444552272919, 36.13830785171907],
+              [128.728467103592976, 36.138339706027828],
+              [128.72848548412145, 36.138390041698919],
+              [128.728513984962007, 36.138500600786614],
+              [128.728553339697015, 36.138753565504921],
+              [128.728569315247796, 36.138916091682717],
+              [128.728573043172418, 36.13902830042386],
+              [128.728599588711631, 36.139994627718693],
+              [128.728597468267338, 36.140026426786825],
+              [128.72837005668444, 36.14252280100586],
+              [128.72538498302572, 36.145102307108296],
+              [128.72534363943879, 36.145135732623871],
+              [128.724838164574322, 36.145426737380369],
+              [128.724751386743208, 36.145456732890899],
+              [128.724656481155762, 36.145463182903974],
+              [128.724446003591368, 36.145472785351863],
+              [128.724218974329119, 36.145478940691561],
+              [128.724049828517906, 36.145455101205364],
+              [128.721442668224739, 36.147960165442584],
+              [128.721093269482253, 36.148972744047086],
+              [128.720534625164362, 36.150330722184883],
+              [128.72049066007196, 36.150412344894058],
+              [128.720443474910866, 36.15049398417996],
+              [128.72036590300857, 36.150589145660973],
+              [128.71979327751913, 36.151157101866296],
+              [128.719632404912375, 36.151550347946568],
+              [128.719520808786285, 36.151777542451299],
+              [128.719492073507723, 36.151825173344058],
+              [128.719439937616158, 36.151863160207583],
+              [128.719391263114062, 36.151865748309284],
+              [128.7188408916073, 36.151829020643646],
+              [128.717257434017654, 36.151607376144717],
+              [128.714644171487095, 36.151184333756582],
+              [128.713758605925079, 36.151013326396139],
+              [128.713564140136072, 36.150955638260733],
+              [128.713470433324858, 36.150903673832815],
+              [128.713379978160475, 36.15084082400643],
+              [128.713219573065516, 36.150647042620207],
+              [128.713126069504995, 36.15050785118332],
+              [128.713032454238743, 36.150431392355515],
+              [128.712931893761777, 36.150371228275986],
+              [128.712838160187886, 36.150324671766604],
+              [128.712714068188092, 36.15028625136172],
+              [128.712563194526695, 36.150250461286731],
+              [128.710731633630729, 36.149943695577377],
+              [128.710607457181453, 36.149929688521297],
+              [128.710479888485963, 36.149929365392836],
+              [128.710355744502749, 36.14993728607844],
+              [128.710251575302976, 36.149950625663614],
+              [128.707187993153923, 36.150402852644291],
+              [128.70645487496671, 36.153147869280154],
+              [128.706525202827208, 36.153640046810416],
+              [128.706232586468786, 36.154733171992],
+              [128.70486784599666, 36.156025439528783],
+              [128.704817223195732, 36.156051655481548],
+              [128.704752237608716, 36.156060278726414],
+              [128.703859861391805, 36.156177620425773],
+              [128.701530217878769, 36.156469972248772],
+              [128.701335261563941, 36.156487054926359],
+              [128.701140401431161, 36.15648071509009],
+              [128.70092398502311, 36.156453817650068],
+              [128.700639223491493, 36.15636522427873],
+              [128.699304053352705, 36.155946644921436],
+              [128.698426495843648, 36.1555157199452],
+              [128.697976862491572, 36.155133861810334],
+              [128.697796672838564, 36.155071898863859],
+              [128.697684871260606, 36.155054050360611],
+              [128.697565775416024, 36.155053764015079],
+              [128.697493534812736, 36.155071132922764],
+              [128.697171880829842, 36.155193328988801],
+              [128.696790646632678, 36.155357771333186],
+              [128.689859409079276, 36.159484423265361],
+              [128.687936638306638, 36.160952525361012],
+              [128.686358019086867, 36.163464662289542],
+              [128.686326621724675, 36.163582256322229],
+              [128.686232169295351, 36.163734306100629],
+              [128.686058116678652, 36.163935913413987],
+              [128.685978474476144, 36.163997202744234],
+              [128.682073884226924, 36.164945523356565],
+              [128.679326210195484, 36.165251950402876],
+              [128.678235419933884, 36.165445237263505],
+              [128.677830886249211, 36.165520277578658],
+              [128.676710196447459, 36.165738911261847],
+              [128.676522274732662, 36.165799893672229],
+              [128.676439044868914, 36.165852369049489],
+              [128.6763810611304, 36.165907860676171],
+              [128.676312099725408, 36.166001392120897],
+              [128.6762682445233, 36.166133067712529],
+              [128.676253352991921, 36.166244295524599],
+              [128.676263706770129, 36.166358545080413],
+              [128.677881623481142, 36.171737215288076],
+              [128.678960182414727, 36.174119669073697],
+              [128.679312375415577, 36.174498391443116],
+              [128.679634999232661, 36.174913766495223],
+              [128.679835895986258, 36.175218898507048],
+              [128.679828514404335, 36.175259870040783],
+              [128.678308915968358, 36.176495715603863],
+              [128.677972218412208, 36.176737890575829],
+              [128.677637729096233, 36.17692908145527],
+              [128.673338825272396, 36.180234700968981],
+              [128.673129668221037, 36.180419239014725],
+              [128.672980878298034, 36.18060627463894],
+              [128.672842683176526, 36.180851882813215],
+              [128.672809817067588, 36.180939638621538],
+              [128.672776546048993, 36.181126975506118],
+              [128.67277447639259, 36.181187907164762],
+              [128.672778679420674, 36.181229878124221],
+              [128.672786786745661, 36.181270506346507],
+              [128.672858701771389, 36.18133806942518],
+              [128.67293433156712, 36.181379262971554],
+              [128.672974837525658, 36.181390346773888],
+              [128.673461359379672, 36.181386564516252],
+              [128.677516847988215, 36.181100501583487],
+              [128.67767939770107, 36.181074571629864],
+              [128.677874574658915, 36.181016540414674],
+              [128.677983153700126, 36.18094946976872],
+              [128.678131741221506, 36.180809304879148],
+              [128.678382207748996, 36.180473188329962],
+              [128.678600037041576, 36.18017506756906],
+              [128.678800122746452, 36.179797828025087],
+              [128.679071286624293, 36.179470337391159],
+              [128.679332289564286, 36.179201627275312],
+              [128.679524330096172, 36.179029349023018],
+              [128.679698016812836, 36.178927321132143],
+              [128.679846273504182, 36.178863281708807],
+              [128.680005287833524, 36.178822709616931],
+              [128.682544189796175, 36.178592341843853],
+              [128.682713856755242, 36.178592801282981],
+              [128.682804022907561, 36.178613532168548],
+              [128.690950233869756, 36.181362756146171],
+              [128.691409479820095, 36.181791057465865],
+              [128.692578648623709, 36.185157854752667],
+              [128.692593221411869, 36.185212001001382],
+              [128.692617313885165, 36.185698547560847],
+              [128.692594854705504, 36.185901741969261],
+              [128.692183219359123, 36.187962289176255],
+              [128.69172239604822, 36.18864446224746],
+              [128.691583301146352, 36.188793183882169],
+              [128.691549356592731, 36.188869647716103],
+              [128.691557741039077, 36.188958625864316],
+              [128.691972130840696, 36.191371465706325],
+              [128.693864868620466, 36.193932117648146],
+              [128.694809286987066, 36.194621794336399],
+              [128.695565277302251, 36.194910527185712],
+              [128.695698822612798, 36.194961529944869],
+              [128.696832317091236, 36.195436346772283],
+              [128.697294764936032, 36.195984975762663],
+              [128.697166895161502, 36.196444247269461],
+              [128.696498795262414, 36.197635758013142],
+              [128.696938061105186, 36.200259564630734],
+              [128.696837794010946, 36.201944022614946],
+              [128.696681413246921, 36.2023875893316],
+              [128.696847015056903, 36.202255982378688],
+              [128.696996346150769, 36.20218198357523],
+              [128.699002005170598, 36.201275108199489],
+              [128.699132886410439, 36.20122337393299],
+              [128.703967444695792, 36.19943814090783],
+              [128.704900530918223, 36.199162026015316],
+              [128.708649596046854, 36.198580908457664],
+              [128.708720705990629, 36.198569910440398],
+              [128.708858288864775, 36.198568389181276],
+              [128.709071472870988, 36.198583785191943],
+              [128.709206667749783, 36.198608298729084],
+              [128.712123094153498, 36.199263487403705],
+              [128.713559331730096, 36.200003991926962],
+              [128.713699014545313, 36.200052677309458],
+              [128.713831896811882, 36.200082760484477],
+              [128.714159554409207, 36.200148616201368],
+              [128.714300556668832, 36.200168835169464],
+              [128.716320960717979, 36.20035999145977],
+              [128.716608853516675, 36.200386499152245],
+              [128.716906939208258, 36.200387194367657],
+              [128.717163816992667, 36.20037107393938],
+              [128.717409561904049, 36.200341885349125],
+              [128.717586208643638, 36.200310701993068],
+              [128.718949542613643, 36.200060999624135],
+              [128.718984101162761, 36.200016458700723],
+              [128.719329629977722, 36.198821834554927],
+              [128.719357639778281, 36.198686135438102],
+              [128.719392764576696, 36.198483527348387],
+              [128.719393251533177, 36.198345896358155],
+              [128.719379889472378, 36.198238001887695],
+              [128.719368667260056, 36.198171046266488],
+              [128.719361954100009, 36.198124527734336],
+              [128.719375829138784, 36.198087361668122],
+              [128.719405749736154, 36.198059535748754],
+              [128.719442520692553, 36.198037305962913],
+              [128.721222380650346, 36.198028996979012],
+              [128.721298040806602, 36.198029177788356],
+              [128.721394267967469, 36.198048000862059],
+              [128.724652655957897, 36.199170767385148],
+              [128.72477460001943, 36.199215026360129],
+              [128.724843205880603, 36.199246813436744],
+              [128.72503077321366, 36.199373692023784],
+              [128.725364673598591, 36.199625535609613],
+              [128.725782067471926, 36.199978581138815],
+              [128.726184310402573, 36.200340261718658],
+              [128.726230012054316, 36.200368304329274],
+              [128.727543167858926, 36.200818396598379],
+              [128.727582611426755, 36.200829628578965],
+              [128.727639443557592, 36.200820500269657],
+              [128.727701554954308, 36.200770441917044],
+              [128.72848993781966, 36.199864196923059],
+              [128.729481442001997, 36.198731596473564],
+              [128.729614837012093, 36.198610970010492],
+              [128.729740360561891, 36.198515184011491],
+              [128.729836851499016, 36.198457704421472],
+              [128.729891916288636, 36.198448562566988],
+              [128.72998127846455, 36.198458045700512],
+              [128.732240414745576, 36.198905278654998],
+              [128.732389290205873, 36.198940941598615],
+              [128.732554088875588, 36.199032507398748],
+              [128.732835309269177, 36.199252580732356],
+              [128.733520478181873, 36.199800048872774],
+              [128.735095490627174, 36.20065006335264],
+              [128.735152739819227, 36.200653883539751],
+              [128.735184898950251, 36.200646571305583],
+              [128.740564648795555, 36.199170379161835],
+              [128.740716179483172, 36.199105645604682],
+              [128.741732403417075, 36.198613896906572],
+              [128.741799041014787, 36.198571238852672],
+              [128.743066467032037, 36.197590045071912],
+              [128.743128639822146, 36.19751574403783],
+              [128.743181794833873, 36.19738012737583],
+              [128.743193566588872, 36.197281569419275],
+              [128.744117317718491, 36.196051356391578],
+              [128.745225121445429, 36.195005904043903],
+              [128.745330841142305, 36.194909441560753],
+              [128.745679360985321, 36.19461187598521],
+              [128.745842482998029, 36.194504441119534],
+              [128.74593668975379, 36.194458145626065],
+              [128.745987956740123, 36.194439780234795],
+              [128.746039960590991, 36.194430437475617],
+              [128.746115543056305, 36.194436190925245],
+              [128.746362882372836, 36.194516645348429],
+              [128.746749854740699, 36.194669957188573],
+              [128.749208288071486, 36.195764588348055],
+              [128.749356671260301, 36.195836938063145],
+              [128.749435584717048, 36.195907329999784],
+              [128.750177512052545, 36.196956236645136],
+              [128.750219035989062, 36.197044716838107],
+              [128.75032609518891, 36.197662446906286],
+              [128.75033170517338, 36.197781123839349],
+              [128.750325375200333, 36.197885250009563],
+              [128.750292311078852, 36.197950543941708],
+              [128.750204123157687, 36.198032287322249],
+              [128.750073756745223, 36.198179733438046],
+              [128.750024551175159, 36.19826579244782],
+              [128.749887105412853, 36.198513057763456],
+              [128.749836935409434, 36.198638105781896],
+              [128.749841856170747, 36.198680514093489],
+              [128.749870371902972, 36.198735280745304],
+              [128.751765575329728, 36.201723574186424],
+              [128.752149744590866, 36.202146315452175],
+              [128.752703162875605, 36.202672664481781],
+              [128.756188403115033, 36.202539664897095],
+              [128.758067040130641, 36.202545557832117],
+              [128.758539509328386, 36.201160347505194],
+              [128.758570135331212, 36.20107560466726],
+              [128.758679848732953, 36.20078791153108],
+              [128.758740977125882, 36.200662220029869],
+              [128.758839327796721, 36.200495549729744],
+              [128.758906127997676, 36.200443046079016],
+              [128.760850543857629, 36.199612652486991],
+              [128.76595455372177, 36.196608347097325],
+              [128.769055669449955, 36.19391932406586],
+              [128.769161370172696, 36.193829943889021],
+              [128.769940118846932, 36.193471747929593],
+              [128.769989063476771, 36.193464994716209],
+              [128.77004301703721, 36.193473302838377],
+              [128.770125572578877, 36.193510398729607],
+              [128.770321751866391, 36.193629086645807],
+              [128.770767077547191, 36.193926050621222],
+              [128.771714476873456, 36.19444828291077],
+              [128.771968888876387, 36.194560934883832],
+              [128.772347144800392, 36.194726465973197],
+              [128.772679985291859, 36.194839952170746],
+              [128.772753506167106, 36.194863260135278],
+              [128.773565507908444, 36.194956457882071],
+              [128.773941944374911, 36.194977309360475],
+              [128.774274901120833, 36.194980409660118],
+              [128.774755923223381, 36.194883113544847],
+              [128.777461837187047, 36.194406147206792],
+              [128.781901867494383, 36.193895175336614],
+              [128.782084650214216, 36.193880378311633],
+              [128.782209120326712, 36.193880601748589],
+              [128.783377798550447, 36.193885309296434],
+              [128.783520903717601, 36.193893124070371],
+              [128.783626614072205, 36.193921040145781],
+              [128.784668007335881, 36.194635177468591],
+              [128.78480773203259, 36.194748917579695],
+              [128.785615438997041, 36.195662041233469],
+              [128.785782843451074, 36.195886799487816],
+              [128.785903630612353, 36.196088783574751],
+              [128.785989271659531, 36.196201776335414],
+              [128.786073127217236, 36.196259925004625],
+              [128.786191294575303, 36.196292906528889],
+              [128.786430860808139, 36.196310959670754],
+              [128.78666735888612, 36.196308848214159],
+              [128.786834499192452, 36.196283971076348],
+              [128.787139710515959, 36.196203771526868],
+              [128.787636527886804, 36.196051461848647],
+              [128.788162904618957, 36.195883328045902],
+              [128.79049329495183, 36.194863119370403],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "의흥면",
+        id: "KR-dmlgmdaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-dmlgmdaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.738664607998743, 36.122227695054299],
+              [128.738571807335632, 36.121509778837456],
+              [128.739117067979038, 36.118013206523891],
+              [128.739180884266034, 36.117624009210175],
+              [128.739229173593088, 36.117435053108856],
+              [128.739303828948977, 36.11726325943873],
+              [128.739356942869989, 36.117190286950532],
+              [128.739452452814049, 36.117126064868309],
+              [128.740131171513241, 36.116805182265267],
+              [128.741947581974387, 36.114393632817311],
+              [128.742186775367287, 36.114071771302321],
+              [128.744551895263498, 36.110519079123819],
+              [128.744700952135787, 36.110278685600534],
+              [128.7448396257507, 36.10994797089635],
+              [128.745091223457734, 36.109150137541725],
+              [128.745120687476458, 36.108219155844154],
+              [128.745105803117355, 36.107909638290543],
+              [128.745090692821833, 36.107673215904434],
+              [128.744862867090859, 36.10618268482763],
+              [128.744821114771867, 36.106010646654916],
+              [128.744230984278772, 36.103889906860388],
+              [128.743936896425595, 36.102840461153825],
+              [128.741699605930336, 36.100518773588291],
+              [128.741280202399935, 36.10024094215715],
+              [128.735897608452177, 36.096525060659758],
+              [128.735455990517409, 36.09589855551998],
+              [128.735414673665787, 36.095867729625965],
+              [128.733725937811641, 36.09462353537932],
+              [128.732869834203939, 36.094126490886246],
+              [128.729218834348245, 36.092255713186354],
+              [128.728771649160706, 36.092039242806948],
+              [128.728491037985577, 36.091919285902627],
+              [128.728291574985889, 36.091834908740026],
+              [128.728119472473963, 36.091767387732119],
+              [128.727851156311743, 36.091685659211805],
+              [128.727396858295236, 36.091572693832894],
+              [128.727020324766301, 36.091480454096775],
+              [128.726714092077117, 36.091381781431352],
+              [128.726352955302929, 36.091235508196071],
+              [128.726263532445955, 36.091183570178046],
+              [128.726174102958339, 36.091131626750517],
+              [128.725692871340016, 36.090842315172566],
+              [128.725371112957021, 36.090585193041328],
+              [128.725264656702251, 36.090478690138376],
+              [128.725203052089853, 36.090377778602374],
+              [128.724917036368453, 36.089681567248142],
+              [128.724655793301309, 36.088661165049473],
+              [128.724642453796179, 36.088540818085143],
+              [128.724656512623113, 36.088456953173129],
+              [128.725406755753681, 36.087077521253363],
+              [128.726132331553686, 36.086935125420794],
+              [128.726371424154394, 36.086891509013114],
+              [128.726443705363863, 36.086888821034456],
+              [128.726667640799377, 36.086892203827702],
+              [128.72699148282075, 36.086870497202518],
+              [128.727225733467861, 36.08684589750461],
+              [128.727349883185667, 36.086809770550083],
+              [128.727425821444598, 36.086779203859557],
+              [128.727515495959267, 36.086726245151219],
+              [128.727653980988833, 36.08652514208805],
+              [128.72796904185978, 36.08592773531889],
+              [128.728035067883354, 36.085743325795853],
+              [128.729167310849988, 36.082567217609018],
+              [128.729416587607403, 36.081138359836039],
+              [128.729420221389148, 36.081082503262664],
+              [128.729413486901194, 36.081040501212122],
+              [128.726848617332649, 36.076835805037057],
+              [128.724757549099337, 36.074325619772509],
+              [128.7245437621593, 36.074126235493189],
+              [128.723752445217798, 36.073534910747512],
+              [128.723689475565465, 36.07351015972727],
+              [128.723618834309065, 36.073489542038253],
+              [128.722759139601095, 36.073276109106693],
+              [128.722099081415024, 36.073175001154283],
+              [128.721871645556888, 36.073170234266797],
+              [128.721618280827926, 36.073182258821504],
+              [128.721504537840616, 36.07319875576421],
+              [128.721416487745245, 36.073236410860659],
+              [128.721343753629327, 36.073336989160524],
+              [128.721178151475101, 36.073641130379798],
+              [128.721094954567548, 36.073779551866508],
+              [128.72100165115063, 36.073859168246237],
+              [128.720856679230337, 36.073917577981106],
+              [128.716722272436584, 36.075208645022087],
+              [128.716587677116252, 36.075250333766533],
+              [128.715035870442108, 36.075511216843537],
+              [128.714092345563472, 36.075606200202998],
+              [128.714050957656383, 36.075601873890548],
+              [128.714020013922948, 36.075593411063394],
+              [128.711393105095709, 36.073652903192141],
+              [128.711352033245191, 36.073560426525233],
+              [128.709253986051777, 36.068289262093643],
+              [128.708896659093881, 36.067122682196199],
+              [128.708896934407363, 36.067047065147371],
+              [128.708958650261224, 36.066927174847649],
+              [128.709213643885903, 36.064100689951488],
+              [128.707212652489943, 36.060766427328048],
+              [128.706094815808996, 36.059912663639466],
+              [128.705900659186682, 36.059833408829661],
+              [128.705095895735525, 36.059407227023044],
+              [128.704838089291968, 36.059251215474092],
+              [128.70468350542626, 36.05912485022089],
+              [128.703891342787898, 36.058247000732877],
+              [128.702563577981806, 36.055661703495673],
+              [128.702558531215885, 36.055615468056992],
+              [128.703563010941139, 36.052539589772536],
+              [128.704102785182897, 36.051254270512807],
+              [128.704474964396894, 36.050408660385585],
+              [128.704537600744942, 36.050279671873433],
+              [128.704562141164189, 36.050184388311656],
+              [128.704756429146755, 36.048006372173333],
+              [128.704785555335718, 36.047610787618474],
+              [128.704795275218402, 36.046883820601714],
+              [128.704746555086558, 36.046055916408179],
+              [128.704713288171291, 36.045753841150621],
+              [128.704696447269725, 36.045658358512355],
+              [128.704051855669064, 36.043816935266854],
+              [128.703952635511598, 36.043580915139216],
+              [128.703884209682258, 36.043423662140555],
+              [128.703754014233084, 36.04313711762051],
+              [128.703579962850455, 36.042826762182571],
+              [128.703325983950236, 36.04243607499135],
+              [128.701511029104921, 36.040027641073159],
+              [128.701449174238292, 36.039954582779558],
+              [128.700562171730411, 36.039097474296405],
+              [128.700258975529266, 36.038844552121738],
+              [128.700030644035451, 36.038693363630834],
+              [128.69785012360353, 36.036551981254156],
+              [128.696844635890812, 36.03536763723698],
+              [128.69628061671645, 36.035225823114232],
+              [128.695822312676057, 36.035292065020919],
+              [128.695711588510164, 36.035317371750907],
+              [128.695316840050594, 36.035422270977591],
+              [128.693059185775809, 36.036164219927684],
+              [128.692857408134955, 36.036234094694734],
+              [128.692697780101867, 36.036308378413239],
+              [128.690164491965561, 36.038136716867882],
+              [128.687624174015752, 36.040812843797546],
+              [128.686563449298518, 36.042512917808388],
+              [128.683320861562635, 36.04516078291639],
+              [128.680182102042039, 36.047712050019747],
+              [128.679523160903244, 36.048274710485629],
+              [128.679474812988929, 36.048323068138998],
+              [128.679389874419542, 36.048442250088542],
+              [128.679154894503341, 36.048914493877085],
+              [128.679126884017563, 36.049007290491851],
+              [128.679127289222095, 36.049072491308266],
+              [128.679136000085691, 36.049114063423097],
+              [128.680555529465948, 36.050912636701533],
+              [128.68066970887844, 36.051052731028754],
+              [128.680873772576376, 36.051279562871834],
+              [128.681028902491619, 36.051419669933765],
+              [128.681679698655898, 36.051857590224373],
+              [128.682538156289866, 36.052320484463166],
+              [128.683658288730214, 36.052901151678093],
+              [128.684161225950845, 36.053158332161487],
+              [128.684746912055942, 36.053457381758378],
+              [128.685484479778296, 36.053851433072523],
+              [128.685811922901564, 36.05403425492527],
+              [128.688846996491634, 36.055834457449478],
+              [128.689671109241914, 36.056666800505397],
+              [128.689842925653579, 36.056862265969109],
+              [128.68990255007688, 36.056942649123719],
+              [128.690128890650101, 36.057352739981134],
+              [128.690155877235867, 36.057434454956535],
+              [128.690165554417604, 36.057571735125542],
+              [128.690057047310432, 36.05953277002213],
+              [128.690045368520799, 36.059653050267286],
+              [128.690000577773958, 36.059865165859307],
+              [128.689916021191095, 36.060082517398293],
+              [128.689837353213363, 36.060216835850937],
+              [128.689712347575011, 36.060366586725515],
+              [128.689419797022737, 36.060611756999258],
+              [128.68911188688358, 36.060842400313724],
+              [128.689041384384609, 36.060902492207788],
+              [128.689009395625504, 36.06093773101518],
+              [128.688985697835079, 36.060976601853376],
+              [128.688976575246954, 36.061010827693067],
+              [128.688977821141179, 36.06106293249956],
+              [128.689129021007659, 36.061785463515776],
+              [128.689163784704277, 36.06189254072607],
+              [128.689242079432944, 36.062050616209781],
+              [128.691081028401385, 36.065672333189106],
+              [128.692846275163845, 36.06854276587557],
+              [128.694504578025857, 36.073682665920273],
+              [128.694515038146875, 36.073731811846542],
+              [128.6945220283921, 36.073847730278295],
+              [128.694499309410332, 36.07403612073329],
+              [128.694461759395949, 36.074128675687781],
+              [128.694394797495789, 36.07422320780752],
+              [128.694239714018352, 36.074393864549428],
+              [128.694057742419346, 36.074540294627447],
+              [128.69399019917077, 36.074582028331413],
+              [128.693747802833229, 36.074711280112147],
+              [128.693698984057221, 36.074731955085035],
+              [128.693418238145739, 36.07492644372271],
+              [128.693388260476894, 36.074958899557913],
+              [128.693389018147371, 36.075018376279125],
+              [128.693416510698768, 36.075058103062084],
+              [128.696021086671124, 36.077217587897579],
+              [128.69876586040786, 36.07941881171822],
+              [128.699272127485671, 36.080080698043275],
+              [128.699330499186971, 36.080176365682327],
+              [128.699380985042211, 36.080297425131086],
+              [128.69945042430453, 36.080577718056276],
+              [128.699500291883027, 36.080833509660643],
+              [128.699518665023163, 36.081167794599885],
+              [128.699501581005848, 36.081511574963621],
+              [128.699406160043225, 36.082018991970592],
+              [128.699362527844812, 36.08213666697872],
+              [128.699252282441535, 36.082279683269867],
+              [128.699153943545667, 36.082387668010647],
+              [128.69896126495334, 36.082546338936666],
+              [128.698722693641201, 36.082716064225323],
+              [128.698573232563916, 36.082836635753814],
+              [128.698463132479759, 36.082944603243021],
+              [128.698380492210561, 36.083039900106648],
+              [128.698293761901965, 36.08316063005288],
+              [128.698207025397181, 36.083310022955182],
+              [128.697823480766431, 36.08437012354478],
+              [128.69781116676478, 36.084510150046],
+              [128.697812295104853, 36.085228143253438],
+              [128.697831065542772, 36.085428813528203],
+              [128.697904996734422, 36.085575428919974],
+              [128.698277885274337, 36.086313676356163],
+              [128.698382400648057, 36.086449829038102],
+              [128.698448732975265, 36.08652317324681],
+              [128.699358314258689, 36.087065920184266],
+              [128.699487435743379, 36.087126734340949],
+              [128.700993056504558, 36.088719789919722],
+              [128.701055470200259, 36.08880277127966],
+              [128.701982869284194, 36.090927539132217],
+              [128.702009969590534, 36.091013493999853],
+              [128.702323050209685, 36.092108348381892],
+              [128.702342415434771, 36.092181577392694],
+              [128.702345872173453, 36.092296206034881],
+              [128.70223116135233, 36.09364719086178],
+              [128.702171693590827, 36.093809368602898],
+              [128.702132541870668, 36.093886592481013],
+              [128.702038048203718, 36.09397231575511],
+              [128.701955502121763, 36.09404215243547],
+              [128.701833666166863, 36.094137360655679],
+              [128.70171192158034, 36.094207073780609],
+              [128.701669042820129, 36.094222086804379],
+              [128.701621632792779, 36.09423868144512],
+              [128.701523615372537, 36.094260677019406],
+              [128.701433449605616, 36.094260461490563],
+              [128.699201300590602, 36.094207084801958],
+              [128.699185767807904, 36.094175239935971],
+              [128.699189671025238, 36.093355501628537],
+              [128.69919805091871, 36.093225021991771],
+              [128.699182636018151, 36.093164514833489],
+              [128.699132022710899, 36.093072108085707],
+              [128.699050187150533, 36.092957268432997],
+              [128.698858745573716, 36.092784931194934],
+              [128.698742367359131, 36.092699290972426],
+              [128.698648370340493, 36.092657693148873],
+              [128.694082494118931, 36.091456731141776],
+              [128.690618136194843, 36.091094158019104],
+              [128.690563184346985, 36.091091943591032],
+              [128.690514947032085, 36.091103359225713],
+              [128.689616871244311, 36.091471688246465],
+              [128.689492747009325, 36.091525248400437],
+              [128.688714895446111, 36.091897504090703],
+              [128.688199425491206, 36.092159586371544],
+              [128.6876230621952, 36.092459083631901],
+              [128.687559720183202, 36.092497935929558],
+              [128.687463737926947, 36.092568065393792],
+              [128.687429558710477, 36.092617096157433],
+              [128.687403013670746, 36.092675425268617],
+              [128.687458066790299, 36.092903207814928],
+              [128.687487772516249, 36.092970789802067],
+              [128.68767258696812, 36.093214690881382],
+              [128.68975744785655, 36.095774069282015],
+              [128.690640817232577, 36.09683943968664],
+              [128.690801537661855, 36.097024864484467],
+              [128.690825153341052, 36.097090274827252],
+              [128.690832941585739, 36.097257833201795],
+              [128.690782924732588, 36.097580593845457],
+              [128.690731806820992, 36.097842630022662],
+              [128.690710609381171, 36.097925201716926],
+              [128.69063394461719, 36.098134277735262],
+              [128.689775833241384, 36.099862362401112],
+              [128.689670759859837, 36.100066757926953],
+              [128.687776879946, 36.103125747919691],
+              [128.687671675635983, 36.103246864236155],
+              [128.687556591269271, 36.103363897151482],
+              [128.687431496677448, 36.103489014829805],
+              [128.687301436206752, 36.103606107587218],
+              [128.685373867354826, 36.105326042612589],
+              [128.685298962552622, 36.105366305428447],
+              [128.685179117267239, 36.105426725412777],
+              [128.68436101824247, 36.105606613064239],
+              [128.682961994676901, 36.105813150797957],
+              [128.68290225364467, 36.105808950918622],
+              [128.682837514450597, 36.105780373694216],
+              [128.6814538244559, 36.10532348021794],
+              [128.680057826285378, 36.105328300516881],
+              [128.67898499903805, 36.105661306110399],
+              [128.677842721979516, 36.107489281682483],
+              [128.67755010725017, 36.109757656603115],
+              [128.677544867032339, 36.109814318109116],
+              [128.677864026602037, 36.110906458543269],
+              [128.677918265183507, 36.11106035183257],
+              [128.678709485132401, 36.112712267137489],
+              [128.679576911212223, 36.113477531018766],
+              [128.679735864686734, 36.11361151080191],
+              [128.679959486988707, 36.113790194348383],
+              [128.681495075552988, 36.115470734862463],
+              [128.682068595257988, 36.116389065836756],
+              [128.68504217065427, 36.118612193154078],
+              [128.685254307995109, 36.118781191389068],
+              [128.685462998055556, 36.118951718969349],
+              [128.685567285368279, 36.119041028747446],
+              [128.685582122657109, 36.119077479879259],
+              [128.68581351929268, 36.119792023366848],
+              [128.685818253618692, 36.119860791087888],
+              [128.68582281470168, 36.119966062942446],
+              [128.685802132478813, 36.120140035072367],
+              [128.685771362174222, 36.120362561789442],
+              [128.68575564219168, 36.120544661536108],
+              [128.685764407039045, 36.120852249832922],
+              [128.685783603661235, 36.121050566574553],
+              [128.685803155780434, 36.121131545581513],
+              [128.686300141438807, 36.12246032452498],
+              [128.686384395613715, 36.122585985416016],
+              [128.686493639386299, 36.122687488685806],
+              [128.686692327081261, 36.122862047200783],
+              [128.686826506147526, 36.122975761162806],
+              [128.689090806851851, 36.124594224339006],
+              [128.692070692483554, 36.126723570358372],
+              [128.692224861106808, 36.126812996943407],
+              [128.692436965719082, 36.126946110935862],
+              [128.692620841615451, 36.127080155623766],
+              [128.692789851721443, 36.127210081196388],
+              [128.692998557659479, 36.127388701338234],
+              [128.693147522265178, 36.127530757603822],
+              [128.694748692174073, 36.129140824271893],
+              [128.695073350401628, 36.129471124912946],
+              [128.695478735267045, 36.130018152525771],
+              [128.695951446869856, 36.130669011735435],
+              [128.697297183569731, 36.133247734500479],
+              [128.697356126079285, 36.133441688303996],
+              [128.697419448201885, 36.133849261547383],
+              [128.697477995684807, 36.134742993039964],
+              [128.697447385381764, 36.134988216903643],
+              [128.697426243232229, 36.135113165315197],
+              [128.697405252606018, 36.135168438732379],
+              [128.697375425535284, 36.13521405963904],
+              [128.69733971958351, 36.135252456887407],
+              [128.697298173131088, 36.135281182479375],
+              [128.697173554104637, 36.135328986042524],
+              [128.697093388981443, 36.13537214228252],
+              [128.697025028001093, 36.135410350176691],
+              [128.696974506945537, 36.135463213232917],
+              [128.696929855135721, 36.135516014904503],
+              [128.696885166113645, 36.13558078542512],
+              [128.696753552373082, 36.135888297059118],
+              [128.696729618092462, 36.135957982518889],
+              [128.696729473338337, 36.13599645785677],
+              [128.697155266499408, 36.137762829432866],
+              [128.697263101567501, 36.138208019357904],
+              [128.69800784577086, 36.139882919059822],
+              [128.698415005167959, 36.139986062136096],
+              [128.699511897803973, 36.139934776343217],
+              [128.700415356372957, 36.140087206088218],
+              [128.70122974817744, 36.140275438897497],
+              [128.702051197713985, 36.140559807380647],
+              [128.705546026688978, 36.141919237788308],
+              [128.706192236192493, 36.142253435349247],
+              [128.706391484749389, 36.142365586680185],
+              [128.706456734853901, 36.142416210009173],
+              [128.706535273021558, 36.142508954169102],
+              [128.706637103844912, 36.14264411588919],
+              [128.706707261268463, 36.142750455327722],
+              [128.707595813425769, 36.144325772772284],
+              [128.707632199563903, 36.14445942538773],
+              [128.707645255533237, 36.144562914315294],
+              [128.707654730805558, 36.144705950780349],
+              [128.70764755503609, 36.14484211706872],
+              [128.707623171391219, 36.145094027006067],
+              [128.707334452578209, 36.147339291710203],
+              [128.707037870901388, 36.148558967722693],
+              [128.707077633931306, 36.150051834337098],
+              [128.707187993153923, 36.150402852644291],
+              [128.710251575302976, 36.149950625663614],
+              [128.710355744502749, 36.14993728607844],
+              [128.710479888485963, 36.149929365392836],
+              [128.710607457181453, 36.149929688521297],
+              [128.710731633630729, 36.149943695577377],
+              [128.712563194526695, 36.150250461286731],
+              [128.712714068188092, 36.15028625136172],
+              [128.712838160187886, 36.150324671766604],
+              [128.712931893761777, 36.150371228275986],
+              [128.713032454238743, 36.150431392355515],
+              [128.713126069504995, 36.15050785118332],
+              [128.713219573065516, 36.150647042620207],
+              [128.713379978160475, 36.15084082400643],
+              [128.713470433324858, 36.150903673832815],
+              [128.713564140136072, 36.150955638260733],
+              [128.713758605925079, 36.151013326396139],
+              [128.714644171487095, 36.151184333756582],
+              [128.717257434017654, 36.151607376144717],
+              [128.7188408916073, 36.151829020643646],
+              [128.719391263114062, 36.151865748309284],
+              [128.719439937616158, 36.151863160207583],
+              [128.719492073507723, 36.151825173344058],
+              [128.719520808786285, 36.151777542451299],
+              [128.719632404912375, 36.151550347946568],
+              [128.71979327751913, 36.151157101866296],
+              [128.72036590300857, 36.150589145660973],
+              [128.720443474910866, 36.15049398417996],
+              [128.72049066007196, 36.150412344894058],
+              [128.720534625164362, 36.150330722184883],
+              [128.721093269482253, 36.148972744047086],
+              [128.721442668224739, 36.147960165442584],
+              [128.724049828517906, 36.145455101205364],
+              [128.724218974329119, 36.145478940691561],
+              [128.724446003591368, 36.145472785351863],
+              [128.724656481155762, 36.145463182903974],
+              [128.724751386743208, 36.145456732890899],
+              [128.724838164574322, 36.145426737380369],
+              [128.72534363943879, 36.145135732623871],
+              [128.72538498302572, 36.145102307108296],
+              [128.72837005668444, 36.14252280100586],
+              [128.728597468267338, 36.140026426786825],
+              [128.728599588711631, 36.139994627718693],
+              [128.728573043172418, 36.13902830042386],
+              [128.728569315247796, 36.138916091682717],
+              [128.728553339697015, 36.138753565504921],
+              [128.728513984962007, 36.138500600786614],
+              [128.72848548412145, 36.138390041698919],
+              [128.728467103592976, 36.138339706027828],
+              [128.728444552272919, 36.13830785171907],
+              [128.728411639704376, 36.138279298638722],
+              [128.728160606694018, 36.138074414289072],
+              [128.728010467989179, 36.137956840125028],
+              [128.727957009518008, 36.137896421868646],
+              [128.72792416734103, 36.137854533692568],
+              [128.727901649357307, 36.137810959303458],
+              [128.72764686411702, 36.136028423460651],
+              [128.72764279854519, 36.135983255295052],
+              [128.727722689790312, 36.135275004892719],
+              [128.728382535808777, 36.130873668925702],
+              [128.728386861953169, 36.130845209829573],
+              [128.728397208732673, 36.130806744414123],
+              [128.728420163415308, 36.130754890257691],
+              [128.729720935281392, 36.128920646071819],
+              [128.72983483001218, 36.128781942070077],
+              [128.729946623534488, 36.128675038707982],
+              [128.732889341233545, 36.126043836986874],
+              [128.733480478685777, 36.125537335258841],
+              [128.733556889177663, 36.125478930036181],
+              [128.735242345892175, 36.124498371471965],
+              [128.73655094908878, 36.123759870666525],
+              [128.738664607998743, 36.122227695054299],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "산성면",
+        id: "KR-tkstjdaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-tkstjdaus",
+    },
+    {
+      type: "Feature",
+      geometry: {
+        type: "MultiPolygon",
+        coordinates: [
+          [
+            [
+              [128.88245824659819, 36.198999530925917],
+              [128.882345007615925, 36.196475809714677],
+              [128.881801825039361, 36.192014813029459],
+              [128.88176530473342, 36.19197786179712],
+              [128.881484561156498, 36.191693797551764],
+              [128.881373238893588, 36.191540167622115],
+              [128.881183264234608, 36.190250854899041],
+              [128.881209393113011, 36.190126793793084],
+              [128.883388202209005, 36.185886175386841],
+              [128.885243045516489, 36.183948990628167],
+              [128.885991539654242, 36.183818287833063],
+              [128.8902086988017, 36.182165128506384],
+              [128.89028528183178, 36.182111557960724],
+              [128.890565875409635, 36.181775344560265],
+              [128.891305563328729, 36.180492136174841],
+              [128.891425370163006, 36.180138944935962],
+              [128.891439809752882, 36.180015945107975],
+              [128.891484519202294, 36.179572249430393],
+              [128.891449482556396, 36.178667933381021],
+              [128.891446962012026, 36.178609037037333],
+              [128.89134899659939, 36.177505720803246],
+              [128.891247978357882, 36.176539460292098],
+              [128.891173744852694, 36.176403531499737],
+              [128.891108734131592, 36.176305352499732],
+              [128.891127456869583, 36.176226126826847],
+              [128.891593500482884, 36.175660454755963],
+              [128.891817071381411, 36.17547951253308],
+              [128.893325946452933, 36.174397711649213],
+              [128.893605268161792, 36.174269658274547],
+              [128.894899280490108, 36.173787737947862],
+              [128.895178548741626, 36.173689860620705],
+              [128.895643982850288, 36.173546859146271],
+              [128.896050947614185, 36.173443362099746],
+              [128.895318716655993, 36.172789095041679],
+              [128.895236222784092, 36.172697792136887],
+              [128.895153725498716, 36.172606473886447],
+              [128.894184864188219, 36.169526324313154],
+              [128.894175968097443, 36.169317805759142],
+              [128.894258780020351, 36.169172663730855],
+              [128.895233486821553, 36.167922455795363],
+              [128.896906640640083, 36.166006339858612],
+              [128.897118060208015, 36.165786840516787],
+              [128.89732947546193, 36.165567351674092],
+              [128.897742841636699, 36.165333115601719],
+              [128.897923331778486, 36.165228451338734],
+              [128.898037247217161, 36.165121290082197],
+              [128.898266481135067, 36.164899885002846],
+              [128.898780857333008, 36.164365050066671],
+              [128.898929249499417, 36.164191858660672],
+              [128.900085303229247, 36.162545926434987],
+              [128.900085357676204, 36.162501919688147],
+              [128.90002122198635, 36.162410627852303],
+              [128.899899344816248, 36.162290512701318],
+              [128.897279474071382, 36.160269667434093],
+              [128.896867929149863, 36.160064258167729],
+              [128.896530999886522, 36.160048772586919],
+              [128.896166056299251, 36.159995303108367],
+              [128.895988322211537, 36.1599192003954],
+              [128.894763920755111, 36.158676498392069],
+              [128.894428409185906, 36.158301334180052],
+              [128.892503294939587, 36.155538200292582],
+              [128.891199038467846, 36.150281121515398],
+              [128.890188681023176, 36.147244826780941],
+              [128.890174436770451, 36.14713497962989],
+              [128.890174788252665, 36.146887180062834],
+              [128.8901825025834, 36.146558658447695],
+              [128.890226530019277, 36.146246987781041],
+              [128.890255745502913, 36.14614080632991],
+              [128.891505571478916, 36.143386561089933],
+              [128.891144599597652, 36.143222240410978],
+              [128.890268689172729, 36.142856926693803],
+              [128.889687765909912, 36.142720669948119],
+              [128.888924256311213, 36.142632097808431],
+              [128.888532044755294, 36.142608126825031],
+              [128.887531305182335, 36.142586088641124],
+              [128.887304767371234, 36.142603298629112],
+              [128.887014164353133, 36.142641378783338],
+              [128.886803444836914, 36.142679516637664],
+              [128.886379912521875, 36.142819527510305],
+              [128.885753220567921, 36.143075989065821],
+              [128.885289254831576, 36.14328683267842],
+              [128.876498629457274, 36.142356999762363],
+              [128.876426013552418, 36.142345107189762],
+              [128.876327926818249, 36.142350901638828],
+              [128.869884198904401, 36.14416452549559],
+              [128.869731049655485, 36.144234826110974],
+              [128.86838644188586, 36.145147716483081],
+              [128.866364421678242, 36.144791417267683],
+              [128.863221632763214, 36.14477816570988],
+              [128.861348689337802, 36.145146121656801],
+              [128.860063717387362, 36.145276362704344],
+              [128.859712435737947, 36.145291660460714],
+              [128.859208977972429, 36.145309447307639],
+              [128.859100249855999, 36.145306263211516],
+              [128.858991585129132, 36.14526017346089],
+              [128.858895449010333, 36.145211239651111],
+              [128.858830710635687, 36.145143518409569],
+              [128.858746299417305, 36.145051519539678],
+              [128.85862170093165, 36.144913461255413],
+              [128.856608275687904, 36.142324674417331],
+              [128.856588231087215, 36.142278670112539],
+              [128.856588306571979, 36.142232709219741],
+              [128.856596479249447, 36.142168373366999],
+              [128.85664505010493, 36.142036696092653],
+              [128.856657276745267, 36.141957034860333],
+              [128.856622033301335, 36.141854360757762],
+              [128.856589930576803, 36.141786911253583],
+              [128.856529636285302, 36.141728622069159],
+              [128.855523218836595, 36.140801326500359],
+              [128.855273904324662, 36.140607989239811],
+              [128.854314459605177, 36.139971312097245],
+              [128.85374473145805, 36.13962224820758],
+              [128.852434920027889, 36.138858785412943],
+              [128.85179900216508, 36.138668003256484],
+              [128.851456461040243, 36.138625812926328],
+              [128.851271293026173, 36.138585751215693],
+              [128.851066106850766, 36.138481330051007],
+              [128.850989706059863, 36.138426072931018],
+              [128.850909353077441, 36.138324845254445],
+              [128.850833103946457, 36.138189931881826],
+              [128.850625237588133, 36.137707125218462],
+              [128.850573146135986, 36.137566098397023],
+              [128.850381073048055, 36.136929898317142],
+              [128.850373130407149, 36.136871680866491],
+              [128.85047387506998, 36.134994722508374],
+              [128.850486219591289, 36.13485379469217],
+              [128.850530821593452, 36.134691460354702],
+              [128.850639496139252, 36.134451894234473],
+              [128.850772898883605, 36.134179365320676],
+              [128.851462093235625, 36.132856191759487],
+              [128.851550844432211, 36.132773558706425],
+              [128.851691977420757, 36.132669572900305],
+              [128.851839652354386, 36.132588589613135],
+              [128.851940452660216, 36.132521305284186],
+              [128.851988893484361, 36.132460097586922],
+              [128.852053570762536, 36.132322282132669],
+              [128.852162774069512, 36.132074212937965],
+              [128.852594400917411, 36.130956637785758],
+              [128.852675611749675, 36.130595173863348],
+              [128.853020345574066, 36.128884054268454],
+              [128.853073366726903, 36.128525621969501],
+              [128.853073599684564, 36.128403058014008],
+              [128.852973668416695, 36.127746790415991],
+              [128.851221152567263, 36.123047766740406],
+              [128.851569383801689, 36.121959724975447],
+              [128.851605322728716, 36.121802792177554],
+              [128.851610692908537, 36.121649959069977],
+              [128.851570516348033, 36.12136693340311],
+              [128.851509844613759, 36.121147923629088],
+              [128.851246124777362, 36.120631227254471],
+              [128.851038167893506, 36.120232325784691],
+              [128.850748942859013, 36.119740398781239],
+              [128.850632224726951, 36.119552291946938],
+              [128.850271871655565, 36.118998296949457],
+              [128.850170302677668, 36.118874245268657],
+              [128.849077626214893, 36.117968175182845],
+              [128.848943824183323, 36.117857697825691],
+              [128.848715023262287, 36.117729329690661],
+              [128.848399712728593, 36.117576112443032],
+              [128.848221707715823, 36.117501520230476],
+              [128.84801311813348, 36.117439285340843],
+              [128.84787182350621, 36.117431339328363],
+              [128.847485954122533, 36.117415399800215],
+              [128.846950384966618, 36.117404457335425],
+              [128.846624940976284, 36.117404036377359],
+              [128.846263211511513, 36.117367662164462],
+              [128.845997901723962, 36.117313449025794],
+              [128.845472111161712, 36.117153725456284],
+              [128.845342724461318, 36.117071453727974],
+              [128.845153557137536, 36.116860871960768],
+              [128.844732859318071, 36.116295997099598],
+              [128.843939129169399, 36.115025184602047],
+              [128.843832127420683, 36.114814715417118],
+              [128.839207995162553, 36.11325662025726],
+              [128.838694743220344, 36.113166144558136],
+              [128.838198885868621, 36.113073128418307],
+              [128.837968521957066, 36.112976326484379],
+              [128.837824883938509, 36.112880211600888],
+              [128.837664222442868, 36.112644010267033],
+              [128.837577736313278, 36.112454072208955],
+              [128.836931303946187, 36.11017793372266],
+              [128.836883167317808, 36.109916165354768],
+              [128.836910071717796, 36.108371985541105],
+              [128.836890510223554, 36.107905100252999],
+              [128.836841976971016, 36.107694685771406],
+              [128.836300749353683, 36.106644792499843],
+              [128.836244100232307, 36.10653953388514],
+              [128.835911778374566, 36.106072230278123],
+              [128.835684823296049, 36.105825655876927],
+              [128.835314135586685, 36.105578882024965],
+              [128.835064835980063, 36.105437439031405],
+              [128.834783877841204, 36.10533445208511],
+              [128.834517076898408, 36.105262263479922],
+              [128.834059211308045, 36.105153887334403],
+              [128.833738633287709, 36.105117523872288],
+              [128.833007360480991, 36.105062628212693],
+              [128.832527245927906, 36.105026047869977],
+              [128.832263568143219, 36.104969225262266],
+              [128.83215324402201, 36.104853646120638],
+              [128.831865053446535, 36.104440231417492],
+              [128.831650936771922, 36.104114154248741],
+              [128.831517181120034, 36.103870277810309],
+              [128.830846623174892, 36.102619185353511],
+              [128.830288317884765, 36.102738542969668],
+              [128.830149071473102, 36.102763455192765],
+              [128.829849461082318, 36.102737926065828],
+              [128.829657403625959, 36.10269248548434],
+              [128.829414043505835, 36.10258540921815],
+              [128.829074226210196, 36.102387148960233],
+              [128.828936222638561, 36.102285473891314],
+              [128.828793411011731, 36.102169916534869],
+              [128.828650611792995, 36.102054345341713],
+              [128.82847108138904, 36.101936372200001],
+              [128.827615043082744, 36.101406994620874],
+              [128.827477851845174, 36.101372269868925],
+              [128.824709075701492, 36.100949721993935],
+              [128.822261945425254, 36.100539123815651],
+              [128.82215407033226, 36.100498507972134],
+              [128.822037954041406, 36.100420773342854],
+              [128.818822502815749, 36.098164828520446],
+              [128.818540748100276, 36.097887914746558],
+              [128.818503968855396, 36.097846567166002],
+              [128.818300497193377, 36.097617816048484],
+              [128.818209490807476, 36.097472696785445],
+              [128.818068950438487, 36.09718926160987],
+              [128.817998705565941, 36.096965303319621],
+              [128.816893106147802, 36.093249676942072],
+              [128.816364759258875, 36.092278959758211],
+              [128.813500305555834, 36.091719139077057],
+              [128.813375908049267, 36.091648141442924],
+              [128.811518761228228, 36.089911884737198],
+              [128.811151480187817, 36.089514479117696],
+              [128.810882291221645, 36.08921058991195],
+              [128.8107706437643, 36.089018231402214],
+              [128.810650592274214, 36.088869690556713],
+              [128.810476362284987, 36.088798596626326],
+              [128.803107608587311, 36.086204754623225],
+              [128.801139185985363, 36.085680001980521],
+              [128.798466496846004, 36.084970346504505],
+              [128.798383462701622, 36.084970193299448],
+              [128.798333619119461, 36.084973491998205],
+              [128.79826279261971, 36.085064415818898],
+              [128.798137667985117, 36.085283358109834],
+              [128.797937421760793, 36.085643766707442],
+              [128.797752456474115, 36.085954385848765],
+              [128.797647430585613, 36.086072563629017],
+              [128.797583260348063, 36.086125960828852],
+              [128.797504717673263, 36.086187982412163],
+              [128.79739909770953, 36.086247413199089],
+              [128.797259548271086, 36.086325177427334],
+              [128.797031385707584, 36.086436419994378],
+              [128.796651817685273, 36.086589513402586],
+              [128.796135309480917, 36.086782853729829],
+              [128.795789985776565, 36.086896715309422],
+              [128.795637338601097, 36.086934677000258],
+              [128.795486635472571, 36.08695277253684],
+              [128.795371731949757, 36.086957160154952],
+              [128.791022704036266, 36.086726936173754],
+              [128.787854034468495, 36.088939364501982],
+              [128.787591534393698, 36.089204951651631],
+              [128.787285202268663, 36.089503460830727],
+              [128.78721347383177, 36.089564485695703],
+              [128.787105882706612, 36.089651463506918],
+              [128.785091370421441, 36.09095963444836],
+              [128.784826662242466, 36.091111428972575],
+              [128.779557083972009, 36.093838879116419],
+              [128.776807496508383, 36.09482826624221],
+              [128.775141329399275, 36.095014383051534],
+              [128.773642824689773, 36.094822301849341],
+              [128.772521072485773, 36.09490125933884],
+              [128.770643487938514, 36.095240142042108],
+              [128.769369460610164, 36.097016504953714],
+              [128.769195595665366, 36.097291798787566],
+              [128.769085140303048, 36.097630531704134],
+              [128.769021240380027, 36.097854694143201],
+              [128.768869802213572, 36.098421848656095],
+              [128.768624868624613, 36.099310959866074],
+              [128.768544643736419, 36.099429705372543],
+              [128.768441167685353, 36.099529466860389],
+              [128.767406484778519, 36.099978290075768],
+              [128.766515466193681, 36.100265395323682],
+              [128.765730995559437, 36.100460897190409],
+              [128.764945097748637, 36.100599843679078],
+              [128.764809834866526, 36.100594413956507],
+              [128.764636805350904, 36.100580565960037],
+              [128.764477272494048, 36.100509989187415],
+              [128.75841395189255, 36.096807323261039],
+              [128.758312689818979, 36.096723363340956],
+              [128.758211450159166, 36.096639402195223],
+              [128.757919642871002, 36.096295620958166],
+              [128.757433493942671, 36.095618088610891],
+              [128.75729763576652, 36.095428663160831],
+              [128.757241396361081, 36.095317738856636],
+              [128.757191682178956, 36.09517147886158],
+              [128.757133432955811, 36.09488701357585],
+              [128.757055110505547, 36.094386944702421],
+              [128.756992433775991, 36.094205767053332],
+              [128.756846743071918, 36.093964993003894],
+              [128.756082677583976, 36.093151883693892],
+              [128.755770778196023, 36.092859417866769],
+              [128.755554957641806, 36.092694141461863],
+              [128.755412105924535, 36.092615472123178],
+              [128.753903381879383, 36.091789478575784],
+              [128.753787047999737, 36.091740597034899],
+              [128.753727132794779, 36.091745874891984],
+              [128.753633824428789, 36.091788932070273],
+              [128.752141610416857, 36.092780700440827],
+              [128.752078204537895, 36.09283458572984],
+              [128.752061398066701, 36.092888597066256],
+              [128.751556575585852, 36.09910928725278],
+              [128.751605514263645, 36.10145676649924],
+              [128.751962728076734, 36.101991364332619],
+              [128.752035350840771, 36.102177968572001],
+              [128.752034969744358, 36.102299562267348],
+              [128.752021344737187, 36.1023968047786],
+              [128.75180470391976, 36.103305695463071],
+              [128.751764204661896, 36.103432564772881],
+              [128.751723813367363, 36.103530116655506],
+              [128.751663497541415, 36.103588580666006],
+              [128.751587189771726, 36.103627489329483],
+              [128.75147488880674, 36.10364352393637],
+              [128.751326531371518, 36.103643196670539],
+              [128.75092727308612, 36.1036126499056],
+              [128.750774758473995, 36.103661150715496],
+              [128.750630216734606, 36.103729206652197],
+              [128.748711164461355, 36.105341468139756],
+              [128.746928045231726, 36.10685235622929],
+              [128.746851292821873, 36.106923647059631],
+              [128.745091223457734, 36.109150137541725],
+              [128.7448396257507, 36.10994797089635],
+              [128.744700952135787, 36.110278685600534],
+              [128.744551895263498, 36.110519079123819],
+              [128.742186775367287, 36.114071771302321],
+              [128.741947581974387, 36.114393632817311],
+              [128.740131171513241, 36.116805182265267],
+              [128.739452452814049, 36.117126064868309],
+              [128.739356942869989, 36.117190286950532],
+              [128.739303828948977, 36.11726325943873],
+              [128.739229173593088, 36.117435053108856],
+              [128.739180884266034, 36.117624009210175],
+              [128.739117067979038, 36.118013206523891],
+              [128.738571807335632, 36.121509778837456],
+              [128.738664607998743, 36.122227695054299],
+              [128.738765212029705, 36.122236564037081],
+              [128.739071962332531, 36.12232319879714],
+              [128.739532084729632, 36.12247895658713],
+              [128.739662997089539, 36.122529341267992],
+              [128.739737032693995, 36.122581064570852],
+              [128.739879498348017, 36.122693135219045],
+              [128.740037936252349, 36.122818114946654],
+              [128.746776688385722, 36.128685957509809],
+              [128.746961414594949, 36.128866593639017],
+              [128.747102941208396, 36.129037127133842],
+              [128.749260371180981, 36.13287477309408],
+              [128.749260194288041, 36.132933721876618],
+              [128.74899107561734, 36.134757289088128],
+              [128.748949397440612, 36.135007746244817],
+              [128.748812422354177, 36.135403302325997],
+              [128.748541988537539, 36.136314606950783],
+              [128.748390223694088, 36.136907505354699],
+              [128.748261380240621, 36.13743410752226],
+              [128.74824730095915, 36.137577776144326],
+              [128.748254043599275, 36.137869195832216],
+              [128.748274988536053, 36.138773108744743],
+              [128.74831742578931, 36.139705361754167],
+              [128.748340003180544, 36.139742259504281],
+              [128.748435354313756, 36.139749841547847],
+              [128.748798128844669, 36.139761133178524],
+              [128.749043884303092, 36.139758483633521],
+              [128.749957937445174, 36.139679347403792],
+              [128.752610959675053, 36.139441657365964],
+              [128.754938400107193, 36.139159027235365],
+              [128.759764413249371, 36.138550896818849],
+              [128.760505412082921, 36.138305519258743],
+              [128.760773540563918, 36.138247111638599],
+              [128.76152864798263, 36.138131054515313],
+              [128.762378277861728, 36.138007474799849],
+              [128.762799285040188, 36.137967239093257],
+              [128.762971223316271, 36.137950809795143],
+              [128.762779198017967, 36.139181745592303],
+              [128.762623007319604, 36.139770937401643],
+              [128.762940796604312, 36.144397320518081],
+              [128.763299632817393, 36.145027201731864],
+              [128.763852810008899, 36.145334112935181],
+              [128.764699163041229, 36.145942768518225],
+              [128.764862211067367, 36.146094157967049],
+              [128.764911847931614, 36.146204782894664],
+              [128.766338978836956, 36.149746808785423],
+              [128.766535828727257, 36.150353180840085],
+              [128.766548899066265, 36.150537421826165],
+              [128.766535030863821, 36.150622150340787],
+              [128.76645741596451, 36.150754635062704],
+              [128.766220386614577, 36.151034193000491],
+              [128.765862157257232, 36.151462626102699],
+              [128.765574509898755, 36.151959462006175],
+              [128.765396371253701, 36.152294402692796],
+              [128.765345668386061, 36.15253746833816],
+              [128.765363524850102, 36.152640672224315],
+              [128.765566946441766, 36.152970465071029],
+              [128.765627411426152, 36.153038753146546],
+              [128.765878444267031, 36.15328721422172],
+              [128.766086081773693, 36.15344899967247],
+              [128.76633527972254, 36.153629635585503],
+              [128.766873422894719, 36.153846498002068],
+              [128.766984355554342, 36.153869222168289],
+              [128.76745135069342, 36.153911421125969],
+              [128.76779811417029, 36.153942125187449],
+              [128.776706835444031, 36.154443798544186],
+              [128.77695750589487, 36.154409122070831],
+              [128.777787190537765, 36.154222063428037],
+              [128.777955925589509, 36.154159512142201],
+              [128.778102008120612, 36.154058079025731],
+              [128.778271055214105, 36.153884604915632],
+              [128.778380750673051, 36.153755391577221],
+              [128.778476989374298, 36.153552209310327],
+              [128.77853664678554, 36.153400722091668],
+              [128.778623640342488, 36.153249285499442],
+              [128.77874225420166, 36.153184783802104],
+              [128.778838028342307, 36.153151672841211],
+              [128.782079774353889, 36.152610986755491],
+              [128.782171270097109, 36.152616454567131],
+              [128.782288757603595, 36.152674989446218],
+              [128.782804937269077, 36.153235369301576],
+              [128.785429117020726, 36.156552833151217],
+              [128.785565245447685, 36.156754566367972],
+              [128.78684890011229, 36.158864278315804],
+              [128.787873275553352, 36.160845972997166],
+              [128.788802315346913, 36.162725799529078],
+              [128.790270511530821, 36.167523682748516],
+              [128.790306595361869, 36.167667942984288],
+              [128.790488785385861, 36.169431858851077],
+              [128.790483731469095, 36.169616732315689],
+              [128.790469542325752, 36.169818198072562],
+              [128.790428167556485, 36.169951250040285],
+              [128.790313862230363, 36.170098942325147],
+              [128.789866489995887, 36.170405064199507],
+              [128.789387228223802, 36.170698202844406],
+              [128.790094156514073, 36.172198635126811],
+              [128.790267145374202, 36.17226917367649],
+              [128.791804593365299, 36.173353161605377],
+              [128.791968248472216, 36.173505026052773],
+              [128.792163634020199, 36.173725328459547],
+              [128.792267978017549, 36.173906673408922],
+              [128.792331392364048, 36.174058365423775],
+              [128.793185464773046, 36.176858521696971],
+              [128.793509378208825, 36.178471497761493],
+              [128.793498418120095, 36.178695604001533],
+              [128.793053744000844, 36.18106436090342],
+              [128.792921382329837, 36.181716175615364],
+              [128.792418948320943, 36.18383938518523],
+              [128.792363245524086, 36.183993388897356],
+              [128.792280425392391, 36.184182525495778],
+              [128.792169291950415, 36.184392429866989],
+              [128.791373790522925, 36.186246187372113],
+              [128.790578454124187, 36.188418879745328],
+              [128.789710653041055, 36.192810234296338],
+              [128.789685836885184, 36.193037107054458],
+              [128.78967517632006, 36.193161786982117],
+              [128.78970431575334, 36.193884672499273],
+              [128.789717888110943, 36.193982748676135],
+              [128.789786774369702, 36.19407251735992],
+              [128.79049329495183, 36.194863119370403],
+              [128.790651439874665, 36.194680904917973],
+              [128.790735672432959, 36.194600321460463],
+              [128.790816713616437, 36.194555083031766],
+              [128.791012898326926, 36.194494860138221],
+              [128.791403575820311, 36.194379734243974],
+              [128.79166512522005, 36.194309568238047],
+              [128.791876825250256, 36.194269548473265],
+              [128.795973435559574, 36.193799575834781],
+              [128.799676309884859, 36.19682872544314],
+              [128.801340679798273, 36.198520747242149],
+              [128.803000305186146, 36.200610051946612],
+              [128.803075928212706, 36.200767376551063],
+              [128.803180871721452, 36.203138376052777],
+              [128.803985203839375, 36.20893493525459],
+              [128.803919039720398, 36.209956280047216],
+              [128.803925406474548, 36.209996935552134],
+              [128.803970950928004, 36.21005876477016],
+              [128.804115475393331, 36.210154716713909],
+              [128.804336136015451, 36.210263147306151],
+              [128.804518809293313, 36.210328276501059],
+              [128.804800545604593, 36.210381223373105],
+              [128.808973871677495, 36.210347190538428],
+              [128.811271822393053, 36.210230787252584],
+              [128.811416590001926, 36.210224842037022],
+              [128.811546056511133, 36.210243565072915],
+              [128.813411947190701, 36.21068424572244],
+              [128.813628886063071, 36.210761777851843],
+              [128.813891449952564, 36.210876429608582],
+              [128.81410073288643, 36.21096938559613],
+              [128.817965202940854, 36.213222117456709],
+              [128.818627051680181, 36.213643033963862],
+              [128.820036373194768, 36.214594353452519],
+              [128.822592637326608, 36.215834382661768],
+              [128.824595326350448, 36.216427942653823],
+              [128.830037398873998, 36.217639568713864],
+              [128.83021203671413, 36.217658176691565],
+              [128.830309085733603, 36.217653061736414],
+              [128.830433337171286, 36.217621693105791],
+              [128.83076685322618, 36.217475340836913],
+              [128.831310834013266, 36.217219199539606],
+              [128.831609400129707, 36.217076682909564],
+              [128.831800452470532, 36.216985192030251],
+              [128.831887926645123, 36.216919786320219],
+              [128.831969048146419, 36.216799316289368],
+              [128.832173613610223, 36.216440438323907],
+              [128.832338132030827, 36.216172154704211],
+              [128.832471115724957, 36.216007174630207],
+              [128.832594298199297, 36.215889373842543],
+              [128.832688212919635, 36.215834462159386],
+              [128.832830661685591, 36.215771734772943],
+              [128.834003762443217, 36.215362428001157],
+              [128.834692731207866, 36.215368623963954],
+              [128.83841674595817, 36.215900256514175],
+              [128.838523453167653, 36.215916112659755],
+              [128.838652710183595, 36.215979222080051],
+              [128.839861178189352, 36.216687749531197],
+              [128.840872363584992, 36.217315693836284],
+              [128.841079348002381, 36.217440402492656],
+              [128.841215084712417, 36.217506138210638],
+              [128.84146399599959, 36.217582489240137],
+              [128.841625677988361, 36.21761153968648],
+              [128.8418132875955, 36.217617037194259],
+              [128.842104452394636, 36.217596452180281],
+              [128.842227412058207, 36.217575654856773],
+              [128.842392542896391, 36.217502473091983],
+              [128.844686610014264, 36.216299170132608],
+              [128.846947262784937, 36.216637312613273],
+              [128.84708956490141, 36.21665058689176],
+              [128.847235133444116, 36.216642911552434],
+              [128.847420471241037, 36.216601169976343],
+              [128.847746679051994, 36.216492994844486, 36.216492994844486],
+              [128.851788331579144, 36.214913318836032],
+              [128.851855787738913, 36.214879786815885],
+              [128.857102468740862, 36.210110657270569],
+              [128.857159635635725, 36.210030885500707],
+              [128.857216851122161, 36.209925915726551],
+              [128.857298181076231, 36.209709850053912],
+              [128.857386766901044, 36.209462043638489],
+              [128.857532358795993, 36.209226925209308],
+              [128.857719452558484, 36.208966609755898],
+              [128.858563205482341, 36.208007770434591],
+              [128.860579869260619, 36.206427218046301],
+              [128.86065250069592, 36.206397891721451],
+              [128.860937483299409, 36.206461239161811],
+              [128.861092932247516, 36.206503462720391],
+              [128.861372655680583, 36.206617244856403],
+              [128.861579893987795, 36.20668052594192],
+              [128.861719795997573, 36.206710081209906],
+              [128.862004967068771, 36.206676804517116],
+              [128.863878058709076, 36.206276327935647],
+              [128.864792391879149, 36.205985212163121],
+              [128.864999922786296, 36.205884604761998],
+              [128.86515566119931, 36.205754517935148],
+              [128.865425746190141, 36.205448096511368],
+              [128.86581525178687, 36.205024129873394],
+              [128.865924302955477, 36.204910818789692],
+              [128.866059266186426, 36.204801712020029],
+              [128.86844224424263, 36.203741886704364],
+              [128.868661642940708, 36.203675841782363],
+              [128.869024544585102, 36.20364262761251],
+              [128.869480747058361, 36.20360952376992],
+              [128.870082060098355, 36.203597573463554],
+              [128.870310095093487, 36.203631441916954],
+              [128.870543258397845, 36.203686319805456],
+              [128.870662462268257, 36.203699078058889],
+              [128.870714348698328, 36.203669706530931],
+              [128.871589425026997, 36.202508805228909],
+              [128.871861035456618, 36.20213743064221],
+              [128.872216398917573, 36.20164293574102],
+              [128.872744643987488, 36.20088137053876],
+              [128.872933530930339, 36.200547872675912],
+              [128.873062619890931, 36.200117436992649],
+              [128.873147298911647, 36.199747955328554],
+              [128.878431467521267, 36.198745281675066],
+              [128.878539667480453, 36.198803152905612],
+              [128.879050928121529, 36.198973485574427],
+              [128.879176279284422, 36.198999004417253],
+              [128.879909950842716, 36.199095626595515],
+              [128.880531229207122, 36.199077767725392],
+              [128.88245824659819, 36.198999530925917],
+            ],
+          ],
+        ],
+      },
+      properties: {
+        name: "삼국유사면",
+        id: "KR-tkarnrdbtkaus",
+        TYPE: "Province",
+        CNTRY: "South Korea",
+      },
+      id: "KR-tkarnrdbtkaus",
+    },
+  ],
+};
+export default rnsdnl;
 
client/views/component/store.json (added)
+++ client/views/component/store.json
This file is too big to display.
 
client/views/component/usa.js (added)
+++ client/views/component/usa.js
This diff is skipped because there are too many other diffs.
client/views/index.html
--- client/views/index.html
+++ client/views/index.html
This diff is skipped because there are too many other diffs.
client/views/index.jsx
--- client/views/index.jsx
+++ client/views/index.jsx
This diff is skipped because there are too many other diffs.
client/views/layout/Header.jsx
--- client/views/layout/Header.jsx
+++ client/views/layout/Header.jsx
This diff is skipped because there are too many other diffs.
client/views/layout/Menu.jsx
--- client/views/layout/Menu.jsx
+++ client/views/layout/Menu.jsx
This diff is skipped because there are too many other diffs.
 
client/views/layout/SidebarItem.jsx (added)
+++ client/views/layout/SidebarItem.jsx
This diff is skipped because there are too many other diffs.
client/views/pages/App.jsx
--- client/views/pages/App.jsx
+++ client/views/pages/App.jsx
This diff is skipped because there are too many other diffs.
client/views/pages/AppRoute.jsx
--- client/views/pages/AppRoute.jsx
+++ client/views/pages/AppRoute.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/authority/AuthorityManagement-ryu.jsx (added)
+++ client/views/pages/authority/AuthorityManagement-ryu.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/authority/AuthorityManagement.jsx (added)
+++ client/views/pages/authority/AuthorityManagement.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/authority/MyInfoUpdate.jsx (added)
+++ client/views/pages/authority/MyInfoUpdate.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/authority/RiskInsert.jsx (added)
+++ client/views/pages/authority/RiskInsert.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/authority/UserAuthoriySelect.jsx (added)
+++ client/views/pages/authority/UserAuthoriySelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/callcenter/CallInsert.jsx (added)
+++ client/views/pages/callcenter/CallInsert.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/callcenter/CallSelect.jsx (added)
+++ client/views/pages/callcenter/CallSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/callcenter/CallSelectOne.jsx (added)
+++ client/views/pages/callcenter/CallSelectOne.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/callcenter/CallUpdate.jsx (added)
+++ client/views/pages/callcenter/CallUpdate.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/equipment/EquipmentManagementSelect.jsx (added)
+++ client/views/pages/equipment/EquipmentManagementSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/equipment/EquipmentManagementSelectOne.jsx (added)
+++ client/views/pages/equipment/EquipmentManagementSelectOne.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/equipment/EquipmentManagementSelectReturn.jsx (added)
+++ client/views/pages/equipment/EquipmentManagementSelectReturn.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/equipment/EquipmentRentalInsert.jsx (added)
+++ client/views/pages/equipment/EquipmentRentalInsert.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/healthcare/medicinecare/MedicineCareSelect.jsx (added)
+++ client/views/pages/healthcare/medicinecare/MedicineCareSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/healthcare/medicinecare/MedicineCareSelectOne.jsx (added)
+++ client/views/pages/healthcare/medicinecare/MedicineCareSelectOne.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/healthcare/statistics/MedicineStatistics.jsx (added)
+++ client/views/pages/healthcare/statistics/MedicineStatistics.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/healthcare/temperature/TemperatureManagementSelect.jsx (added)
+++ client/views/pages/healthcare/temperature/TemperatureManagementSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/healthcare/temperature/TemperatureManagementSelectOne.jsx (added)
+++ client/views/pages/healthcare/temperature/TemperatureManagementSelectOne.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/join/Join.jsx (added)
+++ client/views/pages/join/Join.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/login/Login.jsx (added)
+++ client/views/pages/login/Login.jsx
This diff is skipped because there are too many other diffs.
client/views/pages/main/Main.jsx
--- client/views/pages/main/Main.jsx
+++ client/views/pages/main/Main.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/main/Main2.jsx (added)
+++ client/views/pages/main/Main2.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/main/Weather.jsx (added)
+++ client/views/pages/main/Weather.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/senior_management/SeniorInsert.jsx (added)
+++ client/views/pages/senior_management/SeniorInsert.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/senior_management/SeniorSelect.jsx (added)
+++ client/views/pages/senior_management/SeniorSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/senior_management/SeniorSelectOne.jsx (added)
+++ client/views/pages/senior_management/SeniorSelectOne.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/test/Test.jsx (added)
+++ client/views/pages/test/Test.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/visit/visit/VisitInsert.jsx (added)
+++ client/views/pages/visit/visit/VisitInsert.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/visit/visit/VisitSelect.jsx (added)
+++ client/views/pages/visit/visit/VisitSelect.jsx
This diff is skipped because there are too many other diffs.
 
client/views/pages/visit/visit/VisitSelectOne.jsx (added)
+++ client/views/pages/visit/visit/VisitSelectOne.jsx
This diff is skipped because there are too many other diffs.
Add a comment
List