changeset 1:564982476950

一章を追加した
author kiyama <e185758@ie.u-ryukyu.ac.jp>
date Fri, 12 Jan 2024 18:13:17 +0900
parents ba032fe28424
children 95c0b3ae2890
files Paper/chapter/chatsystem.tex Paper/chapter/ie-system.tex Paper/chapter/introduction.tex Paper/chapter/syskan-class.tex Paper/chapter/technology_overview.tex Paper/chapter/thanks.tex Paper/fig/IMG_1473.jpg Paper/fig/chatsystem4.png Paper/master_paper.aux Paper/master_paper.fdb_latexmk Paper/master_paper.lof Paper/master_paper.log Paper/master_paper.lot Paper/master_paper.pdf Paper/master_paper.synctex.gz Paper/master_paper.tex Paper/master_paper.toc
diffstat 17 files changed, 929 insertions(+), 5386 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/chapter/chatsystem.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -0,0 +1,29 @@
+\chapter{メッセージングコマンドを使用した手法の提案}
+
+\section{システム概要}
+システムの管理をオープンソースのセルフホスティング式のチャットサービスであるmattermostのスラッシュコマンドを通して実行する.スラッシュコマンドとは /から始まるコマンドを実行することで登録したサーバーに対しリクエストを送ることができる.また,スラッシュコマンドの後ろに空白くぎりで入力した文字列がリクエストボディとて認識される.また,スラッシュコマンドには空のメッセージボックスに / を入力すると,すべてのスラッシュ・コマンドのリストが表示される.特定の/コマンドを入力することでコマンドの引数やフラグの候補も表示される.本稿では学科で管理しているシステムの状態を確認できる機能を提供するhttpサーバーを立て,それにGET/POSTリクエストを送信することで処理を行う.図\ref{fig:chat-system}に構成図を示す.
+
+\begin{figure}[htpb]
+    \begin{center}
+        \scalebox{0.65}{\includegraphics{fig/chatsystem4.png}}
+    \caption[monitoring]{システム構成図.}
+    \label{fig:chat-system}
+    \end{center}
+\end{figure}
+
+学科システムは複数のサーバーから構成されており.それぞれでHTTP severを立てるとサービス毎にリクエスト先を変更しないといけない為,統括して管理するHTTP serverを一つ立てる.
+そのHTTP serverから他の基幹サーバー内で動作しているサービスに対し処理を送り結果をmattermostから確認できる.
+以下に実装した操作やセキュリティ面での実装を示す.
+
+
+\section{認証機能の実装}
+mattermostはクラウドサーバー上で運用されているが今回実装したHTTP serverは基幹サーバー内で運用している.mattermostからHTTP serverにアクセスするためにグローバルIPを紐付け公開している.学科サーバーは在学中の生徒と教員のみがアクセス可能でありシステムの情報は秘匿するべきである.
+その為外部からのアクセスを制限しmattermostからのみHTTP serverへのアクセスを許可した.
+
+本研究で実装したスラッシュコマンドはmattermostのシステム管理チームが管理するワークスペースのチャンネルから実行可能である.mattermostは学科に所属する全ての生徒がログインできシステム管理チームのワークスペースも制限をおこなっていない為全生徒がスラッシュコマンドの実行が可能である.
+しかし,学科のシステム利用者の情報はLDAPを用いて管理されており,サーバー上でシステム管理者として全ての操作を行えるのはsyskan,sudoのユーザー属性が割り振られているアカウントとなっている.
+スラッシュコマンドでは一部rootユーザーが実行する処理があることやシステム管理の操作に慣れていない学生には操作ミスやセキュリティの観点から制限をつけるのが適切だと判断した.
+その為,システム管理チームとそれ以外の利用者でスラッシュコマンド経由で実行できる操作に制限をかけた.
+mattermostはログインの際にgitlab認証を使用しており,gitlabはLDAP情報からログインを行う.
+その為mattermostのアカウント名などはLDAPに登録されている情報から作成される.
+また,mattermostはスラッシュコマンドを実行する際にコマンド以外に実行したチャンネル情報や実行した操作者の情報をデータをして送信する.データの中にユーザー名がありHTTP serverでユーザー名でLDAP認証を行いsudo,syskanのユーザー属性を持つかを確認することによって実行できる操作に制限をかけることができる.
\ No newline at end of file
--- a/Paper/chapter/ie-system.tex	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/chapter/ie-system.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -1,1 +1,16 @@
 \chapter{現行のシステム}
+
+\section{オンプレミス環境}
+
+\section{仮想環境}
+
+\section{ネットワーク構成}
+物理構成
+VLAN構成
+
+\section{基幹システム}
+
+\section{Akatsuki}
+
+\section{クラウド環境}
+
--- a/Paper/chapter/introduction.tex	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/chapter/introduction.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -2,30 +2,48 @@
 % \section{}
 琉球大学工学科知能情報コースには学生や教員、約300名に対して有線・無線ネットワークや計算機リソースの貸し出しなどの教育研究用情報システムを提供している.
 これらのシステムの管理は平成24年度までは演習科目の一つのテーマとして行われてきた.
-平成25年以降はサービスの多様化やシステムの高度化に伴い,半期で終了する演習科目として行うとが困難となり,教員と学生を中心としたシステム管理チーム(以降よりシス管とする)により管理が行われてきた.
-しかし,令和4年よりシス管と演習科目のテーマの両方でシステム管理活動を行い,教員の指導のもとシステムの安定稼働,発展を利用者である学生が主体性を持って参加する事を目的として取り組んできた.
+また,平成25年以降はサービスの多様化やシステムの高度化に伴い,半期で終了する演習科目として行うとが困難となり,教員と学生を中心としたシステム管理チーム(以降よりシス管とする)により管理が行われてきた.
+しかし,システム管理チームのメンバー不足から令和4年よりシス管と演習科目のテーマの両方でシステム管理活動を行った.教員の指導のもとシステムの安定稼働,発展を利用者である学生が主体性を持って参加する事を目的として取り組んできた.
 
 
-\section{システム管理チーム}
+\section{システム管理チームの構成と活動}
+システム管理チームは2024年1月時点で指導教員2名,技術職員1名,学生3名の6名から構成されている.
 本チームの主な活動を下記に示す.
 
-\begin{description}
-\item 週一回のオンラインミーティング
-\item 教育研究用情報システムの運用,保守
-\item システム利用者からの問い合わせ対応
-\item インシデント対応
-\item オープンキャンパスへの出展
-\end{description}
+\begin{quote}
+    \begin{itemize}
+		\item 週一回のオンラインミーティング
+		\item 教育研究用情報システムの運用,保守
+		\item システム利用者からの問い合わせ対応
+		\item インシデント対応
+		\item インストール大会の主催
+    \end{itemize}
+\end{quote}
+
+{\bf 週一回のオンラインミーティング}
+\\
+システム管理チームは一週間に一度のミーティングを行う.ミーティングは,一週間の進捗や報告,緊急度の高い要件について話し合われ,要件の割り振りや今後の対応などについて決定される.進捗の進みが良くない場合や難易度の高い要件については共同で作業を進めることによって日々の要件を達成している.\\
 
-システム管理チームは一週間に一度のミーティングを行う.ミーティングは,一週間の進捗や報告,緊急度の高い要件について話し合われ,要件の割り振りや今後の対応などについて決定される.進捗の進みが良くない場合や難易度の高い要件については共同で作業を進めることによって日々の要件を達成している.
+{\bf 教育研究用情報システムの運用,保守}
+\\
+教育研究用情報システムの運用・保守においては,複数の重要な取り組みが行われている.システム上で稼働しているサービスのアップデートが定期的に行われており,これによりシステムの安定性と効率が維持されている.次に,より堅牢な類似サービスへの乗り換えを実施しており,使用中のサービスに対して機能的に類似しつつもセキュリティが強化されたサービスへの移行を通じて,システムの全体的なセキュリティを強化している.また,基幹サービスのデータについては,重要なデータ損失を防ぐために定期的にバックアップが取得されており,万が一の事態が発生した際にも迅速に復旧が可能である.
+\\
+
+{\bf システム利用者からの問い合わせ対応}
+\\
+学内イベントの為の無線設置や障害が発生してサービスが利用できない際の対応,また提供するサービスを利用する際に管理者の監査が必要なものが存在する.それらは基本手の空いているメンバーが対応している.
+\\
+
+{\bf インストール大会の主催}\\
+新入学生に向けたパソコンのセットアップや授業で使用するツールの構築,学科システムが提供するサービスを利用する為のサポートを行っている.
+基本的に本コース生が使用するパソコンは琉球大学生活共同組合が指定するものであり,生協からパソコンを注文する.パソコンの受け取りは履修登録開始前に工学部一号館で行われる.そこでアカウントの作成や学科システムが提供するシステムの登録などを行う.
+その中で,システム管理チームは毎年先生の要望から資料の更新や新しいチップに対応したインストール手順の作成と当日の説明を行っている.
+
 
 \section{システム管理チームの情報共有}
