Revert "Re-apply hybrid-engine" 52/274952/2
authorWonnam Jang <wn.jang@samsung.com>
Thu, 12 May 2022 10:26:32 +0000 (10:26 +0000)
committerWonnam Jang <wn.jang@samsung.com>
Thu, 12 May 2022 10:36:27 +0000 (10:36 +0000)
This reverts commit c1c7258b425192ad79e5861189606b53485c8b80.

Change-Id: Ib6a88d2e195245923cc789ee7f4a6d4e24668926

26 files changed:
CMakeLists.txt
LICENSE.APLv2 [new file with mode: 0644]
NOTICE
bin/aarch64/org.tizen.vc-engine-default
bin/arm/org.tizen.vc-engine-default
lib/aarch64/libOnDeviceE2EASR.so [new file with mode: 0644]
lib/aarch64/libfst.so [new symlink]
lib/aarch64/libfst.so.8 [new symlink]
lib/aarch64/libfst.so.8.0.0 [new file with mode: 0644]
lib/aarch64/libondeviceasr.so [new file with mode: 0755]
lib/aarch64/libvoiceactivity.so [new file with mode: 0644]
lib/arm/libOnDeviceE2EASR.so [new file with mode: 0644]
lib/arm/libfst.so [new symlink]
lib/arm/libfst.so.8 [new file with mode: 0644]
lib/arm/libondeviceasr.so [new file with mode: 0755]
lib/arm/libvoiceactivity.so [new file with mode: 0644]
org.tizen.vc-engine-default.xml
packaging/org.tizen.vc-engine-default.spec
res/OnDeviceE2EASR.ko_KR.conf [new file with mode: 0644]
res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite [new file with mode: 0644]
res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite [new file with mode: 0644]
res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite [new file with mode: 0644]
res/models/ko_KR/stats.power.80.mean.txt [new file with mode: 0644]
res/models/ko_KR/stats.power.80.std.txt [new file with mode: 0644]
res/models/ko_KR/vocab-kor-4362.txt.v2 [new file with mode: 0644]
vc-default-info.xml [deleted file]

index ec1b784..58512a3 100644 (file)
@@ -8,20 +8,84 @@ EXEC_PROGRAM("${UNAME}" ARGS "-m" OUTPUT_VARIABLE "ARCH")
 IF("${ARCH}" MATCHES "^arm.*")
 SET(INSTALL_ARCH arm)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/arm/org.tizen.vc-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/arm/libOnDeviceE2EASR.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/arm/libondeviceasr.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/arm/libvoiceactivity.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/arm/libfst.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/arm/libfst.so.8 DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+
+#INSTALL(FILES ${CMAKE_SOURCE_DIR}/res/OnDeviceE2EASR.en_US.conf DESTINATION ${APP_INSTALL_PREFIX}/shared/res/)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/res/OnDeviceE2EASR.ko_KR.conf DESTINATION ${APP_INSTALL_PREFIX}/shared/res/)
+
+SET( FILES_MODEL_KO_KR
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/stats.power.80.mean.txt
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/stats.power.80.std.txt
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/vocab-kor-4362.txt.v2
+)
+
+#SET( FILES_MODEL_EN_US
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/B_disambig.fst
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/BG.fst
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/e2e_asr_words.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/stats.mean.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/stats.std_dev.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/trans.bpe.vocab
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/words.txt
+#)
+
+INSTALL(FILES ${FILES_MODEL_KO_KR} DESTINATION ${APP_INSTALL_PREFIX}/shared/res/models/ko_KR/)
+#INSTALL(FILES ${FILES_MODEL_EN_US} DESTINATION ${APP_INSTALL_PREFIX}/shared/res/models/en_US/)
+
 ELSEIF("${ARCH}" MATCHES "^i586.*")
 SET(INSTALL_ARCH i586)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.vc-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
+INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/engine_data/ DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/engine_data)
 ELSEIF("${ARCH}" MATCHES "^i686.*")
 SET(INSTALL_ARCH i586)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.vc-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
+INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/engine_data/ DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/engine_data)
 ELSEIF("${ARCH}" MATCHES "^aarch64.*")
 SET(INSTALL_ARCH aarch64)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/org.tizen.vc-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libOnDeviceE2EASR.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libondeviceasr.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libvoiceactivity.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libfst.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libfst.so.8 DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libfst.so.8.0.0 DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+
+#INSTALL(FILES ${CMAKE_SOURCE_DIR}/res/OnDeviceE2EASR.en_US.conf DESTINATION ${APP_INSTALL_PREFIX}/shared/res/)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/res/OnDeviceE2EASR.ko_KR.conf DESTINATION ${APP_INSTALL_PREFIX}/shared/res/)
+
+SET( FILES_MODEL_KO_KR
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/stats.power.80.mean.txt
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/stats.power.80.std.txt
+       ${CMAKE_SOURCE_DIR}/res/models/ko_KR/vocab-kor-4362.txt.v2
+)
+
+#SET( FILES_MODEL_EN_US
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/B_disambig.fst
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/BG.fst
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/e2e_asr_words.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/stats.mean.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/stats.std_dev.txt
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/trans.bpe.vocab
+#      ${CMAKE_SOURCE_DIR}/res/models/en_US/words.txt
+#)
+
+INSTALL(FILES ${FILES_MODEL_KO_KR} DESTINATION ${APP_INSTALL_PREFIX}/shared/res/models/ko_KR/)
+#INSTALL(FILES ${FILES_MODEL_EN_US} DESTINATION ${APP_INSTALL_PREFIX}/shared/res/models/en_US/)
+
 ELSEIF("${ARCH}" MATCHES "^x86_64.*")
 SET(INSTALL_ARCH x86_64)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/org.tizen.vc-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
+INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/engine_data/ DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/engine_data)
 ENDIF()
 
-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/engine_data/ DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/engine_data)
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-default-info.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/1.0/engine-info/)
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.vc-engine-default.xml DESTINATION ${APP_MANIFESTDIR})
diff --git a/LICENSE.APLv2 b/LICENSE.APLv2
new file mode 100644 (file)
index 0000000..d645695
--- /dev/null
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/NOTICE b/NOTICE
index 3368aed..3918e93 100644 (file)
--- a/NOTICE
+++ b/NOTICE
@@ -1,3 +1,3 @@
 Copyright (c) 2017 Samsung Electronics Co., Ltd. All rights reserved.
-Except as noted, this software is licensed under Flora License, Version 1.1
-Please, see the LICENSE.Flora file for Flora License, Version 1.1 terms and conditions.
+Except as noted, this software is licensed under Flora License, Version 1.1 and Apache 2.0.
+Please, see the LICENSE file for Flora License, Version 1.1 and Apache 2.0 terms and conditions.
index a9ae3e5..e03f3b5 100755 (executable)
Binary files a/bin/aarch64/org.tizen.vc-engine-default and b/bin/aarch64/org.tizen.vc-engine-default differ
index 975b176..2e94507 100755 (executable)
Binary files a/bin/arm/org.tizen.vc-engine-default and b/bin/arm/org.tizen.vc-engine-default differ
diff --git a/lib/aarch64/libOnDeviceE2EASR.so b/lib/aarch64/libOnDeviceE2EASR.so
new file mode 100644 (file)
index 0000000..ff873c6
Binary files /dev/null and b/lib/aarch64/libOnDeviceE2EASR.so differ
diff --git a/lib/aarch64/libfst.so b/lib/aarch64/libfst.so
new file mode 120000 (symlink)
index 0000000..b243cf0
--- /dev/null
@@ -0,0 +1 @@
+libfst.so.8.0.0
\ No newline at end of file
diff --git a/lib/aarch64/libfst.so.8 b/lib/aarch64/libfst.so.8
new file mode 120000 (symlink)
index 0000000..b243cf0
--- /dev/null
@@ -0,0 +1 @@
+libfst.so.8.0.0
\ No newline at end of file
diff --git a/lib/aarch64/libfst.so.8.0.0 b/lib/aarch64/libfst.so.8.0.0
new file mode 100644 (file)
index 0000000..1a2fabc
Binary files /dev/null and b/lib/aarch64/libfst.so.8.0.0 differ
diff --git a/lib/aarch64/libondeviceasr.so b/lib/aarch64/libondeviceasr.so
new file mode 100755 (executable)
index 0000000..f3ae98f
Binary files /dev/null and b/lib/aarch64/libondeviceasr.so differ
diff --git a/lib/aarch64/libvoiceactivity.so b/lib/aarch64/libvoiceactivity.so
new file mode 100644 (file)
index 0000000..d327587
Binary files /dev/null and b/lib/aarch64/libvoiceactivity.so differ
diff --git a/lib/arm/libOnDeviceE2EASR.so b/lib/arm/libOnDeviceE2EASR.so
new file mode 100644 (file)
index 0000000..447baa2
Binary files /dev/null and b/lib/arm/libOnDeviceE2EASR.so differ
diff --git a/lib/arm/libfst.so b/lib/arm/libfst.so
new file mode 120000 (symlink)
index 0000000..5840a6c
--- /dev/null
@@ -0,0 +1 @@
+libfst.so.8
\ No newline at end of file
diff --git a/lib/arm/libfst.so.8 b/lib/arm/libfst.so.8
new file mode 100644 (file)
index 0000000..15c7f4e
Binary files /dev/null and b/lib/arm/libfst.so.8 differ
diff --git a/lib/arm/libondeviceasr.so b/lib/arm/libondeviceasr.so
new file mode 100755 (executable)
index 0000000..ae19618
Binary files /dev/null and b/lib/arm/libondeviceasr.so differ
diff --git a/lib/arm/libvoiceactivity.so b/lib/arm/libvoiceactivity.so
new file mode 100644 (file)
index 0000000..559f12a
Binary files /dev/null and b/lib/arm/libvoiceactivity.so differ
index 5433607..50c1fb5 100755 (executable)
@@ -5,7 +5,7 @@
         <label>org.tizen.vc-engine-default</label>
         <icon>vc-engine-default.png</icon>
         <metadata key="http://tizen.org/metadata/vc-engine/name" value="Samsung voice control engine" />
-        <metadata key="http://tizen.org/metadata/vc-engine/language" value="ko_KR,en_US" />
+        <metadata key="http://tizen.org/metadata/vc-engine/language" value="ko_KR" />
         <metadata key="http://tizen.org/metadata/vc-engine/non-fixed-support" value="true"/>
        <background-category value="media"/>
        <background-category value="background-network"/>
index 12048d4..e38bbfe 100644 (file)
@@ -3,11 +3,31 @@ Summary:    Voice control default engine service app
 Version:    1.70.0
 Release:    1
 Group:      Graphics & UI Framework/Voice Framework
-License:    Flora-1.1
+License:    Flora-1.1 and Apache-2.0
 Source0:    %{name}-%{version}.tar.gz
 Source1001: %{name}.manifest
+
+Autoreq:  no
 BuildRequires:  cmake
 BuildRequires:  pkgconfig(libtzplatform-config)
+Requires:  appcore-agent
+Requires:  aul
+Requires:  bundle
+Requires:  capi-appfw-app-common
+Requires:  capi-appfw-app-control
+Requires:  capi-base-common
+Requires:  dbus-libs
+Requires:  dlog
+Requires:  ecore-core
+Requires:  efl
+Requires:  eina
+Requires:  eo
+Requires:  glibc
+Requires:  libglib
+Requires:  xdgmime
+Requires:  voice-control
+Requires:  vconf
+Requires:  capi-machine-learning-inference
 
 %description
 Description: Voice control default engine service app
@@ -16,6 +36,10 @@ Description: Voice control default engine service app
 %setup -q
 cp %{SOURCE1001} .
 
+cat LICENSE LICENSE.APLv2 > LICENSE.merge
+cp LICENSE.merge LICENSE
+rm LICENSE.merge
+
 %define APP_PREFIX %{TZ_SYS_RO_APP}/%{name}
 %define MANIFESTDIR %{TZ_SYS_RO_PACKAGES}
 
@@ -46,6 +70,11 @@ exit 0
 %defattr(-,root,root,-)
 %{APP_PREFIX}/bin/*
 %{MANIFESTDIR}/org.tizen.vc-engine-default.xml
-#%{TZ_SYS_RO_SHARE}/voice/vc/1.0/engine/lib*.so
-%{TZ_SYS_RO_SHARE}/voice/vc/1.0/engine-info/vc-default-info.xml
+%ifarch %{arm} aarch64 # arm armv7l
+%{APP_PREFIX}/lib/*
+%{APP_PREFIX}/shared/res/*
+%else
 %{TZ_SYS_RO_SHARE}/voice/vc/engine_data/*
+%endif
+#%{TZ_SYS_RO_SHARE}/voice/vc/1.0/engine/lib*.so
+
diff --git a/res/OnDeviceE2EASR.ko_KR.conf b/res/OnDeviceE2EASR.ko_KR.conf
new file mode 100644 (file)
index 0000000..61a8f27
--- /dev/null
@@ -0,0 +1,37 @@
+means_path   stats.power.80.mean.txt
+stddev_path   stats.power.80.std.txt
+number_of_features   80
+feature_stacking   4
+feature_stacking_roll_padding   true
+feature_skipping   2
+sample_rate   16000
+buffer_size   1600
+window_len   0.025
+step_len   0.01
+pad_size   200
+beam_width   4
+vocab_size   4362
+vocab_v2_path   vocab-kor-4362.txt.v2
+bpe_split_type   2
+asr   conformert
+#transducer_joint_model  model_conformer.ConformerT_10MB_joint_beam4_8bit.tflite
+#transducer_pred_model   model_conformer.ConformerT_10MB_pred_beam4_8bit.tflite
+#transducer_tran_model   model_conformer.ConformerT_10MB_tran_beam4_8bit.tflite
+#transducer_joint_model  model_conformer.ConformerT_20MB_joint_beam4_8bit.tflite
+#transducer_pred_model   model_conformer.ConformerT_20MB_pred_beam4_8bit.tflite
+#transducer_tran_model   model_conformer.ConformerT_20MB_tran_beam4_8bit.tflite
+
+## for SES
+transducer_joint_model  model_conformer.ConformerT_joint_beam4_8bit.tflite
+transducer_pred_model   model_conformer.ConformerT_pred_beam4_8bit.tflite
+transducer_tran_model   model_conformer.ConformerT_tran_beam4_8bit.tflite
+
+## for DA
+#transducer_joint_model
+#transducer_pred_model
+#transducer_tran_model
+
+transducer_dec_repeat_count   1
+transducer_blank_idx   4104
+transducer_use_null_pruning   false
+transducer_length_norm_step   true
\ No newline at end of file
diff --git a/res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite b/res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite
new file mode 100644 (file)
index 0000000..7a0c337
Binary files /dev/null and b/res/models/ko_KR/model_conformer.ConformerT_joint_beam4_8bit.tflite differ
diff --git a/res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite b/res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite
new file mode 100644 (file)
index 0000000..a38b0f2
Binary files /dev/null and b/res/models/ko_KR/model_conformer.ConformerT_pred_beam4_8bit.tflite differ
diff --git a/res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite b/res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite
new file mode 100644 (file)
index 0000000..9407503
Binary files /dev/null and b/res/models/ko_KR/model_conformer.ConformerT_tran_beam4_8bit.tflite differ
diff --git a/res/models/ko_KR/stats.power.80.mean.txt b/res/models/ko_KR/stats.power.80.mean.txt
new file mode 100644 (file)
index 0000000..9cf87f7
--- /dev/null
@@ -0,0 +1,80 @@
+6.631765256794193153e-01
+6.870999682905521988e-01
+7.042258431569892174e-01
+7.217775815789304605e-01
+7.393047032226330861e-01
+7.481806019061330026e-01
+7.448514634025222847e-01
+7.324327526032692326e-01
+7.206248778173238723e-01
+7.139971174492839578e-01
+7.108378942081083895e-01
+7.063792946277617224e-01
+6.984990720099291117e-01
+6.881114649594064492e-01
+6.769827638092111854e-01
+6.712978186262320568e-01
+6.672663842109773924e-01
+6.625294643755331725e-01
+6.579320571257162298e-01
+6.532938519287886381e-01
+6.480840400771308296e-01
+6.419662692543653959e-01
+6.358203104432963437e-01
+6.300593327767551877e-01
+6.246416487543191565e-01
+6.192803313057388959e-01
+6.156682048916963801e-01
+6.123854169646250067e-01
+6.091624625713908392e-01
+6.065225884944174251e-01
+6.033794618880868876e-01
+5.986176553433399938e-01
+5.930028452047664267e-01
+5.948268901278329635e-01
+5.899319738539534619e-01
+5.830914627686396567e-01
+5.896143886221204555e-01
+5.808906037168034553e-01
+5.829882760957654231e-01
+5.742378533182732614e-01
+5.763967401407403823e-01
+5.707015039155554081e-01
+5.697992819942517828e-01
+5.660119649396485597e-01
+5.613700452831380527e-01
+5.577074854196982789e-01
+5.554611804839512113e-01
+5.539339670768788082e-01
+5.535173246344911036e-01
+5.541588687426272086e-01
+5.523298762450064014e-01
+5.496905686710645833e-01
+5.476060513015019726e-01
+5.449088608325416416e-01
+5.400587426355850651e-01
+5.361154852155186612e-01
+5.326596073303843104e-01
+5.299404225027235515e-01
+5.288654342327907543e-01
+5.255239585094342303e-01
+5.231460119546942344e-01
+5.207912701312666925e-01
+5.205849165886752283e-01
+5.206638367460106886e-01
+5.186836359716044953e-01
+5.137762562684653478e-01
+5.070210564070093406e-01
+4.999818987746417753e-01
+4.953642905646921668e-01
+4.912249332384223677e-01
+4.870630233275995979e-01
+4.822214431343043728e-01
+4.776897063869680604e-01
+4.730076289144836132e-01
+4.678360875310670908e-01
+4.620635662391591181e-01
+4.557764861822165559e-01
+4.450127544216140318e-01
+4.277527148548886382e-01
+4.030097328884704733e-01
diff --git a/res/models/ko_KR/stats.power.80.std.txt b/res/models/ko_KR/stats.power.80.std.txt
new file mode 100644 (file)
index 0000000..3435f47
--- /dev/null
@@ -0,0 +1,80 @@
+2.098544245196027058e-01
+2.020387449505732513e-01
+1.967894794563437022e-01
+1.962199675789221553e-01
+1.992191940371917935e-01
+2.024900333695649479e-01
+2.018677119843780288e-01
+1.976168958504779527e-01
+1.933683593373828613e-01
+1.922416202838451993e-01
+1.931354676414042681e-01
+1.941834775286451764e-01
+1.948460701133860329e-01
+1.941329847707178036e-01
+1.897957546074568458e-01
+1.860417649887112501e-01
+1.841232763132042705e-01
+1.823670608923681491e-01
+1.803197072328317219e-01
+1.781029137623464653e-01
+1.754341252592190870e-01
+1.727027509843811204e-01
+1.702070593597076742e-01
+1.681157521533927779e-01
+1.661420119329934386e-01
+1.641176238778357943e-01
+1.625159840570189196e-01
+1.615775445607120497e-01
+1.599073014026771433e-01
+1.578440901866322577e-01
+1.560714292020384530e-01
+1.544786553585049682e-01
+1.530533421618615331e-01
+1.524786264612816022e-01
+1.506497080800530131e-01
+1.494569022554294024e-01
+1.505440045420304018e-01
+1.482933646594424004e-01
+1.482969873611262590e-01
+1.459794821284597088e-01
+1.462395091009590642e-01
+1.444413060126325532e-01
+1.437735956807046633e-01
+1.423166696493274874e-01
+1.403601358566171353e-01
+1.388411913059867664e-01
+1.385291894252763112e-01
+1.388085002682794000e-01
+1.394088412702089719e-01
+1.398066534983616049e-01
+1.393674157313880002e-01
+1.385881761218198671e-01
+1.380575974601058742e-01
+1.371911392949198283e-01
+1.358525828200395358e-01
+1.344897605506201743e-01
+1.328232344041401225e-01
+1.316168007440610965e-01
+1.315041591754760875e-01
+1.313125006182465082e-01
+1.310439594129733376e-01
+1.308117824529828055e-01
+1.316620538645650873e-01
+1.326629883353295514e-01
+1.329156429782233084e-01
+1.315057470891439484e-01
+1.294092994094998561e-01
+1.282023815376031606e-01
+1.280195682669822421e-01
+1.267382853729389913e-01
+1.252851865446360513e-01
+1.238889243310414973e-01
+1.226925408111160798e-01
+1.212395598914242506e-01
+1.197135970085092677e-01
+1.189126490918853973e-01
+1.184392050079065561e-01
+1.179203174983974034e-01
+1.183873864260943098e-01
+1.156164915268484833e-01
diff --git a/res/models/ko_KR/vocab-kor-4362.txt.v2 b/res/models/ko_KR/vocab-kor-4362.txt.v2
new file mode 100644 (file)
index 0000000..f0a7d25
--- /dev/null
@@ -0,0 +1,4361 @@
+</s>
+<unk>
+_
+갤럭시_
+이_
+일_
+에_
+육_
+삼_
+전화_
+구_
+오_
+팔_
+칠_
+빅스비_
+의_
+사_
+좀_
+날씨_
+다시_
+ᆫ_
+는_
+가_
+을_
+고_
+ᆯ_
+틀어줘_
+를_
+지_
+공_
+다_
+전화해_
+알려줘_
+로_
+줘_
+은_
+도_
+시_
+해_
+야_
+실행_
+알람_
+영_
+게_
+하나_
+문자_
+비
+어_
+둘_
+이
+니_
+수_
+한_
+싶어_
+해줘_
+서_
+검색_
+기_
+노래_
+재생_
+어때_
+에서_
+깨워줘_
+나_
+듣고_
+요_
+아
+오
+지
+사
+시
+좋아_
+어
+찾아줘_
+ᆫ
+ᆯ
+보
+더_
+뭐야_
+대
+있는_
+ᆼ
+기
+부
+리
+미
+뮤직_
+켜_
+주
+라고_
+동_
+고
+어떻게_
+있어_
+ᆷ_
+으로_
+구
+소
+가
+면_
+ᆷ
+와_
+수
+스_
+걸어줘_
+보내줘_
+자_
+에게_
+검색해줘_
+국_
+번_
+자
+라_
+유
+한테_
+비_
+안
+서
+스
+마
+메시지_
+나
+성
+로
+만_
+ᆸ니다_
+ᆨ
+해
+신
+꺼_
+보여줘_
+할_
+통화_
+도
+하고_
+ᆼ_
+과_
+잘_
+하
+아_
+동
+내
+전
+제
+여
+일
+봐_
+너_
+무
+정
+우
+바보_
+김
+보내_
+한
+십_
+마_
+조
+빌딩_
+분_
+치
+장
+냐_
+세
+인
+다
+재
+거
+열기_
+개
+ᆨ_
+그_
+공
+아침_
+거_
+ᆺ
+습니다_
+ᆸ
+네_
+화
+영
+파
+하는_
+원
+있다_
+음악_
+위
+트_
+리_
+전화해줘_
+설정_
+포
+지금_
+모
+점_
+내_
+라
+차
+이십_
+있습니다_
+드_
+세요_
+입니다_
+피
+배
+돼_
+산
+보내기_
+틀어_
+ᆻ다_
+왜_
+상
+켜줘_
+호
+아파트_
+방
+해봐_
+예
+태
+카
+문자보내_
+바
+ᆺ_
+진
+장_
+드
+오늘_
+하이_
+원_
+트
+저
+히_
+삼십_
+남
+연
+요
+양
+망해라_
+열어줘_
+키
+러
+소_
+모드_
+실
+몇_
+니
+려
+강
+경
+씨
+취소_
+들려줘_
+까지_
+전화번호_
+날씨는_
+엄마_
+그
+거야_
+시작_
+박
+주유소_
+계
+선
+용
+데_
+영화_
+디
+의
+야
+티
+종료_
+두
+것_
+되
+줄래_
+반
+노
+이름이_
+주세요_
+했다_
+뭐_
+문자메시지_
+회
+너
+매
+천
+아이
+까_
+안_
+추
+래
+크
+주_
+더
+뭐니_
+싫어_
+분
+물
+토
+안녕_
+터
+즈_
+교
+체
+단
+너무_
+사랑해_
+누구야_
+버
+불
+루
+대_
+에
+투
+사진_
+전화걸어_
+금
+억_
+오십_
+온_
+레
+르
+워
+메
+없어_
+중
+가는_
+죠_
+타
+현
+과
+걸기_
+데
+플레이_
+냐고_
+확인_
+래_
+유_
+연락처_
+애
+ᆸ_
+니까_
+다고_
+천_
+코
+백_
+집_
+바보야_
+된_
+삼
+것이다_
+당
+일정_
+감
+발
+인_
+있니_
+겨
+하지_
+시작해_
+사십_
+많이_
+평
+싶다_
+없
+열어_
+내가_
+관
+때
+길_
+ᆻ습니다_
+시간_
+싸
+한다_
+민
+지점_
+국
+내일_
+명
+만
+외
+보내
+미_
+까
+어디야_
+초
+희
+꺼줘_
+년_
+뭐해_
+ᆫ다_
+근
+어요_
+팔
+언제_
+ᆯ까_
+합니다_
+씨_
+하자_
+입
+는데_
+건
+만나
+청
+와
+있었다_
+쓰
+뭐
+목
+삭제_
+맞춰줘_
+출
+후
+말
+또_
+관련_
+크_
+차_
+이야_
+전화걸기_
+백
+패
+노래를_
+무슨_
+할
+두_
+조_
+얼마나_
+말고_
+생
+보이
+제일_
+식
+찾기_
+달
+통
+의원_
+맛집_
+추천해줘_
+대한_
+님_
+네
+테
+문
+최
+구십_
+투_
+으
+아니
+육십_
+라이
+진_
+창
+때_
+가는길_
+간
+은
+형
+이렇게_
+료
+운
+했습니다_
+좋은_
+워_
+꺼
+송
+심
+브
+퍼
+칠십_
+호_
+나는_
+ᆯ래_
+알
+우리_
+이다_
+열
+팔십_
+좋아해_
+반_
+귀
+살
+써
+종
+것은_
+ᆻ어_
+운_
+볼_
+담
+허
+몇살이야_
+날_
+알아_
+며_
+부터_
+뉴스_
+증
+기사를_
+맞
+꾸
+오전_
+여자
+ᆻ
+여자야_
+프
+누구
+말을_
+사랑_
+연결_
+승
+몇시야_
+행
+들이_
+어떤_
+해야_
+잘
+켜
+결
+기사_
+집
+적_
+틀어봐_
+이백_
+등
+베
+말_
+점
+전화
+모두_
+화_
+들
+게
+확인해_
+친구
+누구니_
+에는_
+임
+이거_
+예뻐_
+복
+아빠_
+일곱시_
+러_
+메일_
+치_
+것이_
+지도_
+찾아
+짜
+여_
+학
+손
+해서_
+석
+하나
+새
+어디
+있
+사이
+꼬
+들어가
+제_
+권
+법_
+여섯시_
+약
+광
+갈
+윤
+있는지_
+살이야_
+울
+커
+는지_
+페
+륙_
+같은_
+플레이어_
+히
+직
+표
+이천_
+휴대폰으로_
+처
+대해_
+볼만한_
+똥
+쉬
+취
+던_
+세_
+류
+캐
+중_
+오백_
+휴
+몇
+병
+사백_
+업
+구나_
+뒤
+겠습니다_
+속
+절
+한번_
+따
+효
+육백_
+검색해_
+줄_
+준
+우_
+육
+구백_
+형_
+잖아_
+역
+팔백_
+같이_
+남자야_
+보고_
+언
+날씨가_
+일이_
+하면_
+잠
+채
+이름은_
+;
+디_
+깨
+에스
+휴대폰_
+적
+터_
+곡_
+혜
+없는_
+가장_
+셔
+하게_
+칠
+정_
+삼백_
+빠
+전_
+선_
+음악을_
+망
+재생해_
+전화를_
+알려줄래_
+누
+오후_
+될_
+아이_
+정말_
+순
+해요_
+션_
+법
+벌
+걸어_
+먹고_
+작
+다른_
+밥_
+없다_
+철
+팔천_
+티_
+언제
+잡
+역_
+공구_
+포_
+뜨
+ᆫ데_
+줄
+급
+레이
+보다_
+공사_
+겠
+군_
+위치_
+ᇁ
+질
+진짜_
+사천_
+편
+문자
+누가_
+사람_
+려_
+어디_
+영화
+아니_
+쳐
+했
+산_
+간_
+살_
+면
+풍
+빨리_
+칠백_
+본
+고마워_
+쿠
+합
+난_
+특
+수가_
+나오
+져_
+할래_
+들을래_
+프_
+삼천_
+에이
+ᆮ
+눈
+되는_
+샤
+머
+느
+방_
+즈
+향
+규
+먹었어_
+봉
+보기_
+문제
+월_
+있어요_
+아니야_
+싶은데_
+그런_
+봐
+단_
+딸_
+끼
+변
+새끼야_
+부_
+생각하
+적인_
+노_
+후_
+오천_
+나가
+번
+것을_
+끄
+했어_
+없었다_
+검
+케이
+랑_
+사람이_
+뿌
+보이스_
+그렇게_
+구천_
+길
+근처_
+이제_
+막
+어디냐고_
+ᆩ
+핸드폰_
+답
+하기_
+십
+흐
+음
+노트_
+못하
+못
+찾아봐_
+게임_
+ᆸ니까_
+악
+올
+농
+노래
+그래_
+브_
+케
+또
+남자
+공공_
+개_
+나이
+었
+습니까_
+각
+보_
+칠천_
+설
+2
+격
+덕
+같
+안내_
+해라_
+안되
+었다_
+되지_
+것
+온
+앱_
+죽
+활
+번호_
+말하
+푸
+월
+같아_
+카카오톡_
+날씨를_
+찌
+된다_
+헤
+위치
+숙
+타이머_
+생각해_
+ᇀ
+스타트_
+홍
+하지마_
+있었
+멍청이_
+집에_
+나요_
+스토리_
+까요_
+있을_
+글
+이름_
+성_
+육천_
+걸
+혀
+심심해_
+돌
+줘
+틀어줄래_
+우리
+뻐
+슈
+군
+재생해줄래_
+북
+뽀
+프로
+관_
+들_
+아파_
+때문에_
+있지_
+충
+에요_
+판
+좋
+환
+서울_
+와이
+들려줄래_
+시야_
+8
+황
+알고_
+아들_
+슬
+볼
+블
+건_
+면서_
+여덟시_
+뉴
+해제_
+되어_
+들어가_
+는
+홈
+참
+지내
+들려줘봐_
+그러
+해줄래_
+일어나
+회_
+0
+여섯시에_
+별
+할까_
+참_
+독
+오브_
+응_
+카톡_
+대해서_
+먹어_
+뒤에_
+내려
+총
+검색해봐_
+하나하나_
+협
+넌_
+필요
+얘기_
+지만_
+ᆽ
+통이
+범
+삼십분_
+끝
+않
+일곱시에_
+실_
+신_
+빼
+비가_
+대로_
+축
+문자해_
+사람
+언니_
+됐
+날
+크게_
+찍
+님
+힘
+어플_
+녀
+꽃
+약속_
+암
+마음
+필
+지마_
+색
+들어_
+가지_
+실행해줘_
+일이
+재생해봐_
+춰
+들은_
+되고_
+시켜_
+식_
+들어
+희_
+듣기_
+니가_
+스토어_
+골
+6
+됐습니다_
+이유
+먹을까_
+러브_
+됩니다_
+떠
+동영상_
+위_
+품
+녹음_
+정문_
+험
+알_
+다는_
+드리
+얼
+침
+타_
+좌
+밀
+ᆼ이_
+바보
+소리_
+틀어줘봐_
+말해
+적으로_
+말이
+얼마
+안해_
+전화하
+연결해줘_
+왕
+잔
+해주
+일은_
+저_
+째
+물_
+극
+지냈어_
+생각
+새_
+전화하기_
+찍어줘_
+치과의원_
+딸
+쓰리_
+클
+짱_
+술
+하냐_
+파이
+예쁘
+많
+듣
+관한_
+례
+이라
+네요_
+가고_
+일정을_
+친구_
+불러줘_
+버_
+함께_
+설정해줘_
+보자_
+주시
+연결해_
+전화연결_
+서울
+얼마야_
+등록_
+처럼_
+언제야_
+부르
+더하기_
+ᆫ테_
+년
+이라고_
+시에_
+기로_
+해주세요_
+상태
+스타
+모르
+사랑
+이에
+없이_
+센
+현_
+데이
+걸_
+바보지_
+큰_
+퇴
+일정
+ᆫ드_
+ᆷ을_
+이런_
+해야
+어느_
+능
+족
+알아
+빨
+틀
+뭐가_
+피_
+갈_
+화면_
+그냥_
+가자_
+명_
+놀
+엔
+정도
+을
+가지고_
+쇼
+ᇂ
+하시
+소리
+시간
+예요_
+끝나
+문자보내기_
+ᆫ지_
+선수
+뒤_
+ᆫ이_
+흥
+금_
+먹
+중이
+져
+력
+놈_
+사회
+뭘_
+교_
+싶
+없습니다_
+실행해_
+올_
+말해_
+바로_
+뷰
+동안_
+방법_
+쏘
+멍청아_
+늦
+저녁_
+재_
+대답
+꺼져_
+냐
+위해_
+스의_
+스트
+엠
+않았다_
+사람은_
+것으로_
+연_
+엄마
+네이버_
+반에_
+년아_
+읽어줘_
+몇살이니_
+그래
+살이
+끄기_
+갤럭시
+팀
+띠
+모든_
+갔
+싶어요_
+일을_
+것이
+달_
+되었
+누구냐_
+둘
+박스_
+들을_
+휘
+바람
+괴
+기를_
+웃
+자고_
+련
+논
+가요_
+날짜
+나라
+초_
+폐
+인사
+문_
+엘
+커_
+가지
+사람이
+음악
+놈아_
+카_
+ᆫ의_
+설정
+변경_
+통화
+지는_
+하다_
+하트_
+옥
+혼
+쁘
+이야기_
+경기
+병원_
+일곱_
+몇시
+아홉시_
+누나_
+이메일_
+ᆫ가
+확
+하_
+돈_
+찍은_
+키_
+곡
+도록_
+씨발_
+최고_
+여자_
+나와_
+알람
+높
+플라이트_
+경_
+바다
+석_
+메모_
+웨
+스티
+들의_
+새끼_
+밤
+채널_
+공이_
+열_
+한국
+찾아_
+다니
+이러
+정보_
+욕
+배_
+살아_
+44;
+것입니다_
+밥
+자기_
+7
+ᆫ이
+츠_
+기가_
+카메라_
+있으
+4
+몸
+파출소_
+안하
+생기
+아무
+라는_
+란
+항
+아이폰_
+확인해줘_
+재생해줘_
+펴
+ᆯ리
+코_
+모드꺼_
+아니다_
+시키
+폭
+지역
+앤_
+ᆼ이
+본_
+믿
+대학
+거든_
+너는_
+하시겠어요_
+베이
+놀자_
+왔
+뚜
+낮
+완
+표_
+죄
+든_
+바꿔줘_
+방송_
+주인
+아빠
+군요_
+ᆻ어요_
+상_
+락
+그는_
+에도_
+병신_
+하라고_
+이스
+추가_
+쩌
+지하
+아니라_
+공부
+경기_
+친
+통_
+반가워_
+여섯_
+셨
+꿈
+사랑하
+센터_
+나왔
+있을까_
+애_
+보낼
+ᆾ
+하이
+팅_
+아프
+차차차_
+시작
+받
+공에_
+하세요_
+큐_
+달라고_
+검색
+꼭_
+ᆷ이
+ᆰ
+삼성
+안돼_
+여덟시에_
+당_
+메세지_
+론
+번째_
+바_
+지나
+폴
+아들
+앞
+누구_
+였다_
+좋아하
+놔
+훈
+엄마한테_
+마이_
+\48
+이어
+추천_
+사전_
+등_
+용_
+존
+ᆲ
+껴
+해보
+곳_
+먹었니_
+모드로_
+쪽_
+이사
+탈
+맨_
+바이
+있습니까_
+사용
+연락
+널_
+대화
+플레이
+검색해줄래_
+ᆷ이_
+플
+5
+스트_
+정부
+탄
+얘
+넘
+음식_
+하니_
+그만_
+세계
+ᆼ을_
+어디서_
+못_
+컴
+청소
+1
+인터넷_
+접
+맘
+중에_
+야구_
+돼
+이야기
+다섯시_
+볼래_
+ᆸ시
+어디에_
+대통령
+어떤
+빛
+네비
+핸드폰으로_
+업_
+ᆯ이_
+폰
+스케줄_
+칼
+ᆱ
+제목
+왔다_
+학교_
+림
+가르
+이나_
+였
+운동
+타이
+마시
+오빠_
+서는_
+뜻
+립
+켜기_
+주차장_
+가까운_
+공사
+중국
+연결
+많은_
+ᆫ에_
+나의_
+\
+먼저_
+있어
+수고했어_
+내리
+니다_
+자신
+왔어_
+프리
+메일
+검색하
+잘하
+에스쓰리_
+배고파_
+습
+자기
+없었
+말이_
+견
+가져
+민_
+회사
+제이
+퓨
+뭔데_
+있다
+사귀자_
+괜찮
+지냈
+다섯_
+정체
+ᆫ거
+32;
+한의원_
+메일을_
+봐라_
+만들
+난
+사사
+목소리
+플레이뮤직_
+어떻
+버리
+분에_
+여자니_
+춘
+똑똑하
+뛰
+나랑_
+9
+았
+울_
+가족
+찬
+메모
+혁
+쥐
+말이야_
+현대
+바꾸
+삐
+않으
+받아
+걸리
+전국
+가서_
+빵
+일본
+봄
+버스_
+엔_
+업데이트_
+뭐지_
+사람들
+ᆯ이
+않고_
+던
+기온
+ᆫ드
+아홉시에_
+바보라고_
+갖
+저장
+맨
+다이
+열어
+컨
+이드
+맥
+봤
+갑
+풀
+번호
+송_
+시간이_
+ᆯ러
+사기_
+여기
+레스
+무엇이
+둘둘_
+뭐하
+퀴
+먹어
+지요_
+개새끼야_
+지수
+교육
+관계
+발_
+끊
+ᆶ
+하기
+좋다_
+뮤직
+것도_
+렴_
+나를_
+콜
+경제
+오래
+불러
+다음_
+요금
+못생겼어_
+모임
+계_
+그녀
+ᆼ하
+진입로_
+임마_
+염
+렸
+트리
+렌
+퍼_
+이게_
+권_
+쪼
+주의
+응
+문화
+현재_
+수도_
+티브이_
+뭐하고_
+메이
+액
+좋아
+버스
+잘생겼
+아이폰이_
+붙
+ᆫ하
+그의_
+3
+말라고_
+자리
+스타일_
+밤_
+왜
+가기_
+적어_
+몇살이
+령
+장소
+함
+?
+린_
+츠
+죽어
+주가
+먹으
+철_
+양_
+았다_
+다르
+최고
+아내
+숨
+페이
+말씀
+한시
+곳
+사고
+오는_
+큐
+파_
+놓
+이십
+잡스_
+팡_
+준비
+ᆫ거_
+벨
+몰
+모_
+알아봐줘_
+약속
+사줘_
+시작해줘_
+그렇
+쪽으로_
+당신
+량_
+일정이_
+ᆫ다
+갖고_
+제가_
+자동
+그리
+일우_
+예_
+량
+뭐하니_
+러브커피_
+그들
+리스트_
+헬
+있는데_
+없으
+익
+려고_
+에서는_
+먹었
+불_
+회장
+와봐_
+삼성_
+뚱
+여기_
+고기
+좋겠
+폰_
+부탁
+겨_
+듯
+ᆨ이
+생일
+벽
+좋을까_
+말했다_
+따라_
+최근_
+준_
+교통
+사십
+테이
+삭제해줘_
+있나_
+떼
+상황
+땅이
+났
+야지_
+편지
+커피
+쇄
+추천
+아닌
+후에_
+읽
+보여_
+엑스
+콘
+가라
+사무소_
+고요_
+전에_
+나라_
+께
+쭈
+주말
+취소
+검색해
+에스_
+콜_
+보낸_
+께_
+계속_
+만한_
+창_
+들어오
+나도_
+써_
+오늘
+\44
+정신
+못했
+생일_
+큰
+크리
+거리
+이상_
+선생님
+88;
+목록_
+자꾸_
+아직_
+곳으
+지금
+학교
+남편
+주소_
+첫
+롱
+밖에_
+보면_
+ᆨ이_
+모니
+아홉_
+구이
+품_
+정리
+소개
+다음
+밝
+재미있
+알아봐_
+말해줘_
+좋아하는_
+호텔_
+보고싶어_
+도시
+띄
+수이
+드릴
+훠
+별_
+관리
+걸어주
+수요
+걸어
+ᆯ까요_
+하는
+넣어
+이용
+씨발년아_
+보여라_
+깔
+사는_
+촌
+맛
+자라
+해도_
+돌아가
+경우
+측
+포하
+어쩌
+좋은
+하는데_
+ᆸ으
+\46
+기다리
+대리
+씨발
+설명
+예상
+예약해
+수원
+지고_
+얘기해
+있는
+마이
+닫
+시험
+ᆻ다
+미국
+런
+압
+료_
+ᆯ게_
+브라
+생활
+퍼센트_
+찾
+안녕이라고_
+게요_
+바라
+르_
+빅
+블루
+\531
+병신아_
+말해봐_
+저장_
+비오
+데요_
+먹자_
+치과_
+솔
+박_
+있다고_
+쳐_
+공일
+모습
+있나요_
+살아
+안내해줘_
+조금_
+레_
+얼마_
+달라
+지역_
+옷
+대구
+무엇을_
+메일이_
+올려
+거예요_
+들이
+들려
+사실
+선택
+인식
+튜
+며칠이
+홀
+하려
+쇼핑
+찍어
+채_
+끊어_
+잊
+있네_
+시켜
+기다려_
+갤럭시가_
+시간을_
+ᆻ으
+ᆻ니_
+으면_
+졌습니다_
+없어요_
+시켜줘_
+ᆨ을_
+ᆫ가_
+전송_
+책
+비스
+않았
+싱
+보여주
+프레
+않은_
+상황을_
+ᆸ게_
+인간
+음성
+죽으
+하여_
+웹툰_
+취소해줘_
+질_
+ᆫ을_
+멍
+드러
+아주_
+ᆫ다고_
+뭐냐_
+어떠니_
+싫어
+사하
+비트
+원으
+랴
+프라
+되니_
+ᆨ스_
+영업소_
+디스
+여덟_
+동생_
+빈_
+모르겠
+빈
+으로
+미친
+시리
+벼
+남자니_
+축하
+몰라_
+알려주세요_
+이십분_
+받았
+딱
+가는
+돌아
+기는_
+있겠
+지를_
+돈
+정으
+\49
+여행
+앱
+그거_
+스피
+늘
+강남스타일_
+있냐_
+음식
+열시_
+부산
+척
+정보
+ᆼ해
+세이
+전자
+빅스_
+전화해봐_
+판매
+수하
+삼십분에_
+떠나
+세상에서_
+기도_
+이거
+유튜브
+사랑한다고_
+파이브_
+급_
+스토
+똑
+창문
+않아_
+빙
+기사
+맛있
+남자_
+주소
+적어
+육사
+었습니다_
+안바
+원하
+뭐예요_
+며
+체_
+오오
+관련된_
+입구_
+받으
+결혼하
+앞_
+토_
+거실로_
+십분_
+꿔
+졌
+학생
+랑
+쪽
+겠다_
+좋아하니_
+영상
+알려주
+멋
+정치
+역사
+말아
+스테
+다녀
+이상
+지방
+택
+쓸
+라면_
+기업
+웹
+자동차_
+자들
+안으
+예쁜_
+등록
+짱
+음_
+까지
+어머니
+알려
+실행
+사귈래_
+맛있는_
+수는_
+해지
+핑
+확인하
+불러_
+대전
+ᆷ하
+멈
+틀어
+쳤
+물어봐
+념
+색_
+누구땅_
+데이_
+세상
+다운_
+기억
+잘해_
+도와
+구하
+과장
+전화해
+납
+스파
+친구가_
+사공_
+대사
+만들어
+우체국_
+롯데
+혀_
+ᆬ
+뱅
+공하
+ᆯ어
+아버지
+보내주
+전해
+거리_
+새마을금고_
+하늘
+쓰리
+누군
+사거리_
+플라
+뿐이
+서초
+할게_
+옵
+혹
+삼십
+나한테_
+자가_
+재밌
+원이
+채널
+그거
+위해서
+된다
+\455
+않는_
+역시_
+스러
+계획
+않습니다_
+테_
+일부
+대하
+남_
+상품
+상황_
+층
+차이
+ᆨ하
+션
+카톡
+지가_
+몇이
+브리
+공주_
+나무
+율
+흔
+안녕하세요_
+이기
+방향
+움
+대표
+하루_
+재생
+한다고_
+촤
+잘못
+있으면_
+하겠
+전화번호
+는거
+통해_
+착
+짓
+정하
+나타나
+따라
+못생겼
+셀
+몇시_
+지지
+교회_
+인데_
+엄
+구사
+관광
+쯔
+귀여
+탕_
+영어
+언제지_
+님한테_
+소개시켜줘_
+은행_
+0;
+웠
+식으
+에이_
+이즈_
+바이_
+도착하
+뮤
+계산
+56
+자유
+도로_
+그럼_
+어린이집_
+어나
+가르쳐줘_
+물음표_
+공주
+위한_
+주변_
+가드
+메롱_
+놈
+계속
+ᆫ저
+있다는_
+하는거
+징
+하다
+시작하
+ᆯ거
+인가
+쓰레기_
+가야
+일에_
+헤어
+만들어_
+바꿔
+자자
+했다
+별로_
+점심_
+보는_
+근_
+싸우
+란_
+춤
+앞에_
+먹지_
+됐다_
+오사
+되면_
+잡아
+결혼
+돼지
+가르쳐_
+랩
+프라자_
+어리
+촬영_
+가격
+찾아라_
+ᆨ에_
+적이_
+병원
+균
+생각해
+달리
+반복_
+성이_
+때문이다_
+켜봐_
+머리
+몬
+안저
+\53
+어디이
+루_
+말로_
+섹스하
+미쳤
+뭐하냐고_
+네이
+ᆺ이
+찾으
+그만
+ᆼ사
+쟁
+토요일
+노트
+ᆯ거야_
+의미
+건데_
+비밀
+의하
+마리
+튼
+회의
+이상하
+이미_
+리고_
+오다_
+출발
+쯤_
+중앙
+어지
+명으
+당구장_
+이메일
+코스
+한잔_
+프로_
+리가_
+벤
+겁니다_
+시간은_
+남자친구_
+천재
+제주
+카드_
+상사
+거기
+겼
+전해줘_
+가게
+\51
+리아
+객
+지에
+킨
+서구_
+름
+곱하기_
+않을_
+일곱시
+오라
+보지_
+동구_
+놀아줘_
+형한테_
+해줘
+교통상황_
+그것으
+놔_
+장에
+부장
+끊어줘_
+날이_
+처음
+ᆨ시
+결혼해
+제대로_
+아파
+든
+사십분_
+모텔_
+기능
+카페_
+뉴스를_
+스크
+때문입니다_
+간다_
+몰라
+림_
+됐어_
+출장
+뭐라고_
+이한테_
+아니고_
+읽어
+예약_
+웃기
+고속도로_
+찰
+전원
+연구
+알았
+는거_
+끝났
+용이
+수신
+40;
+예쁘니_
+사이_
+밖
+지저
+그대
+요일이
+운전
+여름
+길을_
+똑똑해_
+파일_
+결정
+되었다_
+놀라
+ᆻ는지_
+알람을_
+마누라_
+기계
+누나
+힘들
+온도
+국민
+점이
+멍청이
+른_
+받아_
+식사
+되어
+되겠
+행복
+다섯시
+닭
+여보
+정도_
+애인
+정보를_
+뭐할
+시아
+이모
+가능하
+얘기하
+들어와
+ᆫ스
+반으
+이었다_
+오르
+ᆨ스
+그림
+일사
+영어로_
+오늘의_
+무서
+자이
+위에_
+ᆼ외과_
+생각을_
+시대
+않게
+시장
+거의_
+같았다_
+했으
+오빠
+국가
+사용하
+바라보
+갈까_
+리스
+린
+소아과_
+따르
+놀이
+ᆼ한
+지도
+약_
+보냈
+이었
+면으
+감사
+이지_
+잇_
+꺼주
+봐봐_
+휴대폰
+해봐
+스카
+게임
+좋아요_
+여섯시
+어디니_
+동사
+없어
+아가
+발송
+실행하
+조사
+이저
+하였
+킹_
+이는_
+이번_
+멀
+설_
+산업
+쉬_
+잠시
+하트
+조용히_
+시고
+러브
+중지_
+요리_
+아주
+얘기
+팅
+삼거리_
+사진
+삭제
+확인해라_
+회사_
+이동
+주는_
+나서
+먼
+사랑한
+방으로_
+런_
+오분_
+즐
+나누
+탐
+타운_
+치킨_
+잤
+누르
+성을_
+함_
+안에_
+스포츠
+궈
+사라
+\499
+갤러리_
+네시_
+천구
+지라
+짐
+없다
+전부_
+ᆯ을_
+싶은_
+장난
+이르
+비나
+록
+다가_
+짜증나_
+노트투_
+안할
+사저
+하지
+필요하
+ᆸ다_
+그런
+릴
+내비
+집으로_
+빠르
+사랑해
+기록
+번역
+긴_
+하자
+ᆼ스
+켜줄래_
+마치
+입니까_
+속에_
+개발
+같다_
+ᆫ에
+ᆫ해
+캔
+마인
+수정_
+못한
+섭
+뭔
+러너_
+대회
+클럽_
+싫다
+맞춰_
+였습니다_
+눌러
+부산_
+될
+공구
+ᆯ래
+생_
+으니
+촌_
+윈
+갔다_
+신이
+륙
+구서
+딩
+ᆺ으
+편지_
+눈이_
+십이
+재생할래_
+메일은_
+링_
+너가_
+놓고_
+애니
+내용
+똥개_
+화장
+주문
+ᆼ구
+아침에_
+기간
+오일
+변화
+섬
+외로
+처리
+어디지_
+라디오_
+있을
+ᆸ하
+충전
+잃
+사고_
+챙
+상다
+친_
+근처에_
+밀리
+걱정
+헌
+멍청하
+장을_
+중하
+매_
+우리는_
+트로
+고맙
+입장
+되는데_
+는거야_
+예정
+ᆷ에_
+위원
+산부인과_
+시워
+곳이_
+날씨
+마려워_
+달려
+ᆭ
+피곤
+졌다_
+여사
+ᆫ시_
+가격_
+느끼
+입력해줘_
+인터넷
+동생
+검색하지
+력_
+안나
+열한시_
+마눌
+비비트_
+그르
+뭘
+형님_
+일하
+떡
+문제가_
+맞춰
+계란
+둥
+가능
+마려_
+리는_
+참석
+구간_
+사오
+04;
+시서
+심심
+속_
+같아요_
+;_
+묻
+북_
+졸
+땡
+모아
+ᆼ의_
+럽
+맡
+노선
+조금만_
+에프
+애플리케이션_
+결과
+애플
+끄러
+기분이_
+96;
+연이
+할이
+표시
+사랑해요_
+앞으로_
+보여줄래_
+될까_
+높이
+지원
+받은_
+얼굴
+ᆯ라
+사업
+많아
+먹는
+축구_
+들었
+거든요_
+어딘
+컴퓨터_
+들에
+ᆼ으로_
+말하는
+바꿔_
+기록_
+전체
+놓으
+사건
+킬
+알리
+하루
+마려
+끌
+공업
+했지
+스마트
+시다
+가야_
+기능_
+것인
+출_
+돈으
+길이
+기술
+몇시에_
+마라_
+처_
+싶었
+그리고_
+것이라
+ᆻ냐
+우스
+진이
+려면_
+북한
+똥_
+세요
+레시
+량으
+녕
+가면_
+묵
+자는_
+마트_
+어때요_
+왔습니다_
+순위
+돌려
+그게_
+피해
+경로
+텐
+비아
+스터
+4;
+완전_
+목소리_
+삭제해_
+\45
+주어
+공여
+비너
+부탁해_
+디오
+당하
+적이
+기에_
+그때
+실행해
+어서_
+게이
+거나_
+비에
+작은_
+수고
+랜
+골프
+ᆻ는데_
+ᆯ하
+겠어_
+그랬
+재미
+있고_
+마세요_
+각_
+지워줘_
+워요_
+만드
+주려
+시지
+장님
+만들었
+건강
+오십분_
+득
+힐
+사람들이_
+즐거
+공공
+집이
+정지_
+미안
+명이_
+않아
+할머니
+중구_
+종_
+수사
+16;
+피자_
+냉
+정혀
+전혀_
+빌려
+광주
+및_
+가슴
+레인
+우리땅_
+아무것도_
+알아들
+흘
+케이_
+전주
+대체
+다보
+인기
+그것
+이이
+미터
+정화
+유지
+놀아
+버렸
+안들
+다시오_
+너를_
+씨발놈아_
+올림픽
+라도_
+ᆫ만
+원에
+손을_
+훈_
+이가_
+보았
+뀌
+그램
+신랑
+김미
+타고_
+그린
+기대
+구에
+글_
+날이
+아버지_
+델
+나이_
+상으
+트랙
+지구
+류_
+이지
+뜻이
+안내
+듯_
+곡을_
+시각
+비와_
+나오는_
+오이
+\50
+사가_
+인터
+핸드폰
+팔공
+똑똑하다_
+ᆼ에
+열리
+릉
+열시에_
+풀어
+변경해줘_
+고양
+식당_
+아름다
+좋니_
+살이니_
+도로
+뭐하냐_
+컬
+결과_
+구간은_
+안와_
+좋으
+래요_
+인이
+이름으
+가이
+판_
+국에_
+삶
+궁
+겠어요_
+해결
+못알아
+종합
+만으
+일일
+의해
+일요일
+는다_
+주식
+어떠
+식이
+발표
+동이
+장하
+왔어
+신경
+열심히_
+싶으
+이리
+못해_
+공장
+낙
+아무_
+걸어봐_
+댄
+추가해
+축제
+니까
+보드_
+플래
+올리
+올라가
+줘봐_
+프로그램_
+\47
+작동
+씩_
+곧_
+만드는_
+ᆼ은_
+ᆼ서
+팔이
+올랐
+새로운_
+남부
+되게_
+테니
+개새끼_
+지역으
+엘_
+유어
+사에
+강남
+ᇂ게_
+마음으
+리를_
+확인
+물어보
+정상
+매우_
+주시_
+ᆺ지
+빠져
+음식점
+열한
+선거
+지여
+어디있어_
+곤_
+ᆫ트_
+종료해
+앤
+이번
+구요_
+부분
+용하
+약속을_
+청_
+개봉
+봐요_
+금으
+잡아줘_
+ᆯ에_
+예약
+눈을_
+ᆯ의_
+모드
+졸려_
+소방
+선이
+백화점_
+빌_
+가시
+어떡
+프트_
+은행
+비랩해
+태어났
+드려
+에서
+먹고싶
+똑바로_
+자리에
+아이들
+세지
+알려_
+깊
+이래
+오프
+이미
+콩
+칠공
+몇이야_
+먹었냐
+새로
+매장
+내일
+오프_
+민주
+먹을래_
+정이
+라우
+우리가_
+닫아
+어디가
+보다
+피부
+크리스마스
+률
+부인
+방에_
+톡
+도착
+비비
+었어_
+찬_
+아니라
+낫
+오고
+ᆷ의_
+인천
+지도에서_
+영이
+ᆫ데요_
+끓
+사워
+지내_
+얼굴_
+입력_
+다가
+구간
+이해
+보라
+꺼져
+칠사
+애기
+기분_
+막히
+터리
+엉
+요구
+한거
+진해
+경찰
+존_
+ᆹ
+안좋아_
+되_
+어두
+관심
+치는_
+더욱_
+현황
+요일_
+고개
+겨울
+티맵
+의시
+이제
+녹음
+분으
+갤러
+열두시_
+땅
+말한
+변경해
+순간
+시청
+방법으
+돌아오
+리에
+그럴
+좀
+종이
+밥먹
+아름아_
+줘요_
+치고_
+확대
+해제
+제품
+오후
+책으
+보내라
+보여봐_
+하나구_
+되는지_
+존재
+학원_
+ᆼ저
+두고_
+랜드_
+낼
+일정에
+탕
+수수
+느낌
+이니_
+다리
+음성_
+느냐
+감독
+진다
+주요_
+웃으
+불러봐_
+힘들어_
+지켜
+네트워크_
+이고
+몽
+기회
+카카오톡
+주의_
+구름
+스위
+확률
+굿
+대가
+할거야_
+전화번호를_
+쌍
+해사
+했던_
+없지
+어머니_
+서도_
+모레
+없을_
+조심
+북구_
+육공
+에스보이스
+하면
+과저
+지로_
+준비해
+취소해_
+ᆼ크
+이마
+여자친구_
+탁
+나잇_
+있었어_
+잉_
+요이
+들리
+젠
+아냐_
+다시
+이것
+겁
+중요한_
+주장
+에게
+문자메
+표정
+가을
+죠
+정해
+순_
+마을_
+깨워_
+화면으
+근데_
+사장님
+거울
+리어
+ᆯ로_
+섹스
+날으
+투자
+칙
+와서_
+ᆸ지
+입력
+알겠
+렉
+머리_
+마다_
+울리
+갈게
+수영
+말라
+그레
+좆
+비워
+방송
+272;
+깨워
+ᆫ도
+턴
+부모
+기자
+아서_
+스키
+력을_
+언제이
+원의_
+이해하
+술_
+영국
+온도_
+통하
+내용을_
+늘어
+스케줄
+비저
+차가_
+앉아_
+멜론
+적으
+시스템
+개인
+플러스_
+분명
+같으
+사람을_
+가스
+체크
+체인
+못알아듣
+사자
+다음에_
+어딨어_
+카드
+저녁에_
+보여봐
+연락_
+어떨
+잖아요_
+어드
+졌어_
+규_
+아지
+이구
+봤어_
+연락처
+싫
+얻
+어제
+않다
+다라
+하네_
+안해
+행_
+저장해줘_
+워치_
+예수
+속으
+이고_
+서비스_
+상해
+조서
+중요
+직원
+야겠
+에어
+캡쳐
+아는_
+난다
+퐁_
+열어봐_
+미워_
+냄새
+주지
+아라
+여러_
+해서
+삼사
+있어서_
+세탁
+물이_
+ᆫ게_
+상이
+듣는_
+기의_
+조하
+주고_
+ᆻ지_
+여기서_
+뭐하는
+드시
+너의_
+둔
+영어_
+ᆸ이
+ᆫ은_
+했어요_
+ᆸ시오_
+자연
+예쁘다_
+시장_
+렛_
+반가워요_
+녹화
+그대로_
+잇기_
+오지
+요리
+괘
+상영
+국제
+값
+력이
+생각이_
+알아보
+보니_
+방으
+브이_
+들으
+차장
+고자
+안사
+72;
+엘지
+ᆯ라_
+자세
+블_
+여행_
+기다
+시내
+연하
+수저
+웨이
+여보_
+없다고_
+작성
+다운
+질문
+나와
+아웃
+보아
+무_
+부도
+실행시켜줘_
+가운데
+ᆷ은_
+전원_
+물을_
+싼
+드립니다_
+설정해_
+민들
+52
+성이
+무엇인
+는다
+죽을래_
+ᆷ공
+68;
+사무실
+혼자_
+미스
+바보니_
+저녁
+전망
+걸렸
+아르
+삼공
+말할_
+시발
+마스
+같은데_
+잘자
+이자
+파워
+울려
+옷_
+팬
+지냈니_
+일찍_
+어려우
+장이_
+비싸
+링
+밝혀
+장은_
+보가_
+멍충
+떨어지
+흐름
+비행기
+방문
+있기
+다오_
+발생
+거지_
+환경
+스타_
+우리집_
+잘하는
+아닙니다_
+좋지_
+닫아줘_
+엠_
+현이
+위를_
+쟁이_
+여성
+사람들은_
+드라이
+사랑하는_
+완전
+클리
+온다_
+로야
+나에
+기하
+김여
+오면_
+수밖에_
+화하
+무시
+이며
+민이
+잠금
+대리저
+메시지를_
+욱
+바뀌
+더라
+환_
+장과
+엄청
+넘어
+공원_
+드라마
+일고
+오십
+지니
+아빠한테_
+생겼
+왜이
+마차
+책_
+전문
+사랑으
+관리자_
+하라
+사주
+주이
+알아봐
+사와
+생겼어_
+기과
+같습니다_
+거니
+무어
+경주
+앨범
+얼마니_
+아치
+그만해_
+소리야_
+테스
+ᆼ에_
+하겠습니다_
+틀어주세요_
+종류
+언니
+치기_
+기상
+팝
+켓
+싶습니다_
+따_
+운세
+기온은_
+냈
+왕_
+해줄
+대해
+고속
+유리
+요즘_
+뉴스
+잘못_
+어가
+당구
+제이_
+멍청
+전송해
+언니한테_
+이메일을_
+부처
+틴
+의사
+환율
+쉬어
+탑
+시리_
+수업
+무소
+로드_
+인지_
+갈래_
+점을_
+전문점
+더라_
+중부
+열어주
+짝_
+양시
+시사
+시네
+계시
+보여주려
+감사하
+등을_
+이트_
+영상통화_
+걸려_
+정이_
+입력해
+넣
+오시
+한가
+최신
+신문
+반갑
+접속
+랄
+직접_
+이공_
+보고싶
+너라
+이비
+안보
+때는_
+설치
+놀까_
+영하
+털
+대신
+경이
+거라
+눈물
+웬
+지난
+있던_
+개가
+중에
+사장_
+람
+하셨
+불이_
+남아
+월드_
+연습
+너무
+추워_
+명이
+롤
+이상해
+가보
+ᆻ습니까_
+바보가
+만이
+강_
+시공_
+교통정보_
+인드
+없는데
+싶지_
+성혀
+분이
+맞아_
+편_
+실시
+확인해
+시반
+놀러
+ᆯ리_
+아나
+장이
+마이크
+강수
+생서
+남았
+이루어
+발으
+주라_
+있잖아_
+자식
+책임
+관으
+했는데_
+심으
+동지
+즈의_
+소리가_
+배우
+등이
+똥꼬_
+지우
+이녀
+갓
+물로
+들었다_
+지이
+줄여
+싶냐
+불으
+이쁘
+동으
+남구_
+외출
+내용_
+자를_
+즌
+사귀
+고개를_
+도착해
+시작했
+여관_
+아니었다_
+것이었다_
+새끼
+사진으
+찾아줄래_
+네시
+ᆭ아
+닥쳐
+똥꼬
+기보
+많아_
+골프_
+의원
+록_
+십오분
+도를_
+코리
+롭
+났어
+볼까
+땅_
+재밌는
+\454
+소식_
+들고_
+64;
+막_
+영향
+도움
+행하
+정비_
+오른
+어린이
+한국_
+강남구_
+마마
+마운틴_
+녹음하
+사유
+카톡으로_
+궁금
+노력
+작성_
+ᆨ은_
+돼지_
+쉽게_
+분야
+메뉴_
+오저
+호텔
+최대
+우유
+구리
+두시에_
+잘했어
+종로
+서르
+론_
+나빠
+왔는
+ᆨ의_
+회의_
+벗어
+로우_
+자지
+버린
+승_
+연락해_
+사이에_
+해야지_
+메시
+비야
+필요한
+빨리
+목적
+있게_
+치지
+이서
+영이_
+교통_
+얼굴으
+파일
+특별
+복_
+고시
+태_
+받고_
+보물
+네가_
+페이스
+자신의_
+비디오_
+말은_
+과의
+타임_
+착하
+세워
+는가_
+찾아주세요_
+바보냐_
+떨어져
+스로
+나가_
+영화좀_
+않는다_
+틀_
+매이
+죽이
+제하
+강아지
+어플
+전하
+당신으
+화되
+불가
+옮
+시작해줄래_
+식사_
+집은_
+모습을_
+단하
+리하
+떨
+젤
+비하
+모른
+교통상황
+그러면_
+분위기
+만큼_
+공파
+다면_
+대문
+라스
+어렵
+먹을
+두시_
+화저
+수지
+끔_
+저는_
+샘
+신고
+라디
+셨어
+36
+가저
+작업을_
+아닌데_
+곰
+세시_
+그녀는_
+읍_
+받는
+ᆻ던
+방법
+시게
+칠이
+처음_
+아니면_
+럭
+화가
+확인해봐_
+조지
+보여줘
+가봐
+안했
+시기
+지어
+아기
+밑
+제도
+오십분
+아느
+최저
+맞으
+첨부
+자의_
+짝
+대기
+광고
+ᆯ씨
+움직이
+세브
+사실으
+톤
+현상
+브이
+녹
+알았어_
+굴
+문을_
+이동_
+비로
+되나_
+외국
+포스
+간다고_
+을까_
+맛있게
+경우_
+큼
+찜
+조절
+문자해
+구조
+도야_
+선물_
+알려줘
+00
+초등학교_
+선으
+보였
+편의점
+씹
+버려_
+\478
+돼요_
+컵
+차를_
+지워_
+택시
+머_
+거래
+지사
+이후
+피아노
+레저
+안가
+문자로_
+상대
+먹을_
+물건
+기도
+빌리
+닥
+택_
+생일이_
+환자
+일정으
+웨이_
+주에_
+부근_
+바우
+높은
+가려
+일본땅_
+ᆺ기
+사님
+며칠
+등록해줘_
+ᆻ는
+에서도_
+교수
+곳에_
+항상_
+걸으
+올래_
+앉아
+남았어
+피스
+미용
+도이
+문이
+때문이
+단으
+썸
+조리
+닝
+추어
+웅
+옆에
+아저
+오공_
+원이_
+별이
+왔니_
+앞에
+서비
+물었
+햐
+디에
+어스
+가바
+모양
+천시_
+작업
+대주
+닉
+페이지_
+뭐했
+된
+뽕
+나서_
+입을_
+ᆯ게
+팔사
+ᆨ트
+펜
+할수있
+카오
+안돼
+식장_
+신기하
+성겨
+세시
+배고
+작게_
+나온_
+할일_
+이라는
+은이
+모르는
+\497
+쓰레
+빌
+미안해_
+들려주라_
+한다는_
+웨딩
+기분
+게이션
+병신이
+서방
+ᆻ나
+이를_
+유가
+수로
+낚시
+유치원_
+수도
+야겠다
+먼_
+맑
+\52
+거짓
+시간표_
+어로
+라이트_
+금요
+폰으로_
+말도_
+트르
+진구
+있는가
+어야_
+동아
+가수
+ᆫ아_
+윌
+시오_
+커스
+첨
+님에게_
+ᆯ은_
+서로_
+집에
+인저
+바쁘
+쿨
+삼이
+티머
+얘기를_
+융
+비치
+긴
+트에
+원주
+소시
+마사
+내과의원_
+어디냐_
+네이버에
+나쁜_
+하시게
+몸을_
+마지막_
+되는
+가도
+입으
+없을까_
+대부분
+보거
+리의_
+돈이
+내놔_
+통시
+재료
+유명한
+심하
+전화거
+꺼야
+외과
+목요
+ᆺ한
+ᆺ나
+약하
+뭔지_
+ᆫ소
+동물
+곤
+면에
+함으
+발견
+동자
+그가_
+집을_
+스케
+낸
+쳐줘_
+생사
+보건지
+잇
+시면_
+사다시
+보건진료소_
+발전
+멋지
+문자를_
+업체
+주벼
+열려
+한버
+주겠
+로스
+속에서
+이부
+현시
+전화해주세요_
+행동
+정책
+과학
+엄마에
+소식을_
+이건
+시느
+어라
+않았습니
+언제와
+알람해줘_
+덩
+아직도_
+명려
+퐁퐁
+ᇀ으
+말하면
+슨_
+오세요_
+오다
+ᆼ시
+쪽에
+변경
+갑자
+소년
+있었던_
+더니_
+파라
+통화하
+뮤지
+그녀의_
+핫
+이오_
+세차장_
+수지_
+텔레
+사니
+따로
+올라
+ᆨ한
+살고_
+애플이
+더브
+나우
+이십분에_
+십분에
+명의_
+생겨_
+자라고_
+마케
+는데요
+십니
+만워
+찾는
+우서
+우사
+금이
+오분에_
+양으
+구공_
+고등
+갤럭시야
+잠깐
+내느
+플_
+경쟁
+충전소
+팜
+여덟
+렇
+하이빅스비_
+<sil>
+<noise>
+<dummy1>
+<dummy2>
+<dummy3>
+<dummy4>
+<dummy5>
+</bias>
+<blank>
+<be000>
+<be001>
+<be002>
+<be003>
+<be004>
+<be005>
+<be006>
+<be007>
+<be008>
+<be009>
+<be010>
+<be011>
+<be012>
+<be013>
+<be014>
+<be015>
+<be016>
+<be017>
+<be018>
+<be019>
+<be020>
+<be021>
+<be022>
+<be023>
+<be024>
+<be025>
+<be026>
+<be027>
+<be028>
+<be029>
+<be030>
+<be031>
+<be032>
+<be033>
+<be034>
+<be035>
+<be036>
+<be037>
+<be038>
+<be039>
+<be040>
+<be041>
+<be042>
+<be043>
+<be044>
+<be045>
+<be046>
+<be047>
+<be048>
+<be049>
+<be050>
+<be051>
+<be052>
+<be053>
+<be054>
+<be055>
+<be056>
+<be057>
+<be058>
+<be059>
+<be060>
+<be061>
+<be062>
+<be063>
+<be064>
+<be065>
+<be066>
+<be067>
+<be068>
+<be069>
+<be070>
+<be071>
+<be072>
+<be073>
+<be074>
+<be075>
+<be076>
+<be077>
+<be078>
+<be079>
+<be080>
+<be081>
+<be082>
+<be083>
+<be084>
+<be085>
+<be086>
+<be087>
+<be088>
+<be089>
+<be090>
+<be091>
+<be092>
+<be093>
+<be094>
+<be095>
+<be096>
+<be097>
+<be098>
+<be099>
+<be100>
+<be101>
+<be102>
+<be103>
+<be104>
+<be105>
+<be106>
+<be107>
+<be108>
+<be109>
+<be110>
+<be111>
+<be112>
+<be113>
+<be114>
+<be115>
+<be116>
+<be117>
+<be118>
+<be119>
+<be120>
+<be121>
+<be122>
+<be123>
+<be124>
+<be125>
+<be126>
+<be127>
+<be128>
+<be129>
+<be130>
+<be131>
+<be132>
+<be133>
+<be134>
+<be135>
+<be136>
+<be137>
+<be138>
+<be139>
+<be140>
+<be141>
+<be142>
+<be143>
+<be144>
+<be145>
+<be146>
+<be147>
+<be148>
+<be149>
+<be150>
+<be151>
+<be152>
+<be153>
+<be154>
+<be155>
+<be156>
+<be157>
+<be158>
+<be159>
+<be160>
+<be161>
+<be162>
+<be163>
+<be164>
+<be165>
+<be166>
+<be167>
+<be168>
+<be169>
+<be170>
+<be171>
+<be172>
+<be173>
+<be174>
+<be175>
+<be176>
+<be177>
+<be178>
+<be179>
+<be180>
+<be181>
+<be182>
+<be183>
+<be184>
+<be185>
+<be186>
+<be187>
+<be188>
+<be189>
+<be190>
+<be191>
+<be192>
+<be193>
+<be194>
+<be195>
+<be196>
+<be197>
+<be198>
+<be199>
+<be200>
+<be201>
+<be202>
+<be203>
+<be204>
+<be205>
+<be206>
+<be207>
+<be208>
+<be209>
+<be210>
+<be211>
+<be212>
+<be213>
+<be214>
+<be215>
+<be216>
+<be217>
+<be218>
+<be219>
+<be220>
+<be221>
+<be222>
+<be223>
+<be224>
+<be225>
+<be226>
+<be227>
+<be228>
+<be229>
+<be230>
+<be231>
+<be232>
+<be233>
+<be234>
+<be235>
+<be236>
+<be237>
+<be238>
+<be239>
+<be240>
+<be241>
+<be242>
+<be243>
+<be244>
+<be245>
+<be246>
+<be247>
+<be248>
+<be249>
+<be250>
+<be251>
+<be252>
+<be253>
+<be254>
+<be255>
diff --git a/vc-default-info.xml b/vc-default-info.xml
deleted file mode 100644 (file)
index f19adaa..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0"?>
-<voice-control-engine>
-        <name>Samsung voice control engine</name>
-        <id>org.tizen.vc-engine-default</id>
-        <languages>
-                <lang>en_US</lang>
-                <lang>ko_KR</lang>
-        </languages>
-        <non-fixed-support>true</non-fixed-support>
-</voice-control-engine>