# HG changeset patch # User Masataka Kohagura # Date 1432026944 -32400 # Node ID cbdddbccca58ae580d4f29c100a2d1442b7ec651 # Parent ef709768b9cf6bc78b7e2c2e714cd3eca93c416d add some images diff -r ef709768b9cf -r cbdddbccca58 2015/0519.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/0519.html Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,271 @@ + + + + + seminar + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+

Cerium での正規表現の実装

+
+
+ Masataka Kohagura 12th, May , 2015 +
+
+ +
+

研究目的

+
    +
  • + 当研究室では並列プログラミングフレームワーク Cerium Task Manager でプログラミングを行っている。 +
  • +
  • + +
  • +
  • +
  • +
  • +
  • +
+
+ +
+

正規表現について

+
    +
  • + 文字列の一部をパターン化して表現する手法 +
  • +
  • + 文章からあるパターン文字列を検索したいときに使用する
    + (e.g. 「ed」が末尾に含まれる英単語を検索する場合 : .*ed)
    + . (ピリオド) : 改行コード以外の任意の1文字
    + * : 直前の文字の 0 回以上の繰返し +
  • +
+
+ +
+

オートマトンについて

+
    +
  • + 入力に対して内部の状況に応じた処理を行う結果を出力する仮想的な自動機械の概念 +
  • +
  • + 正規表現はオートマトンで表現することができる。 +
  • +
  • + 非決定性有限オートマトン NFA(Non-deterministic Finite Automaton)と、非決定性有限オートマトンDFA(Deterministic Finite Automaton)が存在する。 +
  • +
  • + 非決定性有限オートマトン : 1つの入力に対して複数の遷移先が存在する +
  • + +
  • + 決定性有限オートマトン : 1つの入力に対して遷移先が1つだけ +
  • + + +
+
+ +
+

正規表現の基本三演算

+
    +
  • + 正規表現は「連接」「選択」「繰返し」の演算が備えられている
    + R,S という 2 つの正規表現が存在すると仮定する。
    + 連接 「RS」: R の直後に S が続くパターン
    +
      (e.g.) RS, RRS, RSS, RRSS, ...
    +
    + 選択 「R|S」: R もしくは S が出現するパターン
    +
      (e.g.) R, S, RS, ...
    +
    + 繰返し 「R*S」: 「*」の直前(R)が 0 回以上出現するパターン
    +
      (e.g.) S, RS, RRS, RRRS, ...

    +
    +
  • +
  • + 基本三演算は結合順位が存在する
    +
      繰返し > 連接 > 選択
    +
  • +
+
+ +
+

正規表現の他の演算

+
    +
  • + 「R+S」: 「+」の直前のパターンが 1 回以上出現するパターン
    +
      (e.g.) RS, RRS, RRRS, ...
    +
      R+S ≡ R(R*)S
    +
  • +
  • +
  • + 「R?S」: 「?」の直前のパターンが 0 or 1 回出現するパターン
    +
      (e.g.) S, RS
    +
  • +
  • + 「R{1,3}」: 「{}」の直前のパターンが 1 〜 3 回出現するパターン
    +
      (e.g.) R, RR, RRR
    +
  • +
  • + 「R{1,}」: 「{}」の直前のパターンが 1 回以上出現するパターン
    +
      (e.g.) R, RR, RRR, ...
    +
      R+S ≡ R(R*)S ≡ R{1,}S
    +
  • +
+
+ +
+

実装について

+ まずは基本三演算を実装していく。 +
    +
  • + R*(T|S)U をオートマトンで表現してみる +
  • + +
  • + 状態と入力に対する遷移先、遷移したかどうかフラグで管理する。 +
  • +
    +    
    +typedef struct Automaton {
    +    int state;
    +    unsigned char input_char;
    +    int next_state;
    +    bool next_state;
    +};
    +    
    +
    + +