-
-
+{\bf オンラインミーティング}\\
 
-
-
-\subsection{研究目的}
+\section{研究目的}
 
 
 
@@ -35,9 +53,9 @@
 \begin{description}
 	\item[1章] 本研究の研究背景および目的を述べる
 	\item[2章] 本研究で必要な技術概要を述べる
-	\item[3章] 2020に構築されたシステムについて述べる
-	\item[4章] SSHプロキシサーバのsshrについて述べる
-	\item[5章] 教育研究用情報システムのために開発,改良したsshr-copy-id,ie-sshrについて述べる
+	\item[3章] 現行のシステムについて述べる
+	\item[4章] 演習科目のテーマでの活動について述べる
+	\item[5章] チャットシステムを利用したシステム管理手法について述べる.
 	\item[6章] 本研究の総括と今後の課題について述べる
 \end{description}
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/chapter/syskan-class.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -0,0 +1,43 @@
+\chapter{演習科目での取り組み}
+
+システム管理は2022年度から実践的なシステムの運用,構築に関するスキルを習得することや継続してシステム管理に参加する生徒の確保を目的として演習科目のテーマの一つになった.
+演習科目とは知能情報分野の専門的な知識を習得することを目的としており様々なテーマの中から生徒が一つ選択し履修する.
+知能情報コースの三年次の学生を対象に開講されており,1学年60名ほどでテーマ数が6つほどなので1テーマ当たり10名ほどの受講生がいる.
+システム管理のテーマでは学生は基本zoomを使用した遠隔授業を通じて活動を行う.作業ログやドキュメントは普段システム管理チームが使用しているプロジェクトに招待されシステム管理におけるscrapboxの使い方の説明を受ける.
+サーバー室の見学や運用しているサービスのコントロールパネルの説明サーバーへのssh configの設定やgitlabのsyskanグループへの登録などを行う.
+また,システム管理のテーマの中からネットワーク,セキュリティ,web,サーバーのグループを作成しそれぞれで活動を行なっている.
+
+以下に各グループでのシステム管理チームの実験演習での取り組みを示す.
+
+\section{web班}
+
+\section{server班}
+サーバー班は基幹サーバー上の不具合の調査やその修正をおこなっている.取り組みのいくつかを以下に示す.
+\begin{quote}
+    \begin{itemize}
+     \item バックアップの修正\\
+     \item KVMテンプレートイメージファイルの修正\\
+    \end{itemize}
+\end{quote}
+上記の二つの進め方として,代表者が一人サーバーにログインし,zoomで画面を共有する.その他の利用者は共有された画面を見て調査し,案を出したりscrapboxに作業のログを取った.
+
+{\bf バックアップの修正}
+
+システムに障害が発生した際に復旧できるようにrsnapshotでcephで管理されているディレクトリや学科web,生徒のホームディレクトリのバックアップをとっている.バックアップはdaily,weeklyをそれぞれ撮っていた.そのバックアップファイルの作成された日付を確認するとある期間から取られていなかった.
+まずは原因を調査するために実行ログ,エラーログの確認を行なった.するとバックアップファイルが大きすぎることからdailyの処理が正常に走っていないことがわかった.そこで処理をweeklyのみ変更することで解決した.
+
+%設定したバックアップが正常に取られているかを確認したところ止まっていた。そこで原因を調査し、解決する
+
+{\bf KVMテンプレートイメージファイルの修正}
+
+KVMを用いて計算機リソースの貸し出しを行う際に,四つある基幹サーバーで利用できるOSに差分があった.その為,OSのテンプレートファイルをceph上に置きそれぞれのサーバーで共有した上でie-virshから参照できるようにした.
+
+\section{network班}
+
+\section{security班}
+セキュリティ班では学科システムへの脆弱性診断の構築を行なっている.システム更新前には脆弱性診断の環境があったが,現在の学科システムにはない.
+また,以降のしやすさや現在の基幹サービスがコンテナで配信されており,管理のしやすさからコンテナ環境での構築を行なう.基幹サーバーには一台グローバルIPを持つものがあったり,生徒が利用するVMも申請した際にはグローバルIPを付与できるため使用する脆弱性診断ツールはサーバーのスキャンがVulsを選択した.
+
+基幹サーバー上で作業するにはadmin権限が必要だがシステム管理に慣れておらず操作ミスが考えられたことやコンテナで構築する為移行が安易なことから生徒それぞれにVMを構築させ基幹サーバーと同様の環境を作成した上で脆弱性診断の環境を構築する方針で進めた.
+生徒には学科システムと同じubuntu22.04,podman v4系の環境を立てた.Vulsの構築にはdockerはあったがpodmanはなかった為,podman commandを使用できるようにスクリプトを書き換えた.
+実際に自身で構築したVMをVulsコンテナから診断し結果を確認した.今後はこれらを基幹サーバーに向けて診断を行う為に設定を編集したり,生徒が利用するVMへ診断をする方法や頻度,診断結果の共有などを行う必要がある.
--- a/Paper/chapter/technology_overview.tex	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/chapter/technology_overview.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -1,6 +1,40 @@
 \chapter{技術概要}
 本章では,本研究で使われる技術及び本コースで利用しているサービスについての概要を説明する.
 
-\section{}
+\section{仮想化}
+
+\section{ハイパーバイザ型}
+
+\section{コンテナ型}
+
+\section{KVM}
+
+\section{Podman}
+
+\section{singularity}
+
+\section{Slurm}
+
+\section{Gitlab}
+
+\section{mattermost}
 
+\section{scrapbox}
 
+\section{Zoom}
+
+\section{Psono}
+
+\section{LDAP}
+
+\section{WordPress}
+
+\section{Hugo}
+
+\section{Nginx}
+
+\section{rsnapshot}
+
+\section{Ceph}
+
+\section{Vuls}
\ No newline at end of file
--- a/Paper/chapter/thanks.tex	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/chapter/thanks.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -1,4 +1,4 @@
 \chapter*{謝辞}
 \addcontentsline{toc}{chapter}{謝辞}
 
-本研究を行うにあたり,ただなるご指導及び助言をしてくださいました琉球大学工学部知能情報コースの長田智和准教授に心より感謝いたします.また,教育研究用情報システムの構築にご指導をいただきました琉球大学知能情報コース河野真治准教授に心より感謝いたします.また,共に教育研究用情報システムの構築を行なったシステム管理チームの清水隆博さん,宮平賢さんには心より感謝いたします.また共に研究や作業を行い有意義な時間を共に過ごした長田研究室の,津嘉山遼さん,東海人さん,伊波究さん,渡久平圭祐さん,玉城翔平さん,の皆さんに心より感謝いたします.
+本研究を行うにあたり,ただなるご指導及び助言をしてくださいました琉球大学工学部知能情報コースの河野真治准教授に心より感謝いたします.また,教育研究用情報システムでの活動にご指導をいただきました琉球大学知能情報コース城間政司助教に心より感謝いたします.また,共に教育研究用情報システムの運用を行なったシステム管理チームの又吉雄斗さんには心より感謝いたします.また共に研究や作業を行い有意義な時間を共に過ごした河野研究室の,佐野巧曜さん,仲吉菜々子さん,森逸汰さん,白鳥遥人さんの皆さんに心より感謝いたします.
Binary file Paper/fig/IMG_1473.jpg has changed
Binary file Paper/fig/chatsystem4.png has changed
--- a/Paper/master_paper.aux	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/master_paper.aux	Fri Jan 12 18:13:17 2024 +0900
@@ -1,1 +1,87 @@
 \relax 
+\@writefile{toc}{\contentsline {chapter}{研究関連論文業績}{ii}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第1章}学生が管理する教育研究用情報システム}{4}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {1.1}システム管理チームの構成と活動}{4}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {1.2}システム管理チームの情報共有}{5}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {1.3}研究目的}{5}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {1.4}論文の構成}{5}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第2章}技術概要}{7}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {2.1}仮想化}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.2}ハイパーバイザ型}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.3}コンテナ型}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.4}KVM}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.5}Podman}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.6}singularity}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.7}Slurm}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.8}Gitlab}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.9}mattermost}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.10}scrapbox}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.11}Zoom}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.12}Psono}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.13}LDAP}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.14}WordPress}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.15}Hugo}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.16}Nginx}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.17}rsnapshot}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.18}Ceph}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {2.19}Vuls}{8}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}現行のシステム}{9}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {3.1}オンプレミス環境}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {3.2}仮想環境}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {3.3}ネットワーク構成}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {3.4}基幹システム}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {3.5}Akatsuki}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {3.6}クラウド環境}{9}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}演習科目での取り組み}{10}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {4.1}web班}{10}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {4.2}server班}{10}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {4.3}network班}{11}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {4.4}security班}{11}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第5章}メッセージングコマンドを使用した手法の提案}{12}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {5.1}システム概要}{12}\protected@file@percent }
+\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces monitoring}}{12}\protected@file@percent }
+\newlabel{fig:chat-system}{{5.1}{12}}
+\@writefile{toc}{\contentsline {section}{\numberline {5.2}認証機能の実装}{13}\protected@file@percent }
+\@writefile{toc}{\contentsline {chapter}{\numberline {第6章}まとめ}{14}\protected@file@percent }
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {6.1}総括}{14}\protected@file@percent }
+\@writefile{toc}{\contentsline {section}{\numberline {6.2}今後の課題}{14}\protected@file@percent }
+\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}}{14}\protected@file@percent }
+\citation{*}
+\bibdata{reference}
+\@writefile{toc}{\contentsline {chapter}{謝辞}{15}\protected@file@percent }
+\bibcite{firstsystem}{1}
+\bibcite{secondsystem}{2}
+\bibcite{thirdsystem}{3}
+\bibcite{fourthsystem}{4}
+\bibcite{fifthsystem}{5}
+\bibcite{sshrmake}{6}
+\bibcite{sshr}{7}
+\bibcite{sshrcrypto}{8}
+\bibcite{sqlx}{9}
+\bibcite{rfc4252}{10}
+\bibcite{openssh}{11}
+\bibcite{container}{12}
+\bibcite{expressmobility}{13}
+\@writefile{toc}{\contentsline {chapter}{参考文献}{16}\protected@file@percent }
+\bibcite{ciscocommnad}{14}
+\bibcite{podman}{15}
+\bibcite{Ansible}{16}
+\bibcite{Hugo}{17}
+\bibcite{singularity}{18}
+\bibcite{gitlabdocumentation}{19}
+\bibcite{radiusDHCP}{20}
+\bibcite{fail2ban}{21}
+\bibcite{pamtally2}{22}
+\bibstyle{junsrt}
--- a/Paper/master_paper.fdb_latexmk	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/master_paper.fdb_latexmk	Fri Jan 12 18:13:17 2024 +0900
@@ -1,12 +1,12 @@
 # Fdb version 3
-["makeindex master_paper.idx"] 0 "master_paper.idx" "master_paper.ind" "master_paper" 1703317013
-  "master_paper.idx" 0 -1 0 "pdflatex"
+["makeindex master_paper.idx"] 1705050657 "master_paper.idx" "master_paper.ind" "master_paper" 1705050657
+  "master_paper.idx" 1705050647 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
   (generated)
+  "master_paper.ind"
   "master_paper.ilg"
-  "master_paper.ind"
-["pdflatex"] 1703317013 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.pdf" "master_paper" 1703317013
+["pdflatex"] 1705050657 "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.pdf" "master_paper" 1705050657
   "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.aux" 0 -1 0 ""
-  "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" 1703317010 2404 ce55066b3d7f79037ac4f4b23442bb43 ""
+  "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex" 1705044204 2469 f3bef6425f04658b6baab2a74700b06c ""
   "/usr/local/texlive/2020/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 ""
   "/usr/local/texlive/2020/texmf-dist/fonts/tfm/public/ascmac/ascgrp.tfm" 1520635638 448 9a1f3a95c3a7e2681aa6eefcf410b7ac ""
   "/usr/local/texlive/2020/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 ""
@@ -39,10 +39,10 @@
   "master_paper.aux" 0 -1 0 "pdflatex"
   "master_paper.ind" 0 -1 0 "makeindex master_paper.idx"
   "master_paper.sty" 1703317010 13271 c718e4a9594da4c20e1c9aee50424ee8 ""
-  "master_paper.tex" 1703317010 2404 ce55066b3d7f79037ac4f4b23442bb43 ""
+  "master_paper.tex" 1705044204 2469 f3bef6425f04658b6baab2a74700b06c ""
   (generated)
+  "master_paper.log"
   "master_paper.idx"
+  "master_paper.aux"
   "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.pdf"
   "/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.log"
-  "master_paper.aux"
-  "master_paper.log"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/master_paper.lof	Fri Jan 12 18:13:17 2024 +0900
@@ -0,0 +1,7 @@
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\contentsline {figure}{\numberline {5.1}{\ignorespaces monitoring}}{12}%
+\addvspace {10\p@ }
--- a/Paper/master_paper.log	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/master_paper.log	Fri Jan 12 18:13:17 2024 +0900
@@ -1,534 +1,194 @@
-This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex 2020.4.26)  23 DEC 2023 16:36
+This is e-upTeX, Version 3.14159265-p3.8.3-u1.26-191112-2.6 (utf8.uptex) (TeX Live 2020) (preloaded format=uplatex 2020.4.26)  12 JAN 2024 18:11
 entering extended mode
  restricted \write18 enabled.
  file:line:error style messages enabled.
  %&-line parsing enabled.
-**/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex
-(/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex
-LaTeX2e <2020-02-02> patch level 5
-L3 programming layer <2020-03-06> (/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls
-
-/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls:17: LaTeX Error: This file needs format `pLaTeX2e'
-               but this is `LaTeX2e'.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.17 \NeedsTeXFormat{pLaTeX2e}
-                              
-The current input file will not be processed further,
-because it was written for some other flavor of TeX.
-You're in trouble here.  Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-) (/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty
+**master_paper.tex
+(./master_paper.tex
+pLaTeX2e <2020-02-02u03>+3 (based on LaTeX2e <2020-02-02> patch level 5)
+L3 programming layer <2020-03-06>
+(/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujreport.cls
+Document Class: ujreport 2020/01/03 v1.8e-u00 Standard upLaTeX class
+\c@@paper=\count166
+(/usr/local/texlive/2020/texmf-dist/tex/uplatex/base/ujsize12.clo
+File: ujsize12.clo 2020/01/03 v1.8e-u00 Standard upLaTeX file (size option)
+LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 28.
+LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 28.
+)
+\c@part=\count167
+\c@chapter=\count168
+\c@section=\count169
+\c@subsection=\count170
+\c@subsubsection=\count171
+\c@paragraph=\count172
+\c@subparagraph=\count173
+\c@figure=\count174
+\c@table=\count175
+\abovecaptionskip=\skip47
+\belowcaptionskip=\skip48
+\symmincho=\mathgroup4
+LaTeX Font Info:    Overwriting symbol font `mincho' in version `bold'
+(Font)                  JY2/mc/m/n --> JY2/gt/m/n on input line 705.
+\toclineskip=\dimen150
+\@lnumwidth=\dimen151
+\bibindent=\dimen152
+\heisei=\count176
+)
+(./master_paper.sty
 ****************************************************************
-** 平成15年度 琉球大学大学院 学位論文(修士) ********************
+** 平成15年度 琉球大学大学院 学位論文(修士) ******************
+**
 ** スタイルファイル(LaTeX2e) : 非公式 ********************
 ****************************************************************
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:146: LaTeX Error: Command \maketitle undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.146 \renewcommand{\maketitle}
-                               {%
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:228: LaTeX Error: Environment abstract undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.228 \renewenvironment{abstract}
-                                 {%
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:249: LaTeX Error: Command \tableofcontents undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.249 \renewcommand{\tableofcontents}
-                                     {%
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:282: LaTeX Error: Command \appendix undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.282 \renewcommand{\appendix}
-                              {\par
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:292: LaTeX Error: Command \chapter undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.292 \renewcommand{\chapter}
-                             {%
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:330: LaTeX Error: Command \prepartname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.330 \renewcommand{\prepartname}
-                                 {\relax} %\renewcommand{\prepartname}{第}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:331: LaTeX Error: Command \postpartname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.331 \renewcommand{\postpartname}
-                                  {部}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:332: LaTeX Error: Command \prechaptername undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.332 \renewcommand{\prechaptername}
-                                    {第}%\renewcommand{\prechaptername}{第}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:333: LaTeX Error: Command \postchaptername undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.333 \renewcommand{\postchaptername}
-                                     {章}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:334: LaTeX Error: Command \contentsname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.334 \renewcommand{\contentsname}
-                                  {目 次}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:335: LaTeX Error: Command \listfigurename undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.335 \renewcommand{\listfigurename}
-                                    {図 目 次}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:336: LaTeX Error: Command \listtablename undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.336 \renewcommand{\listtablename}
-                                   {表 目 次}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:337: LaTeX Error: Command \bibname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.337 \renewcommand{\bibname}
-                             {参考文献}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:338: LaTeX Error: Command \indexname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.338 \renewcommand{\indexname}
-                               {索 引}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:339: LaTeX Error: Command \figurename undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.339 \renewcommand{\figurename}
-                                {図}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:340: LaTeX Error: Command \tablename undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.340 \renewcommand{\tablename}
-                               {表}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:341: LaTeX Error: Command \appendixname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.341 \renewcommand{\appendixname}
-                                  {付 録}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:342: LaTeX Error: Command \abstractname undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.342 \renewcommand{\abstractname}
-                                  {要 旨}
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-\c@defnum=\count167
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:348: LaTeX Error: No counter 'chapter' defined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.348 \newcounter{defnum}[chapter]
-                                  
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:442: LaTeX Error: Environment thebibliography undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.442 \renewenvironment{thebibliography}
-                                        [1]
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:465: LaTeX Error: Environment theindex undefined.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.465 \renewenvironment{theindex}
-                                 {%
-Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:487: Undefined control sequence.
-l.487 \prebreakpenalty
-                      \jis`,=10000 % ,
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:487: Undefined control sequence.
-l.487 \prebreakpenalty\jis
-                          `,=10000 % ,
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:487: LaTeX Error: Missing \begin{document}.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.487 \prebreakpenalty\jis`
-                           ,=10000 % ,
-You're in trouble here.  Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
-Missing character: There is no ` in font nullfont!
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:487: Package inputenc Error: Unicode character , (U+FF0C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.487 \prebreakpenalty\jis`,
-                              =10000 % ,
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-Missing character: There is no = in font nullfont!
-Missing character: There is no 1 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:488: Undefined control sequence.
-l.488 \prebreakpenalty
-                      \jis`.=10000 % .
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:488: Undefined control sequence.
-l.488 \prebreakpenalty\jis
-                          `.=10000 % .
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-Missing character: There is no ` in font nullfont!
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.sty:488: Package inputenc Error: Unicode character . (U+FF0E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.488 \prebreakpenalty\jis`.
-                              =10000 % .
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-Missing character: There is no = in font nullfont!
-Missing character: There is no 1 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
-Missing character: There is no 0 in font nullfont!
+\c@defnum=\count177
 ) (/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/ascmac.sty
 Package: ascmac 2020/01/15 v2.1 ascmac wrapper (community edition) 
- (/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/tascmac.sty
+
+(/usr/local/texlive/2020/texmf-dist/tex/latex/ascmac/tascmac.sty
 Package: tascmac 2020/01/15 v2.1 ascmac package (community edition) 
-Package tascmac Info: Assuming pdfLaTeX, XeLaTeX or LuaLaTeX on input line 44.
-\scb@x=\box45
-\scscb@x=\box46
-\@bw=\dimen134
-\@nbox=\box47
-\@nbody=\box48
-\@scw=\dimen135
-\ascmac@hoboxa=\box49
-\ascmac@hoboxb=\box50
-\@itemh=\dimen136
-\@iboxpos=\toks15
-\@iboxstr=\box51
-\@bwsp=\box52
-\@@bwsp=\box53
-\@bcal=\count168
-\shaderule=\dimen137
-)) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty
+\@savetbaselineshift=\dimen153
+\@saveybaselineshift=\dimen154
+\scb@x=\box61
+\scscb@x=\box62
+\@bw=\dimen155
+\@nbox=\box63
+\@nbody=\box64
+\@scw=\dimen156
+\ascmac@hoboxa=\box65
+\ascmac@hoboxb=\box66
+\@itemh=\dimen157
+\@iboxpos=\toks16
+\@iboxstr=\box67
+\@bwsp=\box68
+\@@bwsp=\box69
+\@bcal=\count178
+\shaderule=\dimen158
+))
+(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty
 Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
- (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty
+
+(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty
 Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
-\KV@toks@=\toks16
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty
-Overfull \hbox (20.0pt too wide) in paragraph at lines 487--27
-[]
- []
+\KV@toks@=\toks17
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
 
-Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
 (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/trig.sty
 Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
 File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
 )
 Package graphics Info: Driver file: dvipdfmx.def on input line 105.
- (/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/dvipdfmx.def
+
+(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/dvipdfmx.def
 File: dvipdfmx.def 2017/06/24 v5.0g Graphics/color driver for dvipdfmx
 ))
-\Gin@req@height=\dimen138
-\Gin@req@width=\dimen139
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/here/here.sty) (/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty
+\Gin@req@height=\dimen159
+\Gin@req@width=\dimen160
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/here/here.sty)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty
 Package: float 2001/11/08 v1.3d Float enhancements (AL)
-\c@float@type=\count169
-\float@exts=\toks17
-\float@box=\box54
-\@float@everytoks=\toks18
-\@floatcapt=\box55
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty
-\lst@mode=\count170
-\lst@gtempboxa=\box56
-\lst@token=\toks19
-\lst@length=\count171
-\lst@currlwidth=\dimen140
-\lst@column=\count172
-\lst@pos=\count173
-\lst@lostspace=\dimen141
-\lst@width=\dimen142
-\lst@newlines=\count174
-\lst@lineno=\count175
-\abovecaptionskip=\skip47
-\belowcaptionskip=\skip48
-\lst@maxwidth=\dimen143
- (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty
+\c@float@type=\count179
+\float@exts=\toks18
+\float@box=\box70
+\@float@everytoks=\toks19
+\@floatcapt=\box71
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty
+\lst@mode=\count180
+\lst@gtempboxa=\box72
+\lst@token=\toks20
+\lst@length=\count181
+\lst@currlwidth=\dimen161
+\lst@column=\count182
+\lst@pos=\count183
+\lst@lostspace=\dimen162
+\lst@width=\dimen163
+\lst@newlines=\count184
+\lst@lineno=\count185
+\lst@maxwidth=\dimen164
+
+(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty
 File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
-\c@lstnumber=\count176
-\lst@skipnumbers=\count177
-\lst@framebox=\box57
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg
+\c@lstnumber=\count186
+\lst@skipnumbers=\count187
+\lst@framebox=\box73
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg
 File: listings.cfg 2020/03/24 1.8d listings configuration
 ))
 Package: listings 2020/03/24 1.8d (Carsten Heinz)
- (/usr/local/texlive/2020/texmf-dist/tex/latex/comment/comment.sty
+
+(/usr/local/texlive/2020/texmf-dist/tex/latex/comment/comment.sty
 \CommentStream=\write3
- Excluding comment 'comment') (/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty
+
+Excluding comment 'comment')
+(/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty
 \Urlmuskip=\muskip16
 Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
-) (/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty
-
-/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty:1: LaTeX Error: This file needs format `pLaTeX2e'
-               but this is `LaTeX2e'.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.1 \NeedsTeXFormat{pLaTeX2e}
-                             
-The current input file will not be processed further,
-because it was written for some other flavor of TeX.
-You're in trouble here.  Try typing  <return>  to proceed.
-If that doesn't work, type  X <return>  to quit.
-
 )
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:10: LaTeX Error: Unknown option `deluxe' for package `otf'.
+(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/otf.sty
+Package: otf 2019/04/01 v1.7b8 psitau, u0.25 ttk
+LaTeX Font Info:    Redeclaring symbol font `mincho' on input line 314.
+LaTeX Font Info:    Overwriting symbol font `mincho' in version `normal'
+(Font)                  JY2/mc/m/n --> JY2/hmc/m/n on input line 314.
+LaTeX Font Info:    Overwriting symbol font `mincho' in version `bold'
+(Font)                  JY2/gt/m/n --> JY2/hmc/m/n on input line 314.
+LaTeX Font Info:    Overwriting symbol font `mincho' in version `bold'
+(Font)                  JY2/hmc/m/n --> JY2/hmc/bx/n on input line 316.
+LaTeX Font Info:    Redeclaring math alphabet \mathgt on input line 317.
+LaTeX Font Info:    Overwriting math alphabet `\mathgt' in version `normal'
+(Font)                  JY2/gt/m/n --> JY2/hgt/m/n on input line 317.
+LaTeX Font Info:    Overwriting math alphabet `\mathgt' in version `bold'
+(Font)                  JY2/gt/m/n --> JY2/hgt/m/n on input line 317.
+LaTeX Font Info:    Overwriting math alphabet `\mathgt' in version `bold'
+(Font)                  JY2/hgt/m/n --> JY2/hgt/bx/n on input line 318.
 
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.10 
-     
-The option `deluxe' was not declared in package `otf', perhaps you
-misspelled its name. Try typing  <return>  to proceed.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:10: LaTeX Error: Unknown option `multi' for package `otf'.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.10 
-     
-The option `multi' was not declared in package `otf', perhaps you
-misspelled its name. Try typing  <return>  to proceed.
-
+(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf/ajmacros.sty
+Package: ajmacros 2019/04/01 21:00 iNOUE Koich! <inoue@ma.ns.musashi-tech.ac.jp
+>
+\@tempcntc=\count188
+\@tempcntd=\count189
+\@tempcnte=\count190
+\@tempcntf=\count191
+))
+(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf-uptex/mlutf.sty
+Package: mlutf 2004/04/17 v1.1.2 psitau, u0.25 ttk
+)
+(/usr/local/texlive/2020/texmf-dist/tex/platex/japanese-otf/mlcid.sty
+Package: mlcid 2004/04/17 v1.0.2 psitau
+)
 (/usr/local/texlive/2020/texmf-dist/tex/latex/base/makeidx.sty
 Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
-) (/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty
+)
+(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty
 Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
-\c@tracingmulticols=\count178
-\mult@box=\box58
-\multicol@leftmargin=\dimen144
-\c@unbalance=\count179
-\c@collectmore=\count180
-\doublecol@number=\count181
-\multicoltolerance=\count182
-\multicolpretolerance=\count183
-\full@width=\dimen145
-\page@free=\dimen146
-\premulticols=\dimen147
-\postmulticols=\dimen148
+\c@tracingmulticols=\count192
+\mult@box=\box74
+\multicol@leftmargin=\dimen165
+\c@unbalance=\count193
+\c@collectmore=\count194
+\doublecol@number=\count195
+\multicoltolerance=\count196
+\multicolpretolerance=\count197
+\full@width=\dimen166
+\page@free=\dimen167
+\premulticols=\dimen168
+\postmulticols=\dimen169
 \multicolsep=\skip49
 \multicolbaselineskip=\skip50
-\partial@page=\box59
-\last@line=\box60
-\maxbalancingoverflow=\dimen149
-\mult@rightbox=\box61
-\mult@grightbox=\box62
-\mult@gfirstbox=\box63
-\mult@firstbox=\box64
-\@tempa=\box65
-\@tempa=\box66
-\@tempa=\box67
-\@tempa=\box68
-\@tempa=\box69
-\@tempa=\box70
-\@tempa=\box71
-\@tempa=\box72
-\@tempa=\box73
-\@tempa=\box74
-\@tempa=\box75
-\@tempa=\box76
-\@tempa=\box77
-\@tempa=\box78
-\@tempa=\box79
-\@tempa=\box80
+\partial@page=\box75
+\last@line=\box76
+\maxbalancingoverflow=\dimen170
+\mult@rightbox=\box77
+\mult@grightbox=\box78
+\mult@gfirstbox=\box79
+\mult@firstbox=\box80
 \@tempa=\box81
 \@tempa=\box82
 \@tempa=\box83
@@ -550,5139 +210,736 @@
 \@tempa=\box99
 \@tempa=\box100
 \@tempa=\box101
-\c@minrows=\count184
-\c@columnbadness=\count185
-\c@finalcolumnbadness=\count186
-\last@try=\dimen150
-\multicolovershoot=\dimen151
-\multicolundershoot=\dimen152
-\mult@nat@firstbox=\box102
-\colbreak@box=\box103
-\mc@col@check@num=\count187
+\@tempa=\box102
+\@tempa=\box103
+\@tempa=\box104
+\@tempa=\box105
+\@tempa=\box106
+\@tempa=\box107
+\@tempa=\box108
+\@tempa=\box109
+\@tempa=\box110
+\@tempa=\box111
+\@tempa=\box112
+\@tempa=\box113
+\@tempa=\box114
+\@tempa=\box115
+\@tempa=\box116
+\@tempa=\box117
+\c@minrows=\count198
+\c@columnbadness=\count199
+\c@finalcolumnbadness=\count266
+\last@try=\dimen171
+\multicolovershoot=\dimen172
+\multicolundershoot=\dimen173
+\mult@nat@firstbox=\box118
+\colbreak@box=\box119
+\mc@col@check@num=\count267
 )
 \@indexfile=\write4
 \openout4 = `master_paper.idx'.
 
 
 Writing index file master_paper.idx
-(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
-File: l3backend-pdfmode.def 2020-03-12 L3 backend support: PDF mode
-\l__kernel_color_stack_int=\count188
-\l__pdf_internal_box=\box104
+(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-dvips.def
+File: l3backend-dvips.def 2020-03-12 L3 backend support: dvips
+\l__pdf_internal_box=\box120
+\g__pdf_backend_object_int=\count268
+\l__pdf_backend_content_box=\box121
+\l__pdf_backend_model_box=\box122
+\g__pdf_backend_annotation_int=\count269
+\g__pdf_backend_link_int=\count270
+\g__pdf_backend_link_sf_int=\count271
 )
-No file master_paper.aux.
+(./master_paper.aux)
 \openout1 = `master_paper.aux'.
 
-LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 66.
-LaTeX Font Info:    ... okay on input line 66.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:66: LaTeX Error: The font size command \normalsize is not defined:
-               there is probably something wrong with the class file.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.66 \begin{document}
-                     
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-\c@lstlisting=\count189
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: The font size command \normalsize is not defined:
-               there is probably something wrong with the class file.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-[1]
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...e \thanks {\fontsize {16pt}{0pt}\bf 
-                                                  \thesis \\} \vskip 0.5em {...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 修 (U+4FEE)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 士 (U+58EB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 位 (U+4F4D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for JY2/mc/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Checking defaults for JT2/mc/m/n on input line 65.
+LaTeX Font Info:    ... okay on input line 65.
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 65.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 65.
+\c@lstlisting=\count272
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 15.39551pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 15.39551pt on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 論 (U+8AD6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 文 (U+6587)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf 
-                                                  \ethesis } \vskip 1.5em {\...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 1.5em {\fontsize {18pt}{0pt}\bf 
-                                                  \mc \@title \\} \vskip 0.5...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...1.5em {\fontsize {18pt}{0pt}\bf \mc 
-                                                  \@title \\} \vskip 0.5em {...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character シ (U+30B7)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ス (U+30B9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character テ (U+30C6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character ム (U+30E0)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 管 (U+7BA1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 理 (U+7406)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character を (U+3092)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 体 (U+4F53)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <16> not available
+(Font)              size <17.28> substituted on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 験 (U+9A13)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character さ (U+3055)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character せ (U+305B)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 15.39551pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 15.39551pt on input line 67.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `OT1/cmr/bx/n' in size <16> not available
+(Font)              size <17.28> substituted on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 生 (U+751F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 実 (U+5B9F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 験 (U+9A13)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character に (U+306B)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 関 (U+95A2)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 17.31995pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 17.31995pt on input line 67.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character す (U+3059)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <18> not available
+(Font)              size <17.28> substituted on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 考 (U+8003)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 察 (U+5BDF)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 17.31995pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 17.31995pt on input line 67.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `OT1/cmr/bx/n' in size <18> not available
+(Font)              size <17.28> substituted on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {18pt}{0pt}\bf 
-                                                  {\@etitle }} \vskip 0.8em ...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ....8em \par {\fontsize {14pt}{0pt}\mc 
-                                                  \@year \\} {\fontsize {14p...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 13.47107pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 13.47107pt on input line 67.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ....8em \par {\fontsize {16pt}{0pt}\bf 
-                                                  \mc \@author \par } \vskip...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ... \par {\fontsize {16pt}{0pt}\bf \mc 
-                                                  \@author \par } \vskip 0.5...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 木 (U+6728)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 山 (U+5C71)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 瑞 (U+745E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 基 (U+57FA)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf 
-                                                  \@eauthor \par } \par \vsk...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 File: fig/u-ryukyu-Mark.pdf Graphic file (type pdf)
 <fig/u-ryukyu-Mark.pdf>
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ....5em \par {\fontsize {16pt}{0pt}\bf 
-                                                  \mc \university \\} \vskip...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ... \par {\fontsize {16pt}{0pt}\bf \mc 
-                                                  \university \\} \vskip 0.5...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 琉 (U+7409)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 球 (U+7403)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 大 (U+5927)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf 
-                                                  \mc \department \\} \vskip...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...0.5em {\fontsize {16pt}{0pt}\bf \mc 
-                                                  \department \\} \vskip 0.5...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 大 (U+5927)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 院 (U+9662)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 理 (U+7406)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 研 (U+7814)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 究 (U+7A76)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 科 (U+79D1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {16pt}{0pt}\bf 
-                                                  \mc \course } \vskip 0.8em...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 13.47107pt on input line 67.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 13.47107pt on input line 67.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...0.5em {\fontsize {16pt}{0pt}\bf \mc 
-                                                  \course } \vskip 0.8em \pa...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 情 (U+60C5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 報 (U+5831)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 工 (U+5DE5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 専 (U+5C02)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+[1
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 攻 (U+653B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-LaTeX Font Warning: Font shape `OT1/cmr/bx/n' in size <16> not available
-(Font)              size <17.28> substituted on input line 68.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ....8em \par {\fontsize {14pt}{0pt}\bf 
-                                                  \mc \@chife \\} \vskip 0.5...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ... \par {\fontsize {14pt}{0pt}\bf \mc 
-                                                  \@chife \\} \vskip 0.5em {...
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 指 (U+6307)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
+]
+LaTeX Font Info:    External font `cmex10' loaded for size
+(Font)              <12> on input line 72.
+LaTeX Font Info:    External font `cmex10' loaded for size
+(Font)              <8> on input line 72.
+LaTeX Font Info:    External font `cmex10' loaded for size
+(Font)              <6> on input line 72.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 7.69775pt on input line 72.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 5.77332pt on input line 72.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 導 (U+5C0E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 教 (U+6559)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 員 (U+54E1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character : (U+FF1A)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 72.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 教 (U+6559)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 授 (U+6388)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 和 (U+548C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 田 (U+7530)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 11.54663pt on input line 72.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 11.54663pt on input line 72.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 知 (U+77E5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Package inputenc Error: Unicode character 久 (U+4E45)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+Overfull \hbox (2.61108pt too wide) in paragraph at lines 72--73
+[]$[]$[] []$[]$[] 
+ []
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: LaTeX Error: There's no line here to end.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.68 \maketitle
-               
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:68: Undefined control sequence.
-\maketitle ...kip 0.5em {\fontsize {14pt}{0pt}\bf 
-                                                  \@echife \\} \end {center} 
-l.68 \maketitle
-               
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:71: LaTeX Error: The font size command \normalsize is not defined:
-               there is probably something wrong with the class file.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.71 \newpage
-             
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-[1{/usr/local/texlive/2020/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 論 (U+8AD6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[0] (./chapter/abstract.tex
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 23.94002pt on input line 1.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 23.94002pt on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 文 (U+6587)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 23.94002pt on input line 1.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 23.94002pt on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 題 (U+984C)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 4.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[1
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 目 (U+76EE)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 4.
 
+) (./chapter/history.tex
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character シ (U+30B7)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[2
 
+]
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character ス (U+30B9)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+)
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character テ (U+30C6)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 84.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[3
+
+]
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character ム (U+30E0)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 86.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+No file master_paper.toc.
+\tf@toc=\write5
+\openout5 = `master_paper.toc'.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 管 (U+7BA1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 理 (U+7406)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 89.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character を (U+3092)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 体 (U+4F53)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[1
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 験 (U+9A13)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character さ (U+3055)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character せ (U+305B)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 89.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+No file master_paper.lof.
+\tf@lof=\write6
+\openout6 = `master_paper.lof'.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 生 (U+751F)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 92.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 実 (U+5B9F)
-(inputenc)                not set up for use with LaTeX.
+[2
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 験 (U+9A13)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character に (U+306B)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 92.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 関 (U+95A2)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character す (U+3059)
-(inputenc)                not set up for use with LaTeX.
+No file master_paper.lot.
+\tf@lot=\write7
+\openout7 = `master_paper.lot'.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
+(./chapter/introduction.tex
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 考 (U+8003)
-(inputenc)                not set up for use with LaTeX.
+[3
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 察 (U+5BDF)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+]
+第 1 章(4ページ)
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 氏 (U+6C0F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 名 (U+540D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 16.62714pt on input line 9.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 16.62714pt on input line 9.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 木 (U+6728)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 山 (U+5C71)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 9.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 瑞 (U+745E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 16.62714pt on input line 9.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 16.62714pt on input line 9.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 基 (U+57FA)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 23.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 本 (U+672C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 論 (U+8AD6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 文 (U+6587)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character は (U+306F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 、 (U+3001)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 修 (U+4FEE)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 士 (U+58EB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 27.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 工 (U+5DE5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 31.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[4
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character の (U+306E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+]
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 32.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 位 (U+4F4D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 論 (U+8AD6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 37.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 文 (U+6587)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 43.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character と (U+3068)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character し (U+3057)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 44.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character て (U+3066)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 適 (U+9069)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 切 (U+5207)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character で (U+3067)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character あ (U+3042)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character と (U+3068)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 46.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 認 (U+8A8D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character め (U+3081)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 50.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 。 (U+3002)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 73.
-LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 73.
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Undefined control sequence.
-\makecommission ....5\hsize } \begin {center} \bf 
-                                                  \commission \vskip 3 em \u...
-l.73 \makecommission
-                    
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 54.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 論 (U+8AD6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 文 (U+6587)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 55.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 審 (U+5BE9)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 56.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 10.53629pt on input line 57.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 10.53629pt on input line 57.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 査 (U+67FB)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 57.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 10.53629pt on input line 57.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 10.53629pt on input line 57.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 会 (U+4F1A)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 57.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+[5]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 57.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 58.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 59.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+) (./chapter/technology_overview.tex
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+[6]
+第 2 章(7ページ)
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 4.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 6.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 8.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 10.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 12.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 印 (U+5370)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 14.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 主 (U+4E3B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 16.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 査 (U+67FB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 18.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 20.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 和 (U+548C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 22.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 田 (U+7530)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 24.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 26.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 知 (U+77E5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 久 (U+4E45)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 28.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 30.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 32.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 34.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 36.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 38.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 40.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+) (./chapter/ie-system.tex
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[7
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+]
+Overfull \vbox (18.18347pt too high) has occurred while \output is active []
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+[8]
+第 3 章(9ページ)
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 印 (U+5370)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 副 (U+526F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 3.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 査 (U+67FB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 5.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 7.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 岡 (U+5CA1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 11.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 崎 (U+5D0E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 13.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 威 (U+5A01)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 15.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 生 (U+751F)
-(inputenc)                not set up for use with LaTeX.
+) (./chapter/syskan-class.tex
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[9
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+]
+第 4 章(10ページ)
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 12.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 14.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 24.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 28.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+[10
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+]
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 31.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 35.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 37.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+) (./chapter/chatsystem.tex
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 印 (U+5370)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 副 (U+526F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+[11]
+第 5 章(12ページ)
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 査 (U+67FB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 3.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 4.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 遠 (U+9060)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 藤 (U+85E4)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Warning: Reference `fig:chat-system' on page 12 undefined on input line 4
+.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+File: fig/chatsystem4.png Graphic file (type bmp)
+<fig/chatsystem4.png>
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 聡 (U+8061)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 志 (U+5FD7)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 17.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+[12
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 19.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+) (./chapter/conclusion.tex
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+[13]
+第 6 章(14ページ)
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 2.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 4.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 印 (U+5370)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hmc/m/n' will be
+(Font)              scaled to size 13.85594pt on input line 7.
+LaTeX Font Info:    Font shape `JY2/hmc/m/n' will be
+(Font)              scaled to size 13.85594pt on input line 7.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 7.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 副 (U+526F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Info:    Font shape `JT2/hmc/bx/n' will be
+(Font)              scaled to size 13.85594pt on input line 7.
+LaTeX Font Info:    Font shape `JY2/hmc/bx/n' will be
+(Font)              scaled to size 13.85594pt on input line 7.
+) (./chapter/thanks.tex
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[14
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 査 (U+67FB)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+) (./master_paper.bbl
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
+
+[15
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+]
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 1.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Font Info:    Font shape `JT2/hgt/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 36.
+LaTeX Font Info:    Font shape `JY2/hgt/m/n' will be
+(Font)              scaled to size 11.54663pt on input line 36.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JT2/hgt/m/it' undefined
+(Font)              using `JT2/hgt/m/n' instead on input line 36.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 河 (U+6CB3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 野 (U+91CE)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Warning: Font shape `JY2/hgt/m/it' undefined
+(Font)              using `JY2/hgt/m/n' instead on input line 36.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 真 (U+771F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character 治 (U+6CBB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Info:    Font shape `JT2/hgt/m/it' will be
+(Font)              scaled to size 11.54663pt on input line 40.
+LaTeX Font Info:    Font shape `JY2/hgt/m/it' will be
+(Font)              scaled to size 11.54663pt on input line 40.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:73: Package inputenc Error: Unicode character   (U+3000)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.73 \makecommission
-                    
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-Overfull \hbox (2.22221pt too wide) in paragraph at lines 73--74
-$[]$ $[]$ 
+Underfull \hbox (badness 2165) in paragraph at lines 59--62
+[]\OT1/cmr/m/n/12 redhat.  \OT1/cmr/m/it/12 https://developers.redhat.com/blog/
+2019/02/21/podman-and-buildah-for-
  []
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/master_paper.tex:75: LaTeX Error: The font size command \normalsize is not defined:
-               there is probably something wrong with the class file.
-
-See the LaTeX manual or LaTeX Companion for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.75 \newpage
-             
-Your command was ignored.
-Type  I <command> <return>  to replace it with another command,
-or  <return>  to continue without it.
-
-[0] (/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Undefined control sequence.
-\chapter ...style {anotherheadings} \if@openright 
-                                                  \cleardoublepage \else \cl...
-l.1 \chapter
-            *{要旨}
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Extra \else.
-\chapter ... \if@openright \cleardoublepage \else 
-                                                  \clearpage \fi \thispagest...
-l.1 \chapter
-            *{要旨}
-I'm ignoring this; it doesn't match any \if.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Extra \fi.
-\chapter ...\cleardoublepage \else \clearpage \fi 
-                                                  \thispagestyle {anotherpla...
-l.1 \chapter
-            *{要旨}
-I'm ignoring this; it doesn't match any \if.
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Undefined control sequence.
-<argument> \@schapter 
-                      
-l.1 \chapter*
-             {要旨}
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Package inputenc Error: Unicode character 要 (U+8981)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.1 \chapter*{要
-                 旨}
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:1: Package inputenc Error: Unicode character 旨 (U+65E8)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.1 \chapter*{要旨
-                    }
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 近 (U+8FD1)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近
-       年の企業や大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 年 (U+5E74)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年
-          の企業や大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の
-             企業や大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 企 (U+4F01)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企
-                業や大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業
-                   や大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や
-                      大学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 大 (U+5927)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大
-                         学では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 学 (U+5B66)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学
-                            では事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学で
-                               は事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character は (U+306F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では
-                                  事業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 事 (U+4E8B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では事
-                                     業や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では事業
-                                        や授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では事業や
-                                           授業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 授 (U+6388)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では事業や授
-                                              業、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 業 (U+696D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 近年の企業や大学では事業や授業
-                                                 、研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 、 (U+3001)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...の企業や大学では事業や授業、
-                                                  研究などでコンピ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 研 (U+7814)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...企業や大学では事業や授業、研
-                                                  究などでコンピュ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 究 (U+7A76)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...業や大学では事業や授業、研究
-                                                  などでコンピュー...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+Underfull \hbox (badness 10000) in paragraph at lines 64--67
+[]\OT1/cmr/m/n/12 cisco.  \OT1/cmr/m/it/12 https://www.cisco.com/c/ja[]jp/solut
+ions/collateral/enterprise-
+ []
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character な (U+306A)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...や大学では事業や授業、研究な
-                                                  どでコンピュータ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ど (U+3069)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...大学では事業や授業、研究など
-                                                  でコンピュータ上...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...学では事業や授業、研究などで
-                                                  コンピュータ上の...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character コ (U+30B3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...では事業や授業、研究などでコ
-                                                  ンピュータ上のサ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ン (U+30F3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...は事業や授業、研究などでコン
-                                                  ピュータ上のサー...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ピ (U+30D4)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...事業や授業、研究などでコンピ
-                                                  ュータ上のサービ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 67.
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ュ (U+30E5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...業や授業、研究などでコンピュ
-                                                  ータ上のサービス...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...や授業、研究などでコンピュー
-                                                  タ上のサービスを...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character タ (U+30BF)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...授業、研究などでコンピュータ
-                                                  上のサービスを活...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 上 (U+4E0A)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...業、研究などでコンピュータ上
-                                                  のサービスを活用...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...、研究などでコンピュータ上の
-                                                  サービスを活用し...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...研究などでコンピュータ上のサ
-                                                  ービスを活用して ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC)
-(inputenc)                not set up for use with LaTeX.
+[16
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...究などでコンピュータ上のサー
-                                                  ビスを活用して い...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ビ (U+30D3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...などでコンピュータ上のサービ
-                                                  スを活用して いる....
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...どでコンピュータ上のサービス
-                                                  を活用して いる. ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character を (U+3092)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...でコンピュータ上のサービスを
-                                                  活用して いる. こ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 活 (U+6D3B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...コンピュータ上のサービスを活
-                                                  用して いる. これ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 用 (U+7528)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ンピュータ上のサービスを活用
-                                                  して いる. これら...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character し (U+3057)
-(inputenc)                not set up for use with LaTeX.
+])
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ピュータ上のサービスを活用し
-                                                  て いる. これらサ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character て (U+3066)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ュータ上のサービスを活用して
-                                                   いる. これらサー...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character い (U+3044)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ータ上のサービスを活用して い
-                                                  る. これらサービス...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...タ上のサービスを活用して いる
-                                                  . これらサービスと...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character こ (U+3053)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...のサービスを活用して いる. こ
-                                                  れらサービスとは...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character れ (U+308C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...サービスを活用して いる. これ
-                                                  らサービスとはク...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ら (U+3089)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ービスを活用して いる. これら
-                                                  サービスとはクラ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 125.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ビスを活用して いる. これらサ
-                                                  ービスとはクラウ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...スを活用して いる. これらサー
-                                                  ビスとはクラウド...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ビ (U+30D3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...を活用して いる. これらサービ
-                                                  スとはクラウドと...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...活用して いる. これらサービス
-                                                  とはクラウドとオ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character と (U+3068)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...用して いる. これらサービスと
-                                                  はクラウドとオン...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character は (U+306F)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...して いる. これらサービスとは
-                                                  クラウドとオンプ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Font shape `JY2/hmc/b/n' undefined
+(Font)              using `JY2/hmc/bx/n' instead on input line 125.
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ク (U+30AF)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...て いる. これらサービスとはク
-                                                  ラウドとオンプレ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ラ (U+30E9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ... いる. これらサービスとはクラ
-                                                  ウドとオンプレサ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ウ (U+30A6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...る. これらサービスとはクラウ
-                                                  ドとオンプレサー...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+[17] (./master_paper.aux)
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ド (U+30C9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 .... これらサービスとはクラウド
-                                                  とオンプレサーバ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character と (U+3068)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ... これらサービスとはクラウドと
-                                                  オンプレサーバー...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character オ (U+30AA)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...れらサービスとはクラウドとオ
-                                                  ンプレサーバーや...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Size substitutions with differences
+(Font)              up to 1.28pt have occurred.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ン (U+30F3)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...らサービスとはクラウドとオン
-                                                  プレサーバーやそ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character プ (U+30D7)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...サービスとはクラウドとオンプ
-                                                  レサーバーやその...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character レ (U+30EC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ービスとはクラウドとオンプレ
-                                                  サーバーやその上...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character サ (U+30B5)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ビスとはクラウドとオンプレサ
-                                                  ーバーやその上で...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...スとはクラウドとオンプレサー
-                                                  バーやその上で稼...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character バ (U+30D0)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...とはクラウドとオンプレサーバ
-                                                  ーやその上で稼働...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ー (U+30FC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...はクラウドとオンプレサーバー
-                                                  やその上で稼働す...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...クラウドとオンプレサーバーや
-                                                  その上で稼働する...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character そ (U+305D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ラウドとオンプレサーバーやそ
-                                                  の上で稼働するシ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character の (U+306E)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ウドとオンプレサーバーやその
-                                                  上で稼働するシス...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 上 (U+4E0A)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ドとオンプレサーバーやその上
-                                                  で稼働するシステ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character で (U+3067)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...とオンプレサーバーやその上で
-                                                  稼働するシステム, ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 稼 (U+7A3C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...オンプレサーバーやその上で稼
-                                                  働するシステム, 利...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Font Warning: Some font shapes were not available, defaults substituted.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 働 (U+50CD)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ンプレサーバーやその上で稼働
-                                                  するシステム, 利用...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character す (U+3059)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...プレサーバーやその上で稼働す
-                                                  るシステム, 利用 ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character る (U+308B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...レサーバーやその上で稼働する
-                                                  システム, 利用 者...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character シ (U+30B7)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...サーバーやその上で稼働するシ
-                                                  ステム, 利用 者が...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ス (U+30B9)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ーバーやその上で稼働するシス
-                                                  テム, 利用 者が持...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character テ (U+30C6)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...バーやその上で稼働するシステ
-                                                  ム, 利用 者が持ち...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ム (U+30E0)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ーやその上で稼働するシステム
-                                                  , 利用 者が持ち込...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 利 (U+5229)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...その上で稼働するシステム, 利
-                                                  用 者が持ち込む PC ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 用 (U+7528)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...の上で稼働するシステム, 利用
-                                                   者が持ち込む PC や...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 者 (U+8005)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...上で稼働するシステム, 利用 者
-                                                  が持ち込む PC やモ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character が (U+304C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...で稼働するシステム, 利用 者が
-                                                  持ち込む PC やモバ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 持 (U+6301)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...稼働するシステム, 利用 者が持
-                                                  ち込む PC やモバイ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+LaTeX Warning: There were undefined references.
 
 
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ち (U+3061)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...働するシステム, 利用 者が持ち
-                                                  込む PC やモバイル...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 込 (U+8FBC)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...するシステム, 利用 者が持ち込
-                                                  む PC やモバイル端...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character む (U+3080)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...るシステム, 利用 者が持ち込む
-                                                   PC やモバイル端末,...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character や (U+3084)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ステム, 利用 者が持ち込む PC や
-                                                  モバイル端末, それ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character モ (U+30E2)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...テム, 利用 者が持ち込む PC やモ
-                                                  バイル端末, それら...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character バ (U+30D0)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ム, 利用 者が持ち込む PC やモバ
-                                                  イル端末, それらを...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character イ (U+30A4)
-(inputenc)                not set up for use with LaTeX.
+LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
 
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ..., 利用 者が持ち込む PC やモバイ
-                                                  ル端末, それらを繋...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ル (U+30EB)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...用 者が持ち込む PC やモバイル
-                                                  端末, それらを繋ぐ...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 端 (U+7AEF)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ... 者が持ち込む PC やモバイル端
-                                                  末, それらを繋ぐ回...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character 末 (U+672B)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...者が持ち込む PC やモバイル端末
-                                                  , それらを繋ぐ回線...
-You may provide a definition with
-\DeclareUnicodeCharacter 
+ ) 
+Here is how much of TeX's memory you used:
+ 6312 strings out of 481134
+ 95093 string characters out of 5917333
+ 317634 words of memory out of 5000000
+ 22298 multiletter control sequences out of 15000+600000
+ 546949 words of font info for 99 fonts, out of 8000000 for 9000
+ 929 hyphenation exceptions out of 8191
+ 30i,10n,36p,1467b,992s stack positions out of 5000i,500n,10000p,200000b,80000s
 
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character そ (U+305D)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...持ち込む PC やモバイル端末, そ
-                                                  れらを繋ぐ回線を...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character れ (U+308C)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...ち込む PC やモバイル端末, それ
-                                                  らを繋ぐ回線を含...
-You may provide a definition with
-\DeclareUnicodeCharacter 
-
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2: Package inputenc Error: Unicode character ら (U+3089)
-(inputenc)                not set up for use with LaTeX.
-
-See the inputenc package documentation for explanation.
-Type  H <return>  for immediate help.
- ...                                              
-                                                  
-l.2 ...込む PC やモバイル端末, それら
-                                                  を繋ぐ回線を含む. ...
-(That makes 100 errors; please try again.) 
-Here is how much of TeX's memory you used:
- 2559 strings out of 480608
- 37297 string characters out of 5903630
- 278427 words of memory out of 5000000
- 18459 multiletter control sequences out of 15000+600000
- 532741 words of font info for 26 fonts, out of 8000000 for 9000
- 1141 hyphenation exceptions out of 8191
- 30i,5n,36p,1517b,225s stack positions out of 5000i,500n,10000p,200000b,80000s
-
-/Users/e185758/ws/2024/kiyama-master/Paper/chapter/abstract.tex:2:  ==> Fatal error occurred, no output PDF file produced!
+Output written on master_paper.dvi (22 pages, 33396 bytes).
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/master_paper.lot	Fri Jan 12 18:13:17 2024 +0900
@@ -0,0 +1,6 @@
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
Binary file Paper/master_paper.pdf has changed
Binary file Paper/master_paper.synctex.gz has changed
--- a/Paper/master_paper.tex	Sat Dec 23 16:37:38 2023 +0900
+++ b/Paper/master_paper.tex	Fri Jan 12 18:13:17 2024 +0900
@@ -9,7 +9,6 @@
 \usepackage[deluxe, multi]{otf}
 
 
-
 %\input{dummy.tex} %% font
 
 \jtitle{システム管理を体験させる学生実験に関する考察}
@@ -99,12 +98,14 @@
 \input{chapter/introduction.tex}
 \input{chapter/technology_overview.tex}
 \input{chapter/ie-system.tex}
+\input{chapter/syskan-class.tex}
+\input{chapter/chatsystem.tex}
 \input{chapter/conclusion.tex}
 
 
 
 % %謝辞
-\addcontentsline{toc}{chapter}{謝辞}
+% \addcontentsline{toc}{chapter}{謝辞}
 \input{chapter/thanks.tex}
 %
 %参考文献
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/master_paper.toc	Fri Jan 12 18:13:17 2024 +0900
@@ -0,0 +1,47 @@
+\contentsline {chapter}{研究関連論文業績}{ii}%
+\contentsline {chapter}{\numberline {第1章}学生が管理する教育研究用情報システム}{4}%
+\contentsline {section}{\numberline {1.1}システム管理チームの構成と活動}{4}%
+\contentsline {section}{\numberline {1.2}システム管理チームの情報共有}{5}%
+\contentsline {section}{\numberline {1.3}研究目的}{5}%
+\contentsline {section}{\numberline {1.4}論文の構成}{5}%
+\contentsline {chapter}{\numberline {第2章}技術概要}{7}%
+\contentsline {section}{\numberline {2.1}仮想化}{8}%
+\contentsline {section}{\numberline {2.2}ハイパーバイザ型}{8}%
+\contentsline {section}{\numberline {2.3}コンテナ型}{8}%
+\contentsline {section}{\numberline {2.4}KVM}{8}%
+\contentsline {section}{\numberline {2.5}Podman}{8}%
+\contentsline {section}{\numberline {2.6}singularity}{8}%
+\contentsline {section}{\numberline {2.7}Slurm}{8}%
+\contentsline {section}{\numberline {2.8}Gitlab}{8}%
+\contentsline {section}{\numberline {2.9}mattermost}{8}%
+\contentsline {section}{\numberline {2.10}scrapbox}{8}%
+\contentsline {section}{\numberline {2.11}Zoom}{8}%
+\contentsline {section}{\numberline {2.12}Psono}{8}%
+\contentsline {section}{\numberline {2.13}LDAP}{8}%
+\contentsline {section}{\numberline {2.14}WordPress}{8}%
+\contentsline {section}{\numberline {2.15}Hugo}{8}%
+\contentsline {section}{\numberline {2.16}Nginx}{8}%
+\contentsline {section}{\numberline {2.17}rsnapshot}{8}%
+\contentsline {section}{\numberline {2.18}Ceph}{8}%
+\contentsline {section}{\numberline {2.19}Vuls}{8}%
+\contentsline {chapter}{\numberline {第3章}現行のシステム}{9}%
+\contentsline {section}{\numberline {3.1}オンプレミス環境}{9}%
+\contentsline {section}{\numberline {3.2}仮想環境}{9}%
+\contentsline {section}{\numberline {3.3}ネットワーク構成}{9}%
+\contentsline {section}{\numberline {3.4}基幹システム}{9}%
+\contentsline {section}{\numberline {3.5}Akatsuki}{9}%
+\contentsline {section}{\numberline {3.6}クラウド環境}{9}%
+\contentsline {chapter}{\numberline {第4章}演習科目での取り組み}{10}%
+\contentsline {section}{\numberline {4.1}web班}{10}%
+\contentsline {section}{\numberline {4.2}server班}{10}%
+\contentsline {section}{\numberline {4.3}network班}{11}%
+\contentsline {section}{\numberline {4.4}security班}{11}%
+\contentsline {chapter}{\numberline {第5章}メッセージングコマンドを使用した手法の提案}{12}%
+\contentsline {section}{\numberline {5.1}システム概要}{12}%
+\contentsline {section}{\numberline {5.2}認証機能の実装}{13}%
+\contentsline {chapter}{\numberline {第6章}まとめ}{14}%
+\contentsline {section}{\numberline {6.1}総括}{14}%
+\contentsline {section}{\numberline {6.2}今後の課題}{14}%
+\contentsline {subsection}{\numberline {6.2.1}}{14}%
+\contentsline {chapter}{謝辞}{15}%
+\contentsline {chapter}{参考文献}{16}%