+
+ + + +
+ + diff -r ef709768b9cf -r cbdddbccca58 2015/images/omni/automata.graffle --- a/2015/images/omni/automata.graffle Tue May 12 19:06:48 2015 +0900 +++ b/2015/images/omni/automata.graffle Tue May 19 18:15:44 2015 +0900 @@ -26,7 +26,7 @@ MasterSheets ModificationDate - 2015-05-12 09:00:45 +0000 + 2015-05-19 09:02:19 +0000 Modifier MasaKoha NotesVisible @@ -162,7 +162,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -208,7 +208,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -230,8 +230,8 @@ 76 Points - {332.94665638693533, 421.43563866626829} - {383.05522486929362, 382.06674945605073} + {332.94626920779024, 421.43514714775108} + {383.05388878271509, 382.06505341246304} Style @@ -265,8 +265,8 @@ 75 Points - {332.83681653231946, 309.70283734827473} - {383.16224747322946, 349.79833463131968} + {332.83700839955782, 309.70259713594965} + {383.16291406628415, 349.7974999357881} Style @@ -336,7 +336,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -419,7 +419,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -465,7 +465,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -553,7 +553,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -613,7 +613,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -659,7 +659,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -681,8 +681,8 @@ 50 Points - {235.50683798635345, 381.32649373240451} - {291.49299241852736, 422.1737381184264} + {235.50687163405539, 381.32644773366729} + {291.49311574084857, 422.17356952575943} Style @@ -724,7 +724,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -770,7 +770,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -816,7 +816,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -881,7 +881,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -941,7 +941,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -987,7 +987,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1033,7 +1033,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1079,7 +1079,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1125,7 +1125,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1213,7 +1213,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1273,7 +1273,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1333,7 +1333,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1468,7 +1468,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1514,7 +1514,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1560,7 +1560,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1685,7 +1685,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1745,7 +1745,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1805,7 +1805,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1851,7 +1851,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1897,7 +1897,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1943,7 +1943,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2068,7 +2068,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2128,7 +2128,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2188,7 +2188,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2547,7 +2547,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2575,7 +2575,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2603,7 +2603,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2631,7 +2631,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2679,7 +2679,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2725,7 +2725,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2771,7 +2771,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2817,7 +2817,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2863,7 +2863,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2915,8 +2915,8 @@ 77 Points - {330.23596426509692, 133.72928204007158} - {405.78596582911166, 162.23243758365504} + {330.23181884496449, 133.74028188299729} + {405.76959910769057, 162.27570868118144} Style @@ -2950,8 +2950,8 @@ 76 Points - {329.94247676182721, 207.8576836596805} - {405.57889681808848, 181.2028600319239} + {329.93842406321596, 207.84616637856232} + {405.56297194516981, 181.15778350106811} Style @@ -2985,8 +2985,8 @@ 75 Points - {202.42110664685083, 181.20285947689646} - {277.99603743450689, 208.03448906208871} + {202.43703150011572, 181.1577830274471} + {278.05752933678815, 207.85768410402997} Style @@ -3020,8 +3020,8 @@ 74 Points - {202.23956948087832, 162.30002907992159} - {278.67687346578214, 133.49458635132058} + {202.25546777831687, 162.34239719310079} + {278.73919910059567, 133.66306692293301} Style @@ -3100,7 +3100,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3130,7 +3130,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3160,7 +3160,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3190,7 +3190,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3225,7 +3225,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3289,7 +3289,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3326,7 +3326,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3354,7 +3354,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3382,7 +3382,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3410,7 +3410,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3447,7 +3447,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3475,7 +3475,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3503,7 +3503,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3531,7 +3531,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3568,7 +3568,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3596,7 +3596,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3624,7 +3624,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3652,7 +3652,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3700,7 +3700,7 @@ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3735,7 +3735,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3763,7 +3763,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3791,7 +3791,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3819,7 +3819,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570 + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3881,6 +3881,10204 @@ VPages 1 + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.00000476837158, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{133, 195}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 87 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{121.25, 144}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 86 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{97, 528}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 85 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{448, 521}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{350.75, 487}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{240, 447}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 82 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{336, 602}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 81 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{350.75, 520.99999809265137}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 80 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{244.5, 486.99999809265137}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 79 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{127.5, 462.99999809265137}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 78 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 67 + + ID + 77 + Points + + {104.70475213063608, 508.32823105646827} + {139.29524786936395, 550.67176894353167} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 62 + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 76 + Points + + {383.50602532330151, 578.29189412714004} + {362, 591} + {333, 591} + {310.01910891139488, 545.75637066930858} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 66 + + + + Class + LineGraphic + Head + + ID + 70 + + ID + 75 + Points + + {433.44585140574696, 555.14081066007145} + {491.58528376450658, 534.255771851585} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 66 + + + + Class + LineGraphic + Head + + ID + 66 + + ID + 74 + Points + + {328.59573455919877, 537.72421122562218} + {378.40426544080174, 555.27578877437725} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 65 + + + + Class + LineGraphic + Head + + ID + 69 + + ID + 73 + Points + + {329.21564599060059, 518.86350510780551} + {388.39608888447771, 499.70031407550243} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 65 + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 72 + Points + + {224.21564349058116, 503.13649408266446} + {272.78435650941861, 518.86350591733571} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 63 + + + + Class + LineGraphic + Head + + ID + 68 + + ID + 71 + Points + + {222.96761144171441, 483.72662444595295} + {283.70781297423832, 460.58750057801979} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 63 + + + + Bounds + {{491, 510}, {36, 36}} + Class + ShapedGraphic + ID + 70 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{388, 476}, {36, 36}} + Class + ShapedGraphic + ID + 69 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{283.00000238418579, 436}, {36, 36}} + Class + ShapedGraphic + ID + 68 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{133, 547}, {36, 36}} + Class + ShapedGraphic + ID + 67 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{374, 547}, {64, 36}} + Class + ShapedGraphic + ID + 66 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1,2,4,6} + VerticalPad + 0 + + + + Bounds + {{269, 510}, {64, 36}} + Class + ShapedGraphic + ID + 65 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0,3,5} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 63 + + ID + 64 + Points + + {111.50000901605497, 493.99998192024429} + {163.49998398370036, 493.99998192024429} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 62 + + + + Bounds + {{164, 476}, {64, 36}} + Class + ShapedGraphic + ID + 63 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1,2,4} + VerticalPad + 0 + + + + Bounds + {{75, 476}, {36, 36}} + Class + ShapedGraphic + ID + 62 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 28 + + ID + 61 + Points + + {309.85849730665177, 227.49264095779236} + {286, 202} + {169, 202} + {109.37522790831424, 170.61854100437591} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 36 + + + + Class + LineGraphic + Head + + ID + 28 + + ID + 58 + Points + + {235.84003741832387, 146.53527819426293} + {217.75, 119} + {158, 119} + {108.43228776787772, 151.79094809201933} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 32 + + + + Class + LineGraphic + Head + + ID + 28 + + ID + 57 + Points + + {150.99999101191835, 83} + {94, 83} + {93.23415868383249, 143.50146397723245} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 29 + + + + Bounds + {{110, 251}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 56 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{350.75, 216}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 55 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{274.25, 136}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 54 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{276, 216}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{196, 216}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 52 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{197.75, 136}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 51 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{197.75, 60}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 50 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{110, 108.82848930358887}, {20, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 49 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 38 + + ID + 48 + Points + + {101.06079622204659, 178.65697884555848} + {161.40745125733707, 303.35842627500784} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 37 + + ID + 47 + Points + + {341.00000901325291, 241} + {380.49999098674709, 241} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 36 + + + + Class + LineGraphic + Head + + ID + 36 + + ID + 46 + Points + + {264.5000090132512, 241.00000668960953} + {303.99999098674783, 241.00000668960953} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 35 + + + + Class + LineGraphic + Head + + ID + 35 + + ID + 45 + Points + + {188.00000901324518, 240.99998168601508} + {227.49999098675747, 240.99998168601508} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 34 + + + + Class + LineGraphic + Head + + ID + 34 + + ID + 44 + Points + + {105.8527469377333, 175.30632388531663} + {156.54784725488111, 227.79046812985831} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 33 + + ID + 43 + Points + + {264.50000901325291, 162} + {303.99999098674709, 162} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 32 + + + + Class + LineGraphic + Head + + ID + 32 + + ID + 42 + Points + + {188.00000901325021, 162.00000875106937} + {227.49999098674854, 162.00000875106937} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 31 + + + + Class + LineGraphic + Head + + ID + 31 + + ID + 41 + Points + + {111.50000901325102, 162.00000708323543} + {150.99999098674797, 162.00000708323543} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 30 + + ID + 40 + Points + + {187.99973596794496, 83.100816620860073} + {227.50267519207952, 83.316092820126812} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 29 + + + + Class + LineGraphic + Head + + ID + 29 + + ID + 39 + Points + + {105.88019247986075, 148.72026207343632} + {156.68338351393629, 96.341148654087363} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Bounds + {{151.5, 302}, {36, 36}} + Class + ShapedGraphic + ID + 38 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{381, 223}, {36, 36}} + Class + ShapedGraphic + ID + 37 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{304.5, 223}, {36, 36}} + Class + ShapedGraphic + ID + 36 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 6} + VerticalPad + 0 + + + + Bounds + {{228, 223}, {36, 36}} + Class + ShapedGraphic + ID + 35 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 5} + VerticalPad + 0 + + + + Bounds + {{151.5, 223}, {36, 36}} + Class + ShapedGraphic + ID + 34 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4} + VerticalPad + 0 + + + + Bounds + {{304.5, 144}, {36, 36}} + Class + ShapedGraphic + ID + 33 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{228, 144}, {36, 36}} + Class + ShapedGraphic + ID + 32 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{151.5, 144}, {36, 36}} + Class + ShapedGraphic + ID + 31 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 2} + VerticalPad + 0 + + + + Bounds + {{228, 65}, {36, 36}} + Class + ShapedGraphic + ID + 30 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 E} + VerticalPad + 0 + + + + Bounds + {{151.5, 65}, {36, 36}} + Class + ShapedGraphic + ID + 29 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{75, 144}, {36, 36}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Bounds + {{59, 33}, {110, 20}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 3 + Shape + Circle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 (a|aa|aaa)*b} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + キャンバス 4 + UniqueID + 4 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.00000476837158, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{15.133046930567234, 360.43613278830304}, {101.16651066633608, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 121 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8c\'9f\'8d\'f5\'95\'b6\'8e\'9a\'97\'f1\'82\'cc\'8f\'f3\'91\'d4} + VerticalPad + 0 + + + + Bounds + {{184.25991014998112, 422.56704319295386}, {16, 16}} + Class + ShapedGraphic + ID + 120 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{168.25990780273747, 422.56705288688306}, {16, 16}} + Class + ShapedGraphic + ID + 119 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{152.25991052623101, 422.56704548905452}, {16, 16}} + Class + ShapedGraphic + ID + 118 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{136.25991052623101, 422.5670424750582}, {16, 16}} + Class + ShapedGraphic + ID + 117 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{120.25991324972458, 422.56703507722966}, {16, 16}} + Class + ShapedGraphic + ID + 116 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{184.25991154119595, 406.56700946241557}, {16, 16}} + Class + ShapedGraphic + ID + 115 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{168.2599091939523, 406.56701915634477}, {16, 16}} + Class + ShapedGraphic + ID + 114 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{152.25991191744583, 406.56701175851623}, {16, 16}} + Class + ShapedGraphic + ID + 113 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{136.25991191744583, 406.56700874451991}, {16, 16}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{120.25991464093937, 406.56700134669137}, {16, 16}} + Class + ShapedGraphic + ID + 111 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{184.25990911771351, 390.56699575507542}, {16, 16}} + Class + ShapedGraphic + ID + 110 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{168.25990677046985, 390.56700544900463}, {16, 16}} + Class + ShapedGraphic + ID + 109 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{152.25990949396339, 390.56699805117609}, {16, 16}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{136.25990949396339, 390.56699503717977}, {16, 16}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{120.25991221745693, 390.56698763935123}, {16, 16}} + Class + ShapedGraphic + ID + 106 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{184.25991154119595, 374.56699575507537}, {16, 16}} + Class + ShapedGraphic + ID + 105 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{168.2599091939523, 374.56700544900457}, {16, 16}} + Class + ShapedGraphic + ID + 104 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{152.25991191744583, 374.56699805117609}, {16, 16}} + Class + ShapedGraphic + ID + 103 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{136.25991191744583, 374.56699503717971}, {16, 16}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{120.25991464093937, 374.56698763935123}, {16, 16}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{184.25990911771348, 358.56698204773522}, {16, 16}} + Class + ShapedGraphic + ID + 100 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + + + + Bounds + {{168.25990677046985, 358.56699174166442}, {16, 16}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + + + + Bounds + {{152.25990949396339, 358.56698434383594}, {16, 16}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + + + + Bounds + {{136.25990949396339, 358.56698132983956}, {16, 16}} + Class + ShapedGraphic + ID + 97 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + + + + Bounds + {{120.25991221745693, 358.56697393201108}, {16, 16}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + + + + Bounds + {{172.69713693565586, 252.66852293351559}, {11.654188857452198, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 94 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 E} + VerticalPad + 0 + + + + Bounds + {{158.81939181579395, 248.32599037628128}, {16, 16}} + Class + ShapedGraphic + ID + 93 + Shape + Circle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0.171933 + g + 0.174178 + r + 0.783203 + + + + Text + + VerticalPad + 0 + + + + Bounds + {{199.52260964828611, 185.92510033738361}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 90 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{205.72687397529899, 240.77903356775883}, {10.572687313505725, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 89 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{185.462556624413, 223.17621338778099}, {10.572687313505725, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{131.73127873232735, 223.17621338778099}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 87 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{106.53421520122184, 276.21145606533719}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 86 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + VerticalPad + 0 + + + + Bounds + {{105.7268731350573, 240.77904217209289}, {10.572687313505725, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 85 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{99.522614365632293, 211.45593925176553}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 78 + + ID + 83 + Points + + {192.75992668892712, 200.45595489333724} + {234.6189362355511, 200.45595489333724} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 72 + + + + Class + LineGraphic + Head + + ID + 79 + + ID + 82 + Points + + {192.7599345525868, 256.32601093596094} + {234.61893669598206, 256.32601093596094} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 73 + + + + Class + LineGraphic + Head + + ID + 80 + + ID + 81 + Points + + {84.110051188212125, 270.92222233608703} + {144.60247644288069, 309.02009772385861} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 63 + + + + Bounds + {{142.25992497554145, 300.88109305635635}, {36, 36}} + Class + ShapedGraphic + ID + 80 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Bounds + {{235.11894570773256, 238.32600982169441}, {36, 36}} + Class + ShapedGraphic + ID + 79 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Bounds + {{235.11894524460004, 182.45595325537423}, {36, 36}} + Class + ShapedGraphic + ID + 78 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 73 + + ID + 77 + Points + + {99.019843472221766, 256.32601100545992} + {127.75990253794716, 256.32601100545992} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 63 + + + + Class + LineGraphic + Head + + ID + 72 + + ID + 76 + Points + + {142.13816880382609, 241.01830647515831} + {128.25991854084407, 229.29515611165553} + {142.94136591853791, 216.06386079000603} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 73 + + + + Class + LineGraphic + Head + + ID + 73 + + ID + 75 + Points + + {181.86460357254816, 214.2169068145906} + {204.84580835809066, 228.85462747359279} + {182.26120753104942, 242.7700158985709} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 72 + + + + Class + LineGraphic + Head + + ID + 72 + + ID + 74 + Points + + {85.736578422010467, 242.37470385837165} + {137.19656033817435, 213.42888973366072} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 63 + + + + Bounds + {{128.25991854084407, 238.32599966350566}, {64, 36}} + Class + ShapedGraphic + ID + 73 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 2, 4} + VerticalPad + 0 + + + + Bounds + {{128.25991067988329, 182.45594595820822}, {64, 36}} + Class + ShapedGraphic + ID + 72 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1,3} + VerticalPad + 0 + + + + Bounds + {{25.550661007638848, 133.58591043133669}, {60.792953491210938, 29}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 71 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 Text :} + VerticalPad + 0 + + + + Bounds + {{19.823789925473477, 72.246696642289152}, {185.02201843261719, 38}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 70 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 a b(a b)+ +\f1 \'82\'f0\'8c\'9f\'8d\'f5} + VerticalPad + 0 + + + + Bounds + {{144.8524283256784, 112.12334798090222}, {75.171806335449219, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 66 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'95\'aa\'8a\'84\'83\'7c\'83\'43\'83\'93\'83\'67} + VerticalPad + 0 + + + + Class + LineGraphic + ID + 65 + Points + + {181.93832995750043, 133.58590107230253} + {181.93832995750043, 148.58590408266321} + {181.93832995750043, 162.58590194326672} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{23.348018340940147, 238.32599319194165}, {75.171806335449219, 36}} + Class + ShapedGraphic + ID + 63 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0,1,2,3,4} + VerticalPad + 0 + + + + Bounds + {{191.0286342513825, 148.58590408266321}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 9 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + VerticalPad + 0 + + + + Bounds + {{170.52423129868973, 148.58590338796455}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 8 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + VerticalPad + 0 + + + + Bounds + {{150.01982763759369, 148.58590338796444}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 7 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + VerticalPad + 0 + + + + Bounds + {{129.51542202803446, 148.58590338796432}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 6 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + VerticalPad + 0 + + + + Bounds + {{113.51542080972102, 148.58590292483188}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 4 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + VerticalPad + 0 + + + + Bounds + {{86.343615497886034, 133.58590107230253}, {147.83259582519531, 29}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 3 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 cc a b a b cc} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + abab + UniqueID + 5 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.00000476837158, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{461.96604328423427, 594.33013543624941}, {37.41247492948429, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 121 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2n+4} + VerticalPad + 0 + + + + Bounds + {{382.9514670034464, 594.3301473281881}, {37.41247492948429, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 117 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2n+3} + VerticalPad + 0 + + + + Bounds + {{313.59224172033595, 594.33013491109512}, {7, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 116 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{241.39098705096154, 596.19420197524892}, {7, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 115 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{165.21845126064406, 596.1942138671875}, {7, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 114 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{402.60694417936429, 511.78644610004096}, {17.756995865544638, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 113 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{402.60694606738605, 555.13592605256463}, {17.756995865544638, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 112 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{322.81554294740465, 555.13594983644134}, {17.756995865544638, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 111 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Bounds + {{248.54369622416718, 555.13595036159609}, {17.756995865544638, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 110 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + VerticalPad + 0 + + + + Bounds + {{176.94175248771276, 555.1359379445031}, {17.756995865544638, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 109 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 102 + + ID + 108 + Points + + {441.44173757391923, 561.23049433994026} + {430.83495467286014, 536.89321879673616} + {392.13593052042353, 536.89321879673616} + {381.52915266740933, 561.23046111575968} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 103 + + + + Class + LineGraphic + Head + + ID + 103 + + ID + 107 + Points + + {392.6359395336703, 578.19421183046063} + {430.33494565961337, 578.19423036535329} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 102 + + + + Class + LineGraphic + Head + + ID + 102 + + ID + 106 + Points + + {317.93690349508432, 578.19421301719728} + {355.63592150138993, 578.19421301719728} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 101 + + + + Class + LineGraphic + Head + + ID + 101 + + ID + 105 + Points + + {243.23787889479541, 578.19421582267989} + {280.93688545701269, 578.19421582267989} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 100 + + + + Class + LineGraphic + Head + + ID + 100 + + ID + 104 + Points + + {168.53884762555231, 578.19418286048324} + {206.23786086931312, 578.19418286048324} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Bounds + {{430.83495467286014, 560.19423946096913}, {36, 36}} + Class + ShapedGraphic + ID + 103 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4} + VerticalPad + 0 + + + + Bounds + {{356.13593052042353, 560.19420273484479}, {36, 36}} + Class + ShapedGraphic + ID + 102 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{281.43689447604856, 560.19421515193801}, {36, 36}} + Class + ShapedGraphic + ID + 101 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 2} + VerticalPad + 0 + + + + Bounds + {{206.73786987576528, 560.19420273484491}, {36, 36}} + Class + ShapedGraphic + ID + 100 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{132.03883861908881, 560.1941903177518}, {36, 36}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + VerticalPad + 0 + + + + Bounds + {{152.91262560666536, 507.6557767188275}, {50.155724023639763, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 97 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ab(ab)+} + VerticalPad + 0 + + + + Bounds + {{105.99942245308354, 202.56750755530808}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 96 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4} + VerticalPad + 0 + + + + Bounds + {{299.01494402411629, 204.44603359829614}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{281.25794210649678, 204.44603302680844}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 94 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{263.50094365240966, 204.4460371505499}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 93 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{245.74394697444885, 204.44603197346544}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 92 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{105.9994224530836, 177.7001021277373}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 91 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{281.25794728286957, 177.7001225412462}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 90 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{263.50094536525006, 177.7001219697585}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 89 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{245.74394691116296, 177.70012609349996}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 88 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{227.98695023320212, 177.7001209164155}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 87 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{105.37636510699315, 152.83270199369272}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 86 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{263.03486514631686, 150.95421671974148}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 85 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{245.27786322869738, 150.95421614825378}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 84 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{227.52086477461026, 150.95422027199524}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 83 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{209.76386809664942, 150.95421509491078}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 82 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{105.37636510699313, 126.08680380158245}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 81 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{245.27785314628105, 124.20831185191111}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 80 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{227.5208512286616, 124.2083112804234}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 79 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{209.76385277457447, 124.20831540416486}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 78 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{192.00685609661363, 124.2083102270804}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 77 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{98.212499347541979, 437.58091941115924}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 75 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4} + VerticalPad + 0 + + + + Bounds + {{98.835555272784546, 414.55919024454261}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 74 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{291.97740971642241, 439.60749866871896}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 73 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{274.22040779880302, 439.60749809723126}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 72 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{256.46340934471579, 439.60750222097272}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{238.70641266675506, 439.60749704388826}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{253.76949560548073, 412.68069704185541}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{236.01249368786128, 412.68069647036771}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{218.2554952337741, 412.68070059410917}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 67 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{200.49849855581331, 412.68069541702471}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 66 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{289.67032058403396, 317.7055878390201}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{271.91332212994683, 317.70559196276156}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{218.64235575050944, 317.70559288427103}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{254.15634272998716, 317.70560313273307}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{236.39934427590006, 317.70560725647454}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 61 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{296.83417821243086, 29.595008841759977}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 60 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{279.07717975834373, 29.595012965501439}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 59 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{225.80621337890625, 29.595013887010914}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 58 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{105.37636510699321, 99.340911350845161}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 76 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{105.99941805909054, 74.473511898654493}, {28.037382844379664, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 56 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{82.634932355440839, 31.775703661558047}, {67.289718627929688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 55 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'e4\'8a\'72\'89\'f1\'90\'94} + VerticalPad + 0 + + + + Bounds + {{225.80622343638524, 97.462414136638088}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 54 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{208.04922151876579, 97.462413565150385}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 53 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{190.29222306467867, 97.462417688891847}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{172.53522638671782, 97.462412511807386}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 51 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{227.98695552645836, 52.034264205695862}, {33.333260498825865, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 50 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'e4\'8a\'72} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 43 + + ID + 49 + Points + + {163.6573185167029, 47.60201286540677} + {163.65878862002339, 70.466511628354411} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + FilledArrow + Width + 0.5 + + + Tail + + ID + 34 + + + + Bounds + {{208.04922519061574, 70.716513240174663}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 46 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{190.2922232729963, 70.716512668686931}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 45 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{172.53522481890906, 70.716516792428394}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 44 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{154.77822814094827, 70.716511615343933}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 43 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{118.01810948128036, 2.1806880406605735}, {67.289718627929688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 42 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8c\'9f\'8d\'f5\'95\'b6\'8e\'9a\'97\'f1} + VerticalPad + 0 + + + + Bounds + {{195.58820201739746, 2.1806853323406479}, {50.155724023639763, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 41 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 abab} + VerticalPad + 0 + + + + Bounds + {{261.320200358384, 29.595024135472997}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 39 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{243.56320190429688, 29.595028259214459}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 38 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{208.04922502769159, 29.595025024403228}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 37 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{190.29222657360435, 29.595017348407097}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 36 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{172.53522811951706, 29.595017830263075}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 35 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{154.77823365502258, 29.59501677692019}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 34 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{98.212499347542092, 387.63240200777341}, {29.283488748574314, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 32 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{98.835552299639417, 362.58409676563406}, {28.037382844379664, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 31 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{75.471066595989711, 319.88628852853765}, {67.289718627929688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 30 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'e4\'8a\'72\'89\'f1\'90\'94} + VerticalPad + 0 + + + + Bounds + {{236.39935778503153, 385.75389683583984}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 25 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{218.64235586741208, 385.75389626435214}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 24 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{200.8853574133249, 385.7539003880936}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 23 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{183.12836073536408, 385.75389521100914}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 22 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{220.82308976700727, 340.14484907267547}, {33.333260498825865, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 21 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'e4\'8a\'72} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 15 + + ID + 20 + Points + + {174.24986751365446, 335.71259878882381} + {174.24986751365446, 358.57710164948503} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + FilledArrow + Width + 0.5 + + + Tail + + ID + 4 + + + + Class + LineGraphic + Head + + ID + 16 + + ID + 19 + Points + + {192.00686879582588, 335.71259828840829} + {192.00686879582588, 358.57709754430306} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + FilledArrow + Width + 0.5 + + + Tail + + ID + 5 + + + + Class + LineGraphic + Head + + ID + 17 + + ID + 18 + Points + + {209.76385898823742, 335.71260597002066} + {209.76385898823742, 358.57709811017452} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + FilledArrow + Width + 0.5 + + + Tail + + ID + 6 + + + + Bounds + {{200.88535943116463, 358.82709810715426}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 17 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{183.12835751354521, 358.8270975356665}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 16 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{165.371359059458, 358.82710165940796}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 15 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{147.61436238149722, 358.8270964823235}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 14 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{110.85424372182925, 290.29127290764018}, {67.289718627929688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 13 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8c\'9f\'8d\'f5\'95\'b6\'8e\'9a\'97\'f1} + VerticalPad + 0 + + + + Bounds + {{188.42433625794635, 290.29127019932025}, {50.155724023639763, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 11 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 abab} + VerticalPad + 0 + + + + Bounds + {{200.88535926824051, 317.70560989138284}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 6 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{183.12836081415324, 317.7056022153867}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 5 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{165.371362360066, 317.70560269724268}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 4 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{147.61436789557149, 317.7056016438998}, {17.756995865544638, 17.756996081658102}} + Class + ShapedGraphic + ID + 3 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + bmabab + UniqueID + 6 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.00000476837158, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{133.14514629016509, 60.882351233472519}, {15.933499657484049, 111.86708831787109}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0.171933 + g + 0.174178 + r + 0.783203 + + + + + + Bounds + {{101.21166634991867, 60.882352371113058}, {15.933499657484049, 111.86708831787109}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0.171933 + g + 0.174178 + r + 0.783203 + + + + + + Bounds + {{85.211656731782412, 61.015331094853167}, {15.933499657484049, 111.86708831787109}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0.171933 + g + 0.174178 + r + 0.783203 + + + + + + Bounds + {{69.145151333223026, 156.88242065719965}, {16, 16}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{69.14515272443785, 140.88238692666135}, {16, 16}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 b} + + + + Bounds + {{149.14515328952302, 156.88242065719922}, {16, 16}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{133.14515094227943, 156.88243035112842}, {16, 16}} + Class + ShapedGraphic + ID + 141 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{117.14515366577291, 156.88242295329988}, {16, 16}} + Class + ShapedGraphic + ID + 140 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{101.1451536657729, 156.88241993930356}, {16, 16}} + Class + ShapedGraphic + ID + 139 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{85.145156389266461, 156.88241254147502}, {16, 16}} + Class + ShapedGraphic + ID + 138 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{149.14515468073785, 140.88238692666093}, {16, 16}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{133.14515233349425, 140.88239662059013}, {16, 16}} + Class + ShapedGraphic + ID + 136 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{117.14515505698773, 140.88238922276159}, {16, 16}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{101.14515505698772, 140.88238620876527}, {16, 16}} + Class + ShapedGraphic + ID + 134 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{85.145157780481256, 140.88237881093673}, {16, 16}} + Class + ShapedGraphic + ID + 133 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{69.14516334613586, 124.8824216320549}, {16, 16}} + Class + ShapedGraphic + ID + 132 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{69.145164737350683, 108.88238790151659}, {16, 16}} + Class + ShapedGraphic + ID + 131 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{69.145162313868241, 92.882374194176379}, {16, 16}} + Class + ShapedGraphic + ID + 130 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a} + + + + Bounds + {{69.145164737350683, 76.882374194176322}, {16, 16}} + Class + ShapedGraphic + ID + 129 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 c} + + + + Bounds + {{149.14516530243588, 124.88242163205447}, {16, 16}} + Class + ShapedGraphic + ID + 120 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{133.14516295519223, 124.88243132598367}, {16, 16}} + Class + ShapedGraphic + ID + 119 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{117.14516567868574, 124.88242392815513}, {16, 16}} + Class + ShapedGraphic + ID + 118 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{101.14516567868571, 124.88242091415881}, {16, 16}} + Class + ShapedGraphic + ID + 117 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{85.14516840217928, 124.88241351633027}, {16, 16}} + Class + ShapedGraphic + ID + 116 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{149.14516669365071, 108.88238790151617}, {16, 16}} + Class + ShapedGraphic + ID + 115 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{133.14516434640706, 108.88239759544537}, {16, 16}} + Class + ShapedGraphic + ID + 114 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{117.14516706990057, 108.88239019761683}, {16, 16}} + Class + ShapedGraphic + ID + 113 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{101.14516706990054, 108.88238718362051}, {16, 16}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{85.145169793394075, 108.88237978579197}, {16, 16}} + Class + ShapedGraphic + ID + 111 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{149.14516427016827, 92.882374194175952}, {16, 16}} + Class + ShapedGraphic + ID + 110 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{133.14516192292461, 92.882383888105153}, {16, 16}} + Class + ShapedGraphic + ID + 109 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{117.14516464641812, 92.882376490276613}, {16, 16}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{101.1451646464181, 92.882373476280293}, {16, 16}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{85.145167369911633, 92.882366078451753}, {16, 16}} + Class + ShapedGraphic + ID + 106 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{149.14516669365071, 76.882374194175895}, {16, 16}} + Class + ShapedGraphic + ID + 105 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{133.14516434640706, 76.882383888105096}, {16, 16}} + Class + ShapedGraphic + ID + 104 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{117.14516706990057, 76.882376490276613}, {16, 16}} + Class + ShapedGraphic + ID + 103 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{101.14516706990054, 76.882373476280236}, {16, 16}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0} + + + + Bounds + {{85.145169793394075, 76.882366078451753}, {16, 16}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{149.14516427016821, 60.882360486835765}, {16, 16}} + Class + ShapedGraphic + ID + 100 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + + + + Bounds + {{133.14516192292461, 60.882370180764966}, {16, 16}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + + + + Bounds + {{117.14516464641812, 60.882362782936482}, {16, 16}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + + + + Bounds + {{101.1451646464181, 60.882359768940105}, {16, 16}} + Class + ShapedGraphic + ID + 97 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + + + + Bounds + {{85.145167369911633, 60.882352371111622}, {16, 16}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + + + + Bounds + {{185.85262259600094, 36.340633783311297}, {22.815534591674805, 12}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 128 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 4} + VerticalPad + 0 + + + + Bounds + {{157.76699467354362, 36.340633212081521}, {22.815534591674805, 12}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 127 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 3} + VerticalPad + 0 + + + + Bounds + {{148.00132680615536, 36.340634228749238}, {22.815534591674805, 12}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 126 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 2} + VerticalPad + 0 + + + + Bounds + {{129.68137151220313, 36.340632285155571}, {22.815534591674805, 12}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 125 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 1} + VerticalPad + 0 + + + + Bounds + {{101.59574493853523, 36.34063425143183}, {22.815534591674805, 12}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 0} + VerticalPad + 0 + + + + Bounds + {{119.3605378890668, 28.147784708789185}, {80.097091674804688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 122 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ( a | a a ) * b} + VerticalPad + 0 + + + + Bounds + {{46.601943042031344, 28.147784509024643}, {67.289718627929688, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 42 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 grep} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + aaa + UniqueID + 7 + VPages + 1 + SmartAlignmentGuidesActive YES @@ -3891,7 +14089,7 @@ WindowInfo CurrentSheet - 1 + 6 ExpandedCanvases @@ -3900,7 +14098,7 @@ Frame - {{192, 125}, {1016, 925}} + {{27, 195}, {1211, 982}} ListView OutlineWidth @@ -3914,9 +14112,9 @@ SidebarWidth 120 VisibleRegion - {{-116.99999999999997, 0}, {793.69368346497379, 705.40539631449985}} + {{0, 0}, {316.47057935853337, 247.0588165995986}} Zoom - 1.1100000143051147 + 3.4000000953674316 ZoomValues @@ -3934,6 +14132,26 @@ 1 1 + + キャンバス 4 + 1 + 1 + + + abab + 3.2100000381469727 + 3.2999999523162842 + + + bmabab + 2.059999942779541 + 2.0099999904632568 + + + aaa + 3.4000000953674316 + 3.6500000953674316 + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/abab.pdf Binary file 2015/images/vector/abab.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/abab.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/abab.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/ababautomata.pdf Binary file 2015/images/vector/ababautomata.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/ababautomata.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/ababautomata.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/ababtable.pdf Binary file 2015/images/vector/ababtable.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/ababtable.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/ababtable.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/automata.pdf Binary file 2015/images/vector/automata.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/automata.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/automata.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/dfa2.pdf Binary file 2015/images/vector/dfa2.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/dfa2.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/dfa2.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/dfa2tosubset.pdf Binary file 2015/images/vector/dfa2tosubset.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/dfa2tosubset.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/dfa2tosubset.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/grep.pdf Binary file 2015/images/vector/grep.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/grep.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/grep.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/greptable.pdf Binary file 2015/images/vector/greptable.pdf has changed diff -r ef709768b9cf -r cbdddbccca58 2015/images/vector/greptable.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/images/vector/greptable.svg Tue May 19 18:15:44 2015 +0900 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +