diff --git a/2014OC/.htaccess b/2014OC/.htaccess deleted file mode 100644 index 3a8c330..0000000 --- a/2014OC/.htaccess +++ /dev/null @@ -1,4 +0,0 @@ -AddHandler cgi-script .rb -AddType "text/html; charset=UTF-8" .rb -AddType "text/html; charset=UTF-8" .html -Options +ExecCGI diff --git a/2014OC/2015test/index.html b/2014OC/2015test/index.html deleted file mode 100644 index f97a2be..0000000 --- a/2014OC/2015test/index.html +++ /dev/null @@ -1,42 +0,0 @@ - - - -2015オアシス酒田祭 - - - - -

2015オアシス酒田祭

-

入力してね

-
-

名前:(ニックネーム)

-

生別:

-

年代:

-

出身地:

-

キャラ:

-

(好きなキャラを選んでください)

-
-代替テキスト -
- - diff --git a/2014OC/2015test/test.rb b/2014OC/2015test/test.rb deleted file mode 100755 index 6e482a6..0000000 --- a/2014OC/2015test/test.rb +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -require 'cgi' -require 'sqlite3' -require './magic.rb' - -c = CGI.new(:accept_charset => "UTF-8") -db = SQLite3::Database.new("./sql/stamp.sq3") - -begin - result = db.execute("select * from main;") - max = "select max(id) from main;" -rescue - db.execute("create table main(id INTEGER PRIMARY KEY AUTOINCREMENT,name,sex,age,aria,cal,stamp_status,stamp_img,exp INTEGER,rank INTEGER,magic)"); - db.execute("insert into main(name,sex,age,aria,cal,stamp_status,stamp_img,exp,rank,magic) values('名前','性別','年代','住所','職業','スタンプ状況','スタンプ画像','レベル','当選順位','本人確認用')"); - result = db.execute("select * from main;") - max = "select max(id) from main;" -end - -id = c.cookies["id"][0] -c_magic = c.cookies["magic"][0] -name = c["name"] -cal = c["cal"] -age = c["age"] -sex = c["sex"] -aria = c["aria"] - -begin -sel = 'select * from main where id=? AND magic=?' -h = db.execute(sel, id.to_i, c_magic.to_i) -rescue -h == [] -end - -if id != nil && h != [] -update = 'update main set name=?, cal=?, age=?, sex=?, aria=? where id=? and magic=?' -mg = c_magic -db.execute(update, name, cal, age, sex, aria, id.to_i, mg.to_i) -else -code = magic() -id = db.execute(max).flatten(2)[0].to_i + 1 -mg = code[id] -sql = "insert into main(name,sex,age,aria,cal,stamp_status,stamp_img,exp,rank,magic) values (?,?,?,?,?,?,?,?,?,?);" -db.execute(sql,name,sex,age,aria,cal,'000010000','n,n,n,n,kamo1,n,n,n,n',0,0,mg); #初期値 -end - -expires = "SAT, 26 Oct 2015 00:00:00 GMT" - - -printf(<<_EOS_,id, expries, mg.to_s, exprires) -Content-type: text/html; charset=UTF-8 -Set-Cookie:id=%s ;expires=%s -Set-Cookie:magic=%s;expires=%s - - - -#{id} - - - -

-・#{name}
・#{cal}
・#{age}
・#{sex}
・#{aria}
・#{id} -

- -

-tukaretanaaaa、#{names} -

- - -_EOS_ diff --git a/2014OC/Bingo.css b/2014OC/Bingo.css deleted file mode 100644 index 171d05e..0000000 --- a/2014OC/Bingo.css +++ /dev/null @@ -1,76 +0,0 @@ -html,body { - width: 100%; - height: 100%; -} -div.outflam{ - width: 800px; - height: 1240px; - margin-left: auto; - margin-right: auto; - padding: 0 auto; - } - -div.top{ - background: #214e4d; - background-image: url("png/top.png"); - background-repeat: no-repeat; - border: thin solid #214e4d; - width: 100%; - height: 180px; - margin-top:0 auto; - margin-bottom:0 auto; - margin-left: auto; - margin-right: auto; - -} - -p,h3 { - margin:0; - padding-left: 5%; - font-weight: 900; - height: 5%; - width: 95%; - border: thin solid #214e4d; -} - -div.center{ - border: thin solid #214e4d; - background: #214e4d; - width: 100%; - height: 45%; - margin-left: auto; - margin-right: auto; -} - -table { - background: white; - margin-left: auto; - margin-right: auto; - margin-top: 1%; - margin-bottom: auto; -} - -div.bottom{ - background: #214e4d; - background-image: url("png/bottom.png"); - background-repeat: no-repeat; - background-position: center bottom; - border:thin solid #214e4d; - width: 100%; - height: 150px; - margin-left: auto; - margin-right: auto; -} - -div.bottom img { - float: left; - margin-left: 15%; -} - -div.charSTATUS { - clear: right; - margin-top: 7%; - background: rgba(255,255,255,0.75); - width: 70%; -} - diff --git a/2014OC/Bingo.rb b/2014OC/Bingo.rb deleted file mode 100755 index d593593..0000000 --- a/2014OC/Bingo.rb +++ /dev/null @@ -1,436 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -require 'sqlite3' -require 'cgi' -require 'date' -require './sub.rb' -require 'net/http' - -c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") -db = SQLite3::Database.new("sql/stamp.sq3") - -id = c.cookies["id"][0].to_i -magic = c.cookies["magic"][0].to_i -err = 0 # 不正な動きであれば負の値になる -sidesize = 3 -message = "はりきって行きましょう!
" # ビンゴ用テキスト - -print("Content-type: text/html; charset=UTF-8 \n\n") - -getcom = ARGV[0] - -### DELETE TABLE ### - -del = 'DELETE FROM main WHERE id=?' -if getcom == 'ududlrlrba' - db.execute(del, id) -end - -###### - -##### CHECKING UID ##### - -sql = "SELECT stamp_status, stamp_img, name, job, sex, exp FROM main WHERE id=? AND magic=?" -begin - user_data = db.execute(sql, id, magic) -rescue - user_data = [] -end - -if user_data == [] # ログインエラー(-1) - err -= 1 -end - -### LOGIN ERROR HTML ### - -if err == -1 - print' - - - - - -たいとる - -' -print' -

ログインに失敗しました。

-

-アカウント登録ページへ接続中…
-* 3秒経っても移動しない場合はこちらから移動して下さい。 -

- - -' - exit -end - -###### - -########## - -##### RE-ARRAYING STAMP_STATUS AND STAMP_IMG ##### - -# stamp status -stamp_st = user_data[0][0] -stamp_st = stamp_st.split(//) # 一文字ずつ分けて配列にする -stamp_st = stamp_st.map {|s| s.to_i} # 配列内の文字列を数列になおす - -# stamp img -stamp_img = user_data[0][1] -stamp_img = stamp_img.split(",") # 文字列を","で区切って配列にする - -########## - -##### STAMPPING ##### - -### Making randam number ### - -def taiou(sidesize) - srand(987654321) - stamp = Hash.new("n") - stamp_name = ["kamo1", "kamo2", "kamo3", "kamo4", "kamo5", "kamo6", "kamo7", "kamo8", "kamo9"] - (sidesize**2).times do |n| - stamp[rand(10000000)] = stamp_name[n] - end - stamp -end - -###### - -##### Checking bingo method ##### - -def bingocheck(start, sidesize, stepon, stamp, decision, bingo) - nbox = [] - setbox = Hash.new - if sidesize == stepon - x = sidesize - else - x = 1 - end - x.times do |m| - start.step(sidesize*sidesize - 1, stepon) do |n| - nbox << n + m - if nbox.length == sidesize - dbox = Array.new(0) # next bingo or reach numbers(bingoed -> nothing) - for i in nbox - if stamp[i] == 0 - dbox << i - end - end - # sidesizeにdecisionの値を加えることで、ビンゴ、次ビンゴ、リーチをそれぞれdecisionに0,1,2を加えることで表現。 - if dbox.length == decision - setbox[dbox] = nbox - bingo << setbox - setbox = Hash.new - nbox = [] - else - nbox = [] - end - end - end - end -end -# bingo[{[ビンゴまたはリーチに必要な番号] => [ビンゴまたはリーチのラインを形成する番号]}] -########## - -### Checking Access Cord(AC) ### - -getAC = ARGV[0].to_i # URL?以降の引数を取得 -rightAC = taiou(sidesize) # taiouで生成したACのハッシュ -#p rightAC -rightAC = rightAC[getAC] # ACが正しければスタンプ名が入り、異なる場合はn - -##### ACCESS LOG ##### -t = Time.now -time = (t.hour * 3600) + (t.min * 60) + t.sec - -## Checking sql_master table. If sqlite_master don't have tablename, it create. - -sql_master = "SELECT name FROM sqlite_master WHERE name='logs';" -check_master = db.execute(sql_master) -sql_logs = 'CREATE TABLE logs( -id INTEGER PRIMARY KEY AUTOINCREMENT, -uid INTEGER, -ac TEXT, -time INTEGER); -' -if check_master == [] - db.execute(sql_logs) -end - -########## - -begin - get_log = 'SELECT ac, time FROM logs WHERE uid=(SELECT MAX(id) FROM logs WHERE uid=?);' # ユーザーの最新のログ情報を取得 - log_check = db.execute(get_log, id) -rescue - print'GETTING LOG ERROR!' -end -begin - log = 'INSERT INTO logs(uid, ac, time) VALUES(?, ?, ?)' - db.execute(log, id, rightAC, time) -rescue - print'INSERT LOG ERROR!' -end -# /* memo: 再度同じようなシステムを作る際はスタンプ用のテーブルがほしい。 */ # - -########## - -### ビンゴしたラインを判定(decision = 0) ### -bingo = [] -# 横 -bingocheck(0, sidesize, 1, stamp_st, 0, bingo) -# 縦 -bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) -# 左斜め -bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) -# 右斜め -bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) -####### - -bingo = bingo.length # ビンゴの数 -last_bingo = bingo - -if rightAC != "n" # rightACが正しければ - - ### Update Stamp_status And Stamp_img ### - - # Replacing Image # - - index_st = [] - stamp_st.length.times { |c| - if stamp_st[c] == 0 - index_st << c - end - } - - ### リーチ(decision = 1)# [{[ビンゴの番号] => [リーチを構成する数]}] - reach = [] - # 横 - bingocheck(0, sidesize, 1, stamp_st, 1, reach) - # 縦 - bingocheck(0, sidesize, sidesize, stamp_st, 1, reach) - # 左斜め - bingocheck(0, sidesize, sidesize+1, stamp_st, 1, reach) - # 右斜め - bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 1, reach) - ####### - - begin - reach = reach[0].flatten(2)[0] # ビンゴの番号のみ抽出 - rescue - reach = [] - end - - ### ビンゴしたラインを判定(decision = 0) ### - bingo = [] - # 横 - bingocheck(0, sidesize, 1, stamp_st, 0, bingo) - # 縦 - bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) - # 左斜め - bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) - # 右斜め - bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) - ####### - - bingo = bingo.length # ビンゴの数 - - # Updating stamp_st # - if stamp_img.include?(rightAC) == true # 既に同名のスタンプが入っていたら - if stamp_st[stamp_img.index(rightAC)] < 9 - stamp_st[stamp_img.index(rightAC)] += 1 # 対応するスタンプの位置に1足す - message = "スタンプカウントが「1」増えました!(スタンプカウントは「9」が上限です)" - else - message="スタンプカウントMAX!!(※これ以上このスタンプのカウントは増えません)" - end - else - if reach != [] && bingo == 0 # はじめのビンゴは必ず3回で完成 - stamp_st[reach] += 1# ビンゴになる数字を代入 - stamp_img[reach] = rightAC - message = "新しいスタンプをGETしました!" # Top message - else - randam_number = index_st[rand(index_st.length)] # スタンプの入っていない個所のなかからランダムにひとつ選ぶ - stamp_st[randam_number] += 1 # 選ばれた個所に1足す - stamp_img[randam_number] = rightAC # stamp_stと同じ個所にstamp_imgにスタンプの名前を代入 - message = "新しいスタンプをGETしました!" # Top message - end - end - ## - - ### ビンゴしたラインを判定(decision = 0) ### - bingo = [] - # 横 - bingocheck(0, sidesize, 1, stamp_st, 0, bingo) - # 縦 - bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) - # 左斜め - bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) - # 右斜め - bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) - ####### - - bingo = bingo.length # ビンゴの数 - - - ## - - # Convert to string # - - stamp_st_string = stamp_st.join - stamp_img_string = stamp_img.join(",") - - ## - - sql_update = "UPDATE main SET stamp_status=?, stamp_img=? WHERE id=?;" - db.execute(sql_update, stamp_st_string, stamp_img_string, id) -end - -###### - -########## - -##### HTML ##### -print' - - - -たいとる - - - -' -### TOP ### - -sql_rank = 'select rank from main where id=?;' -rank = db.execute(sql_rank, id).flatten(2)[0].to_i - -print' -
-' -if rank > 0 - print'
' -else - print'
' -end -# - ビンゴステータス処理 - # - -if rank > 0 - printf("

おめでとうございます!!
☆ %d等 ☆が当選しました!!

", rank) - # print'

抽選は終了しましたが、引続きゆる☆スタをお楽しみ下さい!!

' -end - -# End of top -print' -
-' -# Top message # - -bc = bingo.to_i - last_bingo.to_i - -if bc > 0 - message += '
おめでとう!' + bc.to_s - message += 'ビンゴ揃いました!!
' -end - -if rank > 0 - printf("

%sおめでとうございます!☆ %d等 ☆が当選しました!!

", message, rank) -else - printf("

%s

", message) -end - -## - -###### - -### CENTER ### -print' -
- -' -for i in 0..2 - print'' - 3.times do |n| - if stamp_st[3*i+n].to_i > 0 - printf("\n", stamp_img[3*i+n], stamp_st[3*i+n]) - else - print"\n" - end - end - print'' -end -# End of center -print' -
\"stamped\"%d
-
-' -###### - -### BOTTOM ### -print' -
-' -# - RPGの表示 - # - -name = user_data[0][2] -job = user_data[0][3] -sex = user_data[0][4] -exp = user_data[0][5] - -## GETTING EXP SUM ## - -sum_sql = 'SELECT SUM(exp) FROM main WHERE rank=0;' -sumexp = db.execute(sum_sql).flatten(2)[0] - -#### - -stamp = stamp_st.inject(:+) # 配列内の値を全て足す - -charST = rpg(job, sex, stamp, bingo, sumexp) # ユーザーのキャラクタステータス - -## UPDATE EXP ## - -update_exp = 'UPDATE main SET exp=? WHERE id=?;' -db.execute(update_exp, charST[2], id) - -#### - -## GETTING EXP SUM ## - -sum_sql = 'SELECT SUM(exp) FROM main WHERE rank=0;' -sumexp = db.execute(sum_sql).flatten(2)[0] - -#### - -stamp = stamp_st.inject(:+) # 配列内の値を全て足す - -charST = rpg(job, sex, stamp, bingo, sumexp) # ユーザーのキャラクタステータス - -printf(" - -
- -
-
-ID:%04d
-NAME:%s
-あなたのLv: %d / 全員のLv: %d
-当選確率: %3.3f \% -
-", charST[0], id-1, name, charST[2],sumexp , charST[1]) - -# End of bottom -print'
' -# End of outflam -print'
' -###### - -print' - - -' -########## diff --git a/2014OC/account.html b/2014OC/account.html deleted file mode 100644 index b1357ae..0000000 --- a/2014OC/account.html +++ /dev/null @@ -1,42 +0,0 @@ - - - -ハムスタ登録ページ - - - - -

ハムスタ登録ページ

-

入力してね

-
-

名前:(ニックネーム)

-

生別:

-

年代:

-

出身地:

-

ジョブ:

-

(好きな職業を選んでください)

-
-代替テキスト -
- - diff --git a/2014OC/accountcheck.rb b/2014OC/accountcheck.rb deleted file mode 100755 index 12b0b82..0000000 --- a/2014OC/accountcheck.rb +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -require 'sqlite3' -require 'cgi' -require './magic.rb' - -c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") -db = SQLite3::Database.new("sql/stamp.sq3") - -begin - result = db.execute("select * from main;") - max = "select max(id) from main;" -rescue - db.execute("create table main(id INTEGER PRIMARY KEY AUTOINCREMENT,name,sex,age,aria,job,stamp_status,stamp_img,exp INTEGER,rank INTEGER,magic)"); - db.execute("insert into main(name,sex,age,aria,job,stamp_status,stamp_img,exp,rank,magic) values('名前','性別','年代','住所','職業','スタンプ状況','スタンプ画像','レベル','当選順位','本人確認用')"); - result = db.execute("select * from main;") - max = "select max(id) from main;" -end - -id = c.cookies["id"][0] -c_magic = c.cookies["magic"][0] -name = c["name"] -job = c["job"] -age = c["age"] -sex = c["sex"] -aria = c["aria"] - -begin -sel = 'select * from main where id=? AND magic=?' -h = db.execute(sel, id.to_i, c_magic.to_i) -rescue -h == [] -end - -if id != nil && h != [] -update = 'update main set name=?, job=?, age=?, sex=?, aria=? where id=? and magic=?' -mg = c_magic -db.execute(update, name, job, age, sex, aria, id.to_i, mg.to_i) -else -code = magic() -id = db.execute(max).flatten(2)[0].to_i + 1 -mg = code[id] -sql = "insert into main(name,sex,age,aria,job,stamp_status,stamp_img,exp,rank,magic) values (?,?,?,?,?,?,?,?,?,?);" -db.execute(sql,name,sex,age,aria,job,'000010000','n,n,n,n,kamo1,n,n,n,n',0,0,mg); #初期値 -end - -expires = "SAT, 24 Oct 2015 00:00:00 GMT" - -printf("Content-type: text/html; charset=UTF-8 -Set-Cookie:id=%s ;expires=%s -Set-Cookie:magic=%s;expires=%s\n\n",id,expires,mg.to_s,expires) - -print' - - -Registering Account - -' -printf' -

登録が完了しました。

-

あなたのIDは%04dです。抽選はこのIDを元に行われます

-

下記リンクからスタンプラリーを開始して下さい!

-

>> Let\'s go to Stamp Rally <<

-

- - -',id.to_i-1 diff --git a/2014OC/admin/.htaccess b/2014OC/admin/.htaccess deleted file mode 100644 index 66b2e8e..0000000 --- a/2014OC/admin/.htaccess +++ /dev/null @@ -1,9 +0,0 @@ -AddHandler cgi-script .rb -AddType "text/html; charset=utf-8" .rb -AddType "text/html; charset=utf-8" .html -Options +ExecCGI -AuthUserFile /home/www/skip/2014OC/admin/.htpasswd -AuthGroupFile /dev/null -AuthName "ǧ�ڥ�����" -AuthType Basic -require valid-user diff --git a/2014OC/admin/.htpasswd b/2014OC/admin/.htpasswd deleted file mode 100644 index 522e590..0000000 --- a/2014OC/admin/.htpasswd +++ /dev/null @@ -1,2 +0,0 @@ -Murakami:7Y005Wtya7Ogw -test:tebUY14UFwMKg diff --git a/2014OC/admin/drawLots.html b/2014OC/admin/drawLots.html deleted file mode 100644 index e45a1a3..0000000 --- a/2014OC/admin/drawLots.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -Database delete - - - - - -

抽選用ページ

-

実行するとデータベースが書き変えられます。

-

実行する際は注意してください。

-
-

抽選を行いますか?
-はい -いいえ -

- - -
-

データ閲覧ページに戻る

- - diff --git a/2014OC/admin/drawLots.rb b/2014OC/admin/drawLots.rb deleted file mode 100755 index 8ed7125..0000000 --- a/2014OC/admin/drawLots.rb +++ /dev/null @@ -1,87 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -require 'sqlite3' -require 'cgi' -require 'date' - -c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") -db = SQLite3::Database.new("../sql/stamp.sq3") - -add = ENV["REMOTE_ADDR"] - -if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107|192.168.43.255/ =~ add -check = c['check'] - -printf("Content-type: text/html; charset=UTF-8\n\n") - -sum = 'SELECT SUM(rank) FROM main WHERE NOT id=1;' -rank_sum = db.execute(sum).flatten(2)[0].to_i - -t = Time.now -expires = Time.local(2014, 8, 17, 8, 50) -expires2 = Time.local(2014, 10, 25, 0, 00) -if t > expires && t < expires2 && rank_sum == 0 -else - check = "" - puts check -end - -if check == "OK" - begin - result = db.execute("select id,exp,rank from main;") - rescue - exit - end - all = Array.new - for id,lv,rank in result - if id == 1 || lv == 0 || rank.to_i != 0 - next - end - lv.to_i.times do - all << id - end - end - - tousen = Array.new(0) - atari1 = rand(all.length) - tousen << all[atari1] - all.delete_if {|x| x == tousen[0]} - - sql = "update main set rank = 1 where id = ?;" - db.execute(sql,tousen[0]) - - sql = "update main set rank = 2 where id = ?;" - while tousen.length < 4 - srand - atari2 = rand(all.length) - hoge = all[atari2] - tousen << all[atari2] - all.delete_if {|x| x == hoge} - db.execute(sql,hoge) - end - - i=0 - - printf("

1等はIDが%04dの方!おめでとー!

\n",tousen[i].to_i-1) - printf("

2等はIDが%04dと%04dと%04dの方!おめでとー!

\n",tousen[i+=1].to_i-1,tousen[i+=1].to_i-1,tousen[i+=1].to_i-1) -else - print"

抽選はまだ行いませんよ

\n" -end -print'

抽選ページに戻る

-

データ閲覧ページに戻る

-' -else - printf("Content-type: text/html; charset=UTF-8\n\n") - - printf' - - -Delete table - - - -

管理者用ページのため閲覧できません。

' -end -print'' diff --git a/2014OC/admin/monitor.rb b/2014OC/admin/monitor.rb deleted file mode 100755 index c4b87aa..0000000 --- a/2014OC/admin/monitor.rb +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/env ruby -#coding:utf-8 - -require'cgi' -require'sqlite3' - -db = SQLite3::Database.new("../sql/stamp.sq3") - -c = CGI.new(:accept_charaset => "UTF-8") - -add = ENV["REMOTE_ADDR"] - -if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107/ =~ add -rank = c["rank"] -flag = 0 -text = "

登録者一覧を表示します

\n" -begin - if rank == "y" - rank_reset = 'UPDATE main SET rank=0 WHERE NOT id=1;' - db.execute(rank_reset) - end - result = db.execute("select * from main;") - log = 'select * from logs;' - logs = db.execute(log) -rescue - flag = 1 - text = "

データがありません

\n" -end - -#rank = "n" - -printf("Content-type: text/html; charset=UTF-8\n\n") - -printf' - - - -Delete table - - -

データ閲覧ページ

' -puts text -if flag == 1 -else - print"\n" - result.each do |line| - printf("\n",line[0].to_i-1,line[1],line[2],line[3],line[4],line[8],line[9]) - end - print'
%04d%s%s%s%s%s%s
' - print'

-rankをリセットしますか?
-NO / -YES
- -

-' -end - -print'

ログの閲覧

' -if flag == 1 -else - print'' - logs.each do |line| - hour = line[3].to_i/3600 - min = line[3].to_i%3600/60 - sec = line[3].to_i%3600%60 - printf("\n",line[0],line[1].to_i-1,line[2],hour,min,sec) - end - print"
%s%04d%s%d:%d:%d
" - print'

その他の操作

- - - -
データ削除DELETE
抽選DRAW
-' -end -else - printf("Content-type: text/html; charset=UTF-8\n\n") - - printf' - - -Delete table - - -

管理者用ページのため閲覧できません。

' -end - -print'' diff --git a/2014OC/admin/operation.html b/2014OC/admin/operation.html deleted file mode 100644 index 57f6db1..0000000 --- a/2014OC/admin/operation.html +++ /dev/null @@ -1,27 +0,0 @@ - - - -Database delete - - - - - -

データベース消去用

-

実行するとデータベースが削除されます。

-

実行する際は注意してください。

-
-

本当に消しますか?
-はい -いいえ -

- - -
-

データ閲覧ページに戻る

- -
c111126@g.koeki-u.ac.jp
- - - diff --git a/2014OC/admin/operation.rb b/2014OC/admin/operation.rb deleted file mode 100755 index 60fecf4..0000000 --- a/2014OC/admin/operation.rb +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -require 'sqlite3' -require 'cgi' - -db = SQLite3::Database.new("../sql/stamp.sq3") -c = CGI.new(:accept_charaset => "UTF-8") - -add = ENV["REMOTE_ADDR"] - -printf("Content-type: text/html; charset=UTF-8\n\n") - -if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107/ =~ add -check = c['check'] -if check == "OK" - begin - db.execute("drop table main;") - db.execute("drop table logs;") - text = "

データを削除しました。

" - rescue - text = "

データがありません。

" - end -else - text = "データは削除されません" -end - -printf(" - - -Delete table - - - -%s -

データ閲覧ページへ

-

- -", text) -print"

データ閲覧ページに戻る

" -print"

削除ページに戻る

" -else - printf' - - -Delete table - - - -

管理者用ページのため閲覧できません。

' -end diff --git a/2014OC/design.css b/2014OC/design.css deleted file mode 100644 index 3490f48..0000000 --- a/2014OC/design.css +++ /dev/null @@ -1 +0,0 @@ -body{background-color: #E0FFFF;} diff --git a/2014OC/magic.rb b/2014OC/magic.rb deleted file mode 100755 index f8e9d8d..0000000 --- a/2014OC/magic.rb +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- - -def magic() - srand(123456789) - hoge = Array.new - while hoge.length < 100 - hoge << rand(1000000) - hoge.uniq! - end - return hoge -end - diff --git a/2014OC/png/bottom.png b/2014OC/png/bottom.png deleted file mode 100644 index 11b160b..0000000 --- a/2014OC/png/bottom.png +++ /dev/null Binary files differ diff --git a/2014OC/png/bottom.xcf b/2014OC/png/bottom.xcf deleted file mode 100644 index 0b84f04..0000000 --- a/2014OC/png/bottom.xcf +++ /dev/null Binary files differ diff --git a/2014OC/png/bun.png b/2014OC/png/bun.png deleted file mode 100644 index 2a32c65..0000000 --- a/2014OC/png/bun.png +++ /dev/null Binary files differ diff --git a/2014OC/png/dai.png b/2014OC/png/dai.png deleted file mode 100644 index 1b9fcd5..0000000 --- a/2014OC/png/dai.png +++ /dev/null Binary files differ diff --git a/2014OC/png/eki.png b/2014OC/png/eki.png deleted file mode 100644 index 8bc56bf..0000000 --- a/2014OC/png/eki.png +++ /dev/null Binary files differ diff --git a/2014OC/png/gaku.png b/2014OC/png/gaku.png deleted file mode 100644 index 283ecbb..0000000 --- a/2014OC/png/gaku.png +++ /dev/null Binary files differ diff --git a/2014OC/png/hoku.png b/2014OC/png/hoku.png deleted file mode 100644 index 3adc881..0000000 --- a/2014OC/png/hoku.png +++ /dev/null Binary files differ diff --git a/2014OC/png/ka.png b/2014OC/png/ka.png deleted file mode 100644 index 73b467b..0000000 --- a/2014OC/png/ka.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo.png b/2014OC/png/kamo.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo.xcf b/2014OC/png/kamo.xcf deleted file mode 100644 index a6efea8..0000000 --- a/2014OC/png/kamo.xcf +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo1.png b/2014OC/png/kamo1.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo2.png b/2014OC/png/kamo2.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo3.png b/2014OC/png/kamo3.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo4.png b/2014OC/png/kamo4.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo5.png b/2014OC/png/kamo5.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo6.png b/2014OC/png/kamo6.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo7.png b/2014OC/png/kamo7.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo8.png b/2014OC/png/kamo8.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo8.png +++ /dev/null Binary files differ diff --git a/2014OC/png/kamo9.png b/2014OC/png/kamo9.png deleted file mode 100644 index 77e756c..0000000 --- a/2014OC/png/kamo9.png +++ /dev/null Binary files differ diff --git a/2014OC/png/ko.png b/2014OC/png/ko.png deleted file mode 100644 index 035f4ce..0000000 --- a/2014OC/png/ko.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB1.png b/2014OC/png/madousiB1.png deleted file mode 100644 index 7e6c00c..0000000 --- a/2014OC/png/madousiB1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB2.png b/2014OC/png/madousiB2.png deleted file mode 100644 index b2bc8fe..0000000 --- a/2014OC/png/madousiB2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB3.png b/2014OC/png/madousiB3.png deleted file mode 100644 index 505f538..0000000 --- a/2014OC/png/madousiB3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB4.png b/2014OC/png/madousiB4.png deleted file mode 100644 index 6f27fa1..0000000 --- a/2014OC/png/madousiB4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB5.png b/2014OC/png/madousiB5.png deleted file mode 100644 index 41c3ee1..0000000 --- a/2014OC/png/madousiB5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB6.png b/2014OC/png/madousiB6.png deleted file mode 100644 index 31d9174..0000000 --- a/2014OC/png/madousiB6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiB7.png b/2014OC/png/madousiB7.png deleted file mode 100644 index 474231d..0000000 --- a/2014OC/png/madousiB7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG1.png b/2014OC/png/madousiG1.png deleted file mode 100644 index f9eb088..0000000 --- a/2014OC/png/madousiG1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG2.png b/2014OC/png/madousiG2.png deleted file mode 100644 index 1c91b3b..0000000 --- a/2014OC/png/madousiG2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG3.png b/2014OC/png/madousiG3.png deleted file mode 100644 index 80ce305..0000000 --- a/2014OC/png/madousiG3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG4.png b/2014OC/png/madousiG4.png deleted file mode 100644 index c76d3fa..0000000 --- a/2014OC/png/madousiG4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG5.png b/2014OC/png/madousiG5.png deleted file mode 100644 index 3b067bb..0000000 --- a/2014OC/png/madousiG5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG6.png b/2014OC/png/madousiG6.png deleted file mode 100644 index 1b94053..0000000 --- a/2014OC/png/madousiG6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/madousiG7.png b/2014OC/png/madousiG7.png deleted file mode 100644 index e9e0094..0000000 --- a/2014OC/png/madousiG7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/murakamibot.png b/2014OC/png/murakamibot.png deleted file mode 100644 index fa8f832..0000000 --- a/2014OC/png/murakamibot.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB1.png b/2014OC/png/sensiB1.png deleted file mode 100644 index 7cef1fe..0000000 --- a/2014OC/png/sensiB1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB2.png b/2014OC/png/sensiB2.png deleted file mode 100644 index f01e129..0000000 --- a/2014OC/png/sensiB2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB3.png b/2014OC/png/sensiB3.png deleted file mode 100644 index 98217b0..0000000 --- a/2014OC/png/sensiB3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB4.png b/2014OC/png/sensiB4.png deleted file mode 100644 index 185381b..0000000 --- a/2014OC/png/sensiB4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB5.png b/2014OC/png/sensiB5.png deleted file mode 100644 index 13b0725..0000000 --- a/2014OC/png/sensiB5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB6.png b/2014OC/png/sensiB6.png deleted file mode 100644 index 83733fa..0000000 --- a/2014OC/png/sensiB6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiB7.png b/2014OC/png/sensiB7.png deleted file mode 100644 index 053ae3c..0000000 --- a/2014OC/png/sensiB7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG1.png b/2014OC/png/sensiG1.png deleted file mode 100644 index 5d07ce8..0000000 --- a/2014OC/png/sensiG1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG2.png b/2014OC/png/sensiG2.png deleted file mode 100644 index ca6fffe..0000000 --- a/2014OC/png/sensiG2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG3.png b/2014OC/png/sensiG3.png deleted file mode 100644 index 27fec21..0000000 --- a/2014OC/png/sensiG3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG4.png b/2014OC/png/sensiG4.png deleted file mode 100644 index 869907a..0000000 --- a/2014OC/png/sensiG4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG5.png b/2014OC/png/sensiG5.png deleted file mode 100644 index fafd308..0000000 --- a/2014OC/png/sensiG5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG6.png b/2014OC/png/sensiG6.png deleted file mode 100644 index aa626b3..0000000 --- a/2014OC/png/sensiG6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/sensiG7.png b/2014OC/png/sensiG7.png deleted file mode 100644 index 228a382..0000000 --- a/2014OC/png/sensiG7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB1.png b/2014OC/png/thiefB1.png deleted file mode 100644 index acdddc6..0000000 --- a/2014OC/png/thiefB1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB2.png b/2014OC/png/thiefB2.png deleted file mode 100644 index b6771b9..0000000 --- a/2014OC/png/thiefB2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB3.png b/2014OC/png/thiefB3.png deleted file mode 100644 index bd14640..0000000 --- a/2014OC/png/thiefB3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB4.png b/2014OC/png/thiefB4.png deleted file mode 100644 index 1d7f665..0000000 --- a/2014OC/png/thiefB4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB5.png b/2014OC/png/thiefB5.png deleted file mode 100644 index 11cc9c0..0000000 --- a/2014OC/png/thiefB5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefB7.png b/2014OC/png/thiefB7.png deleted file mode 100644 index 5f8fb93..0000000 --- a/2014OC/png/thiefB7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG1.png b/2014OC/png/thiefG1.png deleted file mode 100644 index a9d019e..0000000 --- a/2014OC/png/thiefG1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG2.png b/2014OC/png/thiefG2.png deleted file mode 100644 index bae7cfd..0000000 --- a/2014OC/png/thiefG2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG3.png b/2014OC/png/thiefG3.png deleted file mode 100644 index df4f891..0000000 --- a/2014OC/png/thiefG3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG4.png b/2014OC/png/thiefG4.png deleted file mode 100644 index b1366ff..0000000 --- a/2014OC/png/thiefG4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG5.png b/2014OC/png/thiefG5.png deleted file mode 100644 index 6e864e3..0000000 --- a/2014OC/png/thiefG5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG6.png b/2014OC/png/thiefG6.png deleted file mode 100644 index 64220c9..0000000 --- a/2014OC/png/thiefG6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/thiefG7.png b/2014OC/png/thiefG7.png deleted file mode 100644 index 4162e09..0000000 --- a/2014OC/png/thiefG7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/to.png b/2014OC/png/to.png deleted file mode 100644 index 3a09bbf..0000000 --- a/2014OC/png/to.png +++ /dev/null Binary files differ diff --git a/2014OC/png/top.png b/2014OC/png/top.png deleted file mode 100644 index a90ddbb..0000000 --- a/2014OC/png/top.png +++ /dev/null Binary files differ diff --git a/2014OC/png/top.xcf b/2014OC/png/top.xcf deleted file mode 100644 index df88d2e..0000000 --- a/2014OC/png/top.xcf +++ /dev/null Binary files differ diff --git a/2014OC/png/top1.xcf b/2014OC/png/top1.xcf deleted file mode 100644 index 3614b2d..0000000 --- a/2014OC/png/top1.xcf +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB1.png b/2014OC/png/yumiB1.png deleted file mode 100644 index ad4227e..0000000 --- a/2014OC/png/yumiB1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB2.png b/2014OC/png/yumiB2.png deleted file mode 100644 index e73d9fa..0000000 --- a/2014OC/png/yumiB2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB3.png b/2014OC/png/yumiB3.png deleted file mode 100644 index b309320..0000000 --- a/2014OC/png/yumiB3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB4.png b/2014OC/png/yumiB4.png deleted file mode 100644 index 4d50ace..0000000 --- a/2014OC/png/yumiB4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB5.png b/2014OC/png/yumiB5.png deleted file mode 100644 index 587085f..0000000 --- a/2014OC/png/yumiB5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB6.png b/2014OC/png/yumiB6.png deleted file mode 100644 index bd69533..0000000 --- a/2014OC/png/yumiB6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB7.png b/2014OC/png/yumiB7.png deleted file mode 100644 index bb5e8a4..0000000 --- a/2014OC/png/yumiB7.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiB7p.xcf b/2014OC/png/yumiB7p.xcf deleted file mode 100644 index 21717ca..0000000 --- a/2014OC/png/yumiB7p.xcf +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG1.png b/2014OC/png/yumiG1.png deleted file mode 100644 index 061f07e..0000000 --- a/2014OC/png/yumiG1.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG2.png b/2014OC/png/yumiG2.png deleted file mode 100644 index e29a682..0000000 --- a/2014OC/png/yumiG2.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG3.png b/2014OC/png/yumiG3.png deleted file mode 100644 index cd66045..0000000 --- a/2014OC/png/yumiG3.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG4.png b/2014OC/png/yumiG4.png deleted file mode 100644 index 6afa2e7..0000000 --- a/2014OC/png/yumiG4.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG5.png b/2014OC/png/yumiG5.png deleted file mode 100644 index 492bf08..0000000 --- a/2014OC/png/yumiG5.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG6.png b/2014OC/png/yumiG6.png deleted file mode 100644 index c2e62ad..0000000 --- a/2014OC/png/yumiG6.png +++ /dev/null Binary files differ diff --git a/2014OC/png/yumiG7.png b/2014OC/png/yumiG7.png deleted file mode 100644 index af5fe38..0000000 --- a/2014OC/png/yumiG7.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/account.png b/2014OC/qr/account.png deleted file mode 100644 index 68ff493..0000000 --- a/2014OC/qr/account.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/account.ps b/2014OC/qr/account.ps deleted file mode 100644 index 5653306..0000000 --- a/2014OC/qr/account.ps +++ /dev/null @@ -1,1402 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966a9685f45000001b400001dc468656164 -2df9d49d00001f780000003668686561070bff1c00001fb000000024686d7478 -8e991ae400001fd40000006c6c6f6361808087e4000020400000004c6d617870 -084603150000208c00000020707265703f711a3d000020ac0000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<0005005effb0079e064e00240029002d0031004200d440bb2120021b19032723 -1e17151412050302000b1925030d0a02250b031007020b2a030f08022a2e033c -3b373534052c3203423f3e3938322505402f2e25012a313025012c1a1925011b -0c0b25012505044140012b2a012d2c011c1b0129250105000e2108050302053f -2b033c2000032b0a033e3b3938373532292725231e1c190e2e0c03170c2f0234 -12022f2a0315140f031a4103073f1041312e19012b302f19012a0204403f0142 -41012c2b012d2a010b0a010d0c011b1a0107002a2a10c010c02b2b2b2b2b2b2b -2a2a2b2b2b2b2b2b313001363717060716170726271521350607273637262737 -1617363721352116173637170607160726270607032111210121152101262737 -1617072136371706072115213505e18171798d7788ce5ed8c4fcebddf064edc5 -86746b7e75896ffe540290596375757980913819e19686cae90464fb9c03d3fc -be0342fd1029588d45486e01ba5842954849023bf921049b6989548c595c597f -6b935c5aac71755c9883505f637b7a997f8b69608e5483693299b3cbd0aefefe -fe360153dcfe4577893563a9298ca53793677d7d00> -<00050052ff7b07b506a8002e0054005a00600066013440ff43263e1c504e0222 -4e4c021e4c4a021f150224110314482f0264633433040f0d03016661605e5d5b -5a58575545413c3b3836312e2c0c0a07060403001a0d0203001817020d500140 -3909030d3e02004f4e2501504b4a25014c5447462f250348272612112503242b -2a0e0d25030f05045150014d4c0153524948032524012928100f0305000e3934 -33035351033631025149032f493b026664614140040307454b03635e1e060005 -4f29032e1f0703472503605d5b1804252703221c1703270c035a585755241412 -09080c0e033853150a0e4e4d4a49190351464519013b2c2b282719030c030454 -53015251013c3b014c4b01504f014847012a2901262501400a11100d0c030f0e -010a002a2a10c0c010c02b2b2b2b2b2b2b2b2b2b2a2a1310c42a13102a132b13 -2b2b2b2b2b2b10ed313025373637170607270405273637112135213523060727 -1213170607060716170726272706072115231521152111363701161736371706 -0716170724031114232227271633323511213521352135213521352111331501 -2627371617253637170607252627371617036210b8c32787fa39fec5fe7b3ca9 -c0febc0144c91f4845fd8a87010c0706d3975c929d10675601c9d50114feec5c -b0026b2f40637577799b77d16dfef8819546791b526335fe2402bbfdd70229fd -9f02e8fef95a213f813d230104412c873a49019f6679627e68a00860ae79879f -728c76872b3c02377bd3264f790119019121041e130ea7b583c7970edd7f7bd3 -7bfdf6204a0256c07d5a9f60867eb79974d40167fdd1870a92153903277bc577 -be79fd8d7bfd4cc3b625b9bc4a9bb929bf89ac9a6c526f8700> -<000300890114077005e9000f001f0031003d401f2d2124182208102200312f29 -28242008000e1c230414230c312f2928200c042f2f2e2e2e2e2e10ed10ed2b2f -2f2e2f2e2e2e2e10ed10ed10ed31300132171615140706232227263534373617 -2207061514171633323736353427260136013633321700010700012623220706 -0105d75d473b25437c372f79603c461f214817274a31292d2f27fa83dd013a52 -434283016f020770fdfefe8734161747bbfed605e94a41564237681b41877244 -295a10265124243f23273d3d2921fceeb2016b5e7dfe9dfe9a9e018601733156 -edfeee0000> -<000500f4fffe077d06a20005000b00110017001d00524031011d1b1a18171514 -12110f0e0c09080605030200130d0200010b02000e1d1b1a1817151412110f0e -0c0b090806050302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130012627371617012401170005012627371617012627371617 -0126273716170373c3c260bdd5fd7e037a01be70fe43fc7c046a4c76706f5cfb -d9c2cb60d8c004165571726b640468a861875da3fba6be030a7ffcf7e004c0a0 -7f4a6ca9fdc5a66489689c01dea1774668a7000000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307ae3289079e5f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001100> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc04000000 -0800005e0052008900f40389029300a4007500c3016601e7013902db010c006a -00b6007700d300ba0117017700> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -04dc05b606f2076407ce07f8082808660922098009ee0a3c0a6c0aba0b4c0c4e -0cdc0d760dc40e280e9c0ee200> -<0001000000250067000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -159.8 635.7 Td -/F15_0 36 Tf -(\017) -[18 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\016) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\017) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.3 Td -/F15_0 24 Tf -(\025\026\027\030\031\032\033\016\034\035\036\037 !"\037#$\024\025) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -537.8 597.3 Td -/F15_0 24 Tf -(\017) -[12 -0] Tj -Q -Q -q -175.2 309.9 245.1 245.1 re -W* -q -[245 0 0 245 175.2 310] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!-'n,r^c!"],0#l"H#KDu1l -!.=_F!e:7Fs8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7Fs8N)grW!-'n,r^c -!"],0#l"H#KDu1l!.=_F!e:7Fs8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7F -s8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7Fs8N,hJ,fNL_=7I)"pb1t"5rr< -rW!*$_=2gos8N2jJ,fXrr_b?s7lWo -!UtU=rrKt*rr<6.s6p-KpceZW"TQ=-HlrCg"7Ug?q#C?pn:1Km+"5jFan9c;X!UtU=q#C?un9b3@_=2jM!"^7I!Up3L#QO:@ -*rl?2J,fm+"5jFan9c;X!UtU=q#C?un9b3@_=2jM!"^7I -!Up3L#QO:@*rl?2J,fm+"5jFan9c;X!UtU=q#C@&n9b3@ -_>f/Gs1f0Fi;Wcd&,ZD4_=2go!!2S=s7lWo%.JWE#JpFmi;^S's5f/Gs1f0Fi;Wcd&,ZD4_=2go!!2S= -s7lWo$1N!!",@rseH"s7ebXHli=hn:1K5s8NDpHiODfs+C=V_#FB7 -+92?Mn,r^c4ofsP!!2S=s7lWo$1N!!",@rseH"s7ebXHli=hn:1K5 -s8NDpHiODfs+C=V_#FB7+92?Mn,r^c4ofsP!!2S=s7lWo$1N!!",@ -rseH"s7ebXHli=hn:1K5s8N,hJ,fNV_=2s4p](hT!!iPnrr<2s!UtIYs8N2jJ,fXrr_b?s7lWo!UtU=rsQ[4J)L)%%tFWb -s7$$g"S`#eHlrCg"7Ug?q#C?pn:1K<$c2=^i:m9_J,fiSnG`Ikp]9l3+92?Cn:1K5 -s8N,hJ,fNV_=2s4p](hT!!iPnrr<2s!UtIYs8N2jJ,faH8#Jg<=!XHLOs8N)os8N2jHiOEOrrR]m#QOf+quHc5 -rr3!(_#=<8#J^lMrrDiorr_b!!3D@&-)Y0q#C?rn9b3@s8N.N*s_iG"8i0! -_>aH8#Jg<=!XHLOs8N)os8N5kJ,f9Es8N_ipcne/!;HTpKAZ_1n,qSRrX]&/!;QTo -"Rpp@p]:Ep'&`OLs*t+E!WRf1!!2Qki!95ls8N)os8N5kJ,f9Es8N_ipcne/!;HTp -KAZ_1n,qSRrX]&/!;QTo"Rpp@p]:Ep'&`OLs*t+E!WRf1!!2Qki!95ls8N)os8N5k -J,f9Es8N_ipcne/!;HTpKAZ_1n,qSRrX]&/!;QTo"7QEN#Q=Z&#QOf1KAZ_1s*u3k -^^pJF!WYCps8N)os8N2j"5jF_rr<<(rs=>9!!3+M+90+es8N-#4qI\n!;QTo"7QEN -#Q=Z&#QOf1KAZ_1s*u3k^^pJF!WYCps8N)os8N2j"5jF_rr<<(rs=>9!!3+M+90+e -s8N-#4qI\n!;QTo"7QEN#Q=Z&#QOf1KAZ_1s*u3k^^pJF!WYCps8N)os8N;mJ)L@B -!.XtI!W4&=rs\fI!'gL9i:m?BJ,frr3E) -*rnP*KAcM*n:1K5s8N;mJ)L@B!.XtI!W4&=rs\fI!'gL9i:m?BJ,fm:KAcdFrr<-C!'UqnrrDinrr[o3 -s8Mut$O?Y2Hlr+as+B80_#FB:*rnJ8s8N)orr3(Qi;`fU!"0&2!.5m`!WRf1s1nX7 -"!7M,&-)Y0q#:9qKAce/rW!<2rW%m:KAcdFrr<-C!'UqnrrDinrtg1cs2"_c+8>m+HiODe!.Wo,4ob]Cs2"^7 -!;QQn(OuMc_>f$-p]9l3!!g:>J)C;j!!D0Z_>aH7q#::0J,oVcs*u3d!UtI:#J^=h -huGq@"5s3qrr2unrr3db!<9n8J04Oen9b3@^]8lB!'UAbi;^XmrrDinrtg1cs2"_c -+8>m+HiODe!.Wo,4ob]Cs2"^7!;QTo#Ohiq!'UC4i;Wc`%tFWb_>jET!'^D_!$D1? -!e:7Fs8N>n"9/?b!.Wr,!!s0d!!g@?r#Yo&rr<$@rW!"Ls7lWo#Ohiq!'UC4i;Wc` -%tFWb_>jET!'^D_!$D1?!e:7Fs8N>n"9/?b!.Wr,!!s0d!!g@?r#Yo&rr<$@rW!"L -s7lWo#Ohiq!'UC4i;Wc`%tFWb_>jET!'^D_!$D1?!e:7Frr2urrr<<*n9c;X4qIQ5 -qu?rr5O\dT!!3*!!;QQn!;uis#QaFB*rnJ8r#bh:#5CFP"9/?%rr2unrr2urrr<<* -n9c;X4qIQ5qu?rr5O\dT!!3*!!;QQn!;uis#QaFB*rnJ8r#bh:#5CFP"9/?%rr2un -rr2urrr<<*n9c;X4qIQ5qu?rr5O\dT!!3*!!;QQn#Cmlr4qIQ5q"t*m!V$*h!;QNn -!ZqD,rr2unrr34R*rnJ8r#b_3!!*,irr<&orW!!A!'gJ_!;QQn#Cmlr4qIQ5q"t*m -!V$*h!;QNn!ZqD,rr2unrr34R*rnJ8r#b_3!!*,irr<&orW!!A!'gJ_!;QQn#Cmlr -4qIQ5q"t*m!V$*h!;QNn!ZqD,rr2unrVm&Zp](hT+9)86rr<<& -rrDimrrq?U!"XT%rr86rr<<&rrDilrri*\!.Wr,!!j*c+8A#1r#b_4!!)fo!!7ZM -q#(-ppc\\-i;Wc_%tGbs4qIQ5q#(0mq#:aH7q"t'k_#FB7 -+8l-E#QO:@!<9n8KE(rO_>aH7q"t'k_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7q"t'k -_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7q"t'k_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7 -q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9G -J04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM -4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA -!WN*!q#C@)n:0@$^]4Jp!'gM]!<9n)rr#QFZ%"?lg8s7lTn!W2rsrsaV=pcn7ts7cWpr#Z1Cr;Zsa!.Y%D -rr3#s!<3!-KAcMhn:1K5!WW'>#QFZ%"?lg8s7lTn!W2rsrsaV=pcn7ts7cWpr#Z1C -r;Zsa!.Y%Ds8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E!;QTo(@VFas2"1,huH"A -KAZ_n!.4eA5Oa%#r;Qcls8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E!;QTo(@VFa -s2"1,huH"AKAZ_n!.4eA5Oa%#r;Qcls8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E -!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C -&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL -#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lu -pcncX!;QKl!Vc]qrsR`b4ofsP#Jom3s7lTo#CHOH!UtU=q#(-mp]:Ep$fD"K!.5jn -_=.R,q#:=!HiWpBn:1K5r;Qfm!WW0-huGq@HliU0n,r^crr<:O!;HTaJ,f6drs-=Ms53kXn9b3@_>f/G#JonZs7lWo!:^!g)$g-OKDu1l -&-(Pf!UtI:#JpFmi!7*fJ,f6drs-=Ms53kX -n9b3@_>f/G#JonZs7lWo!UtU=rrBk3!![rQ#JpH<+92?An9k69!Bq%orrDiorrMV= -s8N)7qZ$hMrs-C?r#bt=!UtL:!!,7os8N)os8N,hJ,fNK_#"*9J,]bis83u=rrMV: -rr<'`&-)Y0q#C?pn:1KjETs8N,hI/a0I4qI\n!;QTo!UtU=rrBk3 -!![rQ#JpH<+92?An9k69!Bq%orrDiorrMV:rr<3en:0Br_>jN9i!9;^#(up\_>jE5 -r;Qcls8N,hI/a0M5Oa0\s2"a8!T44_rs",U#JpHjN9i!9;^#(up\_>jE5r;Qcls8NDpHlrC)n,qVK_>jN@huEfX -J04OenG`Ii#J^lMrrDiorsA1B+901H"5s3qs8NA_!!3+M+8>m+rr<**^^pJF!;QTo -$1NX_=.Qbs2"a8#iG[` -s*u3d!V$*h!XHLOs8N)os8NDpHlrC)n,qVK_>jN@huEfXJ04OenG`Ii#J^lMrrDij -rrVZi+9)f/G!'Uqk!<9n)!$;IF!.Y"Rs6tO< -q#C?pn:1K<(r?6)huGqOquHc5n,OO8rW%HJ#QO:Cs7lWo!UtU=rtrTPKAZ_n&,ZG- -_=.FH#Q=^Qrs/SnJ,ff&c!!,7o -s8N)os8N>nHiODfn:0Bprs@W`^]4Jp#JpFjrr<'`&-)Y0q#C@!n9b3@_=2s4rVm2^ -s1eU:i!7*uJH#TM4qI\n!;QTo!UtU=rrp7=KAcMgrrf/Gpce]X -%3P@0n9c;__=.FH#Q>86rrDiorrMV=s8N8=s+B8)55tTl+8A(iHliU0n,OO8rX]&/ -!;QTo!UtU=rrp7=KAcMgrrC -#J^=hs7cWpJH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_q#C?o -nGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWp -JH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_puDASpuDASpuDAS -puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS -puDASpuDASpuDASpuDASp]~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/bingo.png b/2014OC/qr/bingo.png deleted file mode 100644 index 790b927..0000000 --- a/2014OC/qr/bingo.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/demo/yumiB7p.xcf b/2014OC/qr/demo/yumiB7p.xcf deleted file mode 100644 index 47cae8a..0000000 --- a/2014OC/qr/demo/yumiB7p.xcf +++ /dev/null Binary files differ diff --git a/2014OC/qr/master_stamp.odt b/2014OC/qr/master_stamp.odt deleted file mode 100644 index 52da761..0000000 --- a/2014OC/qr/master_stamp.odt +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr1.png b/2014OC/qr/qr1.png deleted file mode 100644 index d8edee3..0000000 --- a/2014OC/qr/qr1.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr1.ps b/2014OC/qr/qr1.ps deleted file mode 100644 index 48d81bd..0000000 --- a/2014OC/qr/qr1.ps +++ /dev/null @@ -1,1411 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82ll4qIQ5#QOf-J,oVb -&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll -4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7F -s8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cpc]4=*rnJ8 -KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.%tG`%4qE;GpcnfV+92?Cn:1K5s8N,h -J,fN]_>f#cpc]4=*rnJ8KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.%tG`%4qE;G -pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cpc]4=*rnJ8KE(^2s83u=rr_b?s7lWo&+FrH -#JpH<+8>m+HiOEN&-)Y:#JonW*rl?2J,f86rsB"In9c;X!UtU=q#C@)n9b3@_>jET -p]9l3!!iK6s8NE2_=2go!!2S=s7lWo&+FrH#JpH<+8>m+HiOEN&-)Y:#JonW*rl?2 -J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fC -s1f0C*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP -s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d -s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 -^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`s7ehYJ,oVcs82lsrW%HJ#Jg<="UDgC -J,fjE5s8E"Jrs-@=!!NVC!.Y%Drr3U`s7ehY -J,oVcs82lsrW%HJ#Jg<="UDgCJ,f6drr>:Q"5s3qn,OR0 -rr@]KrrDiort4aMrs/N6KDtp9n,qVK_=.FHrr2tNqu6Zks8N]#J,]cQ%tjl^5O\d5 -s2"1)+9)9?KDYZKq#C@+n:1HCrXXY]!'frTi;^X_!$D4?!/(1K!;QTo&b(;M#Q>6d -rr>:Q"5s3qn,OR0rr@]KrrDiorrDQg!"f1G&-(S_!"\u-pcne/+8>m8rrg+;J,fm8rrg+;J,fm8rrg+;J,fm8rrg+;J,fm8rrg+;J,fn,OO8^]8la -#Q>86rrDinrtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdrr<*" -r#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDin -rtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDinrsS`)pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDinrsS`) -pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$ -!UtU=rrBn7rrDinrsS`)pc]4@rs-=Ms5aH7q#:9nr;?Tq -"9/<1n,r^c5O\d5!'frTrr<*!rrDinrrDuq!!!-#rsnN#s7ehJ"5j/Dn,r[j!WN*! -q#:9nr;?Tq"9/<1n,r^c5O\d5!'frTrr<*!rrDinrrDuq!!!-#rsnN#s7ehJ"5j/D -n,r[j!WN*!q#:9nr;?Tq"9/<1n,r^c5O\d5!'frTrr<*!rrDiors\B!i!9;OHli>Q -n,OR1!"'8:i!95lquHKl&-)Y0q#C@&n,qSRs6tCX!'frQ+9)Qn,OR1!"'8:i!95lquHKl&-)Y0q#C@&n,qSRs6tCX!'frQ -+9)Qn,OR1!"'8:i!95lquHKl&-)Y0 -q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cF -HiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ -!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs -4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th" -J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9n -r;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoW -r;[#r4og*4q#C?rn:1K5rr6a+90+er#b\un9k69!Bq%orrDiorr_b?s7lTo%tELBrXXN$s1f0C+8A(i -I/a0I4qI\n!;QTo"7Ug?q#:=)J)CS2%tGc%^^p>bpcn7qrr<'`&-)Y0q#C?rn:1K5 -rr4_J,fgH -s8N)orVmAcs8EQ/i:m9_KAce/!.=bG"V:MQp](j)rrDiorrDQg!"T%Fs82j%rXXMZ -#Jom0+8u6B"5j/Drr2uns8N)grrjE5#Q>6a!!g@0!$D1?!s@H]5Q:Z_q#C?o -nG`Ius2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo!:^!g%faBFqu@!$%tFWb_=.FH -rW!$&huH"@rrDiorrDQg!"T%Fs82j%rXXMZ#Jom0+8u6B"5j/Drr2uns8N;mJ,f:- -!.Y%K"9&:J+9)9Br#Z1CrW!#p4qI\n!;QTo#4R-Bpc\\-s8N3#!.5mfrr`0@#QF]& -!r+qis8N)os8N;mJ,f:-!.Y%K"9&:J+9)9Br#Z1CrW!#p4qI\n!;QTo#4R-Bpc\\- -s8N3#!.5mfrr`0@#QF]&!r+qis8N)os8N;mJ,f:-!.Y%K"9&:J+9)9Br#Z1CrW!#p -4qI\n!;QTo"7QENq#:=0"9/?%n,qVD!WRZMs8EOZ*rnJ)J,f\:!!2Qki:m?QJ,oWK%tG`%4og*4 -q#C?rn,qVDrrjH5!"2$\HlrCf -&,ZG&!"],0!;QQn$@j5n5QCW]#JpHXrX\o,p](j)rrDinrsF8upcnfV -!!g@?r;Qa)5Oa%Bs8EQ,!;HO)s8N)os8Ni'J,]bh!!D0Z_=2s4#Q=]*s7cWaI/a0I -4qI\n!;QTo(%?_Q#J^@ars@T`5O\Xp -pc\\*rr<6fn,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QKl -!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6f -n,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QQn#_4#s^^pJ' -p]:Ep!oO&Cs8N,Xq"t*p!UtU=q#::!J04g,&-(S_!WW0$huH"ArrM'Qqu?j#n:1K5 -rr37S+90+es5lJ,ff#cs1f.q+8A#"Hli>P&-)Y0 -q#C?onGWD&!UtU=#JpFj!<9hFJ04PM!.5jg4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfP -rsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H<4qI\n -!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u -!WRfPrsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H< -4qI\n!;QTo#Om*@#JpFj!<<'+n:1H<5Q?66#Jop0!!NVDn:1K5s8N>nHiODfs*t+L -rsJ7Frr>:`J,fhjnG`Il#JonZs7lWo#Om*@#JpFj!<<'+n:1H<5Q?66#Jop0!!NVD -n:1K5s8N>nHiODfs*t+LrsJ7Frr>:`J,fhjnG`Il#JonZs7lWo#Om*@#JpFj!<<'+ -n:1H<5Q?66#Jop0!!NVDn:1K5s8NW!HiODfn9b69^]4K:pcn9J!!2iqrr3-,s6tO< -q#C@)n9b3@_=2gPs1eU:s7ehJrr<)p!WN*&#QO:Cs7lWo&+FrH#JonW!<9h7"98-\ -nG`Ihp]:Bo"UG(sJ,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0 -*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K< -!5\^8!oX*orr<$@s8NGq"9/VBn,OO8rX]&/!;QTo!UtU=rrBn8rrV-Y_#FB7+92?J -n,r[q_=.FH#Q>86rrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo -!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK -!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL"n6m]s1f0FrrDio -rrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;PUS!;PUS!;PUS!;PUS!;PUS -!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS -!;PUS!;PUS!;H~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr2.png b/2014OC/qr/qr2.png deleted file mode 100644 index cee8bda..0000000 --- a/2014OC/qr/qr2.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr2.ps b/2014OC/qr/qr2.ps deleted file mode 100644 index 2e4c4fd..0000000 --- a/2014OC/qr/qr2.ps +++ /dev/null @@ -1,1409 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!'%n,r^crrf/frrXrr_b?s7lWo -!UtU=rr^+;KE(rO$kN7Xpcn6J+901HHlrCg"7Ug?q#C?pn:1K<"2Y"is8N'-&,[OE -5O\Xps2"2P+92?Cn:1K5s8N,hJ,fNN_>f/frrm+J,f:-!.5jg!UtU=q#C@#n9b3@_=.FH!'^D_&0LZJn:1K54ofsP!!2S= -s7lWo$1NjE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,fXrr_b?s7lWo!UtU=rrp7=quHLVs8NGa -!'ft#+8>m+HlrCg"7Ug?q#C?pn:1K<"i:6:!;JeYrsIZa5Oa%Bp]9l3+92?Cn:1K5 -s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,f0!!@`/pce]X -#p8pCs+B50!Up3grrDinrrIc1rW!%Mi:oM9!!sbB!WRf1!!2Qkqu6Zkrr3"Oi;N]Y -J)L)crrm:KAZ_1n,rRf!;QQn -!JB>0!!@`/pce]X#p8pCs+B50!Up3grrDiorr_b?rs/T("bYb5rXXY]rrKt*rr<9' -^^l(t!'gJ_!;QTo"7Ug?#QOf-KAce/%tjo^!Q":*!!`J=%tjl^5Q:Z_q#C?rn:1HC -s8N7Ti;`ceKE(rP_=7I)#62ILKDtp9rr2uns8N2jJ,]cRrrn&5s8EO]s8N,9nG`Im -s1f.trr>:_rrDiorr_b?rs/T("bYb5rXXY]rrKt*rr<9'^^l(t!'gJ_!;QQn%tig8 -!WW&tp](hT+901WKE(rOrr2s&+92f/frrE&u!!XPFrW%HJq#::(KAcM*s82ll -!"XT%s2"_fs8N)urr<6Fs8E"Js7lTn%tig8!WW&tp](hT+901WKE(rOrr2s&+92!;QQn(]5?T4ob]bp]:Em!<9n) -"98,sn,qSR_>aH7q#::0r#Yo&!!E8r!WW&ts2"1,s7cWa"5jF#rr2unrr3f4*rnJ) -"98,ss82ls_=.R,p]9jdi!7*trrDinrtkST!'UAbs7cWpquHc5n,r^c!Up3L#JpE> -!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$t -I/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS -_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c -!!3*!!;QQn#5fPJrX]%erVup#rVm"N*s]Rls8N6&!UtU=q#:9tr#Z1C&-(Se!!!-" -rrdio#J^lMrriB'n:1K5rr33#*s_cUs586i;N]V"9&6&J0,$3&-)Y5!!2S=s7lTn#5fPJrX]%erVup#rVm"N*s]Rls8N6& -!UtU=q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@ -i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?s -n,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n -%tig?_>aH7q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX' -s1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU= -q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX's1eV^*s_cF -"98-[!.5jg!UtU=q#::4KAcdGs*t+E5Q?Ao#J^=e!<<$/J,fiSn:1K5rr3pii;^Xn -J,o@/s+B57^]8`^s8EOZ!!iPnJ,ff#cpcne2i!7$tHiX3G%tFWbs6tOP&-)Y0q#:9nJH#TS -5QCW]s2"2Srr3&h"5s.Y"FM9k4qI\n!;QQn!.b(L#=&7d!<9n)J,]HLn,qVJ!!IZk -!'UqnrrDinrr@TL!!bagquHc5n:1H;!q6P&-)Y0q#(-np]9ma!!*>@s8N;]#J^lJ*s_cE!!iK&!;QKl -!r)fcrr<')_>jN>i!7%.r#Z1Brr<<&rrDilrrVrrnG`Ih#JpH?#2fa%&,[LSrVlj& -rVllmr;Qin!V$*h!=-I@rs%Bd^^p>b#Q=Z&#Q=Z&q#(-np]9ma!!*>@s8N;]#J^lJ -*s_cE!!iK&!;QKl$2?abKAZ_1n,OR1!!3[`i;Wc[&-(S_!WN*!q#(-upcne2huEfI -!$D4@!Y9qArr<04s5f$-s2"^7!;QHk!l=@.s8N)8rr3?+ -!UtTss2"_c+901VrrDikrrU%+"98B$_>aHB!!2S=i;^XnJ04g-rr2unqu6`6n,r^j -!5\[7$NL4sJ)L@Cs*u3k_>aH7q"t'm_=.R,rrBn7rsJf-n:0Br_>f$-s2"^7!;QTo -!q6m+HlrCf -!!D-as8N)srVup/s8N)orr3"L+8u6KHlr+an9c>XrW!&Y#QOf(r;HZr&-)Y0q#:9o -J04aj%"'/l!UtIYs8E!#i!9;^!;ufr!"],0!;QQn!Iu9k!"=5sp]9l3+924nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\- -rr>4nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\-rr>4nqu@!$rrh6brW%?G!!#7_ -rrDinrs\f*pc\\-rr>4nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\-rr>4nqu@!$ -rrh6brW%?G!!#7_rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYU -p](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%# -s8EQ/rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYUp](hWi:oP+ -"9/?cs82ll5Oa%#s8EQ/rrDiorsnOG!<<$/J04g-s83r=!WW0)i;`ces5jET!!3-"#N5X]&-(S_!WN*!q#C@(n9b69rXXN$s2"a5*rl?A -rs.K^rX]%ep]:Bo!;QTo%e+iGs8EOZ+901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorsnOG -!<<$/J04g-s83r=!WW0)i;`ces586huEfIJ)C;-n,OO8_>jN>i!7$tJ,ff#cs8EQ/rrDiorsA1B*s_i8 -J)L)&s8N/Y!'gM`#iGs(s*t+LrX]&/!;QTo$1Nf#cs8EQ/rrDiortOsM!!g@?J0,$4n9c;_^]4K:!'fuQ -!!3D@&-)Y0q#C@.n9b3@_>f$-#JonW*s]R]"9/?cnG`Ii#J^lMrrDiortOsM!!g@? -J0,$4n9c;_^]4K:!'fuQ!!3D@&-)Y0q#C@.n9b3@_>f$-#JonW*s]R]"9/?cnG`Ii -#J^lMrrDiortOsM!!g@?J0,$4n9c;_^]4K:!'fuQ!!3D@&-)Y0q"k"(n:0BrrW%H+ -#Jom3i!7*fJ,]birr2unqYq5uJ)LA+!.Wo3_=.Qb#JonZrs-C>rrDijrtFmOi;`cV -J)CRJn,qSR_=2sS#JpE>!;QEj'C^M0s8E"Ji!7*f"5jF#n:1HC_>aH7q"k"(n:0Br -rW%H+#Jom3i!7*fJ,]birr2uns8N)grW!<,s82ll!"]+f#Jop0!!`J=!.5jg!WN*! -q#C?onGWCq!WW&tp](j)i!7*frr<9'^]8a(!!3*!!;QTo!:]sf$N^;*!;HO)s54-u -nG`Ims1eV^*rl?@rrDiorrDQf!"/i-quHKl&-(Pm_=7I)#62I=Hli=hrr2uns8N)g -rW!<,s82ll!"]+f#Jop0!!`J=!.5jg!WN*!q#C?pn:1K<(r>]h!;HTa"5rr=n:0Br -rW%HJ#Q=^Qs7lWo!UtU=rtrTAHiWpBn,qVD5Oa0\s8E"Jrs/N'J,f]h!;HTa"5rr=n:0BrrW%HJ#Q=^Qs7lWo"Rpd=#JpB=$,QXl -!;J_gquHNi!!#7_rrDiorrhh=!!g@=rs?OAJ,o@.&,ZG&qu?^]rr2uns8N5kHiODf -rVm2?s*t+E4qIPkq"t*l5Q:Z_q#C?sn9b3@_>XB?_>f#cpc]5d!;QHl!'gJ_!;QTo -"Rpd=#JpB=$,QXl!;J_gquHNi!!#7_rrDiorrhh=!!g@>rr`T+!.5mg!!3[`i;`f_ -n:0Bk!UtU=q#C?sn9b3@_>aH;#Q=^N+9) -rr`T+!.5mg!!3[`i;`f_n:0Bk!UtU=q#C?sn9b3@_>aH;#Q=^N+9)rr`T+!.5mg!!3[`i;`f_n:0Bk!UtU=q#C@(n9b3@_>jE5 -p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86 -rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<=!XJ]8s8N)os8NSuHiODfs82ll!WW&t -s8Mut!=-F>!!3E)&-)Y0q#C@(n9b3@_>jE5p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo -!UtU=rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2 -rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,h -J,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h -!WU"8rriYDn:1K5s8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$ -s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(S -rVllms8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$s+C@O!"BJ= -huGq@"98,ss*t(SrVllmj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr3.png b/2014OC/qr/qr3.png deleted file mode 100644 index a389e12..0000000 --- a/2014OC/qr/qr3.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr3.ps b/2014OC/qr/qr3.ps deleted file mode 100644 index 2bba5eb..0000000 --- a/2014OC/qr/qr3.ps +++ /dev/null @@ -1,1411 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82ll4qIQ5#QOf-J,oVb -&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll -4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7F -s8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cs8EOZ*rnJ8 -KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,oWK%tG`%4qE;GpcnfV+92?Cn:1K5s8N,h -J,fN]_>f#cs8EOZ*rnJ8KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,oWK%tG`%4qE;G -pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cs8EOZ*rnJ8KE(^2s83u=rr_b?s7lWo#Om*@ -#JpFj+92?Bn:0Br!!!Q0rsB"In9c;X!UtU=q#C@!n9b3@_>f$-s8N/iJ)L>,!"],0 -$4"E:Hli=hn:1K5s8N>nHiODfs*u3krrV\>i;WcW&-)Y:#JonW*rl?2J,ff/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@ -_>f/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_>f/Gs8EQ/i!7%.qu?u;!.5jg -!UtU=q#C@6n9b3@_>f/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_>f/Gs8EQ/ -i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6 -n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4 -&,[LL!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6n9b3@_=2s4 -pcn7trs/N6quHc4&,[LL!UtU=q#C?pn:1KjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoPs*u0rrVllmrr3c3 -!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6ds7cR)KDtoPs*u0r -rVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QTo'CZ,(!'gL6!<9n8quHcr -!.Y"R_#=<;#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lWo'CZ,( -!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<; -#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lTn%K%=C!"X_^!!2S= -rs-@>!!+/Hrr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QQn -%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/H -rr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QKl!rtLqJH#TL -55kQ]rrW)u#QOf,J04gj&-)Y0q#(-o!'UpDrr<$_rW)rt!rN$'s8N4P+926drr>:`KE(rO -_#FB7+9)9?KDYZKq#C@%n:1HCrXXY]!'gL9s8N)7rr<$@rr2tNqu6Zks8NJrJ,]cQ -%tjl^5Q?B9rrBk7!!",?rr@]KrrDiorsS=Grs/N6KDtp9s+C@O!5SU7!$D4?!/(1K -!;QTo!:^!g&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q -4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g -&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q4qE/cp]:?n -"Mb"es7lQm!oX+Xrrn,OO8^]8la#Q>86rrDinrtpCH -p]9jdhuEfXr#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdhuEfXr#Yn>n,OO8^]8la -#Q>86rrDinrtpCHp]9jdhuEfXr#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdhuEfX -r#Yn>n,OO8^]8la#Q>86rrDinrsS`)pc]4@rs-=Ms5aH7 -q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDinrsS`)pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDin -rsS`)pc]4@rs-=Ms5aH7q#:9nr;?TrHlrCg!UtU83!;HO)s8N)os8Nu+"5jFan:1HCs6tO<#J^k& -i!95lquHKl&-)Y0q#C@3n,qSRs6tO<#QO:Crs-=MKA["6&,ZG&!"],0!;QTo!q64_HiX2^%tGbs4og*4q#C?qn,qVK!#H/u -i;^Rm"9/?b!.4eH^^kr;pc\\-s7lWo!q6 -"9/VBrVm-%!!E8r!UtL:!!,7os8N)os8NDpJ,]bh!!E6+_>XB=rW!'#p]9l3rr<'` -&-)Y0q#C@#n:1HC^]4K:#JpB=#Q=]*s7cWaI/a0I4qI\n!;QKl!<>@`rrMmYrW!&q -4qISk!!Y[W!$;H]&-)Y0q#(-m!'gJ_!VekX!!E![&,cG-#!_SW*s]Rls8N)or;Qct -5Q:Z`pceZW"8G%jr;Qa$5O\Xp#J^lMrrDilrrE*arr3#o55kNapc]5drr<6fn,OO8 -^^pJF!;QKl!<>@`rrMmYrW!&q4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0 -!<>@arrM'Qqu?j#n:1K5rr3:T+90+es5lJ,f@arrM'Qqu?j#n:1K5qYpQbrr<*"_>jNHi:oP+ -!$D6Wn:1HCrW%HJq"k!jnG`Ihs2"a8&E*=Jn,OR1_=2sS#Q=^Qs7lHj!:^!g!WU"9 -rt+,`5O\Xps2"2Srs/N'J,fjNHi:oP+!$D6Wn:1HCrW%HJq#C?onGWD&!UtU=#JpHjE5s8EOZ+8A#"Hli>P&-)Y0 -q#C?onGWD&!UtU=#JpHf#c#JonZrr>4ns8N)o -s8N,hJ,fNO_>jE5#QOf6J04g-s*t(S_=2sS!'UqnrrDiorrMV=s8N5f/Gp]9ja*rl?Arr_0a_=7I)"UDm5J,ff/Gp]9ja*rl?Arr_0a_=7I)"UDm5J,ff/Gp]9ja*rl?A -rr_0a_=7I)"UDm5J,fjN:i;^Um!!",@rsJ5t -rs-C0!$;IF&-)Y0q#C?pn:1K86rrDiorrMV=s8N)8s8N/Ys1nX7 -!$D7@$Le/t#Jom0*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF -&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\ -pcne/!<3!!J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X -^^pJF!;QTo!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0' -i:oP:J,oTK!It1Mrrqn>+90+es8N)oj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr4.png b/2014OC/qr/qr4.png deleted file mode 100644 index 3a5c658..0000000 --- a/2014OC/qr/qr4.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr4.ps b/2014OC/qr/qr4.ps deleted file mode 100644 index 210d9de..0000000 --- a/2014OC/qr/qr4.ps +++ /dev/null @@ -1,1410 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!!#n:1K<%);jj!<9hFs53kX -n9k07!e:7Fs8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7Fs8N)grW!!#n:1K< -%);jj!<9hFs53kXn9k07!e:7Fs8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7F -s8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7Fs8N,hJ,fNK_>aHE#J^k#+8A(i -!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rsf:L%tGbs5O\Xps2"2P+92?Cn:1K5s8N,h -J,fNK_>aHE#J^k#+8A(i!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rsf:L%tGbs5O\Xp -s2"2P+92?Cn:1K5s8N,hJ,fNK_>aHE#J^k#+8A(i!$D6Wn9c>Xrr_b?s7lWo*:S=U -#JonW*rnJ8KDtp8!!D0ZrW%n:1K5s8N5kHiODfs8NA_pcn7q!<9hFrr3;?&,[LL!UtU=q#C?sn9b3@ -_>jN@i:oP+HiX2^&,uS8^^p>b!!2S=s7lWo"Rpd=#JpH?#iPJBn9b69^^pGE$,@)L -*rl?2J,fm+J,f:-!.5jg!UtU=q#C@!n9b3@_=.R,r;[BNp]9l6s7ebXHli=hn:1K5s8N>n -HiODfn,r^h!"^7I!UtU=pc\\**rl?2J,fm+HlrCg"7Ug?q#C?pn:1K<"i:6: -!;JeYrsIZa5Oa%Bp]9l3+92?Cn:1K5s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIY -s8N2jJ,fXrr_b?s7lWo!UtU=rrp7= -quHLVs8NGa!'ft#+8>m+HlrCg"7Ug?q#C?onGWD"!UtIY#JonW*s]XOHliU0n9k07 -!e:7Fs8N)grW!N2n9c;__=2go#JonW*s]XOI/O$HJ,f0!!@`/pce]X -#p8pCs+B50!Up3krri<$J,fm: -KAZ_1n,r^j"TACNs7lTn!JB>0!!@`/pce]X#p8pCs+B50!Up3krri<$J,f:`KAce/%tjo^!Q":*!"/bA -%tjl^5Oa1&q#::#KDtp9s+B80rXXY]rrKt*rr:QJ,faH7q#::0 -J0,$q!!D-Z!UtI:s1f.ts7cWa"5jF#rr2unrr3db*s_cF"5j.[n9b69^^l(tp]9jd -i!7*trrDinrtg2-#Q=]*huEfIHiX2^%tjoW!Up3L#JpE>!;QQn(P!S4rW!&Y!!2S: -!<9hFKE(]In,qSR_>aH7q#::(r#Z0[s*u3k_=2sS#JpH6a*s]Rls8N6&!UtU= -q#::,r#Z1C&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#::,r#Z1C&-(S_!WRfP#Q>6a -*s]Rls8N6&!UtU=q#::,r#Z1C&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#::,r#Z1C -&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#C?sn,OR1_>aH:pc]4@s8NGA%tid?4qE;( -s2"^7!;QTo"RlC5s2"^7"8G%jKE(rY^^l(U!'UpGi;^XmrrDiorrhfk+901Vrr`$[ -%tjo^$G[1)huGqOKAcdGrr2uns8N5k!$D6Wrr3)q4qE;GrsHOPKAZ_n%tig?_>aH7 -q#C?sn,OR1_>aH:pc]4@s8NGA%tid?4qE;(s2"^7!;QTo!:]sf(dJ%N+90+VHli>P -!!E8r4ofsP!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lWo!:]sf -(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP -!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lTn%>3U=_>jE5p]:DI -huGt?!"/c*%tFWbs6tO3U=_>jE5p]:DIhuGt?!"/c*%tFWbs6tOQ5Oa(!!!IZk!'UqnrrDin -rr@TL!!>IcquHcs#4R!^pcn7qr;ZtJ*rnJ8s8N)orr2tKrr<-cs82lsrs%t?+8A(i -I/O$JHli>P&-)Y0q#:9nJH#TO5QCW]s8N;mHlr,Jn9k07"FM9k4qI\n!;QKl"o&,u -qu@!$rrD!W!!4nKAcb0 -!Y>=hr;Qclrr3Q-!;J_gKAZ_on,r[j4qE;(rr<*2s54nKAcb0!Y>=hr;Qclrr3Q-!;J_gKAZ_on,r[j4qE;(rr<*2s54nKAcb0!Y>=hr;QclrVm#Ys2"1,s8N)8rr39)!UtTss2"_c+8l-= -q#13qi;^X_"98B$_>aH@!!2S=i;^XnJ04^h!;QNm"Q9f$-r;QclrVm#Ys2"1,s8N)8rr39) -!UtTss2"_c+8l-=q#C?onG`J%s8E!#s7ehJJ,f9Es82lsrW!&Ys8N2jJ,fm+HlrCf!!D-as8N)s -rr<'`&-)Y0q#::*KDtoPn9c>Q!UtIYs8E!#i!9;^!;uis!Bq%orrDinrt0n`!!2S: -+8>m+HlrCf!!D-as8N)srr<'`&-)Y0q#::*KDtoPn9c>Q!UtIYs8E!#i!9;^!;uis -!Bq%orrDinrt0n`!!2S:+8>m+HlrCf!!D-as8N)srr<'`&-)Y0q#C?pn9k69#sJ?= -rr>4nqu@!$rrh6brW%?G!!#7_rrDiorrMV:rr4nqu@!$rrh6brW%?G!!#7_rrDiorrMV:rr4nqu@!$rrh6brW%?G!!#7_ -rrDinrrIWlrrjET!!3-"#N5X]&-(S_!WN*!q#C?onG`Irs8EOZ -+901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorrDQg!"8i+%tGc%_>jET!!3-"#N5X]&-(S_ -!WN*!q#C?onG`Irs8EOZ+901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorrDQg!"8i+%tGc% -_>jET!!3-"#N5X]&-(S_!WN*!q#C?qn9c>X!"BJ=i:oJ9HiODe!!E8rrr<:O!;HTa -J,fX!"BJ=i:oJ9 -HiODe!!E8rrr<:O!;HTaJ,fX!"BJ=i:oJ9HiODe!!E8rrr<:O!;HTaJ,f^ -!!2Qh*s]X^rs%Bd^]8laq#C@#n,OO8rX]%ep]:Ep#N,R_n,OO8_>jN>i!7$tJ,f^!!2Qh*s]X^rs%Bd^]8laq#C@#n,OO8rX]%ep]:Ep#N,R_ -n,OO8_>jN>i!7$tJ,f^!!2Qh*s]X^rs%Bd^]8laq#C?u -n,OR*!WR]M!"1sj"5s3qn9c;_^^pJF"UDgCJ,fm:JH#TW4ob]Cs2"2P -*s]Rls8N6-^]8laq#C?un,OR*!WR]M!"1sj"5s3qn9c;_^^pJF"UDgCJ,fm:JH#TW4ob]Cs2"2P*s]Rls8N6-^]8laq#C?un,OR*!WR]M!"1sj"5s3qn9c;_ -^^pJF"UDgCJ,fnHliUn -n:1K;!"OMY!'ft&i!7*uJ,oWK&-)Y0q#C@!n9c;_s6tO:QJ)CRJs*t+L -rX]&/!;QTo#Om*_#QO:Cs8E!.J,]L5n:0@$_>f#cs8EQ/rrDiors/%@*s_i8J,fKJ -%Y+KY5Oa0\#JpFj!<<$/s8N)os8Nf&HiODfs*u0r_=2go#J^:Qrr<**^^pJF -!;QTo'_$JM#JpFj*s]XOHliU/!!E6$5Oe[Q!XHLOs8N)os8Nf&HiODfs*u0r_=2go -#J^:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU/!!E6$5Oe[Q!XHLOs8N)o -s8Nf&HiODfs*u0r_=2go#J^:Qrr<**^^pJF!;QEj'C^M0pc\\-huEfIJ)CRJ -n:1HC_>aH7q"k"(n:0Bk4og)j!!2S=i!7*fJ,]birr2unqYq5uJ)L)c!.Wo,!UtTs -#JonZrs-C>rrDijrtFmOi:oJ9J)C;-n:0@$_=2sS#JpE>!;QEj'C^M0pc\\-huEfI -J)CRJn:1HC_>aH7q#C?onGWCf!WW03i:m9_KAZ_on,qVK^]8a(!!3*!!;QTo!:]sf -!!3-"&`EEa%tid?5O\d5s1eV^*rl?@rrDiorrDQf!!!'"rt42a!"X_?!'frTi;^Rm -Hli=hrr2uns8N)grVup!s8N\hp](hWhuH"2"5s3p!.5jg!WN*!q#C?onGWCf!WW03 -i:m9_KAZ_on,qVK^]8a(!!3*!!;QTo!UtU=rtrTA"5rr=n:0Bk5Oa%#s8E"Jrs/N' -J,f\Di:oP+J)L)dn9b69rW%HJ#Q=^Qs7lWo -!UtU=rtrTA"5rr=n:0Bk5Oa%#s8E"Jrs/N'J,fjETpcne/!;J_gquHNi!!#7_rrDiort=gK!!g@?r#b\u -s*t+E4qIPkq"t*l5Q:Z_q#C@,n9b3@_>jETpcne/!;J_gquHNi!!#7_rrDiort=gK -!!g@?r#b\us*t+E4qIPkq"t*l5Q:Z_q#C@&n9b3@_>jET#J^=hs8N'#%tig?rs8+D -i:oP+J,fjET -#J^=hs8N'#%tig?rs8+Di:oP+J,fjET#J^=hs8N'#%tig?rs8+Di:oP+J,f!!3E)&-)Y0 -q#C@(n9b3@_>jE5p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<=!XJ]8s8N)os8N,h -J,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h -!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU= -rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2rr<*" -_>aH<#JonZs7lWo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FS -s8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK& -!;QTo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FSs8N'.&-(Pf -4ob]bp]:DF!!iK&!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS -!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;H~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr5.png b/2014OC/qr/qr5.png deleted file mode 100644 index 9ddb50a..0000000 --- a/2014OC/qr/qr5.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr5.ps b/2014OC/qr/qr5.ps deleted file mode 100644 index e490914..0000000 --- a/2014OC/qr/qr5.ps +++ /dev/null @@ -1,1411 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82lsrXXN$#QOf-J,oVb -&,cA+!e:7Fs8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ls -rXXN$#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7F -s8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cpc]5d*s_cU -KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.&,[LSrXXY]pcnfV+92?Cn:1K5s8N,h -J,fN]_>f#cpc]5d*s_cUKE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.&,[LSrXXY] -pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cpc]5d*s_cUKE(^2s83u=rr_b?s7lWo&+FrH -#JpH<+8A(i"5j/C&-)Y:#JonW*rl?2J,fjET -pcn6MhuGqOs8NE2_=2go!!2S=s7lWo&+FrH#JpH<+8A(i"5j/C&-)Y:#JonW*rl?2 -J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e -*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP -s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d -s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 -^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllms8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC -!.Y%Ds8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8Nc%"9/?cs*t+L_>jE5 -s8E"Jrs-@=!!NVC!.Y%Ds8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8Nc% -"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8N/i!$D4@#nM[g!!2S=rs-@>!!+/H -rr32\#JonZs7lWo!q613rr!!+/Hrr32\#JonZs7lWo!q613rr!!+/Hrr32\#JonZs7lWo#4R-B#Q>6a -rr<$_rW)rt!rN$'s8N+M+92?Cn:1K5s8N;mJ,]cQ%tOZ[!'^A^rr3&t!!iQ(!Iu9l -rr_b?s7lWo#4R-B#Q>6arr<$_rW)rt!rN$'s8N+M+92?Cn:1K5s8N;mJ,]cQ%tOZ[ -!'^A^rr3&t!!iQ(!Iu9lrr_b?s7lWo#4R-B#Q>6arr<$_rW)rt!rN$'s8N+M+92?C -n:1K5rr3%M!;QQo(4Z>hrW%hrW%hrW%hrW%hrW%6ds7ehY -KAcdFrr<$@rr2tNqu6Zks8NSuJ,]cQ%tjoW5Q?Aos1nX7!$D4?!/(1K!;QTo%e+uJ -#Q>6ds7ehYKAcdFrr<$@rr2tNqu6Zks8NSuJ,]cQ%tjoW5Q?Aos1nX7!$D4?!/(1K -!;QTo!:^!g$ie!Qs5m8rrg+;J,fm8rrg+;J,f86rrDinrs",6 -p]9jdi;WcY&,[OJ!!jYO^]8la#Q>86rrDinrs",6p]9jdi;WcY&,[OJ!!jYO^]8la -#Q>86rrDinrs",6p]9jdi;WcY&,[OJ!!jYO^]8la#Q>86rrDinrs",6p]9jdi;WcY -&,[OJ!!jYO^]8la#Q>86rrDinrri6"pc]5grr`SB&-(Sf!!Wsdrr<)hJ,fNK_>aH7 -q#:9rquHLU&-)Y4#J^lMi;Wc]%tjl^!UtU=rrBn7rrDinrri6"pc]5grr`SB&-(Sf -!!Wsdrr<)hJ,fNK_>aH7q#:9rquHLU&-)Y4#J^lMi;Wc]%tjl^!UtU=rrBn7rrDin -rri6"pc]5grr`SB&-(Sf!!Wsdrr<)hJ,fNK_>aH7q#:9nr;?U!"98-\n,r[i!:]sf -"[DJYrr<*!rrDinrrDuq!!NK)pcn6Mrr2ufrW!*dn,r[j!WN*!q#:9nr;?U!"98-\ -n,r[i!:]sf"[DJYrr<*!rrDinrrDuq!!NK)pcn6Mrr2ufrW!*dn,r[j!WN*!q#:9n -r;?U!"98-\n,r[i!:]sf"[DJYrr<*!rrDioru(;.i!9;OHli=hn:1H<4qE;(#Q>83 -!;HO)s8N)os8Nu+"5jFan9c;X!UtU=!'UpGi!95lquHKl&-)Y0q#C@3n,qSRs6tCX -!!2S=rr>4nKA["6&,ZG&!"],0!;QTo)=Rad#QO:@*rl?2J,]L4%tidFrX\o,p](j) -rrDioru(;.i!9;OHli=hn:1H<4qE;(#Q>83!;HO)s8N)os8N/i"5s.Y('ELp^]4K: -#J^Q!"]+f#Q>6a+90+er#b\un9b3@rX]&/!;QTo)=W"qp](j)i!95lJ04g,&,[OE -5Oa%##Q>86rrDioru(gHs54.]%tGc%^^p>bpcn7q!!iK6s8N)os8Nu+Hlr+` -&-(PmrXXN$s1f0C+8A(iHiOEN&-)Y0q#C@3n9c>Q!"]+f#Q>6a+90+er#b\un9b3@ -rX]&/!;QKl"UG(s!$;IGrri6"pcn9J!!3DAnGWCf5Q:Z_q#(-q#QO8n*s_iG"T/8p -5Oe[Q!XHR2rVup_rr2unr;Qp*s6p"1#QOf,quHLVnG`Ii#Jop/!!#7_rrDilrriZ- -n,OO8s8N6"!;JeJrr<**_=7F(!'gJ_!;QKl"UG(s!$;IGrri6"pcn9J!!3DAnGWCf -5Q:Z_q#:9tr#bsS&-(Sert0b]#JonW!;J_XJ,]L4!.Y%Drr33#+90+es54_J,f86i:m9_KAce/!.=bG#S6hTp]9l6s7lQm%c@Tk&-(S_!"X_?s8E"G -rW!37r#b\7n:1K5rVmAc#Q>86i:m9_KAce/!.=bG#S6hTp]9l6s7lQm%c@Tk&-(S_ -!"X_?s8E"GrW!37r#b\7n:1K5rVmAc#Q>86i:m9_KAce/!.=bG#S6hTp]9l6s7lWo -&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0 -!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5 -!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_ -!;QTo#4R-B#Q=^Qs8N3#!.5mfrr`0@#QF]&!VenYrrDiors%tBrs/N'J,fNNrW%Hlr,I&,[OLrX\o,p](j)rrDinrttYU -pcnfV!!g:>Hlr,I&,[OLrX\o,p](j)rrDinrttYUpcnfV!!g:>Hlr,I&,[OLrX\o, -p](j)rrDinrttYUpcnfV!!g:>Hlr,I&,[OLrX\o,p](j)rrDinrttYUpcnfV!!g:> -Hlr,I&,[OLrX\o,p](j)rrDiortY$Qrs-=>"5s3qn:0BrrW!'#p]9l3rr<'`&-)Y0 -q#C@/n:1HC^]4Jps2"2Si;`cV"98,sn9k69!Bq%orrDiortY$Qrs-=>"5s3qn:0Br -rW!'#p]9l3rr<'`&-)Y0q#C@/n:1HC^]4Jps2"2Si;`cV"98,sn9k69!Bq%orrDio -rtY$Qrs-=>"5s3qn:0BrrW!'#p]9l3rr<'`&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk -!!Y[W!$;H]&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM` -!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H] -&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0 -!<>@arrM'Qqu?j#n:1K5rr3:T+90+es5lJ,f@arrM'Qqu?j#n:1K5qYpfiHiWpBs+B80rseGt -+901HJ,]cQ!.Y%DqYpfiHiWpBs+B80rseGt+901HJ,]cQ!.Y%DqYpfiHiWpBs+B80 -rseGt+901HJ,]cQ!.Y%DqYpfiHiWpBs+B80rseGt+901HJ,]cQ!.Y%DqYpfiHiWpB -s+B80rseGt+901HJ,]cQ!.Y%Ds8N)grW!Z6n9c;X5Q?Aopc]5d+8A#"Hli>P&-)Y0 -q#C?onGWD&!UtIY!'gL9i:oJHr#b\t!.5jg4qI\n!;QTo!:]sf'`mfO*rnP*KAcMg -&,[OE4ofsP!'UqnrrDiorrDQf!#5P(Hli>Qs+B8)4qIQ5pc\\**rnJ8s8N)os8N)g -rW!Z6n9c;X5Q?Aopc]5d+8A#"Hli>P&-)Y0q#C?pn:1KjN>i:m?B!$;IGrri6"#Jop0!!NVDn:1K5s8N5kHiODfs8N;]p]9ja -*s_iG"T/6)_=7I)"UDm5J,fjN>i:m?B -!$;IGrri6"#Jop0!!NVDn:1K5s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5 -s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5s8Nc%HiODfn:0BrrW!'#p]9jd -i:m?PrriBen:1K5s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5s8Nc%HiODf -n:0BrrW!'#p]9jdi:m?PrriBen:1K5s8N]#HiODfn,qSR^]8lap](j&+92?Hn:0Bk -5Oa1&q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt=#k3?%pcn7ts7lWo&b(/J#Jom3i!7$t -J,f9D&,[OLrs8+Di:oP+J,f86 -rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0*s_cUs8N)os8N,hJ,fNK_>jN: -i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL -"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo!:]sf -!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0puDASpuDASpuDASpuDASpuDASpuDAS -puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS -puDASp]~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr6.png b/2014OC/qr/qr6.png deleted file mode 100644 index 997a5cd..0000000 --- a/2014OC/qr/qr6.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr6.ps b/2014OC/qr/qr6.ps deleted file mode 100644 index e9b0af2..0000000 --- a/2014OC/qr/qr6.ps +++ /dev/null @@ -1,1409 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!!#n:1K<%);jj!;HO)s53kX -n9k07!e:7Fs8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7Fs8N)grW!!#n:1K< -%);jj!;HO)s53kXn9k07!e:7Fs8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7F -s8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7Fs8N,hJ,fNK_>aH:#Q>6drr35m -!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rrWN*%tjl]#Oh^8s2"2P+92?Cn:1K5s8N,h -J,fNK_>aH:#Q>6drr35m!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rrWN*%tjl]#Oh^8 -s2"2P+92?Cn:1K5s8N,hJ,fNK_>aH:#Q>6drr35m!$D6Wn9c>Xrr_b?s7lWo*:S=U -#Jom3rs-=MKDtp8!!D0ZrW%n:1K5s8N5kHiODfs8NA_p]9l3!;HO)rr3;?&,[LL!UtU=q#C?sn9b3@ -_>jN@i:m?BHiWpA&,uS8^^p>b!!2S=s7lWo"Rpd=#JpH?#iPIYn9b62!"])/$,@)L -*rl?2J,fXrr_b?s7lWo!UtU= -rrp7=quHLVs8NGa!'ft#+8>m+HlrCg"7Ug?q#C?pn:1K<"i:6:!;JeYrsIZa5Oa%B -p]9l3+92?Cn:1K5s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,fXrr_b?s7lWo!:]sf&HVBK*s]XOHliU0n9c;_ -_=2jN!!7ZMq#C?onGWD"!UtIY#JonW*s]XOHliU0n9k07!e:7Fs8N)grW!N2n9c;_ -_=2go#JonW*s]XOI/O$HJ,frrn&5 -s8EO]s8N,9nG`Iqs1f.trr>4_J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f<> -rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_ -J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f!;QQn(P!S4rW!&Yp]9l3!<9h7"98,sn,qSR_>aH7q#::0J0,$q -!!D0S!UtI:s1eU:s7cWa"5jF#rr2unrr3db*s_cF"5rqTn9b69^]4K:p]9jdi!7*t -rrDinrtg2-#Q=]*i:m?BHiX2^!!E8r!Up3L#JpE>!;QQn$2bkM_>f$-#J^lMrrWMB -n9k69"[3HI*rl?@rrDinrsATF#JpFj*s]Rls8N0+_=2jP!!POsJ0+alrr2unrr3<& -*s]X^J0,$3&-)Y3#JonWrr<3d%tG`%!WN*!q#::"r#Z0[s*u0r^^pJF!sc[3I/a0M -4qE/c!!3*!!;QQn$2bkM_>f$-#J^lMrrWMBn9k69"[3HI*rl?@rrDinrs\fI#Q>86 -huEfXKA["7rrdio#J^lMrriB'n:1K5rr3E)*s_cUs53kXs+B57s8N4P*s]Rls8N6& -!UtU=q#::%r#Z1C&-(Pf!WRf1#QOf,J0,$3&-)Y5!!2S=s7lTn%/_1PrX]%e!!3+P -i!9;^"FqR!^^pJF"TSSmJ,f86huEfXKA["7rrdio#J^lMrriB'n:1K5 -s8N5k!$D6Ws8N\hpcne2i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>jNIi:oP:KAcdF -%tid?4qE;(s2"^7!;QTo"RlC5s2"a8&`EFKs+B80^^l(U!'UpGi;^XmrrDiorrhfk -+901Wrt42a5Q?Aos1f.thuGqOKAcdGrr2uns8N5k!$D6Ws8N\hpcne2i;^S'KAZ_n -%tig?_>aH7q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX' -q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU= -q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX'q#17)*s_cF -J,f:-!.5jg!UtU=q#:9tKAcdGs82lrrt0b]#Q=]*i;`ceJ,fiSn:1K5rr31Ti;^Xn -quH`r&V'idrW!&Ys8EOZ!!iPnJ,fjE5rr3R\!!iK'"5s4Y%tFWbs6tOP&-)Y0q#:9nJH#TS -5Q?66s2"2Ss8N/:n9k07"FM9k4qI\n!;QQn!.b(L#=&6=!<9n)J,fNM_=2jN!!IZk -!'UqnrrDinrr@TL!!bagJ,oVcn:1KP&-)Y0q#(-op]9l3rr<$`s8N;]#Q>83*s_cE!!iK&!;QKl -"8DodI/a0H5QC`fi!95lr#Z1Brr<<&rrDilrr`#sn9k69!'gM`#2fac&,[LSrVlj& -rVllmr;Qlo!UtL:!!#7`rs%BdrX\oK#Q=Z&#Q=Z&q#(-op]9l3rr<$`s8N;]#Q>83 -*s_cE!!iK&!;QKl$2?abKAZ_1n,OR1!!*U\rW!'3s5aHB!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB -!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB!!2S=i;^XnJ04PNrr2unrr30" -!<9h7"98B$_>aHB!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB!!2S=i;^Xn -J04PNrr2uns8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^ -5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5 -s8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^5Oa1&p]:Em -!<<#u"5rqTn:1K5rr3R\*rl?2Hlr+an9c>XrW!&Y#QOf(r;HZr&-)Y0q#::*J0+al -n9c>Q!UtIYs8E!#i!9;^!;ufr!"],0!;QQn&V(r'!UtIYp]9l3+92m+HlrCf!!D-as8N)srVup/s8N)orr3R\*rl?2Hlr+a -n9c>XrW!&Y#QOf(r;HZr&-)Y0q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_ -q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::%quHLU!.Y"K4qIPk#QF`+ -i!95]I/a0H5Q:Z_q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::%quHLU -!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G -&-)Y0q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#::1J04g,%tig85O\dT -!'gM]!;JeJHiX3G&-)Y0q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#::1 -J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#:9nr;Qa(4qE/cs2"a5*rl?Ars.K^ -rX]%ep]:Bo!;QQn!;uis$9euN+901Wr#Yn>s8N>^s8EQ/i:m?PrrDinrrDus!"(n# -J04g-s83r=!WW0)i;`ces5jET!!3-"#N5X]&-(S_ -!WN*!q#:9nr;Qa(4qE/cs2"a5*rl?Ars.K^rX]%ep]:Bo!;QQn&c"98/r!!dlOp]9l6s7lTn&c"98/r!!dlOp]9l6s7lTn -&c"98/r!!dlOp]9l6s7lTn&c"98/r -!!dlOp]9l6s7lTn&c"98/r!!dlOp]9l6s7lWo#Oh^8!'Uqn -i;WcW&-)Y6p]9ja*s]X^rs%Bd^]8laq#C@!n,OO14qI\Orr<$0s8N;u!Up(2#JpH? -#2fa%!.Y%Ds8N>n!$;2)&-(Sf!!!Q0rs&6!n,OO8_>jN>i!7$tJ,fm:J,o@.!!D-a^^p>b#J^lMrriYC -!.Y%Ds8Nf&!$Ct:s*t+E4ob]C#J^lJ*s]Rls8N6-^]8laq#C@.n,OR*!WRZMpc\Z[ -i!7%.r#Z0Z&-)Y5#J^=hs7lWo%e+if#QO:ChuEfIJ)L)ds8NA_#JpFj!<<$/s8N)o -s8NSuHliUnn:0?r!UtTspcnfY#iGs(s*t+LrX]&/!;QTo%e+if#QO:ChuEfIJ)L)d -s8NA_#JpFj!<<$/s8N)os8NSuHliUnn:0?r!UtTspcnfY#iGs(s*t+LrX]&/!;QTo -%e+if#QO:ChuEfIJ)L)ds8NA_#JpFj!<<$/s8N)os8Nf&HiODfs*u0r_=2go#Jom3 -rr>:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU0n,r[j5Oe[Q!XHLOs8N)os8Nf& -HiODfs*u0r_=2go#Jom3rr>:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU0n,r[j -5Oe[Q!XHLOs8N)os8Nf&HiODfs*u0r_=2go#Jom3rr>:Qrr<**^^pJF!;QEj'C^M0 -s8E!#huEfIJ)CRJn:1HC_>aH7q"k"(n:0BrrW!&Y!!2S=i!7*fJ,]birr2unqYq5u -J)LA+!!D-Z!UtTs#JonZrs-C>rrDijrtFmOi;`cV"5j.[n:0@$_=2sS#JpE>!;QEj -'C^M0s8E!#huEfIJ)CRJn:1HC_>aH7q#C?onGWCf!WW03i:oJHqu?u]h!<9n)HiWpBn,qVK -rW%HJ#Q=^Qs7lWo!UtU=rtrTAHiX2_n9b62!Up3Ls8E"Jrs/N'J,fjETpcne2i:m9_quHNi!!#7_rrDio -rt=gK!!g@?r#b\us+B8)!"\u-q"t*l5Q:Z_q#C@,n9b3@_>jETpcne2i:m9_quHNi -!!#7_rrDiort=gK!!g@?r#b\us+B8)!"\u-q"t*l5Q:Z_q#C@+n9b3@_>jET#Q=^N -*rnJ8KAce0#k3?%p]9l6s7lWo&b(/J#JpH<*s_cFHli>P%tig?rs8+Di:m?BJ,fjET#Q=^N*rnJ8KAce0#k3?%p]9l6s7lWo%e+iG -#JpH86rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<= -!XJ]8s8N)os8NSuHiODfs82ll!WW&ts8Mut!=-F>!!3E)&-)Y0q#C@(n9b3@_>jE5 -p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86 -rrDiorrMV=s8N2;s*t+Krrdio!!2Th!!3,9rr3-,_=2sSq#C?pn:1K<"2Y"f!<3!$ -J0+alnG`Ihs2"^7"UDm5J,f -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr7.png b/2014OC/qr/qr7.png deleted file mode 100644 index 26986b6..0000000 --- a/2014OC/qr/qr7.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr7.ps b/2014OC/qr/qr7.ps deleted file mode 100644 index 14b0fc2..0000000 --- a/2014OC/qr/qr7.ps +++ /dev/null @@ -1,1410 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!N2s*t+LrXXN$!'gL6!<9hF -r;?TsJ,f4nKE(^2 -s83u=rr_b?s7lWo!UtU=rrBn8rt"&f^^l(t!'UpGs7ehYr#bt="7Ug?q#C?pn:1K< -!5\^8&)dK'%tjl^4qE;GpcnfV+92?Cn:1K5s8N,hJ,fNK_>jNGi;^S'KDtp8%tjoW -5QCX's8N2jJ,f4nKE(^2s83u=rr_b?s7lWo"Rpd= -#JpE>#P^OQJ)C;j&-)Y:#JonW*rl?2J,frs/<`n:0?r4qI\n$4"E: -Hli=hn:1K5s8N5kHiODfrr35u5Oa0\!'UqnrsB"In9c;X!UtU=q#C?sn9b3@_>aH> -pcn7thuGqOs8NE2_=2go!!2S=s7lWo"Rpd=#JpE>#P^OQJ)C;j&-)Y:#JonW*rl?2 -J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP -s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d -s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 -^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`rr>:`J,oVcs82lsrW%HJ#Jg<="UDgC -J,fjE5s8E"Jrs-@=!!NVC!.Y%Drr3U`rr>:` -J,oVcs82lsrW%HJ#Jg<="UDgCJ,fQs+B8)!WN*!q#C?un9b69 -^]8lart#)>qu@!$!.5jg5Q?Aop]:Bo!;QTo#4R!?s1eVas8NW/&,ZD4rW%4nKAcMhn,r[q_=.FHrr2tNqu6Zk -s8N]#J,]L4%tig85O\dT#Jom0+9)9?KDYZKq#C?onG`Iis1f0Fs8DuuI/a0H55tTa -+8>m8rrg+;J,fm8rrg+;J,fm8rrg+;J,f2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F -#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B -"98B$!Y>2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F#J^=hrs/N6 -s8N)orr3B(!;J_gKDu1l%tig?!!!Q0rrW6%n:1KX_=7F("[DJYrr<*!rrDinrrDup -!!j\A5Oa%Bs2"4(!!PUV"9/?%rr2unrr2urqu@!Epcn7q+901HrW!*dn,r[j!WN*! -q#:9nr;6O#+8A(iHlrC)nGWCk5O\dT!!3*!!;QQn!;u`p#Trh+n9c>X_=7F("[DJY -rr<*!rrDioru(;.i!9;OHli=hn,r[q^^p>C#Q>83!;HO)s8N)os8Nu+"5jFan9c;X -!Up3k#J^lJ!!iK6quHKl&-)Y0q#C@3n,qSRs6tCX!!2Qkrs-=Mqu@!$&,ZG&!"],0 -!;QTo)=Rad#QO:@*rl?2"9/VA&,ZD4rX\o,p](j)rrDioru(;.i!9;OHli=hn,r[q -^^p>C#Q>83!;HO)s8N)os8N/i"989!'`\.4"9/?b!!D0Z^^kr;pc\\-s7lWo!q6bpcn7q!!g:Ms8N)o -s8Nu+HiWpBn:0@$rXXN$s1f0C+8A(iHiODe&-)Y0q#C@3n9b62!UtTs#Q>6a+90+e -r#b\un9b3@^^pJF!;QTo)=W"Rp]9l6i!95lJ04g,&,[OE5Oa%##J^lMrrDioru(bpcn7q!!g:Ms8N)orVloV#QOf*J0,$rrri6"pcn9J!!3DA -nG`Ih#JpE>!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop0!!*>@rr2unrVloV#QOf* -J0,$rrri6"pcn9J!!3DAnG`Ih#JpE>!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop0 -!!*>@rr2unrVloV#QOf*J0,$rrri6"pcn9J!!3DAnG`Ih#JpE>!;QHk"2GHIi;W`g -J,fhjn9b624og*4!'UC4s7lKk"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lKk"2GHI -i;W`gJ,fhjn9b624og*4!'UC4s7lKk"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lKk -"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lWo&Fb2-s8EQ/i:m9_KAce/!.=bG!tY;O -q#:jE5#Q>6a!!g@0!$D1?#6Wla5Oa1&q#C?o -nG`Ius2"a5!!iK6J,fhjn,OR0!!`Va!'ft&s7lWo!:^!g%faBFqu@!$%tFWb_=.FH -rW!0*huH"2J,fjH5 -!"1t$r#bt<&,ZG&!"],0!;QQn$@j5n5QCX's2"a5rr"5s3p!.Wr+rrn&Tp]9l3rr<'`&-)Y0q#C@&n:1HC^]4Jps1eVai;W`[ -KE(]In9k69!Bq%orrDiors\CHrs-=>"5s3p!.Wr+rrn&Tp]9l3rr<'`&-)Y0q#C@& -n:1HC^]4Jps1eVai;W`[KE(]In9k69!Bq%orrDiors\CHrs-=>"5s3p!.Wr+rrn&T -p]9l3rr<'`&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM` -$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H] -&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`$/kSCs*u0k -4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0"TU^ss5<\M!!E>lJ,fl -J,flJ,f:`KAcMg%tjoW4ofsP!'UqnrrDiorrDQf!#5P(J,]L5s+B8)4qE;Gpc\\**rnJ8 -s8N)os8N)grW!Z6n:1H<5Q?Aopc]4@s7ebXHli>P&-)Y0q#C?onGWD&!UtU=!'gL9 -i:oJHKE(^1!.5jg4qI\n!;QTo!:]sf'`mfRrr>:`KAcMg%tjoW4ofsP!'UqnrrDio -rrMV=s8NhMs+B505QCX'pcnfV!!g@0J,]L4&-)Y0q#C?pn:1K<'uBp&huH"Ar#b\u -s82j%_=2sS!'UqnrrDiorrMV=s8NhMs+B505QCX'pcnfV!!g@0J,]L4&-)Y0q#C?p -n:1K<'uBp&huH"Ar#b\us82j%_=2sS!'UqnrrDiorrMV=s8NhMs+B505QCX'pcnfV -!!g@0J,]L4&-)Y0q#C@.n9b3@_>f#cpcn7trr<*"J,fhjnG`Il#JonZs7lWo'_$JM -#JpFj!;JeJJ,]KLs*t(S_=7I)"UDm5J,ff#c -pcn7trr<*"J,fhjnG`Il#JonZs7lWo$1N<5Oe[Q!Vc]prriB' -n:1K5s8NDpHiODfn9b69rr2s#+8A(irr<)p!WN*&!!2S=s7lWo$1N<5Oe[Q!Vc]prriB'n:1K5s8NDpHiODfn9b69rr2s#+8A(irr<)p!WN*&!!2S= -s7lWo$1N<5Oe[Q!Vc]prriB'n:1K5s8N]#HiODfn,qSR^]8la -p](j&+92?Hn:0Bk5Oa1&q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt=#k3?%pcn7ts7lWo -&b(/J#Jom3i!7$tJ,f9D&,[OLrs8+Di:oP+J,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0*s_cUs8N)o -s8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K+90+es8N)os8N)grVup!s8N8\ -pcne/!<3!!J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X -^^pJF!;QTo!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0puDASpuDASpuDAS -puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS -puDASpuDASpuDASpuDASp]~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr8.png b/2014OC/qr/qr8.png deleted file mode 100644 index e05bae0..0000000 --- a/2014OC/qr/qr8.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr8.ps b/2014OC/qr/qr8.ps deleted file mode 100644 index 6ef4fdc..0000000 --- a/2014OC/qr/qr8.ps +++ /dev/null @@ -1,1409 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.19999 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!N2s*t+E4qIQ5!'gL6!<9hF -r;?TsJ,faH9 -pcn9J!!3E)&-)Y:#JonW*rl?2J,frrVs[nG`Ii#Q>86rsB"In9c;X -!UtU=q#C?sn9b3@_>aH9pcn9J!!3E)&-)Y:#JonW*rl?2J,frrVs[ -nG`Ii#Q>86rsB"In9c;X!UtU=q#C?sn9b3@_>aH9pcn9J!!3E)&-)Y:#JonW*rl?2 -J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fC -s1f0C*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP -s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d -s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 -^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLO -s8N)orr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3U`rr>:`J,oVcs82ls -rW%HJ#Jg<=!XHLOs8N)orr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3U` -rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3H*+8>gHKDtoPn:1HC_#FB8*s_fF -"5jF"&-)Y0q#::&r#b\6%tjl^!UtU=#Jg?>!?VRGrr_0a^^pJF!;QQn%K%=C!"X_^ -!!2S=rs-@>!!+/Hrr3)Y#J^lMrrDinrselJp](hWrr<)hJ,]bhrr<'A#QF`*i!7%. -s8N)orr3H*+8>gHKDtoPn:1HC_#FB8*s_fF"5jF"&-)Y0q#:9sKDu2U%tOZ[!'^A^ -rr3&t!!iQ(!Iu9irrDinrrn&T#Q>6arr<$_rW)rt!rN$'s8N+M+8l-=q#:9sKDu2U -%tOZ[!'^A^rr3&t!!iQ(!Iu9irrDinrrn&T#Q>6arr<$_rW)rt!rN$'s8N+M+8l-= -q#:9sKDu2U%tOZ[!'^A^rr3&t!!iQ(!Iu9irrDioruCNU!<9h7J,]cQ!.4bOrW%4nKE(^2s+B57 -^^kr;rr2tNqu6Zks8N]#J,]L4%tjoW5Q?Ao#J^k#+9)9?KDYZKq#C@+n:1H<4qE;G -pcne2i!7%.J04dj!/(1K!;QTo&b(;M!'UpGs7ehYKA[!M%tGc$rr@]KrrDiort4aM -rr>4nKE(^2s+B57^^kr;rr2tNqu6Zks8N)grr]s1nX7 -"!7M,&-)Y0q#13oi;`fV!!OJ>5O\dTrW!$&i;^Um!!=;C4qI\n!;QNm!oX+Xrr<3E -pcn6Ms8E!#"5s3prr<-C!'UqnrrDimrrV-Yrr2s%+8A(i"98?#!s@K]_#FB:*rnJ8 -s8N)orVlrWs8N#u"X!M(n,r^i!!<>]s1nX7"!7M,&-)Y0q#:9tKAcM*n,qVK!!3]/ -+8l0F*s]R]J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#:9t -KAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R] -J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#::'quHLU%tjle -^^pJ'#J^lMrrW6%n:1K%4qE;G#J^lMi!7%.s8N0$!UtU=rrBn7 -rrDinrsnr,pc]4@rs-=Ms54-t&-)Y3!!2S=s8N)8rr2unrr3K+!;J_gKDu1l&-(Pm -^^pJF!rrAkJ,fNK_>aH7q#::'quHLU%tjle^^pJ'#J^lMrrW6%n:1Km+J,f:.n:0?r5O\dT -!!3*!!;QQn!;ucq&pter!UtU=pcn7thuH"2"9/?%rr2unrr2urr;[IX+8>m+J,f:. -n:0?r5O\dT!!3*!!;QQn!;ucq&pter!UtU=pcn7thuH"2"9/?%rr2uns8Nu+"5jFa -n:1H<5O\Xp#Q>6a!!iK6quHKl&-)Y0q#C@3n,qSRs6tO:Q!$;IF%tFWbrX\o,p](j)rrDioru(;.i!9;OJ,]L5 -n,OO8rXXMZ#Q>83!;HO)s8N)os8Nu+"5jFan:1H<5O\Xp#Q>6a!!iK6quHKl&-)Y0 -q#C?qn,r^i!!@TKs1nX7&0D.m!.Wr,^^kr;pc\\-s7lWo!q6bpcn7qrVup/s8N)os8Ni'J,f9En:0@$rXXN$s1f0C+8A(i -I/X*G&-)Y0q#C@/n:1K5!UtTs#Q>6a+90+er#b\un9k38!"],0!;QTo(%?_Qp]9l6 -i!95lJ04g,&,[OE5Oa("!!!Q0rrDinrrW*?#QOf*J0,$rrri6"pcn9J!!3DAnGWCf -!WN*!q#:9pr#Z1DrrR]m#QOf,quHLVnG`Ii#Jop/!!!'!rrDinrrW*?#QOf*J0,$r -rri6"pcn9J!!3DAnGWCf!WN*!q#:9pr#Z1DrrR]m#QOf,quHLVnG`Ii#Jop/!!!'! -rrDinrrW*?#QOf*J0,$rrri6"pcn9J!!3DAnGWCf!WN*!q#:9tr#bsS&-(Sert0b] -#JonW!;J_XJ,]cQ!.Y%Drr33#+90+es56a!!g@0!$D1?!s@H]5Q:Z_q#C?pn9k69%0?M,!!iK6J,fhjn,OR0!!<>] -!'gJ_!;QTo!UtL:!"Au/qu@!$%tFWb_=.FHrW!$&huH"@rrDilrrW6b!.Y%K"9&:J -+9)9Br#Z1CrW!,s4og*4q#(-o!'UC4s8N3#!.5mfrr`0@#QF]&"o(7]J,f -i;N]_"9/?%n,qVD!V$*h$NL)9J0+bT!.Y%Ds8N/iJ)L;+#m:2-!Up3Lp]9ma!"/c* -%tG`%4og*4q#C?qn:0Bq!!rc-!!2Qki:m?Brr@`rrVs[nGWCh4og!1!!Y[W!$;H]&-)Y0q#(-m -!'gJ_!r,"LrW!!`!.=eH#!_SW*s]Rls8N)or;Qct5Q:Zapcn9I!!5=aI/a0N5O\Xp -#J^lMrrDinrs4,ss1f0Fi:m?PrriBd&-(S_qu?j#n:1K5rr37S+90+es5lJ,ff/Gs8NPt!$D6Wn:1HCrW%HJq"k!jnG`Iks2"_fi;`fdn,OR1_=2sS#Q=^Q -s7lHj!:^!g"TQ=s2"2Srs/N'J,ff/Gs8NPt!$D6Wn:1HCrW%HJq#C?onGWCq!UtU=!'gL9 -i:m9_s8N?!4ofsP!'UqnrrDiorrDQf!"/hsJ,]L5s+B8)!"],0#P^I_Hli>P&-)Y0 -q#C?onGWCq!UtU=!'gL9i:m9_s8N?!4ofsP!'UqnrrDiorrDQf!"/hsJ,]L5s+B8) -!"],0#P^I_Hli>P&-)Y0q#C?onGWCq!UtU=!'gL9i:m9_s8N?!4ofsP!'UqnrrDio -rrMV=s8N5U`Y#JonZrr>4ns8N)os8N,hJ,fNO_>jE5#PnB*i!7*fJ,]L4 -&-)Y0q#C?pn:1K<"Mt-9!!i?"#iGs(n:1H<4qI\n!;QTo!UtU=rrg1U`Y#JonZrr>4ns8N)os8N5kHiODfs8N>^ -p]9l6rr<*"rr_0a_=7I)"UDm5J,fjN? -i:m?BJ,]KLs8N2Z#Jop0!!NVDn:1K5s8N5kHiODfs8N>^p]9l6rr<*"rr_0a_=7I) -"UDm5J,fjN:i;^Um!!",@rsJ5trs-C0!$;IF -&-)Y0q#C?pn:1K86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t -#Jom0*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?o -nGWCf!WW0'i:oP:J,oTK!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!! -J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo -!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK -!It1Mrrqn>+90+es8N)oj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/qr/qr9.png b/2014OC/qr/qr9.png deleted file mode 100644 index 63b4fa7..0000000 --- a/2014OC/qr/qr9.png +++ /dev/null Binary files differ diff --git a/2014OC/qr/qr9.ps b/2014OC/qr/qr9.ps deleted file mode 100644 index 7ef155c..0000000 --- a/2014OC/qr/qr9.ps +++ /dev/null @@ -1,1411 +0,0 @@ -%!PS-Adobe-3.0 -%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) -%%Creator: Writer -%%LanguageLevel: 2 -%%DocumentSuppliedResources: (atend) -%%DocumentMedia: 595x842 595 842 0 () () -%%BoundingBox: 0 0 595 842 -%%Pages: 1 -%%EndComments -%%BeginProlog -%%BeginResource: procset xpdf 3.00 0 -%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC -/xpdf 75 dict def xpdf begin -% PDF special state -/pdfDictSize 15 def -/pdfSetup { - /setpagedevice where { - pop 2 dict begin - /Policies 1 dict dup begin /PageSize 6 def end def - { /Duplex true def } if - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfSetupPaper { - 2 array astore - /setpagedevice where { - pop 2 dict begin - /PageSize exch def - /ImagingBBox null def - currentdict end setpagedevice - } { - pop - } ifelse -} def -/pdfStartPage { - pdfDictSize dict begin - /pdfFillCS [] def - /pdfFillXform {} def - /pdfStrokeCS [] def - /pdfStrokeXform {} def - /pdfFill [0] def - /pdfStroke [0] def - /pdfFillOP false def - /pdfStrokeOP false def - /pdfLastFill false def - /pdfLastStroke false def - /pdfTextMat [1 0 0 1 0 0] def - /pdfFontSize 0 def - /pdfCharSpacing 0 def - /pdfTextRender 0 def - /pdfPatternCS false def - /pdfTextRise 0 def - /pdfWordSpacing 0 def - /pdfHorizScaling 1 def - /pdfTextClipPath [] def -} def -/pdfEndPage { end } def -% PDF color state -/cs { /pdfFillXform exch def dup /pdfFillCS exch def - setcolorspace } def -/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def - setcolorspace } def -/sc { pdfLastFill not { pdfFillCS setcolorspace } if - dup /pdfFill exch def aload pop pdfFillXform setcolor - /pdfLastFill true def /pdfLastStroke false def } def -/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if - dup /pdfStroke exch def aload pop pdfStrokeXform setcolor - /pdfLastStroke true def /pdfLastFill false def } def -/op { /pdfFillOP exch def - pdfLastFill { pdfFillOP setoverprint } if } def -/OP { /pdfStrokeOP exch def - pdfLastStroke { pdfStrokeOP setoverprint } if } def -/fCol { - pdfLastFill not { - pdfFillCS setcolorspace - pdfFill aload pop pdfFillXform setcolor - pdfFillOP setoverprint - /pdfLastFill true def /pdfLastStroke false def - } if -} def -/sCol { - pdfLastStroke not { - pdfStrokeCS setcolorspace - pdfStroke aload pop pdfStrokeXform setcolor - pdfStrokeOP setoverprint - /pdfLastStroke true def /pdfLastFill false def - } if -} def -% build a font -/pdfMakeFont { - 4 3 roll findfont - 4 2 roll matrix scale makefont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /Encoding exch def - currentdict - end - definefont pop -} def -/pdfMakeFont16 { - exch findfont - dup length dict begin - { 1 index /FID ne { def } { pop pop } ifelse } forall - /WMode exch def - currentdict - end - definefont pop -} def -% graphics state operators -/q { gsave pdfDictSize dict begin } def -/Q { - end grestore - /pdfLastFill where { - pop - pdfLastFill { - pdfFillOP setoverprint - } { - pdfStrokeOP setoverprint - } ifelse - } if -} def -/cm { concat } def -/d { setdash } def -/i { setflat } def -/j { setlinejoin } def -/J { setlinecap } def -/M { setmiterlimit } def -/w { setlinewidth } def -% path segment operators -/m { moveto } def -/l { lineto } def -/c { curveto } def -/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto - neg 0 rlineto closepath } def -/h { closepath } def -% path painting operators -/S { sCol stroke } def -/Sf { fCol stroke } def -/f { fCol fill } def -/f* { fCol eofill } def -% clipping operators -/W { clip newpath } def -/W* { eoclip newpath } def -/Ws { strokepath clip newpath } def -% text state operators -/Tc { /pdfCharSpacing exch def } def -/Tf { dup /pdfFontSize exch def - dup pdfHorizScaling mul exch matrix scale - pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put - exch findfont exch makefont setfont } def -/Tr { /pdfTextRender exch def } def -/Tp { /pdfPatternCS exch def } def -/Ts { /pdfTextRise exch def } def -/Tw { /pdfWordSpacing exch def } def -/Tz { /pdfHorizScaling exch def } def -% text positioning operators -/Td { pdfTextMat transform moveto } def -/Tm { /pdfTextMat exch def } def -% text string operators -/xyshow where { - pop - /xyshow2 { - dup length array - 0 2 2 index length 1 sub { - 2 index 1 index 2 copy get 3 1 roll 1 add get - pdfTextMat dtransform - 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put - } for - exch pop - xyshow - } def -}{ - /xyshow2 { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval show moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval show moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/cshow where { - pop - /xycp { - 0 3 2 roll - { - pop pop currentpoint 3 2 roll - 1 string dup 0 4 3 roll put false charpath moveto - 2 copy get 2 index 2 index 1 add get - pdfTextMat dtransform rmoveto - 2 add - } exch cshow - pop pop - } def -}{ - /xycp { - currentfont /FontType get 0 eq { - 0 2 3 index length 1 sub { - currentpoint 4 index 3 index 2 getinterval false charpath moveto - 2 copy get 2 index 3 2 roll 1 add get - pdfTextMat dtransform rmoveto - } for - } { - 0 1 3 index length 1 sub { - currentpoint 4 index 3 index 1 getinterval false charpath moveto - 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get - pdfTextMat dtransform rmoveto - } for - } ifelse - pop pop - } def -} ifelse -/Tj { - fCol - 0 pdfTextRise pdfTextMat dtransform rmoveto - currentpoint 4 2 roll - pdfTextRender 1 and 0 eq { - 2 copy xyshow2 - } if - pdfTextRender 3 and dup 1 eq exch 2 eq or { - 3 index 3 index moveto - 2 copy - currentfont /FontType get 3 eq { fCol } { sCol } ifelse - xycp currentpoint stroke moveto - } if - pdfTextRender 4 and 0 ne { - 4 2 roll moveto xycp - /pdfTextClipPath [ pdfTextClipPath aload pop - {/moveto cvx} - {/lineto cvx} - {/curveto cvx} - {/closepath cvx} - pathforall ] def - currentpoint newpath moveto - } { - pop pop pop pop - } ifelse - 0 pdfTextRise neg pdfTextMat dtransform rmoveto -} def -/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 - pdfTextMat dtransform rmoveto } def -/TJmV { 0.001 mul pdfFontSize mul neg 0 exch - pdfTextMat dtransform rmoveto } def -/Tclip { pdfTextClipPath cvx exec clip newpath - /pdfTextClipPath [] def } def -/Tclip* { pdfTextClipPath cvx exec eoclip newpath - /pdfTextClipPath [] def } def -% Level 2/3 image operators -/pdfImBuf 100 string def -/pdfImStr { - 2 copy exch length lt { - 2 copy get exch 1 add exch - } { - () - } ifelse -} def -/skipEOD { - { currentfile pdfImBuf readline - not { pop exit } if - (%-EOD-) eq { exit } if } loop -} def -/pdfIm { image skipEOD } def -/pdfImM { fCol imagemask skipEOD } def -/pr { 2 index 2 index 3 2 roll putinterval 4 add } def -/pdfImClip { - gsave - 0 2 4 index length 1 sub { - dup 4 index exch 2 copy - get 5 index div put - 1 add 3 index exch 2 copy - get 3 index div put - } for - pop pop rectclip -} def -/pdfImClipEnd { grestore } def -% shading operators -/colordelta { - false 0 1 3 index length 1 sub { - dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { - pop true - } if - } for - exch pop exch pop -} def -/funcCol { func n array astore } def -/funcSH { - dup 0 eq { - true - } { - dup 6 eq { - false - } { - 4 index 4 index funcCol dup - 6 index 4 index funcCol dup - 3 1 roll colordelta 3 1 roll - 5 index 5 index funcCol dup - 3 1 roll colordelta 3 1 roll - 6 index 8 index funcCol dup - 3 1 roll colordelta 3 1 roll - colordelta or or or - } ifelse - } ifelse - { - 1 add - 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch - 6 index 6 index 4 index 4 index 4 index funcSH - 2 index 6 index 6 index 4 index 4 index funcSH - 6 index 2 index 4 index 6 index 4 index funcSH - 5 3 roll 3 2 roll funcSH pop pop - } { - pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul - funcCol sc - dup 4 index exch mat transform m - 3 index 3 index mat transform l - 1 index 3 index mat transform l - mat transform l pop pop h f* - } ifelse -} def -/axialCol { - dup 0 lt { - pop t0 - } { - dup 1 gt { - pop t1 - } { - dt mul t0 add - } ifelse - } ifelse - func n array astore -} def -/axialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index axialCol 2 index axialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index axialSH - exch 3 2 roll axialSH - } { - pop 2 copy add 0.5 mul - axialCol sc - exch dup dx mul x0 add exch dy mul y0 add - 3 2 roll dup dx mul x0 add exch dy mul y0 add - dx abs dy abs ge { - 2 copy yMin sub dy mul dx div add yMin m - yMax sub dy mul dx div add yMax l - 2 copy yMax sub dy mul dx div add yMax l - yMin sub dy mul dx div add yMin l - h f* - } { - exch 2 copy xMin sub dx mul dy div add xMin exch m - xMax sub dx mul dy div add xMax exch l - exch 2 copy xMax sub dx mul dy div add xMax exch l - xMin sub dx mul dy div add xMin exch l - h f* - } ifelse - } ifelse -} def -/radialCol { - dup t0 lt { - pop t0 - } { - dup t1 gt { - pop t1 - } if - } ifelse - func n array astore -} def -/radialSH { - dup 0 eq { - true - } { - dup 8 eq { - false - } { - 2 index dt mul t0 add radialCol - 2 index dt mul t0 add radialCol colordelta - } ifelse - } ifelse - { - 1 add 3 1 roll 2 copy add 0.5 mul - dup 4 3 roll exch 4 index radialSH - exch 3 2 roll radialSH - } { - pop 2 copy add 0.5 mul dt mul t0 add - radialCol sc - encl { - exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 0 360 arc h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - 360 0 arcn h f - } { - 2 copy - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arcn - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arcn h - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a1 a2 arc - dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add - a2 a1 arc h f - } ifelse - } ifelse -} def -end -%%EndResource -%%EndProlog -%%BeginSetup -xpdf begin -%%BeginResource: font BAAAAA+IPAGothic -%!PS-TrueTypeFont-29810 -10 dict begin -/FontName /BAAAAA+IPAGothic def -/FontType 42 def -/FontMatrix [1 0 0 1 0 0] def -/FontBBox [0 -205 2016 1761] def -/PaintType 0 def -/Encoding 256 array -dup 0 /c00 put -dup 1 /c01 put -dup 2 /c02 put -dup 3 /c03 put -dup 4 /c04 put -dup 5 /c05 put -dup 6 /c06 put -dup 7 /c07 put -dup 8 /c08 put -dup 9 /c09 put -dup 10 /c0a put -dup 11 /c0b put -dup 12 /c0c put -dup 13 /c0d put -dup 14 /c0e put -dup 15 /c0f put -dup 16 /c10 put -dup 17 /c11 put -dup 18 /c12 put -dup 19 /c13 put -dup 20 /c14 put -dup 21 /c15 put -dup 22 /c16 put -dup 23 /c17 put -dup 24 /c18 put -dup 25 /c19 put -dup 26 /c1a put -dup 27 /c1b put -dup 28 /c1c put -dup 29 /c1d put -dup 30 /c1e put -dup 31 /c1f put -dup 32 /c20 put -dup 33 /c21 put -dup 34 /c22 put -dup 35 /c23 put -dup 36 /c24 put -dup 37 /c25 put -dup 38 /c26 put -dup 39 /c27 put -dup 40 /c28 put -dup 41 /c29 put -dup 42 /c2a put -dup 43 /c2b put -dup 44 /c2c put -dup 45 /c2d put -dup 46 /c2e put -dup 47 /c2f put -dup 48 /c30 put -dup 49 /c31 put -dup 50 /c32 put -dup 51 /c33 put -dup 52 /c34 put -dup 53 /c35 put -dup 54 /c36 put -dup 55 /c37 put -dup 56 /c38 put -dup 57 /c39 put -dup 58 /c3a put -dup 59 /c3b put -dup 60 /c3c put -dup 61 /c3d put -dup 62 /c3e put -dup 63 /c3f put -dup 64 /c40 put -dup 65 /c41 put -dup 66 /c42 put -dup 67 /c43 put -dup 68 /c44 put -dup 69 /c45 put -dup 70 /c46 put -dup 71 /c47 put -dup 72 /c48 put -dup 73 /c49 put -dup 74 /c4a put -dup 75 /c4b put -dup 76 /c4c put -dup 77 /c4d put -dup 78 /c4e put -dup 79 /c4f put -dup 80 /c50 put -dup 81 /c51 put -dup 82 /c52 put -dup 83 /c53 put -dup 84 /c54 put -dup 85 /c55 put -dup 86 /c56 put -dup 87 /c57 put -dup 88 /c58 put -dup 89 /c59 put -dup 90 /c5a put -dup 91 /c5b put -dup 92 /c5c put -dup 93 /c5d put -dup 94 /c5e put -dup 95 /c5f put -dup 96 /c60 put -dup 97 /c61 put -dup 98 /c62 put -dup 99 /c63 put -dup 100 /c64 put -dup 101 /c65 put -dup 102 /c66 put -dup 103 /c67 put -dup 104 /c68 put -dup 105 /c69 put -dup 106 /c6a put -dup 107 /c6b put -dup 108 /c6c put -dup 109 /c6d put -dup 110 /c6e put -dup 111 /c6f put -dup 112 /c70 put -dup 113 /c71 put -dup 114 /c72 put -dup 115 /c73 put -dup 116 /c74 put -dup 117 /c75 put -dup 118 /c76 put -dup 119 /c77 put -dup 120 /c78 put -dup 121 /c79 put -dup 122 /c7a put -dup 123 /c7b put -dup 124 /c7c put -dup 125 /c7d put -dup 126 /c7e put -dup 127 /c7f put -dup 128 /c80 put -dup 129 /c81 put -dup 130 /c82 put -dup 131 /c83 put -dup 132 /c84 put -dup 133 /c85 put -dup 134 /c86 put -dup 135 /c87 put -dup 136 /c88 put -dup 137 /c89 put -dup 138 /c8a put -dup 139 /c8b put -dup 140 /c8c put -dup 141 /c8d put -dup 142 /c8e put -dup 143 /c8f put -dup 144 /c90 put -dup 145 /c91 put -dup 146 /c92 put -dup 147 /c93 put -dup 148 /c94 put -dup 149 /c95 put -dup 150 /c96 put -dup 151 /c97 put -dup 152 /c98 put -dup 153 /c99 put -dup 154 /c9a put -dup 155 /c9b put -dup 156 /c9c put -dup 157 /c9d put -dup 158 /c9e put -dup 159 /c9f put -dup 160 /ca0 put -dup 161 /ca1 put -dup 162 /ca2 put -dup 163 /ca3 put -dup 164 /ca4 put -dup 165 /ca5 put -dup 166 /ca6 put -dup 167 /ca7 put -dup 168 /ca8 put -dup 169 /ca9 put -dup 170 /caa put -dup 171 /cab put -dup 172 /cac put -dup 173 /cad put -dup 174 /cae put -dup 175 /caf put -dup 176 /cb0 put -dup 177 /cb1 put -dup 178 /cb2 put -dup 179 /cb3 put -dup 180 /cb4 put -dup 181 /cb5 put -dup 182 /cb6 put -dup 183 /cb7 put -dup 184 /cb8 put -dup 185 /cb9 put -dup 186 /cba put -dup 187 /cbb put -dup 188 /cbc put -dup 189 /cbd put -dup 190 /cbe put -dup 191 /cbf put -dup 192 /cc0 put -dup 193 /cc1 put -dup 194 /cc2 put -dup 195 /cc3 put -dup 196 /cc4 put -dup 197 /cc5 put -dup 198 /cc6 put -dup 199 /cc7 put -dup 200 /cc8 put -dup 201 /cc9 put -dup 202 /cca put -dup 203 /ccb put -dup 204 /ccc put -dup 205 /ccd put -dup 206 /cce put -dup 207 /ccf put -dup 208 /cd0 put -dup 209 /cd1 put -dup 210 /cd2 put -dup 211 /cd3 put -dup 212 /cd4 put -dup 213 /cd5 put -dup 214 /cd6 put -dup 215 /cd7 put -dup 216 /cd8 put -dup 217 /cd9 put -dup 218 /cda put -dup 219 /cdb put -dup 220 /cdc put -dup 221 /cdd put -dup 222 /cde put -dup 223 /cdf put -dup 224 /ce0 put -dup 225 /ce1 put -dup 226 /ce2 put -dup 227 /ce3 put -dup 228 /ce4 put -dup 229 /ce5 put -dup 230 /ce6 put -dup 231 /ce7 put -dup 232 /ce8 put -dup 233 /ce9 put -dup 234 /cea put -dup 235 /ceb put -dup 236 /cec put -dup 237 /ced put -dup 238 /cee put -dup 239 /cef put -dup 240 /cf0 put -dup 241 /cf1 put -dup 242 /cf2 put -dup 243 /cf3 put -dup 244 /cf4 put -dup 245 /cf5 put -dup 246 /cf6 put -dup 247 /cf7 put -dup 248 /cf8 put -dup 249 /cf9 put -dup 250 /cfa put -dup 251 /cfb put -dup 252 /cfc put -dup 253 /cfd put -dup 254 /cfe put -dup 255 /cff put -readonly def -/CharStrings 256 dict dup begin -/.notdef 0 def -/c27 39 def -/c26 38 def -/c25 37 def -/c24 36 def -/c23 35 def -/c22 34 def -/c21 33 def -/c20 32 def -/c1f 31 def -/c1e 30 def -/c1d 29 def -/c1c 28 def -/c1b 27 def -/c1a 26 def -/c19 25 def -/c18 24 def -/c17 23 def -/c16 22 def -/c15 21 def -/c14 20 def -/c13 19 def -/c12 18 def -/c11 17 def -/c10 16 def -/c0f 15 def -/c0e 14 def -/c0d 13 def -/c0c 12 def -/c0b 11 def -/c0a 10 def -/c09 9 def -/c08 8 def -/c07 7 def -/c06 6 def -/c05 5 def -/c04 4 def -/c03 3 def -/c02 2 def -/c01 1 def -end readonly def -/sfnts [ -<000100000009008000030010637674202087228c0000009c000000a26670676d -0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 -2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 -cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 -084902fe00001f4000000020707265703f711a3d00001f600000000a00> -<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e -008300b00057005000610060009100800052008a0095007d005400f6005e00e8 -009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 -00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 -00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e -0057000000> -<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c -111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd -2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 -04040505060600163f3f3f3f3f3f3f162d00000000> -<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 -08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 -0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b -3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd -7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> -<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 -0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 -00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b -020001cf4efe75fddd00000000> -<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 -12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e -2e2e3130133737363736370013170201242526273700130726270405c3233536 -43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 -0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> -<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 -030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 -060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a -102a313001132101130101130121130321010301010301210400e402acfddbf6 -fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd -2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> -<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 -011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 -c01313102a133130011702030401070025060706070607000527000105270573 -727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a -6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> -<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c -0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 -002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 -2724133737262706072700131706070706071617121306106b5afef1feebfe4a -72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe -95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> -<000100d9022b072703e50011002540150f190206190b110b090802000e090801 -11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 -2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 -89d5000000> -<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f -0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e -2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e -2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 -0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e -13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 -fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac -feb73b016c020531fe1cfec900> -<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 -1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f -2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b -1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 -042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 -2325241901000404171601201f011e1d012c2b01262301010001080701222101 -08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 -2135212627371617072136371706072115211205072627113315213501231133 -13113311331133112521260321020197498668018ac6fde70219554f81575e69 -01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 -f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b -4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> -<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 -0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 -1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 -12010700030201272413361321352111331121150469c7025273fdceca75fd79 -730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 -da01348f01e8fe188f00000000> -<000201520021070605a60005000b00274016010b09080605030200080d02000e -0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 -170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 -6773fca8dd00000000> -<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 -00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 -2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 -2724130535013217161514070623222726353437361722070615141716333237 -36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 -3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a -41564138681b41877244295a10265124243f23273d3d292100> -<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 -1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 -03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 -2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe -de74989d028e000000> -<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 -0103020103000e0b0a020401030f040a010502010a0100020406050103000102 -002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae -0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> -<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 -000102002a2b2b2a313013211521bc0687f979035ca4000000> -<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 -0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 -050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 -c0102a31300111060527242517060711211521020706052724373613213503db -e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 -2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> -<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 -01000107060102000e04030a010901040605010201010a09010b000108070105 -002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 -fe37041f8dfd7e8f8f02820000> -<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 -0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e -2e2b1310c01313102a1331300126273716173726273716170124133613170203 -0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 -45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> -<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 -09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e -2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e -6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 -3001220180feb0e770014e02162d439a00> -<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f -0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 -1005041a03020104010001131203020302000e302318282320203d3c3a200403 -01033937360b0a050011033f18033411060502010a0300010404030113100f00 -0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 -2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 -3217161514070623222726353437361722070615141716333237363534272601 -361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d -473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 -c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 -295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe -ca00000000> -<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 -020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 -04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 -6558e1c7fb91000000> -<000102dbffc50685063f0009002e402307050402040008030100010908010200 -0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 -05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> -<00020389ffe10477065a00030007002e40240504010601060706010100010302 -0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 -0323073315230389ee25a425eeee065afb2fbaee00> -<00010293ff71056c06770008002f402408070605040302070d00010001000e05 -01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 -01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> -<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 -040c0b0108070102000e0403020c00030706010019030801040d0c010908010b -0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 -9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> -<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 -1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 -012c2b2a250128231e250124262525011f18172501191d002501150804353401 -3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a -16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 -042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 -0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 -3717020706070623202726351121112135211123350511211523111711211101 -2115210721152117211521152115210481252bbd0126201d04970f31295570c8 -feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 -3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 -fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> -<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 -000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a -1310ed3130252411102526270203022322272635103736212017041110050306 -0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 -011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 -0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> -<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 -1715141202070602030000010002000e21070819071029271715141210080200 -2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 -0526270623200326113437122120171611100716170116173635342702212207 -0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe -315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 -d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> -<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f -0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b -07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 -1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc -b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> -<000101390027065a053900090035402c09081a010007061a0104020401000105 -040103020103000e080704030a0301010402010109000106050103002a2a2b2a -2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> -<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 -0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 -000104090001002b2a102a2b2a2b313001331104050700251123012627371617 -37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f -063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> -<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b -1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 -15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e -2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 -ed10ed3130011621363717070607363717060506073633321336371704071617 -07342704151421323717062320113425262322012712132227015e9001054726 -980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd -0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac -9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c -0800000000> -<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 -40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c -25012a292825012625242501221e1d25011a1817100f25030a14132501110500 -250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b -01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c -023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 -17160b0a19030c01001901080706030219030406043e3d01282701292601302f -2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 -1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 -0111211523111711211101353315211521152115213521352135011123352111 -2311012115210721152117211521152115210136373613330207060701331114 -1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 -c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe -020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b -fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b -917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b -1f1b4b0000> -<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 -0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 -0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e -2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 -0716170726270205272413262700232227263534373625361304050104070615 -14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b -7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 -5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b -fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> -<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 -0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 -28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 -24260319170605040d00222628111901240104252401272601010001100f0104 -002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 -0003020127001337213503161716212025060704232027262706072736371121 -3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 -9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f -8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a -0b37388bab7e9c579001ee89011bbba15e7acf0000> -<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 -000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e -10ed10ed31303700011702033633321716171233321317022120113510232001 -d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db -03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> -<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 -0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e -2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 -1737262737161701242517040704111417160517241110010405060e5c6b6f6c -61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a -02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 -980118464900000000> -<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 -020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 -01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 -0605110405072627262726271514070607072227222726272635343736333217 -1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 -04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 -983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 -2b273f392d46b00000> -<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 -200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e -10ed31300126253704050124333217161510052724111023220504dfe1feb04c -01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f -6aa7fd79d1909002350114c900> -<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 -000000000000ff3307e006e100000006000200000000000000> -<00010000070aff0a000000000000000000000001000000000000000000000000 -0000001900> -<080000cd0800007f080000c308000071080000d108000108080000d908000083 -080000600800009a08000152080001440800011f08000219080000bc080000be -08000158080001980800012d080000c1080000ea080002db0800038904000000 -0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 -0177000000> -<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc -0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 -0a040a960b980c260cc00d0e0d720de60e2c000000> -<0001000000280050000a00000000000200070000000f0000080002ac0000000000> - -] def -FontName currentdict end definefont pop -%%EndResource -/F15_0 /BAAAAA+IPAGothic 1 1 -[ /c00/c01/c02/c03/c04/c05/c06/c07 - /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f - /c10/c11/c12/c13/c14/c15/c16/c17 - /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f - /c20/c21/c22/c23/c24/c25/c26/c27 - /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f - /c30/c31/c32/c33/c34/c35/c36/c37 - /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f - /c40/c41/c42/c43/c44/c45/c46/c47 - /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f - /c50/c51/c52/c53/c54/c55/c56/c57 - /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f - /c60/c61/c62/c63/c64/c65/c66/c67 - /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f - /c70/c71/c72/c73/c74/c75/c76/c77 - /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f - /c80/c81/c82/c83/c84/c85/c86/c87 - /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f - /c90/c91/c92/c93/c94/c95/c96/c97 - /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f - /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 - /ca8/ca9/caa/cab/cac/cad/cae/caf - /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 - /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf - /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 - /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf - /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 - /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf - /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 - /ce8/ce9/cea/ceb/cec/ced/cee/cef - /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 - /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] -pdfMakeFont -false pdfSetup -%%EndSetup -%%Page: 1 1 -%%PageMedia: 595x842 -%%PageBoundingBox: 0 0 595 842 -%%BeginPageSetup -%%PageOrientation: Portrait -595 842 pdfSetupPaper -pdfStartPage -0 0 595 842 re W -%%EndPageSetup -[] 0 d -1 i -0 j -0 J -10 M -1 w -/DeviceGray {} cs -[0] sc -/DeviceGray {} CS -[0] SC -false op -false OP -{} settransfer -q -0.1 w -q -0 0 595.4 842 re -W* -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -197.8 737.2 Td -/F15_0 40 Tf -(\001\002\003\004\005) -[40 -0 -40 -0 -40 -0 -40 -0 -40 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -63.8 686 Td -/F15_0 36 Tf -(\006\007\010\011\003\004\005\012\013\014\015\016\006) -[36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0 -36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.2 w -122.3 635.7 Td -/F15_0 36 Tf -(\017) -[36 -0] Tj --82 TJm -(\020) -[36 -0] Tj --82 TJm -(\021) -[36 -0] Tj --82 TJm -(\022) -[36 -0] Tj --82 TJm -(\023) -[36 -0] Tj --82 TJm -(\024) -[36 -0] Tj --82 TJm -(\012) -[36 -0] Tj --82 TJm -(\025) -[36 -0] Tj --82 TJm -(\026) -[36 -0] Tj -Q -q -/DeviceRGB {} CS -[0 0 0] SC -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -2 Tr -1.2 w -473.3 635.7 Td -/F15_0 36 Tf -(\027) -[18 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -57.8 597.1 Td -/F15_0 24 Tf -(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) -[24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0 -24 -0] Tj -Q -q -/DeviceRGB {} cs -[0 0 0] sc -[1 0 0 1 0 0] Tm -0 0 Td -Q -Q -q -175.2 309 245.1 245.1 re -W* -q -[245 0 0 245 175.2 309.1] cm -4 array 0 -[0 -1 245 245] pr -pop 245 245 pdfImClip -/DeviceGray setcolorspace -<< - /ImageType 1 - /Width 245 - /Height 245 - /ImageMatrix [245 0 0 -245 0 245] - /BitsPerComponent 1 - /Decode [0 1] - /DataSource currentfile - /ASCII85Decode filter - /RunLengthDecode filter ->> -pdfIm -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S -j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82lsrX\oK#QOf-J,oVb -&,cA+!e:7Fs8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ls -rX\oK#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7F -s8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fNS_>f/Gp](j&+9)f/Gp](j&+9)jETp]9l3!!g:Ms8NE2_=2go!!2S=s7lWo&+FrH -#JpH<+8>m+HiODe&-)Y:#JonW*rl?2J,fjNM -i;^S's53l@&,ZD4^]8a(!!2S=s7lWo"Rpd=#JpH?(#],-&-(Pf4qIPk#J^=e*rl?2 -J,fHli=hn:1K5s8N5kHiODfs8Nhls1f0F -huGqOqu?u;!.5jg!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6 -n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4 -&,[LL!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6n9b3@_=2gP -pcn7q*s_cUquHc4&,[LL!UtU=q#C?pn:1KjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoPs*u0rrVllmrr3c3 -!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6ds7cR)KDtoPs*u0r -rVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn&qg2a5Q?66s2"a5!<<#u -J,]bhrW!*,_=2sSq#::+KDtp9s*t+L_>jE5s8E"Jrs-@=!!NVDn:1K5rr3U`rr>:` -J,oVcs82lsrW%HJ#Jg<="UDm5J,f -!?VRGrr_0a^^pJF!;QQn%K%=J^^l(t!!2S=rs-@>!!+/Hrr3)Y#J^lMrrDinrselJ -s1f.trr<)hJ,]bhrr<'A#QF`*i!7%.s8N)orr3H*+90+eKDtoPn:1HC_#FB8*s_fF -"5jF"&-)Y0q#::&r#bsS%tjl^!UtU=#Jg?>!?VRGrr_0a^^pJF!;QTo#4R-B!'UpD -rr<$_rW)rt!rN$'s8N=S+924nJH#TL55kQ]rrW)u#QOf/J04gj -!.Y%Ds8N;mJ,]L4%tOZ[!'^A^rr3&t!!iQ(#CmorrW%HJq#C?un:1H<4qE2D!!#4^ -!<3!"qu@!%rs+&rs8E"Js7lWo#4R-B!'UpDrr<$_rW)rt!rN$'s8N=S+924nKDtp8!!E9$!5SU7!$D4?!/(1K -!;QTo$h+8u!'UpGrr>4_"98B$_#FB7+9)9?KDYZKq#C@%n,r[j4qE;G!'UAbs8N)7 -rr<$@rr2tNqu6Zks8N)grr<-#^^pJF"8Dosr;Qa#4qE/cp]:?n"Mb"es7lWo!:^!g -!rp%Hs8N2r!WW)t!!POsJ04OerVm#9!.Y%Ds8N)grr<-#^^pJF"8Dosr;Qa#4qE/c -p]:?n"Mb"es7lWo!:^!g!rp%Hs8N2r!WW)t!!POsJ04OerVm#9!.Y%Ds8N)grr<-# -^^pJF"8Dosr;Qa#4qE/cp]:?n"Mb"es7lQm!oX+XrW!)r4ob]brr<04KAcdFrr<-C -!'UqnrrDimrrV-Yrr)m#pc\Z[s8N'%%tig?_#FB:*rnJ8s8N)orVlrWs8Mut"Sb.\ -"98B$":p.Cs1nX7"!7M,&-)Y0q#13oi;`fU!!N'\!!E9$!!Egbi;^Um!!=;C4qI\n -!;QNm!oX+XrW!)r4ob]brr<04KAcdFrr<-C!'UqnrrDinrs",6p]9jds8N'0&,[LL -!Up(2#J^=hrs/N6s8N)orr31Ti:m?B"98B$%hJR[!!2Qh*s]R]J,]cQ&-)Y0q#:9t -KAcM*n,r^j!"TV<*rl?2!$;H]!.Y"RrX]&/!;QQn#(tk/!Up3krrn,OO8 -^]8la#Q>86rrDinrs",6p]9jds8N'0&,[LL!Up(2#J^=hrs/N6s8N)orr3B(!;J_g -KDu1l%tig?!!Wsdrr<)hJ,fNK_>aH7q#::$quHLU%tjle^^l(Urr<66KDtoPn:1K< -!5\[7!;QQn$iC#"4qE;G#J^k&i;Wc]%tjl^!UtU=rrBn7rrDinrsS`)pc]4@rs-=M -KAcb0"qQ@d!!2S=s8N)8rr2unrr3B(!;J_gKDu1l%tig?!!Wsdrr<)hJ,fNK_>aH7 -q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3 -J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?Tq -J,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j -!WN*!q#C@3n,qSRs6p-j#Jom0*s]RlKA["6&,ZG&!"],0!;QTo)=Rad#QO8qrs-C0 -!$;H]%tidFrX\o,p](j)rrDioru(;.i!9;O"9/VBn,OO8^^l(U#Q>83!;HO)s8N)o -s8Nu+"5jFan,r[q_=.FH#J^k&i!95lquHKl&-)Y0q#C@3n,qSRs6p-j#Jom0*s]Rl -KA["6&,ZG&!"],0!;QTo!q66a+90+er#b\un9b3@rX]&/!;QTo -)=W.Up](j)i!95lJ04g,&,[OE5Oa%##Q>86rrDioru(b -pcn7q!!iK6s8N)os8Nu+J,f9D&-(PmrXXN$s1f0C+8A(iHiOEN&-)Y0q#C@3n:1K5 -!"]+f#Q>6a+90+er#b\un9b3@rX]&/!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop/ -!!#7_rrDimrrM$_s8N.N*s_iG"T/8p5Oe[Q!XHR2rVup_rr2unrVloV#QOf*J0,$r -rri6"pcn9J!!3DAnGWCf5Q:Z_q#13ni!9;^!e;?ts8N6"!;JeJrr<**_=7F(!'gJ_ -!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop/!!#7_rrDinrs&BCs1f0Fi;W`gJ,fhj -n9b624og*4#Q=^Qs7lTn#5fSC^^pJ'rr3R\!!g@0HiWq*!.Y"RrW%HJq#:9tr#bsS -&-(Sert0b]#JonW!;J_XJ,]cQ!.Y%Drr33#+90+es5jE5#Q>6a -!!g@0!$D1?#6Wla4og*4q#::)quHc5s82j%rXXMZ#Jom0+8u6F"5j/C!.Y%Drr3Q- -!<9n8qu@!$%tFWb_=.FHrW!0*huGq@J,f"5s3qn:1K<#Q>6ds7cWaI/a0I4qI\n!;QTo$h/ZG#J^@`rrE*`rW!&q4qISk!!Y[W!$;H]&-)Y0 -q#(-m!'gJ_!<>=_!!E![&,cG-#!_SW*s]Rls8N)or;Qct5Q:Z`!'^A^"8G%jr;Qa$ -5O\Xp#J^lMrrDilrrE*arr3!!55kNapc]5drr<6fn,OO8^^pJF!;QQn"FqTo^^pJF -!Vc]qrrV*Y5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"A -s7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y -5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"As7lHj!:^!g -'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj -!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Q -s7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lWo!:]sf'`me(*rl?AKAcMg%tjoW -4ofsP!'UqnrrDiorrDQf!#5P(!$;1As+B8)4qE;Gpc\\**rnJ8s8N)os8N)grW!Z6 -n,OO1!WRf1pc]4@s7ebXHli>P&-)Y0q#C?onGWD&!Up(2!!3+Pi:oJHKE(^1!.5jg -4qI\n!;QTo!:]sf'`me(*rl?AKAcMg%tjoW4ofsP!'UqnrrDiorrMV=s8N)8s8N>^ -!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf_=2sS -!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8 -s8N>^!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf -_=2sS!'UqnrrDiortOsM!!g@?KAcdGn,OO8_>f/G#Jop0!!NVDn:1K5s8Nf&HiODf -s+B80_=.FH#JpFmi!7*frr<3-_=2sSq#C@.n9b3@_>f/Gs2"1)*s]X^KA[!NnG`Il -#JonZs7lWo'_$JM#JpFmi;^X_!$;H^s+B57_=7I)"UDm5J,ff/G#Jop0!!NVDn:1K5s8NDpHiODfn:0Br_#FB>+8>m+"5rqTrr3-%!UtU= -q#C@#n9b3@_=2s4s1nX7#9W^An,qVD!WN*&!!2S=s7lWo$1N+8>m+"5rqTrr3-%!UtU=q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt= -#k3?%pcn7ts7lWo&b(/J#Jom3i!7$tJ,f9D&,[OLrs8+Di:oP+J,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0 -*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K< -!5\^8!oX*orr<$@s8NGq"9/VBn,OO8rX]&/!;QTo!UtU=rrBn8rrV-Y_#FB7+92?J -n,r[q_=.FH#Q>86rrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo -!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK -!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL"n6m]s1f0FrrDio -rrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;PUS!;PUS!;PUS!;PUS!;PUS -!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS -!;PUS!;PUS!;H~> -%-EOD- -pdfImClipEnd -Q -Q -q -0 0 595.4 842 re -W* -Q -Q -showpage -%%PageTrailer -pdfEndPage -%%Trailer -end -%%DocumentSuppliedResources: -%%+ font BAAAAA+IPAGothic -%%EOF diff --git a/2014OC/rain.png b/2014OC/rain.png deleted file mode 100644 index a9cddbc..0000000 --- a/2014OC/rain.png +++ /dev/null Binary files differ diff --git a/2014OC/sql/.htaccess b/2014OC/sql/.htaccess deleted file mode 100644 index 8d2f256..0000000 --- a/2014OC/sql/.htaccess +++ /dev/null @@ -1 +0,0 @@ -deny from all diff --git a/2014OC/sub.rb b/2014OC/sub.rb deleted file mode 100755 index 6067407..0000000 --- a/2014OC/sub.rb +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/koeki/bin/ruby -# -*- coding:utf-8 -*- - -def rpg(job,sex,stump,bingo,sumexp) - lv = [1,4,10,16,24,33,49] - exp = stump + (bingo * 5) - iro = 0 - for hoge in lv - if exp >= hoge - iro += 1 - end - end - per = (exp.to_f)*100 / (sumexp.to_f) - png = job + "" + sex + "" + iro.to_s - ret = [png,per,exp] - return ret -end -#job = "sensi" -#sex = "G" -#hoge = rpg(job,sex,5,2,100) #職業,性別,スタンプ数,ビンゴ数,総経験値 -#puts hoge diff --git a/2014OC/test.html b/2014OC/test.html deleted file mode 100644 index 579aae5..0000000 --- a/2014OC/test.html +++ /dev/null @@ -1,64 +0,0 @@ - - - -Visual Test - - - - - -

2014 オープンキャンパス

-
-
-
- - - - -
-
- -
-
- -
-128x128(1935bytes) -
-
- - diff --git a/archive/2014OC/.htaccess b/archive/2014OC/.htaccess new file mode 100644 index 0000000..3a8c330 --- /dev/null +++ b/archive/2014OC/.htaccess @@ -0,0 +1,4 @@ +AddHandler cgi-script .rb +AddType "text/html; charset=UTF-8" .rb +AddType "text/html; charset=UTF-8" .html +Options +ExecCGI diff --git a/archive/2014OC/2015test/index.html b/archive/2014OC/2015test/index.html new file mode 100644 index 0000000..f97a2be --- /dev/null +++ b/archive/2014OC/2015test/index.html @@ -0,0 +1,42 @@ + + + +2015オアシス酒田祭 + + + + +

2015オアシス酒田祭

+

入力してね

+
+

名前:(ニックネーム)

+

生別:

+

年代:

+

出身地:

+

キャラ:

+

(好きなキャラを選んでください)

+
+代替テキスト +
+ + diff --git a/archive/2014OC/2015test/test.rb b/archive/2014OC/2015test/test.rb new file mode 100755 index 0000000..6e482a6 --- /dev/null +++ b/archive/2014OC/2015test/test.rb @@ -0,0 +1,71 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'cgi' +require 'sqlite3' +require './magic.rb' + +c = CGI.new(:accept_charset => "UTF-8") +db = SQLite3::Database.new("./sql/stamp.sq3") + +begin + result = db.execute("select * from main;") + max = "select max(id) from main;" +rescue + db.execute("create table main(id INTEGER PRIMARY KEY AUTOINCREMENT,name,sex,age,aria,cal,stamp_status,stamp_img,exp INTEGER,rank INTEGER,magic)"); + db.execute("insert into main(name,sex,age,aria,cal,stamp_status,stamp_img,exp,rank,magic) values('名前','性別','年代','住所','職業','スタンプ状況','スタンプ画像','レベル','当選順位','本人確認用')"); + result = db.execute("select * from main;") + max = "select max(id) from main;" +end + +id = c.cookies["id"][0] +c_magic = c.cookies["magic"][0] +name = c["name"] +cal = c["cal"] +age = c["age"] +sex = c["sex"] +aria = c["aria"] + +begin +sel = 'select * from main where id=? AND magic=?' +h = db.execute(sel, id.to_i, c_magic.to_i) +rescue +h == [] +end + +if id != nil && h != [] +update = 'update main set name=?, cal=?, age=?, sex=?, aria=? where id=? and magic=?' +mg = c_magic +db.execute(update, name, cal, age, sex, aria, id.to_i, mg.to_i) +else +code = magic() +id = db.execute(max).flatten(2)[0].to_i + 1 +mg = code[id] +sql = "insert into main(name,sex,age,aria,cal,stamp_status,stamp_img,exp,rank,magic) values (?,?,?,?,?,?,?,?,?,?);" +db.execute(sql,name,sex,age,aria,cal,'000010000','n,n,n,n,kamo1,n,n,n,n',0,0,mg); #初期値 +end + +expires = "SAT, 26 Oct 2015 00:00:00 GMT" + + +printf(<<_EOS_,id, expries, mg.to_s, exprires) +Content-type: text/html; charset=UTF-8 +Set-Cookie:id=%s ;expires=%s +Set-Cookie:magic=%s;expires=%s + + + +#{id} + + + +

+・#{name}
・#{cal}
・#{age}
・#{sex}
・#{aria}
・#{id} +

+ +

+tukaretanaaaa、#{names} +

+ + +_EOS_ diff --git a/archive/2014OC/Bingo.css b/archive/2014OC/Bingo.css new file mode 100644 index 0000000..171d05e --- /dev/null +++ b/archive/2014OC/Bingo.css @@ -0,0 +1,76 @@ +html,body { + width: 100%; + height: 100%; +} +div.outflam{ + width: 800px; + height: 1240px; + margin-left: auto; + margin-right: auto; + padding: 0 auto; + } + +div.top{ + background: #214e4d; + background-image: url("png/top.png"); + background-repeat: no-repeat; + border: thin solid #214e4d; + width: 100%; + height: 180px; + margin-top:0 auto; + margin-bottom:0 auto; + margin-left: auto; + margin-right: auto; + +} + +p,h3 { + margin:0; + padding-left: 5%; + font-weight: 900; + height: 5%; + width: 95%; + border: thin solid #214e4d; +} + +div.center{ + border: thin solid #214e4d; + background: #214e4d; + width: 100%; + height: 45%; + margin-left: auto; + margin-right: auto; +} + +table { + background: white; + margin-left: auto; + margin-right: auto; + margin-top: 1%; + margin-bottom: auto; +} + +div.bottom{ + background: #214e4d; + background-image: url("png/bottom.png"); + background-repeat: no-repeat; + background-position: center bottom; + border:thin solid #214e4d; + width: 100%; + height: 150px; + margin-left: auto; + margin-right: auto; +} + +div.bottom img { + float: left; + margin-left: 15%; +} + +div.charSTATUS { + clear: right; + margin-top: 7%; + background: rgba(255,255,255,0.75); + width: 70%; +} + diff --git a/archive/2014OC/Bingo.rb b/archive/2014OC/Bingo.rb new file mode 100755 index 0000000..d593593 --- /dev/null +++ b/archive/2014OC/Bingo.rb @@ -0,0 +1,436 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'sqlite3' +require 'cgi' +require 'date' +require './sub.rb' +require 'net/http' + +c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") +db = SQLite3::Database.new("sql/stamp.sq3") + +id = c.cookies["id"][0].to_i +magic = c.cookies["magic"][0].to_i +err = 0 # 不正な動きであれば負の値になる +sidesize = 3 +message = "はりきって行きましょう!
" # ビンゴ用テキスト + +print("Content-type: text/html; charset=UTF-8 \n\n") + +getcom = ARGV[0] + +### DELETE TABLE ### + +del = 'DELETE FROM main WHERE id=?' +if getcom == 'ududlrlrba' + db.execute(del, id) +end + +###### + +##### CHECKING UID ##### + +sql = "SELECT stamp_status, stamp_img, name, job, sex, exp FROM main WHERE id=? AND magic=?" +begin + user_data = db.execute(sql, id, magic) +rescue + user_data = [] +end + +if user_data == [] # ログインエラー(-1) + err -= 1 +end + +### LOGIN ERROR HTML ### + +if err == -1 + print' + + + + + +たいとる + +' +print' +

ログインに失敗しました。

+

+アカウント登録ページへ接続中…
+* 3秒経っても移動しない場合は
こちらから移動して下さい。 +

+ + +' + exit +end + +###### + +########## + +##### RE-ARRAYING STAMP_STATUS AND STAMP_IMG ##### + +# stamp status +stamp_st = user_data[0][0] +stamp_st = stamp_st.split(//) # 一文字ずつ分けて配列にする +stamp_st = stamp_st.map {|s| s.to_i} # 配列内の文字列を数列になおす + +# stamp img +stamp_img = user_data[0][1] +stamp_img = stamp_img.split(",") # 文字列を","で区切って配列にする + +########## + +##### STAMPPING ##### + +### Making randam number ### + +def taiou(sidesize) + srand(987654321) + stamp = Hash.new("n") + stamp_name = ["kamo1", "kamo2", "kamo3", "kamo4", "kamo5", "kamo6", "kamo7", "kamo8", "kamo9"] + (sidesize**2).times do |n| + stamp[rand(10000000)] = stamp_name[n] + end + stamp +end + +###### + +##### Checking bingo method ##### + +def bingocheck(start, sidesize, stepon, stamp, decision, bingo) + nbox = [] + setbox = Hash.new + if sidesize == stepon + x = sidesize + else + x = 1 + end + x.times do |m| + start.step(sidesize*sidesize - 1, stepon) do |n| + nbox << n + m + if nbox.length == sidesize + dbox = Array.new(0) # next bingo or reach numbers(bingoed -> nothing) + for i in nbox + if stamp[i] == 0 + dbox << i + end + end + # sidesizeにdecisionの値を加えることで、ビンゴ、次ビンゴ、リーチをそれぞれdecisionに0,1,2を加えることで表現。 + if dbox.length == decision + setbox[dbox] = nbox + bingo << setbox + setbox = Hash.new + nbox = [] + else + nbox = [] + end + end + end + end +end +# bingo[{[ビンゴまたはリーチに必要な番号] => [ビンゴまたはリーチのラインを形成する番号]}] +########## + +### Checking Access Cord(AC) ### + +getAC = ARGV[0].to_i # URL?以降の引数を取得 +rightAC = taiou(sidesize) # taiouで生成したACのハッシュ +#p rightAC +rightAC = rightAC[getAC] # ACが正しければスタンプ名が入り、異なる場合はn + +##### ACCESS LOG ##### +t = Time.now +time = (t.hour * 3600) + (t.min * 60) + t.sec + +## Checking sql_master table. If sqlite_master don't have tablename, it create. + +sql_master = "SELECT name FROM sqlite_master WHERE name='logs';" +check_master = db.execute(sql_master) +sql_logs = 'CREATE TABLE logs( +id INTEGER PRIMARY KEY AUTOINCREMENT, +uid INTEGER, +ac TEXT, +time INTEGER); +' +if check_master == [] + db.execute(sql_logs) +end + +########## + +begin + get_log = 'SELECT ac, time FROM logs WHERE uid=(SELECT MAX(id) FROM logs WHERE uid=?);' # ユーザーの最新のログ情報を取得 + log_check = db.execute(get_log, id) +rescue + print'GETTING LOG ERROR!' +end +begin + log = 'INSERT INTO logs(uid, ac, time) VALUES(?, ?, ?)' + db.execute(log, id, rightAC, time) +rescue + print'INSERT LOG ERROR!' +end +# /* memo: 再度同じようなシステムを作る際はスタンプ用のテーブルがほしい。 */ # + +########## + +### ビンゴしたラインを判定(decision = 0) ### +bingo = [] +# 横 +bingocheck(0, sidesize, 1, stamp_st, 0, bingo) +# 縦 +bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) +# 左斜め +bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) +# 右斜め +bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) +####### + +bingo = bingo.length # ビンゴの数 +last_bingo = bingo + +if rightAC != "n" # rightACが正しければ + + ### Update Stamp_status And Stamp_img ### + + # Replacing Image # + + index_st = [] + stamp_st.length.times { |c| + if stamp_st[c] == 0 + index_st << c + end + } + + ### リーチ(decision = 1)# [{[ビンゴの番号] => [リーチを構成する数]}] + reach = [] + # 横 + bingocheck(0, sidesize, 1, stamp_st, 1, reach) + # 縦 + bingocheck(0, sidesize, sidesize, stamp_st, 1, reach) + # 左斜め + bingocheck(0, sidesize, sidesize+1, stamp_st, 1, reach) + # 右斜め + bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 1, reach) + ####### + + begin + reach = reach[0].flatten(2)[0] # ビンゴの番号のみ抽出 + rescue + reach = [] + end + + ### ビンゴしたラインを判定(decision = 0) ### + bingo = [] + # 横 + bingocheck(0, sidesize, 1, stamp_st, 0, bingo) + # 縦 + bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) + # 左斜め + bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) + # 右斜め + bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) + ####### + + bingo = bingo.length # ビンゴの数 + + # Updating stamp_st # + if stamp_img.include?(rightAC) == true # 既に同名のスタンプが入っていたら + if stamp_st[stamp_img.index(rightAC)] < 9 + stamp_st[stamp_img.index(rightAC)] += 1 # 対応するスタンプの位置に1足す + message = "スタンプカウントが「1」増えました!(スタンプカウントは「9」が上限です)" + else + message="スタンプカウントMAX!!(※これ以上このスタンプのカウントは増えません)" + end + else + if reach != [] && bingo == 0 # はじめのビンゴは必ず3回で完成 + stamp_st[reach] += 1# ビンゴになる数字を代入 + stamp_img[reach] = rightAC + message = "新しいスタンプをGETしました!" # Top message + else + randam_number = index_st[rand(index_st.length)] # スタンプの入っていない個所のなかからランダムにひとつ選ぶ + stamp_st[randam_number] += 1 # 選ばれた個所に1足す + stamp_img[randam_number] = rightAC # stamp_stと同じ個所にstamp_imgにスタンプの名前を代入 + message = "新しいスタンプをGETしました!" # Top message + end + end + ## + + ### ビンゴしたラインを判定(decision = 0) ### + bingo = [] + # 横 + bingocheck(0, sidesize, 1, stamp_st, 0, bingo) + # 縦 + bingocheck(0, sidesize, sidesize, stamp_st, 0, bingo) + # 左斜め + bingocheck(0, sidesize, sidesize+1, stamp_st, 0, bingo) + # 右斜め + bingocheck(sidesize-1, sidesize, sidesize-1, stamp_st, 0, bingo) + ####### + + bingo = bingo.length # ビンゴの数 + + + ## + + # Convert to string # + + stamp_st_string = stamp_st.join + stamp_img_string = stamp_img.join(",") + + ## + + sql_update = "UPDATE main SET stamp_status=?, stamp_img=? WHERE id=?;" + db.execute(sql_update, stamp_st_string, stamp_img_string, id) +end + +###### + +########## + +##### HTML ##### +print' + + + +たいとる + + + +' +### TOP ### + +sql_rank = 'select rank from main where id=?;' +rank = db.execute(sql_rank, id).flatten(2)[0].to_i + +print' +
+' +if rank > 0 + print'
' +else + print'
' +end +# - ビンゴステータス処理 - # + +if rank > 0 + printf("

おめでとうございます!!
☆ %d等 ☆が当選しました!!

", rank) + # print'

抽選は終了しましたが、引続きゆる☆スタをお楽しみ下さい!!

' +end + +# End of top +print' +
+' +# Top message # + +bc = bingo.to_i - last_bingo.to_i + +if bc > 0 + message += '
おめでとう!' + bc.to_s + message += 'ビンゴ揃いました!!
' +end + +if rank > 0 + printf("

%sおめでとうございます!☆ %d等 ☆が当選しました!!

", message, rank) +else + printf("

%s

", message) +end + +## + +###### + +### CENTER ### +print' +
+ +' +for i in 0..2 + print'' + 3.times do |n| + if stamp_st[3*i+n].to_i > 0 + printf("\n", stamp_img[3*i+n], stamp_st[3*i+n]) + else + print"\n" + end + end + print'' +end +# End of center +print' +
\"stamped\"%d
+
+' +###### + +### BOTTOM ### +print' +
+' +# - RPGの表示 - # + +name = user_data[0][2] +job = user_data[0][3] +sex = user_data[0][4] +exp = user_data[0][5] + +## GETTING EXP SUM ## + +sum_sql = 'SELECT SUM(exp) FROM main WHERE rank=0;' +sumexp = db.execute(sum_sql).flatten(2)[0] + +#### + +stamp = stamp_st.inject(:+) # 配列内の値を全て足す + +charST = rpg(job, sex, stamp, bingo, sumexp) # ユーザーのキャラクタステータス + +## UPDATE EXP ## + +update_exp = 'UPDATE main SET exp=? WHERE id=?;' +db.execute(update_exp, charST[2], id) + +#### + +## GETTING EXP SUM ## + +sum_sql = 'SELECT SUM(exp) FROM main WHERE rank=0;' +sumexp = db.execute(sum_sql).flatten(2)[0] + +#### + +stamp = stamp_st.inject(:+) # 配列内の値を全て足す + +charST = rpg(job, sex, stamp, bingo, sumexp) # ユーザーのキャラクタステータス + +printf(" + +
+ +
+
+ID:%04d
+NAME:%s
+あなたのLv: %d / 全員のLv: %d
+当選確率: %3.3f \% +
+", charST[0], id-1, name, charST[2],sumexp , charST[1]) + +# End of bottom +print'
' +# End of outflam +print'
' +###### + +print' + + +' +########## diff --git a/archive/2014OC/account.html b/archive/2014OC/account.html new file mode 100644 index 0000000..b1357ae --- /dev/null +++ b/archive/2014OC/account.html @@ -0,0 +1,42 @@ + + + +ハムスタ登録ページ + + + + +

ハムスタ登録ページ

+

入力してね

+
+

名前:(ニックネーム)

+

生別:

+

年代:

+

出身地:

+

ジョブ:

+

(好きな職業を選んでください)

+
+代替テキスト +
+ + diff --git a/archive/2014OC/accountcheck.rb b/archive/2014OC/accountcheck.rb new file mode 100755 index 0000000..12b0b82 --- /dev/null +++ b/archive/2014OC/accountcheck.rb @@ -0,0 +1,68 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'sqlite3' +require 'cgi' +require './magic.rb' + +c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") +db = SQLite3::Database.new("sql/stamp.sq3") + +begin + result = db.execute("select * from main;") + max = "select max(id) from main;" +rescue + db.execute("create table main(id INTEGER PRIMARY KEY AUTOINCREMENT,name,sex,age,aria,job,stamp_status,stamp_img,exp INTEGER,rank INTEGER,magic)"); + db.execute("insert into main(name,sex,age,aria,job,stamp_status,stamp_img,exp,rank,magic) values('名前','性別','年代','住所','職業','スタンプ状況','スタンプ画像','レベル','当選順位','本人確認用')"); + result = db.execute("select * from main;") + max = "select max(id) from main;" +end + +id = c.cookies["id"][0] +c_magic = c.cookies["magic"][0] +name = c["name"] +job = c["job"] +age = c["age"] +sex = c["sex"] +aria = c["aria"] + +begin +sel = 'select * from main where id=? AND magic=?' +h = db.execute(sel, id.to_i, c_magic.to_i) +rescue +h == [] +end + +if id != nil && h != [] +update = 'update main set name=?, job=?, age=?, sex=?, aria=? where id=? and magic=?' +mg = c_magic +db.execute(update, name, job, age, sex, aria, id.to_i, mg.to_i) +else +code = magic() +id = db.execute(max).flatten(2)[0].to_i + 1 +mg = code[id] +sql = "insert into main(name,sex,age,aria,job,stamp_status,stamp_img,exp,rank,magic) values (?,?,?,?,?,?,?,?,?,?);" +db.execute(sql,name,sex,age,aria,job,'000010000','n,n,n,n,kamo1,n,n,n,n',0,0,mg); #初期値 +end + +expires = "SAT, 24 Oct 2015 00:00:00 GMT" + +printf("Content-type: text/html; charset=UTF-8 +Set-Cookie:id=%s ;expires=%s +Set-Cookie:magic=%s;expires=%s\n\n",id,expires,mg.to_s,expires) + +print' + + +Registering Account + +' +printf' +

登録が完了しました。

+

あなたのIDは%04dです。抽選はこのIDを元に行われます

+

下記リンクからスタンプラリーを開始して下さい!

+

>> Let\'s go to Stamp Rally <<

+

+ + +',id.to_i-1 diff --git a/archive/2014OC/admin/.htaccess b/archive/2014OC/admin/.htaccess new file mode 100644 index 0000000..66b2e8e --- /dev/null +++ b/archive/2014OC/admin/.htaccess @@ -0,0 +1,9 @@ +AddHandler cgi-script .rb +AddType "text/html; charset=utf-8" .rb +AddType "text/html; charset=utf-8" .html +Options +ExecCGI +AuthUserFile /home/www/skip/2014OC/admin/.htpasswd +AuthGroupFile /dev/null +AuthName "ǧ�ڥ�����" +AuthType Basic +require valid-user diff --git a/archive/2014OC/admin/.htpasswd b/archive/2014OC/admin/.htpasswd new file mode 100644 index 0000000..522e590 --- /dev/null +++ b/archive/2014OC/admin/.htpasswd @@ -0,0 +1,2 @@ +Murakami:7Y005Wtya7Ogw +test:tebUY14UFwMKg diff --git a/archive/2014OC/admin/drawLots.html b/archive/2014OC/admin/drawLots.html new file mode 100644 index 0000000..e45a1a3 --- /dev/null +++ b/archive/2014OC/admin/drawLots.html @@ -0,0 +1,24 @@ + + + +Database delete + + + + + +

抽選用ページ

+

実行するとデータベースが書き変えられます。

+

実行する際は注意してください。

+
+

抽選を行いますか?
+はい +いいえ +

+ + +
+

データ閲覧ページに戻る

+ + diff --git a/archive/2014OC/admin/drawLots.rb b/archive/2014OC/admin/drawLots.rb new file mode 100755 index 0000000..8ed7125 --- /dev/null +++ b/archive/2014OC/admin/drawLots.rb @@ -0,0 +1,87 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'sqlite3' +require 'cgi' +require 'date' + +c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8") +db = SQLite3::Database.new("../sql/stamp.sq3") + +add = ENV["REMOTE_ADDR"] + +if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107|192.168.43.255/ =~ add +check = c['check'] + +printf("Content-type: text/html; charset=UTF-8\n\n") + +sum = 'SELECT SUM(rank) FROM main WHERE NOT id=1;' +rank_sum = db.execute(sum).flatten(2)[0].to_i + +t = Time.now +expires = Time.local(2014, 8, 17, 8, 50) +expires2 = Time.local(2014, 10, 25, 0, 00) +if t > expires && t < expires2 && rank_sum == 0 +else + check = "" + puts check +end + +if check == "OK" + begin + result = db.execute("select id,exp,rank from main;") + rescue + exit + end + all = Array.new + for id,lv,rank in result + if id == 1 || lv == 0 || rank.to_i != 0 + next + end + lv.to_i.times do + all << id + end + end + + tousen = Array.new(0) + atari1 = rand(all.length) + tousen << all[atari1] + all.delete_if {|x| x == tousen[0]} + + sql = "update main set rank = 1 where id = ?;" + db.execute(sql,tousen[0]) + + sql = "update main set rank = 2 where id = ?;" + while tousen.length < 4 + srand + atari2 = rand(all.length) + hoge = all[atari2] + tousen << all[atari2] + all.delete_if {|x| x == hoge} + db.execute(sql,hoge) + end + + i=0 + + printf("

1等はIDが%04dの方!おめでとー!

\n",tousen[i].to_i-1) + printf("

2等はIDが%04dと%04dと%04dの方!おめでとー!

\n",tousen[i+=1].to_i-1,tousen[i+=1].to_i-1,tousen[i+=1].to_i-1) +else + print"

抽選はまだ行いませんよ

\n" +end +print'

抽選ページに戻る

+

データ閲覧ページに戻る

+' +else + printf("Content-type: text/html; charset=UTF-8\n\n") + + printf' + + +Delete table + + + +

管理者用ページのため閲覧できません。

' +end +print'' diff --git a/archive/2014OC/admin/monitor.rb b/archive/2014OC/admin/monitor.rb new file mode 100755 index 0000000..c4b87aa --- /dev/null +++ b/archive/2014OC/admin/monitor.rb @@ -0,0 +1,91 @@ +#!/usr/bin/env ruby +#coding:utf-8 + +require'cgi' +require'sqlite3' + +db = SQLite3::Database.new("../sql/stamp.sq3") + +c = CGI.new(:accept_charaset => "UTF-8") + +add = ENV["REMOTE_ADDR"] + +if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107/ =~ add +rank = c["rank"] +flag = 0 +text = "

登録者一覧を表示します

\n" +begin + if rank == "y" + rank_reset = 'UPDATE main SET rank=0 WHERE NOT id=1;' + db.execute(rank_reset) + end + result = db.execute("select * from main;") + log = 'select * from logs;' + logs = db.execute(log) +rescue + flag = 1 + text = "

データがありません

\n" +end + +#rank = "n" + +printf("Content-type: text/html; charset=UTF-8\n\n") + +printf' + + + +Delete table + + +

データ閲覧ページ

' +puts text +if flag == 1 +else + print"\n" + result.each do |line| + printf("\n",line[0].to_i-1,line[1],line[2],line[3],line[4],line[8],line[9]) + end + print'
%04d%s%s%s%s%s%s
' + print'

+rankをリセットしますか?
+NO / +YES
+ +

+' +end + +print'

ログの閲覧

' +if flag == 1 +else + print'' + logs.each do |line| + hour = line[3].to_i/3600 + min = line[3].to_i%3600/60 + sec = line[3].to_i%3600%60 + printf("\n",line[0],line[1].to_i-1,line[2],hour,min,sec) + end + print"
%s%04d%s%d:%d:%d
" + print'

その他の操作

+ + + +
データ削除DELETE
抽選DRAW
+' +end +else + printf("Content-type: text/html; charset=UTF-8\n\n") + + printf' + + +Delete table + + +

管理者用ページのため閲覧できません。

' +end + +print'' diff --git a/archive/2014OC/admin/operation.html b/archive/2014OC/admin/operation.html new file mode 100644 index 0000000..57f6db1 --- /dev/null +++ b/archive/2014OC/admin/operation.html @@ -0,0 +1,27 @@ + + + +Database delete + + + + + +

データベース消去用

+

実行するとデータベースが削除されます。

+

実行する際は注意してください。

+
+

本当に消しますか?
+はい +いいえ +

+ + +
+

データ閲覧ページに戻る

+ +
c111126@g.koeki-u.ac.jp
+ + + diff --git a/archive/2014OC/admin/operation.rb b/archive/2014OC/admin/operation.rb new file mode 100755 index 0000000..60fecf4 --- /dev/null +++ b/archive/2014OC/admin/operation.rb @@ -0,0 +1,52 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'sqlite3' +require 'cgi' + +db = SQLite3::Database.new("../sql/stamp.sq3") +c = CGI.new(:accept_charaset => "UTF-8") + +add = ENV["REMOTE_ADDR"] + +printf("Content-type: text/html; charset=UTF-8\n\n") + +if /^(172\.19\.5\.|172\.17\.54\.|172\.21\.90\.)|118.21.142.107|202.214.125.107/ =~ add +check = c['check'] +if check == "OK" + begin + db.execute("drop table main;") + db.execute("drop table logs;") + text = "

データを削除しました。

" + rescue + text = "

データがありません。

" + end +else + text = "データは削除されません" +end + +printf(" + + +Delete table + + + +%s +

データ閲覧ページへ

+

+ +", text) +print"

データ閲覧ページに戻る

" +print"

削除ページに戻る

" +else + printf' + + +Delete table + + + +

管理者用ページのため閲覧できません。

' +end diff --git a/archive/2014OC/design.css b/archive/2014OC/design.css new file mode 100644 index 0000000..3490f48 --- /dev/null +++ b/archive/2014OC/design.css @@ -0,0 +1 @@ +body{background-color: #E0FFFF;} diff --git a/archive/2014OC/magic.rb b/archive/2014OC/magic.rb new file mode 100755 index 0000000..f8e9d8d --- /dev/null +++ b/archive/2014OC/magic.rb @@ -0,0 +1,13 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +def magic() + srand(123456789) + hoge = Array.new + while hoge.length < 100 + hoge << rand(1000000) + hoge.uniq! + end + return hoge +end + diff --git a/archive/2014OC/png/bottom.png b/archive/2014OC/png/bottom.png new file mode 100644 index 0000000..11b160b --- /dev/null +++ b/archive/2014OC/png/bottom.png Binary files differ diff --git a/archive/2014OC/png/bottom.xcf b/archive/2014OC/png/bottom.xcf new file mode 100644 index 0000000..0b84f04 --- /dev/null +++ b/archive/2014OC/png/bottom.xcf Binary files differ diff --git a/archive/2014OC/png/bun.png b/archive/2014OC/png/bun.png new file mode 100644 index 0000000..2a32c65 --- /dev/null +++ b/archive/2014OC/png/bun.png Binary files differ diff --git a/archive/2014OC/png/dai.png b/archive/2014OC/png/dai.png new file mode 100644 index 0000000..1b9fcd5 --- /dev/null +++ b/archive/2014OC/png/dai.png Binary files differ diff --git a/archive/2014OC/png/eki.png b/archive/2014OC/png/eki.png new file mode 100644 index 0000000..8bc56bf --- /dev/null +++ b/archive/2014OC/png/eki.png Binary files differ diff --git a/archive/2014OC/png/gaku.png b/archive/2014OC/png/gaku.png new file mode 100644 index 0000000..283ecbb --- /dev/null +++ b/archive/2014OC/png/gaku.png Binary files differ diff --git a/archive/2014OC/png/hoku.png b/archive/2014OC/png/hoku.png new file mode 100644 index 0000000..3adc881 --- /dev/null +++ b/archive/2014OC/png/hoku.png Binary files differ diff --git a/archive/2014OC/png/ka.png b/archive/2014OC/png/ka.png new file mode 100644 index 0000000..73b467b --- /dev/null +++ b/archive/2014OC/png/ka.png Binary files differ diff --git a/archive/2014OC/png/kamo.png b/archive/2014OC/png/kamo.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo.png Binary files differ diff --git a/archive/2014OC/png/kamo.xcf b/archive/2014OC/png/kamo.xcf new file mode 100644 index 0000000..a6efea8 --- /dev/null +++ b/archive/2014OC/png/kamo.xcf Binary files differ diff --git a/archive/2014OC/png/kamo1.png b/archive/2014OC/png/kamo1.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo1.png Binary files differ diff --git a/archive/2014OC/png/kamo2.png b/archive/2014OC/png/kamo2.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo2.png Binary files differ diff --git a/archive/2014OC/png/kamo3.png b/archive/2014OC/png/kamo3.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo3.png Binary files differ diff --git a/archive/2014OC/png/kamo4.png b/archive/2014OC/png/kamo4.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo4.png Binary files differ diff --git a/archive/2014OC/png/kamo5.png b/archive/2014OC/png/kamo5.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo5.png Binary files differ diff --git a/archive/2014OC/png/kamo6.png b/archive/2014OC/png/kamo6.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo6.png Binary files differ diff --git a/archive/2014OC/png/kamo7.png b/archive/2014OC/png/kamo7.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo7.png Binary files differ diff --git a/archive/2014OC/png/kamo8.png b/archive/2014OC/png/kamo8.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo8.png Binary files differ diff --git a/archive/2014OC/png/kamo9.png b/archive/2014OC/png/kamo9.png new file mode 100644 index 0000000..77e756c --- /dev/null +++ b/archive/2014OC/png/kamo9.png Binary files differ diff --git a/archive/2014OC/png/ko.png b/archive/2014OC/png/ko.png new file mode 100644 index 0000000..035f4ce --- /dev/null +++ b/archive/2014OC/png/ko.png Binary files differ diff --git a/archive/2014OC/png/madousiB1.png b/archive/2014OC/png/madousiB1.png new file mode 100644 index 0000000..7e6c00c --- /dev/null +++ b/archive/2014OC/png/madousiB1.png Binary files differ diff --git a/archive/2014OC/png/madousiB2.png b/archive/2014OC/png/madousiB2.png new file mode 100644 index 0000000..b2bc8fe --- /dev/null +++ b/archive/2014OC/png/madousiB2.png Binary files differ diff --git a/archive/2014OC/png/madousiB3.png b/archive/2014OC/png/madousiB3.png new file mode 100644 index 0000000..505f538 --- /dev/null +++ b/archive/2014OC/png/madousiB3.png Binary files differ diff --git a/archive/2014OC/png/madousiB4.png b/archive/2014OC/png/madousiB4.png new file mode 100644 index 0000000..6f27fa1 --- /dev/null +++ b/archive/2014OC/png/madousiB4.png Binary files differ diff --git a/archive/2014OC/png/madousiB5.png b/archive/2014OC/png/madousiB5.png new file mode 100644 index 0000000..41c3ee1 --- /dev/null +++ b/archive/2014OC/png/madousiB5.png Binary files differ diff --git a/archive/2014OC/png/madousiB6.png b/archive/2014OC/png/madousiB6.png new file mode 100644 index 0000000..31d9174 --- /dev/null +++ b/archive/2014OC/png/madousiB6.png Binary files differ diff --git a/archive/2014OC/png/madousiB7.png b/archive/2014OC/png/madousiB7.png new file mode 100644 index 0000000..474231d --- /dev/null +++ b/archive/2014OC/png/madousiB7.png Binary files differ diff --git a/archive/2014OC/png/madousiG1.png b/archive/2014OC/png/madousiG1.png new file mode 100644 index 0000000..f9eb088 --- /dev/null +++ b/archive/2014OC/png/madousiG1.png Binary files differ diff --git a/archive/2014OC/png/madousiG2.png b/archive/2014OC/png/madousiG2.png new file mode 100644 index 0000000..1c91b3b --- /dev/null +++ b/archive/2014OC/png/madousiG2.png Binary files differ diff --git a/archive/2014OC/png/madousiG3.png b/archive/2014OC/png/madousiG3.png new file mode 100644 index 0000000..80ce305 --- /dev/null +++ b/archive/2014OC/png/madousiG3.png Binary files differ diff --git a/archive/2014OC/png/madousiG4.png b/archive/2014OC/png/madousiG4.png new file mode 100644 index 0000000..c76d3fa --- /dev/null +++ b/archive/2014OC/png/madousiG4.png Binary files differ diff --git a/archive/2014OC/png/madousiG5.png b/archive/2014OC/png/madousiG5.png new file mode 100644 index 0000000..3b067bb --- /dev/null +++ b/archive/2014OC/png/madousiG5.png Binary files differ diff --git a/archive/2014OC/png/madousiG6.png b/archive/2014OC/png/madousiG6.png new file mode 100644 index 0000000..1b94053 --- /dev/null +++ b/archive/2014OC/png/madousiG6.png Binary files differ diff --git a/archive/2014OC/png/madousiG7.png b/archive/2014OC/png/madousiG7.png new file mode 100644 index 0000000..e9e0094 --- /dev/null +++ b/archive/2014OC/png/madousiG7.png Binary files differ diff --git a/archive/2014OC/png/murakamibot.png b/archive/2014OC/png/murakamibot.png new file mode 100644 index 0000000..fa8f832 --- /dev/null +++ b/archive/2014OC/png/murakamibot.png Binary files differ diff --git a/archive/2014OC/png/sensiB1.png b/archive/2014OC/png/sensiB1.png new file mode 100644 index 0000000..7cef1fe --- /dev/null +++ b/archive/2014OC/png/sensiB1.png Binary files differ diff --git a/archive/2014OC/png/sensiB2.png b/archive/2014OC/png/sensiB2.png new file mode 100644 index 0000000..f01e129 --- /dev/null +++ b/archive/2014OC/png/sensiB2.png Binary files differ diff --git a/archive/2014OC/png/sensiB3.png b/archive/2014OC/png/sensiB3.png new file mode 100644 index 0000000..98217b0 --- /dev/null +++ b/archive/2014OC/png/sensiB3.png Binary files differ diff --git a/archive/2014OC/png/sensiB4.png b/archive/2014OC/png/sensiB4.png new file mode 100644 index 0000000..185381b --- /dev/null +++ b/archive/2014OC/png/sensiB4.png Binary files differ diff --git a/archive/2014OC/png/sensiB5.png b/archive/2014OC/png/sensiB5.png new file mode 100644 index 0000000..13b0725 --- /dev/null +++ b/archive/2014OC/png/sensiB5.png Binary files differ diff --git a/archive/2014OC/png/sensiB6.png b/archive/2014OC/png/sensiB6.png new file mode 100644 index 0000000..83733fa --- /dev/null +++ b/archive/2014OC/png/sensiB6.png Binary files differ diff --git a/archive/2014OC/png/sensiB7.png b/archive/2014OC/png/sensiB7.png new file mode 100644 index 0000000..053ae3c --- /dev/null +++ b/archive/2014OC/png/sensiB7.png Binary files differ diff --git a/archive/2014OC/png/sensiG1.png b/archive/2014OC/png/sensiG1.png new file mode 100644 index 0000000..5d07ce8 --- /dev/null +++ b/archive/2014OC/png/sensiG1.png Binary files differ diff --git a/archive/2014OC/png/sensiG2.png b/archive/2014OC/png/sensiG2.png new file mode 100644 index 0000000..ca6fffe --- /dev/null +++ b/archive/2014OC/png/sensiG2.png Binary files differ diff --git a/archive/2014OC/png/sensiG3.png b/archive/2014OC/png/sensiG3.png new file mode 100644 index 0000000..27fec21 --- /dev/null +++ b/archive/2014OC/png/sensiG3.png Binary files differ diff --git a/archive/2014OC/png/sensiG4.png b/archive/2014OC/png/sensiG4.png new file mode 100644 index 0000000..869907a --- /dev/null +++ b/archive/2014OC/png/sensiG4.png Binary files differ diff --git a/archive/2014OC/png/sensiG5.png b/archive/2014OC/png/sensiG5.png new file mode 100644 index 0000000..fafd308 --- /dev/null +++ b/archive/2014OC/png/sensiG5.png Binary files differ diff --git a/archive/2014OC/png/sensiG6.png b/archive/2014OC/png/sensiG6.png new file mode 100644 index 0000000..aa626b3 --- /dev/null +++ b/archive/2014OC/png/sensiG6.png Binary files differ diff --git a/archive/2014OC/png/sensiG7.png b/archive/2014OC/png/sensiG7.png new file mode 100644 index 0000000..228a382 --- /dev/null +++ b/archive/2014OC/png/sensiG7.png Binary files differ diff --git a/archive/2014OC/png/thiefB1.png b/archive/2014OC/png/thiefB1.png new file mode 100644 index 0000000..acdddc6 --- /dev/null +++ b/archive/2014OC/png/thiefB1.png Binary files differ diff --git a/archive/2014OC/png/thiefB2.png b/archive/2014OC/png/thiefB2.png new file mode 100644 index 0000000..b6771b9 --- /dev/null +++ b/archive/2014OC/png/thiefB2.png Binary files differ diff --git a/archive/2014OC/png/thiefB3.png b/archive/2014OC/png/thiefB3.png new file mode 100644 index 0000000..bd14640 --- /dev/null +++ b/archive/2014OC/png/thiefB3.png Binary files differ diff --git a/archive/2014OC/png/thiefB4.png b/archive/2014OC/png/thiefB4.png new file mode 100644 index 0000000..1d7f665 --- /dev/null +++ b/archive/2014OC/png/thiefB4.png Binary files differ diff --git a/archive/2014OC/png/thiefB5.png b/archive/2014OC/png/thiefB5.png new file mode 100644 index 0000000..11cc9c0 --- /dev/null +++ b/archive/2014OC/png/thiefB5.png Binary files differ diff --git a/archive/2014OC/png/thiefB7.png b/archive/2014OC/png/thiefB7.png new file mode 100644 index 0000000..5f8fb93 --- /dev/null +++ b/archive/2014OC/png/thiefB7.png Binary files differ diff --git a/archive/2014OC/png/thiefG1.png b/archive/2014OC/png/thiefG1.png new file mode 100644 index 0000000..a9d019e --- /dev/null +++ b/archive/2014OC/png/thiefG1.png Binary files differ diff --git a/archive/2014OC/png/thiefG2.png b/archive/2014OC/png/thiefG2.png new file mode 100644 index 0000000..bae7cfd --- /dev/null +++ b/archive/2014OC/png/thiefG2.png Binary files differ diff --git a/archive/2014OC/png/thiefG3.png b/archive/2014OC/png/thiefG3.png new file mode 100644 index 0000000..df4f891 --- /dev/null +++ b/archive/2014OC/png/thiefG3.png Binary files differ diff --git a/archive/2014OC/png/thiefG4.png b/archive/2014OC/png/thiefG4.png new file mode 100644 index 0000000..b1366ff --- /dev/null +++ b/archive/2014OC/png/thiefG4.png Binary files differ diff --git a/archive/2014OC/png/thiefG5.png b/archive/2014OC/png/thiefG5.png new file mode 100644 index 0000000..6e864e3 --- /dev/null +++ b/archive/2014OC/png/thiefG5.png Binary files differ diff --git a/archive/2014OC/png/thiefG6.png b/archive/2014OC/png/thiefG6.png new file mode 100644 index 0000000..64220c9 --- /dev/null +++ b/archive/2014OC/png/thiefG6.png Binary files differ diff --git a/archive/2014OC/png/thiefG7.png b/archive/2014OC/png/thiefG7.png new file mode 100644 index 0000000..4162e09 --- /dev/null +++ b/archive/2014OC/png/thiefG7.png Binary files differ diff --git a/archive/2014OC/png/to.png b/archive/2014OC/png/to.png new file mode 100644 index 0000000..3a09bbf --- /dev/null +++ b/archive/2014OC/png/to.png Binary files differ diff --git a/archive/2014OC/png/top.png b/archive/2014OC/png/top.png new file mode 100644 index 0000000..a90ddbb --- /dev/null +++ b/archive/2014OC/png/top.png Binary files differ diff --git a/archive/2014OC/png/top.xcf b/archive/2014OC/png/top.xcf new file mode 100644 index 0000000..df88d2e --- /dev/null +++ b/archive/2014OC/png/top.xcf Binary files differ diff --git a/archive/2014OC/png/top1.xcf b/archive/2014OC/png/top1.xcf new file mode 100644 index 0000000..3614b2d --- /dev/null +++ b/archive/2014OC/png/top1.xcf Binary files differ diff --git a/archive/2014OC/png/yumiB1.png b/archive/2014OC/png/yumiB1.png new file mode 100644 index 0000000..ad4227e --- /dev/null +++ b/archive/2014OC/png/yumiB1.png Binary files differ diff --git a/archive/2014OC/png/yumiB2.png b/archive/2014OC/png/yumiB2.png new file mode 100644 index 0000000..e73d9fa --- /dev/null +++ b/archive/2014OC/png/yumiB2.png Binary files differ diff --git a/archive/2014OC/png/yumiB3.png b/archive/2014OC/png/yumiB3.png new file mode 100644 index 0000000..b309320 --- /dev/null +++ b/archive/2014OC/png/yumiB3.png Binary files differ diff --git a/archive/2014OC/png/yumiB4.png b/archive/2014OC/png/yumiB4.png new file mode 100644 index 0000000..4d50ace --- /dev/null +++ b/archive/2014OC/png/yumiB4.png Binary files differ diff --git a/archive/2014OC/png/yumiB5.png b/archive/2014OC/png/yumiB5.png new file mode 100644 index 0000000..587085f --- /dev/null +++ b/archive/2014OC/png/yumiB5.png Binary files differ diff --git a/archive/2014OC/png/yumiB6.png b/archive/2014OC/png/yumiB6.png new file mode 100644 index 0000000..bd69533 --- /dev/null +++ b/archive/2014OC/png/yumiB6.png Binary files differ diff --git a/archive/2014OC/png/yumiB7.png b/archive/2014OC/png/yumiB7.png new file mode 100644 index 0000000..bb5e8a4 --- /dev/null +++ b/archive/2014OC/png/yumiB7.png Binary files differ diff --git a/archive/2014OC/png/yumiB7p.xcf b/archive/2014OC/png/yumiB7p.xcf new file mode 100644 index 0000000..21717ca --- /dev/null +++ b/archive/2014OC/png/yumiB7p.xcf Binary files differ diff --git a/archive/2014OC/png/yumiG1.png b/archive/2014OC/png/yumiG1.png new file mode 100644 index 0000000..061f07e --- /dev/null +++ b/archive/2014OC/png/yumiG1.png Binary files differ diff --git a/archive/2014OC/png/yumiG2.png b/archive/2014OC/png/yumiG2.png new file mode 100644 index 0000000..e29a682 --- /dev/null +++ b/archive/2014OC/png/yumiG2.png Binary files differ diff --git a/archive/2014OC/png/yumiG3.png b/archive/2014OC/png/yumiG3.png new file mode 100644 index 0000000..cd66045 --- /dev/null +++ b/archive/2014OC/png/yumiG3.png Binary files differ diff --git a/archive/2014OC/png/yumiG4.png b/archive/2014OC/png/yumiG4.png new file mode 100644 index 0000000..6afa2e7 --- /dev/null +++ b/archive/2014OC/png/yumiG4.png Binary files differ diff --git a/archive/2014OC/png/yumiG5.png b/archive/2014OC/png/yumiG5.png new file mode 100644 index 0000000..492bf08 --- /dev/null +++ b/archive/2014OC/png/yumiG5.png Binary files differ diff --git a/archive/2014OC/png/yumiG6.png b/archive/2014OC/png/yumiG6.png new file mode 100644 index 0000000..c2e62ad --- /dev/null +++ b/archive/2014OC/png/yumiG6.png Binary files differ diff --git a/archive/2014OC/png/yumiG7.png b/archive/2014OC/png/yumiG7.png new file mode 100644 index 0000000..af5fe38 --- /dev/null +++ b/archive/2014OC/png/yumiG7.png Binary files differ diff --git a/archive/2014OC/qr/account.png b/archive/2014OC/qr/account.png new file mode 100644 index 0000000..68ff493 --- /dev/null +++ b/archive/2014OC/qr/account.png Binary files differ diff --git a/archive/2014OC/qr/account.ps b/archive/2014OC/qr/account.ps new file mode 100644 index 0000000..5653306 --- /dev/null +++ b/archive/2014OC/qr/account.ps @@ -0,0 +1,1402 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966a9685f45000001b400001dc468656164 +2df9d49d00001f780000003668686561070bff1c00001fb000000024686d7478 +8e991ae400001fd40000006c6c6f6361808087e4000020400000004c6d617870 +084603150000208c00000020707265703f711a3d000020ac0000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<0005005effb0079e064e00240029002d0031004200d440bb2120021b19032723 +1e17151412050302000b1925030d0a02250b031007020b2a030f08022a2e033c +3b373534052c3203423f3e3938322505402f2e25012a313025012c1a1925011b +0c0b25012505044140012b2a012d2c011c1b0129250105000e2108050302053f +2b033c2000032b0a033e3b3938373532292725231e1c190e2e0c03170c2f0234 +12022f2a0315140f031a4103073f1041312e19012b302f19012a0204403f0142 +41012c2b012d2a010b0a010d0c011b1a0107002a2a10c010c02b2b2b2b2b2b2b +2a2a2b2b2b2b2b2b313001363717060716170726271521350607273637262737 +1617363721352116173637170607160726270607032111210121152101262737 +1617072136371706072115213505e18171798d7788ce5ed8c4fcebddf064edc5 +86746b7e75896ffe540290596375757980913819e19686cae90464fb9c03d3fc +be0342fd1029588d45486e01ba5842954849023bf921049b6989548c595c597f +6b935c5aac71755c9883505f637b7a997f8b69608e5483693299b3cbd0aefefe +fe360153dcfe4577893563a9298ca53793677d7d00> +<00050052ff7b07b506a8002e0054005a00600066013440ff43263e1c504e0222 +4e4c021e4c4a021f150224110314482f0264633433040f0d03016661605e5d5b +5a58575545413c3b3836312e2c0c0a07060403001a0d0203001817020d500140 +3909030d3e02004f4e2501504b4a25014c5447462f250348272612112503242b +2a0e0d25030f05045150014d4c0153524948032524012928100f0305000e3934 +33035351033631025149032f493b026664614140040307454b03635e1e060005 +4f29032e1f0703472503605d5b1804252703221c1703270c035a585755241412 +09080c0e033853150a0e4e4d4a49190351464519013b2c2b282719030c030454 +53015251013c3b014c4b01504f014847012a2901262501400a11100d0c030f0e +010a002a2a10c0c010c02b2b2b2b2b2b2b2b2b2b2a2a1310c42a13102a132b13 +2b2b2b2b2b2b10ed313025373637170607270405273637112135213523060727 +1213170607060716170726272706072115231521152111363701161736371706 +0716170724031114232227271633323511213521352135213521352111331501 +2627371617253637170607252627371617036210b8c32787fa39fec5fe7b3ca9 +c0febc0144c91f4845fd8a87010c0706d3975c929d10675601c9d50114feec5c +b0026b2f40637577799b77d16dfef8819546791b526335fe2402bbfdd70229fd +9f02e8fef95a213f813d230104412c873a49019f6679627e68a00860ae79879f +728c76872b3c02377bd3264f790119019121041e130ea7b583c7970edd7f7bd3 +7bfdf6204a0256c07d5a9f60867eb79974d40167fdd1870a92153903277bc577 +be79fd8d7bfd4cc3b625b9bc4a9bb929bf89ac9a6c526f8700> +<000300890114077005e9000f001f0031003d401f2d2124182208102200312f29 +28242008000e1c230414230c312f2928200c042f2f2e2e2e2e2e10ed10ed2b2f +2f2e2f2e2e2e2e10ed10ed10ed31300132171615140706232227263534373617 +2207061514171633323736353427260136013633321700010700012623220706 +0105d75d473b25437c372f79603c461f214817274a31292d2f27fa83dd013a52 +434283016f020770fdfefe8734161747bbfed605e94a41564237681b41877244 +295a10265124243f23273d3d2921fceeb2016b5e7dfe9dfe9a9e018601733156 +edfeee0000> +<000500f4fffe077d06a20005000b00110017001d00524031011d1b1a18171514 +12110f0e0c09080605030200130d0200010b02000e1d1b1a1817151412110f0e +0c0b090806050302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130012627371617012401170005012627371617012627371617 +0126273716170373c3c260bdd5fd7e037a01be70fe43fc7c046a4c76706f5cfb +d9c2cb60d8c004165571726b640468a861875da3fba6be030a7ffcf7e004c0a0 +7f4a6ca9fdc5a66489689c01dea1774668a7000000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307ae3289079e5f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001100> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc04000000 +0800005e0052008900f40389029300a4007500c3016601e7013902db010c006a +00b6007700d300ba0117017700> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +04dc05b606f2076407ce07f8082808660922098009ee0a3c0a6c0aba0b4c0c4e +0cdc0d760dc40e280e9c0ee200> +<0001000000250067000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +159.8 635.7 Td +/F15_0 36 Tf +(\017) +[18 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\016) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\017) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.3 Td +/F15_0 24 Tf +(\025\026\027\030\031\032\033\016\034\035\036\037 !"\037#$\024\025) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +537.8 597.3 Td +/F15_0 24 Tf +(\017) +[12 +0] Tj +Q +Q +q +175.2 309.9 245.1 245.1 re +W* +q +[245 0 0 245 175.2 310] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!-'n,r^c!"],0#l"H#KDu1l +!.=_F!e:7Fs8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7Fs8N)grW!-'n,r^c +!"],0#l"H#KDu1l!.=_F!e:7Fs8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7F +s8N)grW!-'n,r^c!"],0#l"H#KDu1l!.=_F!e:7Fs8N,hJ,fNL_=7I)"pb1t"5rr< +rW!*$_=2gos8N2jJ,fXrr_b?s7lWo +!UtU=rrKt*rr<6.s6p-KpceZW"TQ=-HlrCg"7Ug?q#C?pn:1Km+"5jFan9c;X!UtU=q#C?un9b3@_=2jM!"^7I!Up3L#QO:@ +*rl?2J,fm+"5jFan9c;X!UtU=q#C?un9b3@_=2jM!"^7I +!Up3L#QO:@*rl?2J,fm+"5jFan9c;X!UtU=q#C@&n9b3@ +_>f/Gs1f0Fi;Wcd&,ZD4_=2go!!2S=s7lWo%.JWE#JpFmi;^S's5f/Gs1f0Fi;Wcd&,ZD4_=2go!!2S= +s7lWo$1N!!",@rseH"s7ebXHli=hn:1K5s8NDpHiODfs+C=V_#FB7 ++92?Mn,r^c4ofsP!!2S=s7lWo$1N!!",@rseH"s7ebXHli=hn:1K5 +s8NDpHiODfs+C=V_#FB7+92?Mn,r^c4ofsP!!2S=s7lWo$1N!!",@ +rseH"s7ebXHli=hn:1K5s8N,hJ,fNV_=2s4p](hT!!iPnrr<2s!UtIYs8N2jJ,fXrr_b?s7lWo!UtU=rsQ[4J)L)%%tFWb +s7$$g"S`#eHlrCg"7Ug?q#C?pn:1K<$c2=^i:m9_J,fiSnG`Ikp]9l3+92?Cn:1K5 +s8N,hJ,fNV_=2s4p](hT!!iPnrr<2s!UtIYs8N2jJ,faH8#Jg<=!XHLOs8N)os8N2jHiOEOrrR]m#QOf+quHc5 +rr3!(_#=<8#J^lMrrDiorr_b!!3D@&-)Y0q#C?rn9b3@s8N.N*s_iG"8i0! +_>aH8#Jg<=!XHLOs8N)os8N5kJ,f9Es8N_ipcne/!;HTpKAZ_1n,qSRrX]&/!;QTo +"Rpp@p]:Ep'&`OLs*t+E!WRf1!!2Qki!95ls8N)os8N5kJ,f9Es8N_ipcne/!;HTp +KAZ_1n,qSRrX]&/!;QTo"Rpp@p]:Ep'&`OLs*t+E!WRf1!!2Qki!95ls8N)os8N5k +J,f9Es8N_ipcne/!;HTpKAZ_1n,qSRrX]&/!;QTo"7QEN#Q=Z&#QOf1KAZ_1s*u3k +^^pJF!WYCps8N)os8N2j"5jF_rr<<(rs=>9!!3+M+90+es8N-#4qI\n!;QTo"7QEN +#Q=Z&#QOf1KAZ_1s*u3k^^pJF!WYCps8N)os8N2j"5jF_rr<<(rs=>9!!3+M+90+e +s8N-#4qI\n!;QTo"7QEN#Q=Z&#QOf1KAZ_1s*u3k^^pJF!WYCps8N)os8N;mJ)L@B +!.XtI!W4&=rs\fI!'gL9i:m?BJ,frr3E) +*rnP*KAcM*n:1K5s8N;mJ)L@B!.XtI!W4&=rs\fI!'gL9i:m?BJ,fm:KAcdFrr<-C!'UqnrrDinrr[o3 +s8Mut$O?Y2Hlr+as+B80_#FB:*rnJ8s8N)orr3(Qi;`fU!"0&2!.5m`!WRf1s1nX7 +"!7M,&-)Y0q#:9qKAce/rW!<2rW%m:KAcdFrr<-C!'UqnrrDinrtg1cs2"_c+8>m+HiODe!.Wo,4ob]Cs2"^7 +!;QQn(OuMc_>f$-p]9l3!!g:>J)C;j!!D0Z_>aH7q#::0J,oVcs*u3d!UtI:#J^=h +huGq@"5s3qrr2unrr3db!<9n8J04Oen9b3@^]8lB!'UAbi;^XmrrDinrtg1cs2"_c ++8>m+HiODe!.Wo,4ob]Cs2"^7!;QTo#Ohiq!'UC4i;Wc`%tFWb_>jET!'^D_!$D1? +!e:7Fs8N>n"9/?b!.Wr,!!s0d!!g@?r#Yo&rr<$@rW!"Ls7lWo#Ohiq!'UC4i;Wc` +%tFWb_>jET!'^D_!$D1?!e:7Fs8N>n"9/?b!.Wr,!!s0d!!g@?r#Yo&rr<$@rW!"L +s7lWo#Ohiq!'UC4i;Wc`%tFWb_>jET!'^D_!$D1?!e:7Frr2urrr<<*n9c;X4qIQ5 +qu?rr5O\dT!!3*!!;QQn!;uis#QaFB*rnJ8r#bh:#5CFP"9/?%rr2unrr2urrr<<* +n9c;X4qIQ5qu?rr5O\dT!!3*!!;QQn!;uis#QaFB*rnJ8r#bh:#5CFP"9/?%rr2un +rr2urrr<<*n9c;X4qIQ5qu?rr5O\dT!!3*!!;QQn#Cmlr4qIQ5q"t*m!V$*h!;QNn +!ZqD,rr2unrr34R*rnJ8r#b_3!!*,irr<&orW!!A!'gJ_!;QQn#Cmlr4qIQ5q"t*m +!V$*h!;QNn!ZqD,rr2unrr34R*rnJ8r#b_3!!*,irr<&orW!!A!'gJ_!;QQn#Cmlr +4qIQ5q"t*m!V$*h!;QNn!ZqD,rr2unrVm&Zp](hT+9)86rr<<& +rrDimrrq?U!"XT%rr86rr<<&rrDilrri*\!.Wr,!!j*c+8A#1r#b_4!!)fo!!7ZM +q#(-ppc\\-i;Wc_%tGbs4qIQ5q#(0mq#:aH7q"t'k_#FB7 ++8l-E#QO:@!<9n8KE(rO_>aH7q"t'k_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7q"t'k +_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7q"t'k_#FB7+8l-E#QO:@!<9n8KE(rO_>aH7 +q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9G +J04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM +4qIYm"2Fna+9)9GJ04gj!.4eA!WN*!q#:9nJH#TM4qIYm"2Fna+9)9GJ04gj!.4eA +!WN*!q#C@)n:0@$^]4Jp!'gM]!<9n)rr#QFZ%"?lg8s7lTn!W2rsrsaV=pcn7ts7cWpr#Z1Cr;Zsa!.Y%D +rr3#s!<3!-KAcMhn:1K5!WW'>#QFZ%"?lg8s7lTn!W2rsrsaV=pcn7ts7cWpr#Z1C +r;Zsa!.Y%Ds8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E!;QTo(@VFas2"1,huH"A +KAZ_n!.4eA5Oa%#r;Qcls8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E!;QTo(@VFa +s2"1,huH"AKAZ_n!.4eA5Oa%#r;Qcls8Nl("5s3qn,qSK5Q?Ao!'UC1!;JeJHiX*E +!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C +&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL +#QO:Ci!95lr#Z1C&,[LSrr)lupcncX!;QTo'C^AL#QO:Ci!95lr#Z1C&,[LSrr)lu +pcncX!;QKl!Vc]qrsR`b4ofsP#Jom3s7lTo#CHOH!UtU=q#(-mp]:Ep$fD"K!.5jn +_=.R,q#:=!HiWpBn:1K5r;Qfm!WW0-huGq@HliU0n,r^crr<:O!;HTaJ,f6drs-=Ms53kXn9b3@_>f/G#JonZs7lWo!:^!g)$g-OKDu1l +&-(Pf!UtI:#JpFmi!7*fJ,f6drs-=Ms53kX +n9b3@_>f/G#JonZs7lWo!UtU=rrBk3!![rQ#JpH<+92?An9k69!Bq%orrDiorrMV= +s8N)7qZ$hMrs-C?r#bt=!UtL:!!,7os8N)os8N,hJ,fNK_#"*9J,]bis83u=rrMV: +rr<'`&-)Y0q#C?pn:1KjETs8N,hI/a0I4qI\n!;QTo!UtU=rrBk3 +!![rQ#JpH<+92?An9k69!Bq%orrDiorrMV:rr<3en:0Br_>jN9i!9;^#(up\_>jE5 +r;Qcls8N,hI/a0M5Oa0\s2"a8!T44_rs",U#JpHjN9i!9;^#(up\_>jE5r;Qcls8NDpHlrC)n,qVK_>jN@huEfX +J04OenG`Ii#J^lMrrDiorsA1B+901H"5s3qs8NA_!!3+M+8>m+rr<**^^pJF!;QTo +$1NX_=.Qbs2"a8#iG[` +s*u3d!V$*h!XHLOs8N)os8NDpHlrC)n,qVK_>jN@huEfXJ04OenG`Ii#J^lMrrDij +rrVZi+9)f/G!'Uqk!<9n)!$;IF!.Y"Rs6tO< +q#C?pn:1K<(r?6)huGqOquHc5n,OO8rW%HJ#QO:Cs7lWo!UtU=rtrTPKAZ_n&,ZG- +_=.FH#Q=^Qrs/SnJ,ff&c!!,7o +s8N)os8N>nHiODfn:0Bprs@W`^]4Jp#JpFjrr<'`&-)Y0q#C@!n9b3@_=2s4rVm2^ +s1eU:i!7*uJH#TM4qI\n!;QTo!UtU=rrp7=KAcMgrrf/Gpce]X +%3P@0n9c;__=.FH#Q>86rrDiorrMV=s8N8=s+B8)55tTl+8A(iHliU0n,OO8rX]&/ +!;QTo!UtU=rrp7=KAcMgrrC +#J^=hs7cWpJH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_q#C?o +nGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWp +JH#TL5Q:Z_q#C?onGWCf!WE$,^^p>C#J^=hs7cWpJH#TL5Q:Z_puDASpuDASpuDAS +puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS +puDASpuDASpuDASpuDASp]~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/bingo.png b/archive/2014OC/qr/bingo.png new file mode 100644 index 0000000..790b927 --- /dev/null +++ b/archive/2014OC/qr/bingo.png Binary files differ diff --git a/archive/2014OC/qr/demo/yumiB7p.xcf b/archive/2014OC/qr/demo/yumiB7p.xcf new file mode 100644 index 0000000..47cae8a --- /dev/null +++ b/archive/2014OC/qr/demo/yumiB7p.xcf Binary files differ diff --git a/archive/2014OC/qr/master_stamp.odt b/archive/2014OC/qr/master_stamp.odt new file mode 100644 index 0000000..52da761 --- /dev/null +++ b/archive/2014OC/qr/master_stamp.odt Binary files differ diff --git a/archive/2014OC/qr/qr1.png b/archive/2014OC/qr/qr1.png new file mode 100644 index 0000000..d8edee3 --- /dev/null +++ b/archive/2014OC/qr/qr1.png Binary files differ diff --git a/archive/2014OC/qr/qr1.ps b/archive/2014OC/qr/qr1.ps new file mode 100644 index 0000000..48d81bd --- /dev/null +++ b/archive/2014OC/qr/qr1.ps @@ -0,0 +1,1411 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82ll4qIQ5#QOf-J,oVb +&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll +4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7F +s8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cpc]4=*rnJ8 +KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.%tG`%4qE;GpcnfV+92?Cn:1K5s8N,h +J,fN]_>f#cpc]4=*rnJ8KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.%tG`%4qE;G +pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cpc]4=*rnJ8KE(^2s83u=rr_b?s7lWo&+FrH +#JpH<+8>m+HiOEN&-)Y:#JonW*rl?2J,f86rsB"In9c;X!UtU=q#C@)n9b3@_>jET +p]9l3!!iK6s8NE2_=2go!!2S=s7lWo&+FrH#JpH<+8>m+HiOEN&-)Y:#JonW*rl?2 +J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fC +s1f0C*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP +s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d +s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 +^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`s7ehYJ,oVcs82lsrW%HJ#Jg<="UDgC +J,fjE5s8E"Jrs-@=!!NVC!.Y%Drr3U`s7ehY +J,oVcs82lsrW%HJ#Jg<="UDgCJ,f6drr>:Q"5s3qn,OR0 +rr@]KrrDiort4aMrs/N6KDtp9n,qVK_=.FHrr2tNqu6Zks8N]#J,]cQ%tjl^5O\d5 +s2"1)+9)9?KDYZKq#C@+n:1HCrXXY]!'frTi;^X_!$D4?!/(1K!;QTo&b(;M#Q>6d +rr>:Q"5s3qn,OR0rr@]KrrDiorrDQg!"f1G&-(S_!"\u-pcne/+8>m8rrg+;J,fm8rrg+;J,fm8rrg+;J,fm8rrg+;J,fm8rrg+;J,fn,OO8^]8la +#Q>86rrDinrtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdrr<*" +r#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDin +rtpCHp]9jdrr<*"r#Yn>n,OO8^]8la#Q>86rrDinrsS`)pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDinrsS`) +pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$ +!UtU=rrBn7rrDinrsS`)pc]4@rs-=Ms5aH7q#:9nr;?Tq +"9/<1n,r^c5O\d5!'frTrr<*!rrDinrrDuq!!!-#rsnN#s7ehJ"5j/Dn,r[j!WN*! +q#:9nr;?Tq"9/<1n,r^c5O\d5!'frTrr<*!rrDinrrDuq!!!-#rsnN#s7ehJ"5j/D +n,r[j!WN*!q#:9nr;?Tq"9/<1n,r^c5O\d5!'frTrr<*!rrDiors\B!i!9;OHli>Q +n,OR1!"'8:i!95lquHKl&-)Y0q#C@&n,qSRs6tCX!'frQ+9)Qn,OR1!"'8:i!95lquHKl&-)Y0q#C@&n,qSRs6tCX!'frQ ++9)Qn,OR1!"'8:i!95lquHKl&-)Y0 +q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cF +HiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ +!#C(Bs1eV^*s_cFHiX2^%tGbs4og*4q#C?qn,qVJ!#C(Bs1eV^*s_cFHiX2^%tGbs +4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th" +J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9n +r;Q`u5Oa(#!!th"J04gj%tjoWr;[#r4og*4q#:9nr;Q`u5Oa(#!!th"J04gj%tjoW +r;[#r4og*4q#C?rn:1K5rr6a+90+er#b\un9k69!Bq%orrDiorr_b?s7lTo%tELBrXXN$s1f0C+8A(i +I/a0I4qI\n!;QTo"7Ug?q#:=)J)CS2%tGc%^^p>bpcn7qrr<'`&-)Y0q#C?rn:1K5 +rr4_J,fgH +s8N)orVmAcs8EQ/i:m9_KAce/!.=bG"V:MQp](j)rrDiorrDQg!"T%Fs82j%rXXMZ +#Jom0+8u6B"5j/Drr2uns8N)grrjE5#Q>6a!!g@0!$D1?!s@H]5Q:Z_q#C?o +nG`Ius2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo!:^!g%faBFqu@!$%tFWb_=.FH +rW!$&huH"@rrDiorrDQg!"T%Fs82j%rXXMZ#Jom0+8u6B"5j/Drr2uns8N;mJ,f:- +!.Y%K"9&:J+9)9Br#Z1CrW!#p4qI\n!;QTo#4R-Bpc\\-s8N3#!.5mfrr`0@#QF]& +!r+qis8N)os8N;mJ,f:-!.Y%K"9&:J+9)9Br#Z1CrW!#p4qI\n!;QTo#4R-Bpc\\- +s8N3#!.5mfrr`0@#QF]&!r+qis8N)os8N;mJ,f:-!.Y%K"9&:J+9)9Br#Z1CrW!#p +4qI\n!;QTo"7QENq#:=0"9/?%n,qVD!WRZMs8EOZ*rnJ)J,f\:!!2Qki:m?QJ,oWK%tG`%4og*4 +q#C?rn,qVDrrjH5!"2$\HlrCf +&,ZG&!"],0!;QQn$@j5n5QCW]#JpHXrX\o,p](j)rrDinrsF8upcnfV +!!g@?r;Qa)5Oa%Bs8EQ,!;HO)s8N)os8Ni'J,]bh!!D0Z_=2s4#Q=]*s7cWaI/a0I +4qI\n!;QTo(%?_Q#J^@ars@T`5O\Xp +pc\\*rr<6fn,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QKl +!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6f +n,OO8^^pJF!;QKl!<>@ars@T`5O\Xppc\\*rr<6fn,OO8^^pJF!;QQn#_4#s^^pJ' +p]:Ep!oO&Cs8N,Xq"t*p!UtU=q#::!J04g,&-(S_!WW0$huH"ArrM'Qqu?j#n:1K5 +rr37S+90+es5lJ,ff#cs1f.q+8A#"Hli>P&-)Y0 +q#C?onGWD&!UtU=#JpFj!<9hFJ04PM!.5jg4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfP +rsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H<4qI\n +!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u +!WRfPrsQ[CJ,fhjn:1H<4qI\n!;QTo!UtU=rrU%:r;Q`u!WRfPrsQ[CJ,fhjn:1H< +4qI\n!;QTo#Om*@#JpFj!<<'+n:1H<5Q?66#Jop0!!NVDn:1K5s8N>nHiODfs*t+L +rsJ7Frr>:`J,fhjnG`Il#JonZs7lWo#Om*@#JpFj!<<'+n:1H<5Q?66#Jop0!!NVD +n:1K5s8N>nHiODfs*t+LrsJ7Frr>:`J,fhjnG`Il#JonZs7lWo#Om*@#JpFj!<<'+ +n:1H<5Q?66#Jop0!!NVDn:1K5s8NW!HiODfn9b69^]4K:pcn9J!!2iqrr3-,s6tO< +q#C@)n9b3@_=2gPs1eU:s7ehJrr<)p!WN*&#QO:Cs7lWo&+FrH#JonW!<9h7"98-\ +nG`Ihp]:Bo"UG(sJ,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0 +*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K< +!5\^8!oX*orr<$@s8NGq"9/VBn,OO8rX]&/!;QTo!UtU=rrBn8rrV-Y_#FB7+92?J +n,r[q_=.FH#Q>86rrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo +!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK +!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL"n6m]s1f0FrrDio +rrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;PUS!;PUS!;PUS!;PUS!;PUS +!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS +!;PUS!;PUS!;H~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr2.png b/archive/2014OC/qr/qr2.png new file mode 100644 index 0000000..cee8bda --- /dev/null +++ b/archive/2014OC/qr/qr2.png Binary files differ diff --git a/archive/2014OC/qr/qr2.ps b/archive/2014OC/qr/qr2.ps new file mode 100644 index 0000000..2e4c4fd --- /dev/null +++ b/archive/2014OC/qr/qr2.ps @@ -0,0 +1,1409 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!'%n,r^crrf/frrXrr_b?s7lWo +!UtU=rr^+;KE(rO$kN7Xpcn6J+901HHlrCg"7Ug?q#C?pn:1K<"2Y"is8N'-&,[OE +5O\Xps2"2P+92?Cn:1K5s8N,hJ,fNN_>f/frrm+J,f:-!.5jg!UtU=q#C@#n9b3@_=.FH!'^D_&0LZJn:1K54ofsP!!2S= +s7lWo$1NjE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,fXrr_b?s7lWo!UtU=rrp7=quHLVs8NGa +!'ft#+8>m+HlrCg"7Ug?q#C?pn:1K<"i:6:!;JeYrsIZa5Oa%Bp]9l3+92?Cn:1K5 +s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,f0!!@`/pce]X +#p8pCs+B50!Up3grrDinrrIc1rW!%Mi:oM9!!sbB!WRf1!!2Qkqu6Zkrr3"Oi;N]Y +J)L)crrm:KAZ_1n,rRf!;QQn +!JB>0!!@`/pce]X#p8pCs+B50!Up3grrDiorr_b?rs/T("bYb5rXXY]rrKt*rr<9' +^^l(t!'gJ_!;QTo"7Ug?#QOf-KAce/%tjo^!Q":*!!`J=%tjl^5Q:Z_q#C?rn:1HC +s8N7Ti;`ceKE(rP_=7I)#62ILKDtp9rr2uns8N2jJ,]cRrrn&5s8EO]s8N,9nG`Im +s1f.trr>:_rrDiorr_b?rs/T("bYb5rXXY]rrKt*rr<9'^^l(t!'gJ_!;QQn%tig8 +!WW&tp](hT+901WKE(rOrr2s&+92f/frrE&u!!XPFrW%HJq#::(KAcM*s82ll +!"XT%s2"_fs8N)urr<6Fs8E"Js7lTn%tig8!WW&tp](hT+901WKE(rOrr2s&+92!;QQn(]5?T4ob]bp]:Em!<9n) +"98,sn,qSR_>aH7q#::0r#Yo&!!E8r!WW&ts2"1,s7cWa"5jF#rr2unrr3f4*rnJ) +"98,ss82ls_=.R,p]9jdi!7*trrDinrtkST!'UAbs7cWpquHc5n,r^c!Up3L#JpE> +!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$t +I/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS +_>f$-#J^=hi!7$tI/a0M4qE/c!!3*!!;QQn&,[LS_>f$-#J^=hi!7$tI/a0M4qE/c +!!3*!!;QQn#5fPJrX]%erVup#rVm"N*s]Rls8N6&!UtU=q#:9tr#Z1C&-(Se!!!-" +rrdio#J^lMrriB'n:1K5rr33#*s_cUs586i;N]V"9&6&J0,$3&-)Y5!!2S=s7lTn#5fPJrX]%erVup#rVm"N*s]Rls8N6& +!UtU=q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@ +i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?s +n,OR1_>aHGpc]4@i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>aHGpc]4@i;^S'KAZ_n +%tig?_>aH7q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX' +s1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU= +q#C?onGWD)5QCX's1eV^*s_cF"98-[!.5jg!UtU=q#C?onGWD)5QCX's1eV^*s_cF +"98-[!.5jg!UtU=q#::4KAcdGs*t+E5Q?Ao#J^=e!<<$/J,fiSn:1K5rr3pii;^Xn +J,o@/s+B57^]8`^s8EOZ!!iPnJ,ff#cpcne2i!7$tHiX3G%tFWbs6tOP&-)Y0q#:9nJH#TS +5QCW]s2"2Srr3&h"5s.Y"FM9k4qI\n!;QQn!.b(L#=&7d!<9n)J,]HLn,qVJ!!IZk +!'UqnrrDinrr@TL!!bagquHc5n:1H;!q6P&-)Y0q#(-np]9ma!!*>@s8N;]#J^lJ*s_cE!!iK&!;QKl +!r)fcrr<')_>jN>i!7%.r#Z1Brr<<&rrDilrrVrrnG`Ih#JpH?#2fa%&,[LSrVlj& +rVllmr;Qin!V$*h!=-I@rs%Bd^^p>b#Q=Z&#Q=Z&q#(-np]9ma!!*>@s8N;]#J^lJ +*s_cE!!iK&!;QKl$2?abKAZ_1n,OR1!!3[`i;Wc[&-(S_!WN*!q#(-upcne2huEfI +!$D4@!Y9qArr<04s5f$-s2"^7!;QHk!l=@.s8N)8rr3?+ +!UtTss2"_c+901VrrDikrrU%+"98B$_>aHB!!2S=i;^XnJ04g-rr2unqu6`6n,r^j +!5\[7$NL4sJ)L@Cs*u3k_>aH7q"t'm_=.R,rrBn7rsJf-n:0Br_>f$-s2"^7!;QTo +!q6m+HlrCf +!!D-as8N)srVup/s8N)orr3"L+8u6KHlr+an9c>XrW!&Y#QOf(r;HZr&-)Y0q#:9o +J04aj%"'/l!UtIYs8E!#i!9;^!;ufr!"],0!;QQn!Iu9k!"=5sp]9l3+924nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\- +rr>4nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\-rr>4nqu@!$rrh6brW%?G!!#7_ +rrDinrs\f*pc\\-rr>4nqu@!$rrh6brW%?G!!#7_rrDinrs\f*pc\\-rr>4nqu@!$ +rrh6brW%?G!!#7_rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYU +p](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%# +s8EQ/rrDinrttYUp](hWi:oP+"9/?cs82ll5Oa%#s8EQ/rrDinrttYUp](hWi:oP+ +"9/?cs82ll5Oa%#s8EQ/rrDiorsnOG!<<$/J04g-s83r=!WW0)i;`ces5jET!!3-"#N5X]&-(S_!WN*!q#C@(n9b69rXXN$s2"a5*rl?A +rs.K^rX]%ep]:Bo!;QTo%e+iGs8EOZ+901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorsnOG +!<<$/J04g-s83r=!WW0)i;`ces586huEfIJ)C;-n,OO8_>jN>i!7$tJ,ff#cs8EQ/rrDiorsA1B*s_i8 +J)L)&s8N/Y!'gM`#iGs(s*t+LrX]&/!;QTo$1Nf#cs8EQ/rrDiortOsM!!g@?J0,$4n9c;_^]4K:!'fuQ +!!3D@&-)Y0q#C@.n9b3@_>f$-#JonW*s]R]"9/?cnG`Ii#J^lMrrDiortOsM!!g@? +J0,$4n9c;_^]4K:!'fuQ!!3D@&-)Y0q#C@.n9b3@_>f$-#JonW*s]R]"9/?cnG`Ii +#J^lMrrDiortOsM!!g@?J0,$4n9c;_^]4K:!'fuQ!!3D@&-)Y0q"k"(n:0BrrW%H+ +#Jom3i!7*fJ,]birr2unqYq5uJ)LA+!.Wo3_=.Qb#JonZrs-C>rrDijrtFmOi;`cV +J)CRJn,qSR_=2sS#JpE>!;QEj'C^M0s8E"Ji!7*f"5jF#n:1HC_>aH7q"k"(n:0Br +rW%H+#Jom3i!7*fJ,]birr2uns8N)grW!<,s82ll!"]+f#Jop0!!`J=!.5jg!WN*! +q#C?onGWCq!WW&tp](j)i!7*frr<9'^]8a(!!3*!!;QTo!:]sf$N^;*!;HO)s54-u +nG`Ims1eV^*rl?@rrDiorrDQf!"/i-quHKl&-(Pm_=7I)#62I=Hli=hrr2uns8N)g +rW!<,s82ll!"]+f#Jop0!!`J=!.5jg!WN*!q#C?pn:1K<(r>]h!;HTa"5rr=n:0Br +rW%HJ#Q=^Qs7lWo!UtU=rtrTAHiWpBn,qVD5Oa0\s8E"Jrs/N'J,f]h!;HTa"5rr=n:0BrrW%HJ#Q=^Qs7lWo"Rpd=#JpB=$,QXl +!;J_gquHNi!!#7_rrDiorrhh=!!g@=rs?OAJ,o@.&,ZG&qu?^]rr2uns8N5kHiODf +rVm2?s*t+E4qIPkq"t*l5Q:Z_q#C?sn9b3@_>XB?_>f#cpc]5d!;QHl!'gJ_!;QTo +"Rpd=#JpB=$,QXl!;J_gquHNi!!#7_rrDiorrhh=!!g@>rr`T+!.5mg!!3[`i;`f_ +n:0Bk!UtU=q#C?sn9b3@_>aH;#Q=^N+9) +rr`T+!.5mg!!3[`i;`f_n:0Bk!UtU=q#C?sn9b3@_>aH;#Q=^N+9)rr`T+!.5mg!!3[`i;`f_n:0Bk!UtU=q#C@(n9b3@_>jE5 +p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86 +rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<=!XJ]8s8N)os8NSuHiODfs82ll!WW&t +s8Mut!=-F>!!3E)&-)Y0q#C@(n9b3@_>jE5p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo +!UtU=rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2 +rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,h +J,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h +!WU"8rriYDn:1K5s8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$ +s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(S +rVllms8N)grW!$$s+C@O!"BJ=huGq@"98,ss*t(SrVllms8N)grW!$$s+C@O!"BJ= +huGq@"98,ss*t(SrVllmj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr3.png b/archive/2014OC/qr/qr3.png new file mode 100644 index 0000000..a389e12 --- /dev/null +++ b/archive/2014OC/qr/qr3.png Binary files differ diff --git a/archive/2014OC/qr/qr3.ps b/archive/2014OC/qr/qr3.ps new file mode 100644 index 0000000..2bba5eb --- /dev/null +++ b/archive/2014OC/qr/qr3.ps @@ -0,0 +1,1411 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82ll4qIQ5#QOf-J,oVb +&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll +4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7F +s8N)grW!6*s82ll4qIQ5#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cs8EOZ*rnJ8 +KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,oWK%tG`%4qE;GpcnfV+92?Cn:1K5s8N,h +J,fN]_>f#cs8EOZ*rnJ8KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,oWK%tG`%4qE;G +pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cs8EOZ*rnJ8KE(^2s83u=rr_b?s7lWo#Om*@ +#JpFj+92?Bn:0Br!!!Q0rsB"In9c;X!UtU=q#C@!n9b3@_>f$-s8N/iJ)L>,!"],0 +$4"E:Hli=hn:1K5s8N>nHiODfs*u3krrV\>i;WcW&-)Y:#JonW*rl?2J,ff/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@ +_>f/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_>f/Gs8EQ/i!7%.qu?u;!.5jg +!UtU=q#C@6n9b3@_>f/Gs8EQ/i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_>f/Gs8EQ/ +i!7%.qu?u;!.5jg!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6 +n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4 +&,[LL!UtU=q#C@6n9b3@_=2s4pcn7trs/N6quHc4&,[LL!UtU=q#C@6n9b3@_=2s4 +pcn7trs/N6quHc4&,[LL!UtU=q#C?pn:1KjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoPs*u0rrVllmrr3c3 +!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6ds7cR)KDtoPs*u0r +rVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QTo'CZ,(!'gL6!<9n8quHcr +!.Y"R_#=<;#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lWo'CZ,( +!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<; +#J^=hs7lWo'CZ,(!'gL6!<9n8quHcr!.Y"R_#=<;#J^=hs7lTn%K%=C!"X_^!!2S= +rs-@>!!+/Hrr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QQn +%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/H +rr3&X#JpE>!;QQn%K%=C!"X_^!!2S=rs-@>!!+/Hrr3&X#JpE>!;QKl!rtLqJH#TL +55kQ]rrW)u#QOf,J04gj&-)Y0q#(-o!'UpDrr<$_rW)rt!rN$'s8N4P+926drr>:`KE(rO +_#FB7+9)9?KDYZKq#C@%n:1HCrXXY]!'gL9s8N)7rr<$@rr2tNqu6Zks8NJrJ,]cQ +%tjl^5Q?B9rrBk7!!",?rr@]KrrDiorsS=Grs/N6KDtp9s+C@O!5SU7!$D4?!/(1K +!;QTo!:^!g&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q +4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g +&HBNVs5Q4qE/cp]:?n"Mb"es7lWo!:^!g&HBNVs5Q4qE/cp]:?n +"Mb"es7lQm!oX+Xrrn,OO8^]8la#Q>86rrDinrtpCH +p]9jdhuEfXr#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdhuEfXr#Yn>n,OO8^]8la +#Q>86rrDinrtpCHp]9jdhuEfXr#Yn>n,OO8^]8la#Q>86rrDinrtpCHp]9jdhuEfX +r#Yn>n,OO8^]8la#Q>86rrDinrsS`)pc]4@rs-=Ms5aH7 +q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDinrsS`)pc]4@rs-=Ms5aH7q#::$quHLU%tjle^^pJ'rr<$0s8N0$!UtU=rrBn7rrDin +rsS`)pc]4@rs-=Ms5aH7q#:9nr;?TrHlrCg!UtU83!;HO)s8N)os8Nu+"5jFan:1HCs6tO<#J^k& +i!95lquHKl&-)Y0q#C@3n,qSRs6tO<#QO:Crs-=MKA["6&,ZG&!"],0!;QTo!q64_HiX2^%tGbs4og*4q#C?qn,qVK!#H/u +i;^Rm"9/?b!.4eH^^kr;pc\\-s7lWo!q6 +"9/VBrVm-%!!E8r!UtL:!!,7os8N)os8NDpJ,]bh!!E6+_>XB=rW!'#p]9l3rr<'` +&-)Y0q#C@#n:1HC^]4K:#JpB=#Q=]*s7cWaI/a0I4qI\n!;QKl!<>@`rrMmYrW!&q +4qISk!!Y[W!$;H]&-)Y0q#(-m!'gJ_!VekX!!E![&,cG-#!_SW*s]Rls8N)or;Qct +5Q:Z`pceZW"8G%jr;Qa$5O\Xp#J^lMrrDilrrE*arr3#o55kNapc]5drr<6fn,OO8 +^^pJF!;QKl!<>@`rrMmYrW!&q4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0 +!<>@arrM'Qqu?j#n:1K5rr3:T+90+es5lJ,f@arrM'Qqu?j#n:1K5qYpQbrr<*"_>jNHi:oP+ +!$D6Wn:1HCrW%HJq"k!jnG`Ihs2"a8&E*=Jn,OR1_=2sS#Q=^Qs7lHj!:^!g!WU"9 +rt+,`5O\Xps2"2Srs/N'J,fjNHi:oP+!$D6Wn:1HCrW%HJq#C?onGWD&!UtU=#JpHjE5s8EOZ+8A#"Hli>P&-)Y0 +q#C?onGWD&!UtU=#JpHf#c#JonZrr>4ns8N)o +s8N,hJ,fNO_>jE5#QOf6J04g-s*t(S_=2sS!'UqnrrDiorrMV=s8N5f/Gp]9ja*rl?Arr_0a_=7I)"UDm5J,ff/Gp]9ja*rl?Arr_0a_=7I)"UDm5J,ff/Gp]9ja*rl?A +rr_0a_=7I)"UDm5J,fjN:i;^Um!!",@rsJ5t +rs-C0!$;IF&-)Y0q#C?pn:1K86rrDiorrMV=s8N)8s8N/Ys1nX7 +!$D7@$Le/t#Jom0*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF +&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\ +pcne/!<3!!J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X +^^pJF!;QTo!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0' +i:oP:J,oTK!It1Mrrqn>+90+es8N)oj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr4.png b/archive/2014OC/qr/qr4.png new file mode 100644 index 0000000..3a5c658 --- /dev/null +++ b/archive/2014OC/qr/qr4.png Binary files differ diff --git a/archive/2014OC/qr/qr4.ps b/archive/2014OC/qr/qr4.ps new file mode 100644 index 0000000..210d9de --- /dev/null +++ b/archive/2014OC/qr/qr4.ps @@ -0,0 +1,1410 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!!#n:1K<%);jj!<9hFs53kX +n9k07!e:7Fs8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7Fs8N)grW!!#n:1K< +%);jj!<9hFs53kXn9k07!e:7Fs8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7F +s8N)grW!!#n:1K<%);jj!<9hFs53kXn9k07!e:7Fs8N,hJ,fNK_>aHE#J^k#+8A(i +!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rsf:L%tGbs5O\Xps2"2P+92?Cn:1K5s8N,h +J,fNK_>aHE#J^k#+8A(i!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rsf:L%tGbs5O\Xp +s2"2P+92?Cn:1K5s8N,hJ,fNK_>aHE#J^k#+8A(i!$D6Wn9c>Xrr_b?s7lWo*:S=U +#JonW*rnJ8KDtp8!!D0ZrW%n:1K5s8N5kHiODfs8NA_pcn7q!<9hFrr3;?&,[LL!UtU=q#C?sn9b3@ +_>jN@i:oP+HiX2^&,uS8^^p>b!!2S=s7lWo"Rpd=#JpH?#iPJBn9b69^^pGE$,@)L +*rl?2J,fm+J,f:-!.5jg!UtU=q#C@!n9b3@_=.R,r;[BNp]9l6s7ebXHli=hn:1K5s8N>n +HiODfn,r^h!"^7I!UtU=pc\\**rl?2J,fm+HlrCg"7Ug?q#C?pn:1K<"i:6: +!;JeYrsIZa5Oa%Bp]9l3+92?Cn:1K5s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIY +s8N2jJ,fXrr_b?s7lWo!UtU=rrp7= +quHLVs8NGa!'ft#+8>m+HlrCg"7Ug?q#C?onGWD"!UtIY#JonW*s]XOHliU0n9k07 +!e:7Fs8N)grW!N2n9c;__=2go#JonW*s]XOI/O$HJ,f0!!@`/pce]X +#p8pCs+B50!Up3krri<$J,fm: +KAZ_1n,r^j"TACNs7lTn!JB>0!!@`/pce]X#p8pCs+B50!Up3krri<$J,f:`KAce/%tjo^!Q":*!"/bA +%tjl^5Oa1&q#::#KDtp9s+B80rXXY]rrKt*rr:QJ,faH7q#::0 +J0,$q!!D-Z!UtI:s1f.ts7cWa"5jF#rr2unrr3db*s_cF"5j.[n9b69^^l(tp]9jd +i!7*trrDinrtg2-#Q=]*huEfIHiX2^%tjoW!Up3L#JpE>!;QQn(P!S4rW!&Y!!2S: +!<9hFKE(]In,qSR_>aH7q#::(r#Z0[s*u3k_=2sS#JpH6a*s]Rls8N6&!UtU= +q#::,r#Z1C&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#::,r#Z1C&-(S_!WRfP#Q>6a +*s]Rls8N6&!UtU=q#::,r#Z1C&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#::,r#Z1C +&-(S_!WRfP#Q>6a*s]Rls8N6&!UtU=q#C?sn,OR1_>aH:pc]4@s8NGA%tid?4qE;( +s2"^7!;QTo"RlC5s2"^7"8G%jKE(rY^^l(U!'UpGi;^XmrrDiorrhfk+901Vrr`$[ +%tjo^$G[1)huGqOKAcdGrr2uns8N5k!$D6Wrr3)q4qE;GrsHOPKAZ_n%tig?_>aH7 +q#C?sn,OR1_>aH:pc]4@s8NGA%tid?4qE;(s2"^7!;QTo!:]sf(dJ%N+90+VHli>P +!!E8r4ofsP!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lWo!:]sf +(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP +!!2S=s7lWo!:]sf(dJ%N+90+VHli>P!!E8r4ofsP!!2S=s7lTn%>3U=_>jE5p]:DI +huGt?!"/c*%tFWbs6tO3U=_>jE5p]:DIhuGt?!"/c*%tFWbs6tOQ5Oa(!!!IZk!'UqnrrDin +rr@TL!!>IcquHcs#4R!^pcn7qr;ZtJ*rnJ8s8N)orr2tKrr<-cs82lsrs%t?+8A(i +I/O$JHli>P&-)Y0q#:9nJH#TO5QCW]s8N;mHlr,Jn9k07"FM9k4qI\n!;QKl"o&,u +qu@!$rrD!W!!4nKAcb0 +!Y>=hr;Qclrr3Q-!;J_gKAZ_on,r[j4qE;(rr<*2s54nKAcb0!Y>=hr;Qclrr3Q-!;J_gKAZ_on,r[j4qE;(rr<*2s54nKAcb0!Y>=hr;QclrVm#Ys2"1,s8N)8rr39)!UtTss2"_c+8l-= +q#13qi;^X_"98B$_>aH@!!2S=i;^XnJ04^h!;QNm"Q9f$-r;QclrVm#Ys2"1,s8N)8rr39) +!UtTss2"_c+8l-=q#C?onG`J%s8E!#s7ehJJ,f9Es82lsrW!&Ys8N2jJ,fm+HlrCf!!D-as8N)s +rr<'`&-)Y0q#::*KDtoPn9c>Q!UtIYs8E!#i!9;^!;uis!Bq%orrDinrt0n`!!2S: ++8>m+HlrCf!!D-as8N)srr<'`&-)Y0q#::*KDtoPn9c>Q!UtIYs8E!#i!9;^!;uis +!Bq%orrDinrt0n`!!2S:+8>m+HlrCf!!D-as8N)srr<'`&-)Y0q#C?pn9k69#sJ?= +rr>4nqu@!$rrh6brW%?G!!#7_rrDiorrMV:rr4nqu@!$rrh6brW%?G!!#7_rrDiorrMV:rr4nqu@!$rrh6brW%?G!!#7_ +rrDinrrIWlrrjET!!3-"#N5X]&-(S_!WN*!q#C?onG`Irs8EOZ ++901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorrDQg!"8i+%tGc%_>jET!!3-"#N5X]&-(S_ +!WN*!q#C?onG`Irs8EOZ+901Wr#Yn>s8N>^s8EQ/i:m?PrrDiorrDQg!"8i+%tGc% +_>jET!!3-"#N5X]&-(S_!WN*!q#C?qn9c>X!"BJ=i:oJ9HiODe!!E8rrr<:O!;HTa +J,fX!"BJ=i:oJ9 +HiODe!!E8rrr<:O!;HTaJ,fX!"BJ=i:oJ9HiODe!!E8rrr<:O!;HTaJ,f^ +!!2Qh*s]X^rs%Bd^]8laq#C@#n,OO8rX]%ep]:Ep#N,R_n,OO8_>jN>i!7$tJ,f^!!2Qh*s]X^rs%Bd^]8laq#C@#n,OO8rX]%ep]:Ep#N,R_ +n,OO8_>jN>i!7$tJ,f^!!2Qh*s]X^rs%Bd^]8laq#C?u +n,OR*!WR]M!"1sj"5s3qn9c;_^^pJF"UDgCJ,fm:JH#TW4ob]Cs2"2P +*s]Rls8N6-^]8laq#C?un,OR*!WR]M!"1sj"5s3qn9c;_^^pJF"UDgCJ,fm:JH#TW4ob]Cs2"2P*s]Rls8N6-^]8laq#C?un,OR*!WR]M!"1sj"5s3qn9c;_ +^^pJF"UDgCJ,fnHliUn +n:1K;!"OMY!'ft&i!7*uJ,oWK&-)Y0q#C@!n9c;_s6tO:QJ)CRJs*t+L +rX]&/!;QTo#Om*_#QO:Cs8E!.J,]L5n:0@$_>f#cs8EQ/rrDiors/%@*s_i8J,fKJ +%Y+KY5Oa0\#JpFj!<<$/s8N)os8Nf&HiODfs*u0r_=2go#J^:Qrr<**^^pJF +!;QTo'_$JM#JpFj*s]XOHliU/!!E6$5Oe[Q!XHLOs8N)os8Nf&HiODfs*u0r_=2go +#J^:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU/!!E6$5Oe[Q!XHLOs8N)o +s8Nf&HiODfs*u0r_=2go#J^:Qrr<**^^pJF!;QEj'C^M0pc\\-huEfIJ)CRJ +n:1HC_>aH7q"k"(n:0Bk4og)j!!2S=i!7*fJ,]birr2unqYq5uJ)L)c!.Wo,!UtTs +#JonZrs-C>rrDijrtFmOi:oJ9J)C;-n:0@$_=2sS#JpE>!;QEj'C^M0pc\\-huEfI +J)CRJn:1HC_>aH7q#C?onGWCf!WW03i:m9_KAZ_on,qVK^]8a(!!3*!!;QTo!:]sf +!!3-"&`EEa%tid?5O\d5s1eV^*rl?@rrDiorrDQf!!!'"rt42a!"X_?!'frTi;^Rm +Hli=hrr2uns8N)grVup!s8N\hp](hWhuH"2"5s3p!.5jg!WN*!q#C?onGWCf!WW03 +i:m9_KAZ_on,qVK^]8a(!!3*!!;QTo!UtU=rtrTA"5rr=n:0Bk5Oa%#s8E"Jrs/N' +J,f\Di:oP+J)L)dn9b69rW%HJ#Q=^Qs7lWo +!UtU=rtrTA"5rr=n:0Bk5Oa%#s8E"Jrs/N'J,fjETpcne/!;J_gquHNi!!#7_rrDiort=gK!!g@?r#b\u +s*t+E4qIPkq"t*l5Q:Z_q#C@,n9b3@_>jETpcne/!;J_gquHNi!!#7_rrDiort=gK +!!g@?r#b\us*t+E4qIPkq"t*l5Q:Z_q#C@&n9b3@_>jET#J^=hs8N'#%tig?rs8+D +i:oP+J,fjET +#J^=hs8N'#%tig?rs8+Di:oP+J,fjET#J^=hs8N'#%tig?rs8+Di:oP+J,f!!3E)&-)Y0 +q#C@(n9b3@_>jE5p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<=!XJ]8s8N)os8N,h +J,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU=rr^+;J,oTK"FqQo!V$*h +!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2rr<*"_>aH<#JonZs7lWo!UtU= +rr^+;J,oTK"FqQo!V$*h!WU"8rriYDn:1K5s8N,hJ,fNN_>f#crr3+O*rl?2rr<*" +_>aH<#JonZs7lWo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FS +s8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK& +!;QTo!:]sf!s/FSs8N'.&-(Pf4ob]bp]:DF!!iK&!;QTo!:]sf!s/FSs8N'.&-(Pf +4ob]bp]:DF!!iK&!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS +!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;H~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr5.png b/archive/2014OC/qr/qr5.png new file mode 100644 index 0000000..9ddb50a --- /dev/null +++ b/archive/2014OC/qr/qr5.png Binary files differ diff --git a/archive/2014OC/qr/qr5.ps b/archive/2014OC/qr/qr5.ps new file mode 100644 index 0000000..e490914 --- /dev/null +++ b/archive/2014OC/qr/qr5.ps @@ -0,0 +1,1411 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82lsrXXN$#QOf-J,oVb +&,cA+!e:7Fs8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ls +rXXN$#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7F +s8N)grW!6*s82lsrXXN$#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fN]_>f#cpc]5d*s_cU +KE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.&,[LSrXXY]pcnfV+92?Cn:1K5s8N,h +J,fN]_>f#cpc]5d*s_cUKE(^2s83u=rr_b?s7lWo!UtU=rt<0JJ,o@.&,[LSrXXY] +pcnfV+92?Cn:1K5s8N,hJ,fN]_>f#cpc]5d*s_cUKE(^2s83u=rr_b?s7lWo&+FrH +#JpH<+8A(i"5j/C&-)Y:#JonW*rl?2J,fjET +pcn6MhuGqOs8NE2_=2go!!2S=s7lWo&+FrH#JpH<+8A(i"5j/C&-)Y:#JonW*rl?2 +J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e*rl?2J,fC#J^=e +*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP +s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d +s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 +^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllms8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC +!.Y%Ds8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8Nc%"9/?cs*t+L_>jE5 +s8E"Jrs-@=!!NVC!.Y%Ds8Nc%"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8Nc% +"9/?cs*t+L_>jE5s8E"Jrs-@=!!NVC!.Y%Ds8N/i!$D4@#nM[g!!2S=rs-@>!!+/H +rr32\#JonZs7lWo!q613rr!!+/Hrr32\#JonZs7lWo!q613rr!!+/Hrr32\#JonZs7lWo#4R-B#Q>6a +rr<$_rW)rt!rN$'s8N+M+92?Cn:1K5s8N;mJ,]cQ%tOZ[!'^A^rr3&t!!iQ(!Iu9l +rr_b?s7lWo#4R-B#Q>6arr<$_rW)rt!rN$'s8N+M+92?Cn:1K5s8N;mJ,]cQ%tOZ[ +!'^A^rr3&t!!iQ(!Iu9lrr_b?s7lWo#4R-B#Q>6arr<$_rW)rt!rN$'s8N+M+92?C +n:1K5rr3%M!;QQo(4Z>hrW%hrW%hrW%hrW%hrW%6ds7ehY +KAcdFrr<$@rr2tNqu6Zks8NSuJ,]cQ%tjoW5Q?Aos1nX7!$D4?!/(1K!;QTo%e+uJ +#Q>6ds7ehYKAcdFrr<$@rr2tNqu6Zks8NSuJ,]cQ%tjoW5Q?Aos1nX7!$D4?!/(1K +!;QTo!:^!g$ie!Qs5m8rrg+;J,fm8rrg+;J,f86rrDinrs",6 +p]9jdi;WcY&,[OJ!!jYO^]8la#Q>86rrDinrs",6p]9jdi;WcY&,[OJ!!jYO^]8la +#Q>86rrDinrs",6p]9jdi;WcY&,[OJ!!jYO^]8la#Q>86rrDinrs",6p]9jdi;WcY +&,[OJ!!jYO^]8la#Q>86rrDinrri6"pc]5grr`SB&-(Sf!!Wsdrr<)hJ,fNK_>aH7 +q#:9rquHLU&-)Y4#J^lMi;Wc]%tjl^!UtU=rrBn7rrDinrri6"pc]5grr`SB&-(Sf +!!Wsdrr<)hJ,fNK_>aH7q#:9rquHLU&-)Y4#J^lMi;Wc]%tjl^!UtU=rrBn7rrDin +rri6"pc]5grr`SB&-(Sf!!Wsdrr<)hJ,fNK_>aH7q#:9nr;?U!"98-\n,r[i!:]sf +"[DJYrr<*!rrDinrrDuq!!NK)pcn6Mrr2ufrW!*dn,r[j!WN*!q#:9nr;?U!"98-\ +n,r[i!:]sf"[DJYrr<*!rrDinrrDuq!!NK)pcn6Mrr2ufrW!*dn,r[j!WN*!q#:9n +r;?U!"98-\n,r[i!:]sf"[DJYrr<*!rrDioru(;.i!9;OHli=hn:1H<4qE;(#Q>83 +!;HO)s8N)os8Nu+"5jFan9c;X!UtU=!'UpGi!95lquHKl&-)Y0q#C@3n,qSRs6tCX +!!2S=rr>4nKA["6&,ZG&!"],0!;QTo)=Rad#QO:@*rl?2J,]L4%tidFrX\o,p](j) +rrDioru(;.i!9;OHli=hn:1H<4qE;(#Q>83!;HO)s8N)os8N/i"5s.Y('ELp^]4K: +#J^Q!"]+f#Q>6a+90+er#b\un9b3@rX]&/!;QTo)=W"qp](j)i!95lJ04g,&,[OE +5Oa%##Q>86rrDioru(gHs54.]%tGc%^^p>bpcn7q!!iK6s8N)os8Nu+Hlr+` +&-(PmrXXN$s1f0C+8A(iHiOEN&-)Y0q#C@3n9c>Q!"]+f#Q>6a+90+er#b\un9b3@ +rX]&/!;QKl"UG(s!$;IGrri6"pcn9J!!3DAnGWCf5Q:Z_q#(-q#QO8n*s_iG"T/8p +5Oe[Q!XHR2rVup_rr2unr;Qp*s6p"1#QOf,quHLVnG`Ii#Jop/!!#7_rrDilrriZ- +n,OO8s8N6"!;JeJrr<**_=7F(!'gJ_!;QKl"UG(s!$;IGrri6"pcn9J!!3DAnGWCf +5Q:Z_q#:9tr#bsS&-(Sert0b]#JonW!;J_XJ,]L4!.Y%Drr33#+90+es54_J,f86i:m9_KAce/!.=bG#S6hTp]9l6s7lQm%c@Tk&-(S_!"X_?s8E"G +rW!37r#b\7n:1K5rVmAc#Q>86i:m9_KAce/!.=bG#S6hTp]9l6s7lQm%c@Tk&-(S_ +!"X_?s8E"GrW!37r#b\7n:1K5rVmAc#Q>86i:m9_KAce/!.=bG#S6hTp]9l6s7lWo +&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0 +!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5 +!!iK6J,fhjn,OR0!!<>]!'gJ_!;QTo&b(/Js2"a5!!iK6J,fhjn,OR0!!<>]!'gJ_ +!;QTo#4R-B#Q=^Qs8N3#!.5mfrr`0@#QF]&!VenYrrDiors%tBrs/N'J,fNNrW%Hlr,I&,[OLrX\o,p](j)rrDinrttYU +pcnfV!!g:>Hlr,I&,[OLrX\o,p](j)rrDinrttYUpcnfV!!g:>Hlr,I&,[OLrX\o, +p](j)rrDinrttYUpcnfV!!g:>Hlr,I&,[OLrX\o,p](j)rrDinrttYUpcnfV!!g:> +Hlr,I&,[OLrX\o,p](j)rrDiortY$Qrs-=>"5s3qn:0BrrW!'#p]9l3rr<'`&-)Y0 +q#C@/n:1HC^]4Jps2"2Si;`cV"98,sn9k69!Bq%orrDiortY$Qrs-=>"5s3qn:0Br +rW!'#p]9l3rr<'`&-)Y0q#C@/n:1HC^]4Jps2"2Si;`cV"98,sn9k69!Bq%orrDio +rtY$Qrs-=>"5s3qn:0BrrW!'#p]9l3rr<'`&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk +!!Y[W!$;H]&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM` +!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H] +&-)Y0q#(-m!'gM`!oWi;rW!&q4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0 +!<>@arrM'Qqu?j#n:1K5rr3:T+90+es5lJ,f@arrM'Qqu?j#n:1K5qYpfiHiWpBs+B80rseGt ++901HJ,]cQ!.Y%DqYpfiHiWpBs+B80rseGt+901HJ,]cQ!.Y%DqYpfiHiWpBs+B80 +rseGt+901HJ,]cQ!.Y%DqYpfiHiWpBs+B80rseGt+901HJ,]cQ!.Y%DqYpfiHiWpB +s+B80rseGt+901HJ,]cQ!.Y%Ds8N)grW!Z6n9c;X5Q?Aopc]5d+8A#"Hli>P&-)Y0 +q#C?onGWD&!UtIY!'gL9i:oJHr#b\t!.5jg4qI\n!;QTo!:]sf'`mfO*rnP*KAcMg +&,[OE4ofsP!'UqnrrDiorrDQf!#5P(Hli>Qs+B8)4qIQ5pc\\**rnJ8s8N)os8N)g +rW!Z6n9c;X5Q?Aopc]5d+8A#"Hli>P&-)Y0q#C?pn:1KjN>i:m?B!$;IGrri6"#Jop0!!NVDn:1K5s8N5kHiODfs8N;]p]9ja +*s_iG"T/6)_=7I)"UDm5J,fjN>i:m?B +!$;IGrri6"#Jop0!!NVDn:1K5s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5 +s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5s8Nc%HiODfn:0BrrW!'#p]9jd +i:m?PrriBen:1K5s8Nc%HiODfn:0BrrW!'#p]9jdi:m?PrriBen:1K5s8Nc%HiODf +n:0BrrW!'#p]9jdi:m?PrriBen:1K5s8N]#HiODfn,qSR^]8lap](j&+92?Hn:0Bk +5Oa1&q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt=#k3?%pcn7ts7lWo&b(/J#Jom3i!7$t +J,f9D&,[OLrs8+Di:oP+J,f86 +rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0*s_cUs8N)os8N,hJ,fNK_>jN: +i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL +"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo!:]sf +!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0puDASpuDASpuDASpuDASpuDASpuDAS +puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS +puDASp]~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr6.png b/archive/2014OC/qr/qr6.png new file mode 100644 index 0000000..997a5cd --- /dev/null +++ b/archive/2014OC/qr/qr6.png Binary files differ diff --git a/archive/2014OC/qr/qr6.ps b/archive/2014OC/qr/qr6.ps new file mode 100644 index 0000000..e9b0af2 --- /dev/null +++ b/archive/2014OC/qr/qr6.ps @@ -0,0 +1,1409 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!!#n:1K<%);jj!;HO)s53kX +n9k07!e:7Fs8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7Fs8N)grW!!#n:1K< +%);jj!;HO)s53kXn9k07!e:7Fs8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7F +s8N)grW!!#n:1K<%);jj!;HO)s53kXn9k07!e:7Fs8N,hJ,fNK_>aH:#Q>6drr35m +!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rrWN*%tjl]#Oh^8s2"2P+92?Cn:1K5s8N,h +J,fNK_>aH:#Q>6drr35m!$D6Wn9c>Xrr_b?s7lWo!UtU=rrBn7rrWN*%tjl]#Oh^8 +s2"2P+92?Cn:1K5s8N,hJ,fNK_>aH:#Q>6drr35m!$D6Wn9c>Xrr_b?s7lWo*:S=U +#Jom3rs-=MKDtp8!!D0ZrW%n:1K5s8N5kHiODfs8NA_p]9l3!;HO)rr3;?&,[LL!UtU=q#C?sn9b3@ +_>jN@i:m?BHiWpA&,uS8^^p>b!!2S=s7lWo"Rpd=#JpH?#iPIYn9b62!"])/$,@)L +*rl?2J,fXrr_b?s7lWo!UtU= +rrp7=quHLVs8NGa!'ft#+8>m+HlrCg"7Ug?q#C?pn:1K<"i:6:!;JeYrsIZa5Oa%B +p]9l3+92?Cn:1K5s8N,hJ,fNP_>jE5pcnfY$K(nKn9c>Q!UtIYs8N2jJ,fXrr_b?s7lWo!:]sf&HVBK*s]XOHliU0n9c;_ +_=2jN!!7ZMq#C?onGWD"!UtIY#JonW*s]XOHliU0n9k07!e:7Fs8N)grW!N2n9c;_ +_=2go#JonW*s]XOI/O$HJ,frrn&5 +s8EO]s8N,9nG`Iqs1f.trr>4_J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f<> +rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_ +J,f<>rrn&5s8EO]s8N,9nG`Iqs1f.trr>4_J,f!;QQn(P!S4rW!&Yp]9l3!<9h7"98,sn,qSR_>aH7q#::0J0,$q +!!D0S!UtI:s1eU:s7cWa"5jF#rr2unrr3db*s_cF"5rqTn9b69^]4K:p]9jdi!7*t +rrDinrtg2-#Q=]*i:m?BHiX2^!!E8r!Up3L#JpE>!;QQn$2bkM_>f$-#J^lMrrWMB +n9k69"[3HI*rl?@rrDinrsATF#JpFj*s]Rls8N0+_=2jP!!POsJ0+alrr2unrr3<& +*s]X^J0,$3&-)Y3#JonWrr<3d%tG`%!WN*!q#::"r#Z0[s*u0r^^pJF!sc[3I/a0M +4qE/c!!3*!!;QQn$2bkM_>f$-#J^lMrrWMBn9k69"[3HI*rl?@rrDinrs\fI#Q>86 +huEfXKA["7rrdio#J^lMrriB'n:1K5rr3E)*s_cUs53kXs+B57s8N4P*s]Rls8N6& +!UtU=q#::%r#Z1C&-(Pf!WRf1#QOf,J0,$3&-)Y5!!2S=s7lTn%/_1PrX]%e!!3+P +i!9;^"FqR!^^pJF"TSSmJ,f86huEfXKA["7rrdio#J^lMrriB'n:1K5 +s8N5k!$D6Ws8N\hpcne2i;^S'KAZ_n%tig?_>aH7q#C?sn,OR1_>jNIi:oP:KAcdF +%tid?4qE;(s2"^7!;QTo"RlC5s2"a8&`EFKs+B80^^l(U!'UpGi;^XmrrDiorrhfk ++901Wrt42a5Q?Aos1f.thuGqOKAcdGrr2uns8N5k!$D6Ws8N\hpcne2i;^S'KAZ_n +%tig?_>aH7q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX' +q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU= +q#C?onGWCj5QCX'q#17)*s_cFJ,f:-!.5jg!UtU=q#C?onGWCj5QCX'q#17)*s_cF +J,f:-!.5jg!UtU=q#:9tKAcdGs82lrrt0b]#Q=]*i;`ceJ,fiSn:1K5rr31Ti;^Xn +quH`r&V'idrW!&Ys8EOZ!!iPnJ,fjE5rr3R\!!iK'"5s4Y%tFWbs6tOP&-)Y0q#:9nJH#TS +5Q?66s2"2Ss8N/:n9k07"FM9k4qI\n!;QQn!.b(L#=&6=!<9n)J,fNM_=2jN!!IZk +!'UqnrrDinrr@TL!!bagJ,oVcn:1KP&-)Y0q#(-op]9l3rr<$`s8N;]#Q>83*s_cE!!iK&!;QKl +"8DodI/a0H5QC`fi!95lr#Z1Brr<<&rrDilrr`#sn9k69!'gM`#2fac&,[LSrVlj& +rVllmr;Qlo!UtL:!!#7`rs%BdrX\oK#Q=Z&#Q=Z&q#(-op]9l3rr<$`s8N;]#Q>83 +*s_cE!!iK&!;QKl$2?abKAZ_1n,OR1!!*U\rW!'3s5aHB!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB +!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB!!2S=i;^XnJ04PNrr2unrr30" +!<9h7"98B$_>aHB!!2S=i;^XnJ04PNrr2unrr30"!<9h7"98B$_>aHB!!2S=i;^Xn +J04PNrr2uns8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^ +5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5 +s8N/i"5s1Y(5)Y^5Oa1&p]:Em!<<#u"5rqTn:1K5s8N/i"5s1Y(5)Y^5Oa1&p]:Em +!<<#u"5rqTn:1K5rr3R\*rl?2Hlr+an9c>XrW!&Y#QOf(r;HZr&-)Y0q#::*J0+al +n9c>Q!UtIYs8E!#i!9;^!;ufr!"],0!;QQn&V(r'!UtIYp]9l3+92m+HlrCf!!D-as8N)srVup/s8N)orr3R\*rl?2Hlr+a +n9c>XrW!&Y#QOf(r;HZr&-)Y0q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_ +q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::%quHLU!.Y"K4qIPk#QF`+ +i!95]I/a0H5Q:Z_q#::%quHLU!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::%quHLU +!.Y"K4qIPk#QF`+i!95]I/a0H5Q:Z_q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G +&-)Y0q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#::1J04g,%tig85O\dT +!'gM]!;JeJHiX3G&-)Y0q#::1J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#::1 +J04g,%tig85O\dT!'gM]!;JeJHiX3G&-)Y0q#:9nr;Qa(4qE/cs2"a5*rl?Ars.K^ +rX]%ep]:Bo!;QQn!;uis$9euN+901Wr#Yn>s8N>^s8EQ/i:m?PrrDinrrDus!"(n# +J04g-s83r=!WW0)i;`ces5jET!!3-"#N5X]&-(S_ +!WN*!q#:9nr;Qa(4qE/cs2"a5*rl?Ars.K^rX]%ep]:Bo!;QQn&c"98/r!!dlOp]9l6s7lTn&c"98/r!!dlOp]9l6s7lTn +&c"98/r!!dlOp]9l6s7lTn&c"98/r +!!dlOp]9l6s7lTn&c"98/r!!dlOp]9l6s7lWo#Oh^8!'Uqn +i;WcW&-)Y6p]9ja*s]X^rs%Bd^]8laq#C@!n,OO14qI\Orr<$0s8N;u!Up(2#JpH? +#2fa%!.Y%Ds8N>n!$;2)&-(Sf!!!Q0rs&6!n,OO8_>jN>i!7$tJ,fm:J,o@.!!D-a^^p>b#J^lMrriYC +!.Y%Ds8Nf&!$Ct:s*t+E4ob]C#J^lJ*s]Rls8N6-^]8laq#C@.n,OR*!WRZMpc\Z[ +i!7%.r#Z0Z&-)Y5#J^=hs7lWo%e+if#QO:ChuEfIJ)L)ds8NA_#JpFj!<<$/s8N)o +s8NSuHliUnn:0?r!UtTspcnfY#iGs(s*t+LrX]&/!;QTo%e+if#QO:ChuEfIJ)L)d +s8NA_#JpFj!<<$/s8N)os8NSuHliUnn:0?r!UtTspcnfY#iGs(s*t+LrX]&/!;QTo +%e+if#QO:ChuEfIJ)L)ds8NA_#JpFj!<<$/s8N)os8Nf&HiODfs*u0r_=2go#Jom3 +rr>:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU0n,r[j5Oe[Q!XHLOs8N)os8Nf& +HiODfs*u0r_=2go#Jom3rr>:Qrr<**^^pJF!;QTo'_$JM#JpFj*s]XOHliU0n,r[j +5Oe[Q!XHLOs8N)os8Nf&HiODfs*u0r_=2go#Jom3rr>:Qrr<**^^pJF!;QEj'C^M0 +s8E!#huEfIJ)CRJn:1HC_>aH7q"k"(n:0BrrW!&Y!!2S=i!7*fJ,]birr2unqYq5u +J)LA+!!D-Z!UtTs#JonZrs-C>rrDijrtFmOi;`cV"5j.[n:0@$_=2sS#JpE>!;QEj +'C^M0s8E!#huEfIJ)CRJn:1HC_>aH7q#C?onGWCf!WW03i:oJHqu?u]h!<9n)HiWpBn,qVK +rW%HJ#Q=^Qs7lWo!UtU=rtrTAHiX2_n9b62!Up3Ls8E"Jrs/N'J,fjETpcne2i:m9_quHNi!!#7_rrDio +rt=gK!!g@?r#b\us+B8)!"\u-q"t*l5Q:Z_q#C@,n9b3@_>jETpcne2i:m9_quHNi +!!#7_rrDiort=gK!!g@?r#b\us+B8)!"\u-q"t*l5Q:Z_q#C@+n9b3@_>jET#Q=^N +*rnJ8KAce0#k3?%p]9l6s7lWo&b(/J#JpH<*s_cFHli>P%tig?rs8+Di:m?BJ,fjET#Q=^N*rnJ8KAce0#k3?%p]9l6s7lWo%e+iG +#JpH86rrDiorsnOG!!g@?quHKms82lsrr)lu#Jg<= +!XJ]8s8N)os8NSuHiODfs82ll!WW&ts8Mut!=-F>!!3E)&-)Y0q#C@(n9b3@_>jE5 +p]:Em!<<&t!!*>?rW!!)rX]&/!;QTo%e+iG#JpH86 +rrDiorrMV=s8N2;s*t+Krrdio!!2Th!!3,9rr3-,_=2sSq#C?pn:1K<"2Y"f!<3!$ +J0+alnG`Ihs2"^7"UDm5J,f +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr7.png b/archive/2014OC/qr/qr7.png new file mode 100644 index 0000000..26986b6 --- /dev/null +++ b/archive/2014OC/qr/qr7.png Binary files differ diff --git a/archive/2014OC/qr/qr7.ps b/archive/2014OC/qr/qr7.ps new file mode 100644 index 0000000..14b0fc2 --- /dev/null +++ b/archive/2014OC/qr/qr7.ps @@ -0,0 +1,1410 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!N2s*t+LrXXN$!'gL6!<9hF +r;?TsJ,f4nKE(^2 +s83u=rr_b?s7lWo!UtU=rrBn8rt"&f^^l(t!'UpGs7ehYr#bt="7Ug?q#C?pn:1K< +!5\^8&)dK'%tjl^4qE;GpcnfV+92?Cn:1K5s8N,hJ,fNK_>jNGi;^S'KDtp8%tjoW +5QCX's8N2jJ,f4nKE(^2s83u=rr_b?s7lWo"Rpd= +#JpE>#P^OQJ)C;j&-)Y:#JonW*rl?2J,frs/<`n:0?r4qI\n$4"E: +Hli=hn:1K5s8N5kHiODfrr35u5Oa0\!'UqnrsB"In9c;X!UtU=q#C?sn9b3@_>aH> +pcn7thuGqOs8NE2_=2go!!2S=s7lWo"Rpd=#JpE>#P^OQJ)C;j&-)Y:#JonW*rl?2 +J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP +s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d +s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 +^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`rr>:`J,oVcs82lsrW%HJ#Jg<="UDgC +J,fjE5s8E"Jrs-@=!!NVC!.Y%Drr3U`rr>:` +J,oVcs82lsrW%HJ#Jg<="UDgCJ,fQs+B8)!WN*!q#C?un9b69 +^]8lart#)>qu@!$!.5jg5Q?Aop]:Bo!;QTo#4R!?s1eVas8NW/&,ZD4rW%4nKAcMhn,r[q_=.FHrr2tNqu6Zk +s8N]#J,]L4%tig85O\dT#Jom0+9)9?KDYZKq#C?onG`Iis1f0Fs8DuuI/a0H55tTa ++8>m8rrg+;J,fm8rrg+;J,fm8rrg+;J,f2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F +#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B +"98B$!Y>2Nr;[*F#J^=hrs/N6s8N)orr31Ti:m?B"98B$!Y>2Nr;[*F#J^=hrs/N6 +s8N)orr3B(!;J_gKDu1l%tig?!!!Q0rrW6%n:1KX_=7F("[DJYrr<*!rrDinrrDup +!!j\A5Oa%Bs2"4(!!PUV"9/?%rr2unrr2urqu@!Epcn7q+901HrW!*dn,r[j!WN*! +q#:9nr;6O#+8A(iHlrC)nGWCk5O\dT!!3*!!;QQn!;u`p#Trh+n9c>X_=7F("[DJY +rr<*!rrDioru(;.i!9;OHli=hn,r[q^^p>C#Q>83!;HO)s8N)os8Nu+"5jFan9c;X +!Up3k#J^lJ!!iK6quHKl&-)Y0q#C@3n,qSRs6tCX!!2Qkrs-=Mqu@!$&,ZG&!"],0 +!;QTo)=Rad#QO:@*rl?2"9/VA&,ZD4rX\o,p](j)rrDioru(;.i!9;OHli=hn,r[q +^^p>C#Q>83!;HO)s8N)os8N/i"989!'`\.4"9/?b!!D0Z^^kr;pc\\-s7lWo!q6bpcn7q!!g:Ms8N)o +s8Nu+HiWpBn:0@$rXXN$s1f0C+8A(iHiODe&-)Y0q#C@3n9b62!UtTs#Q>6a+90+e +r#b\un9b3@^^pJF!;QTo)=W"Rp]9l6i!95lJ04g,&,[OE5Oa%##J^lMrrDioru(bpcn7q!!g:Ms8N)orVloV#QOf*J0,$rrri6"pcn9J!!3DA +nG`Ih#JpE>!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop0!!*>@rr2unrVloV#QOf* +J0,$rrri6"pcn9J!!3DAnG`Ih#JpE>!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop0 +!!*>@rr2unrVloV#QOf*J0,$rrri6"pcn9J!!3DAnG`Ih#JpE>!;QHk"2GHIi;W`g +J,fhjn9b624og*4!'UC4s7lKk"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lKk"2GHI +i;W`gJ,fhjn9b624og*4!'UC4s7lKk"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lKk +"2GHIi;W`gJ,fhjn9b624og*4!'UC4s7lWo&Fb2-s8EQ/i:m9_KAce/!.=bG!tY;O +q#:jE5#Q>6a!!g@0!$D1?#6Wla5Oa1&q#C?o +nG`Ius2"a5!!iK6J,fhjn,OR0!!`Va!'ft&s7lWo!:^!g%faBFqu@!$%tFWb_=.FH +rW!0*huH"2J,fjH5 +!"1t$r#bt<&,ZG&!"],0!;QQn$@j5n5QCX's2"a5rr"5s3p!.Wr+rrn&Tp]9l3rr<'`&-)Y0q#C@&n:1HC^]4Jps1eVai;W`[ +KE(]In9k69!Bq%orrDiors\CHrs-=>"5s3p!.Wr+rrn&Tp]9l3rr<'`&-)Y0q#C@& +n:1HC^]4Jps1eVai;W`[KE(]In9k69!Bq%orrDiors\CHrs-=>"5s3p!.Wr+rrn&T +p]9l3rr<'`&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM` +$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H] +&-)Y0q#(-m!'gM`$/kSCs*u0k4qISk!!Y[W!$;H]&-)Y0q#(-m!'gM`$/kSCs*u0k +4qISk!!Y[W!$;H]&-)Y0q#::"J04g,&-(S_!"],0"TU^ss5<\M!!E>lJ,fl +J,flJ,f:`KAcMg%tjoW4ofsP!'UqnrrDiorrDQf!#5P(J,]L5s+B8)4qE;Gpc\\**rnJ8 +s8N)os8N)grW!Z6n:1H<5Q?Aopc]4@s7ebXHli>P&-)Y0q#C?onGWD&!UtU=!'gL9 +i:oJHKE(^1!.5jg4qI\n!;QTo!:]sf'`mfRrr>:`KAcMg%tjoW4ofsP!'UqnrrDio +rrMV=s8NhMs+B505QCX'pcnfV!!g@0J,]L4&-)Y0q#C?pn:1K<'uBp&huH"Ar#b\u +s82j%_=2sS!'UqnrrDiorrMV=s8NhMs+B505QCX'pcnfV!!g@0J,]L4&-)Y0q#C?p +n:1K<'uBp&huH"Ar#b\us82j%_=2sS!'UqnrrDiorrMV=s8NhMs+B505QCX'pcnfV +!!g@0J,]L4&-)Y0q#C@.n9b3@_>f#cpcn7trr<*"J,fhjnG`Il#JonZs7lWo'_$JM +#JpFj!;JeJJ,]KLs*t(S_=7I)"UDm5J,ff#c +pcn7trr<*"J,fhjnG`Il#JonZs7lWo$1N<5Oe[Q!Vc]prriB' +n:1K5s8NDpHiODfn9b69rr2s#+8A(irr<)p!WN*&!!2S=s7lWo$1N<5Oe[Q!Vc]prriB'n:1K5s8NDpHiODfn9b69rr2s#+8A(irr<)p!WN*&!!2S= +s7lWo$1N<5Oe[Q!Vc]prriB'n:1K5s8N]#HiODfn,qSR^]8la +p](j&+92?Hn:0Bk5Oa1&q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt=#k3?%pcn7ts7lWo +&b(/J#Jom3i!7$tJ,f9D&,[OLrs8+Di:oP+J,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0*s_cUs8N)o +s8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K+90+es8N)os8N)grVup!s8N8\ +pcne/!<3!!J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X +^^pJF!;QTo!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0puDASpuDASpuDAS +puDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDASpuDAS +puDASpuDASpuDASpuDASp]~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr8.png b/archive/2014OC/qr/qr8.png new file mode 100644 index 0000000..e05bae0 --- /dev/null +++ b/archive/2014OC/qr/qr8.png Binary files differ diff --git a/archive/2014OC/qr/qr8.ps b/archive/2014OC/qr/qr8.ps new file mode 100644 index 0000000..6ef4fdc --- /dev/null +++ b/archive/2014OC/qr/qr8.ps @@ -0,0 +1,1409 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.19999 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!N2s*t+E4qIQ5!'gL6!<9hF +r;?TsJ,faH9 +pcn9J!!3E)&-)Y:#JonW*rl?2J,frrVs[nG`Ii#Q>86rsB"In9c;X +!UtU=q#C?sn9b3@_>aH9pcn9J!!3E)&-)Y:#JonW*rl?2J,frrVs[ +nG`Ii#Q>86rsB"In9c;X!UtU=q#C?sn9b3@_>aH9pcn9J!!3E)&-)Y:#JonW*rl?2 +J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fCs1f0C*rl?2J,fC +s1f0C*rl?2J,fjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoP +s*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6d +s7cR)KDtoPs*u0rrVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14 +^]4Jp#Q>6ds7cR)KDtoPs*u0rrVllmrr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLO +s8N)orr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3U`rr>:`J,oVcs82ls +rW%HJ#Jg<=!XHLOs8N)orr3U`rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3U` +rr>:`J,oVcs82lsrW%HJ#Jg<=!XHLOs8N)orr3H*+8>gHKDtoPn:1HC_#FB8*s_fF +"5jF"&-)Y0q#::&r#b\6%tjl^!UtU=#Jg?>!?VRGrr_0a^^pJF!;QQn%K%=C!"X_^ +!!2S=rs-@>!!+/Hrr3)Y#J^lMrrDinrselJp](hWrr<)hJ,]bhrr<'A#QF`*i!7%. +s8N)orr3H*+8>gHKDtoPn:1HC_#FB8*s_fF"5jF"&-)Y0q#:9sKDu2U%tOZ[!'^A^ +rr3&t!!iQ(!Iu9irrDinrrn&T#Q>6arr<$_rW)rt!rN$'s8N+M+8l-=q#:9sKDu2U +%tOZ[!'^A^rr3&t!!iQ(!Iu9irrDinrrn&T#Q>6arr<$_rW)rt!rN$'s8N+M+8l-= +q#:9sKDu2U%tOZ[!'^A^rr3&t!!iQ(!Iu9irrDioruCNU!<9h7J,]cQ!.4bOrW%4nKE(^2s+B57 +^^kr;rr2tNqu6Zks8N]#J,]L4%tjoW5Q?Ao#J^k#+9)9?KDYZKq#C@+n:1H<4qE;G +pcne2i!7%.J04dj!/(1K!;QTo&b(;M!'UpGs7ehYKA[!M%tGc$rr@]KrrDiort4aM +rr>4nKE(^2s+B57^^kr;rr2tNqu6Zks8N)grr]s1nX7 +"!7M,&-)Y0q#13oi;`fV!!OJ>5O\dTrW!$&i;^Um!!=;C4qI\n!;QNm!oX+Xrr<3E +pcn6Ms8E!#"5s3prr<-C!'UqnrrDimrrV-Yrr2s%+8A(i"98?#!s@K]_#FB:*rnJ8 +s8N)orVlrWs8N#u"X!M(n,r^i!!<>]s1nX7"!7M,&-)Y0q#:9tKAcM*n,qVK!!3]/ ++8l0F*s]R]J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#:9t +KAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R] +J,]cQ&-)Y0q#:9tKAcM*n,qVK!!3]/+8l0F*s]R]J,]cQ&-)Y0q#::'quHLU%tjle +^^pJ'#J^lMrrW6%n:1K%4qE;G#J^lMi!7%.s8N0$!UtU=rrBn7 +rrDinrsnr,pc]4@rs-=Ms54-t&-)Y3!!2S=s8N)8rr2unrr3K+!;J_gKDu1l&-(Pm +^^pJF!rrAkJ,fNK_>aH7q#::'quHLU%tjle^^pJ'#J^lMrrW6%n:1Km+J,f:.n:0?r5O\dT +!!3*!!;QQn!;ucq&pter!UtU=pcn7thuH"2"9/?%rr2unrr2urr;[IX+8>m+J,f:. +n:0?r5O\dT!!3*!!;QQn!;ucq&pter!UtU=pcn7thuH"2"9/?%rr2uns8Nu+"5jFa +n:1H<5O\Xp#Q>6a!!iK6quHKl&-)Y0q#C@3n,qSRs6tO:Q!$;IF%tFWbrX\o,p](j)rrDioru(;.i!9;OJ,]L5 +n,OO8rXXMZ#Q>83!;HO)s8N)os8Nu+"5jFan:1H<5O\Xp#Q>6a!!iK6quHKl&-)Y0 +q#C?qn,r^i!!@TKs1nX7&0D.m!.Wr,^^kr;pc\\-s7lWo!q6bpcn7qrVup/s8N)os8Ni'J,f9En:0@$rXXN$s1f0C+8A(i +I/X*G&-)Y0q#C@/n:1K5!UtTs#Q>6a+90+er#b\un9k38!"],0!;QTo(%?_Qp]9l6 +i!95lJ04g,&,[OE5Oa("!!!Q0rrDinrrW*?#QOf*J0,$rrri6"pcn9J!!3DAnGWCf +!WN*!q#:9pr#Z1DrrR]m#QOf,quHLVnG`Ii#Jop/!!!'!rrDinrrW*?#QOf*J0,$r +rri6"pcn9J!!3DAnGWCf!WN*!q#:9pr#Z1DrrR]m#QOf,quHLVnG`Ii#Jop/!!!'! +rrDinrrW*?#QOf*J0,$rrri6"pcn9J!!3DAnGWCf!WN*!q#:9tr#bsS&-(Sert0b] +#JonW!;J_XJ,]cQ!.Y%Drr33#+90+es56a!!g@0!$D1?!s@H]5Q:Z_q#C?pn9k69%0?M,!!iK6J,fhjn,OR0!!<>] +!'gJ_!;QTo!UtL:!"Au/qu@!$%tFWb_=.FHrW!$&huH"@rrDilrrW6b!.Y%K"9&:J ++9)9Br#Z1CrW!,s4og*4q#(-o!'UC4s8N3#!.5mfrr`0@#QF]&"o(7]J,f +i;N]_"9/?%n,qVD!V$*h$NL)9J0+bT!.Y%Ds8N/iJ)L;+#m:2-!Up3Lp]9ma!"/c* +%tG`%4og*4q#C?qn:0Bq!!rc-!!2Qki:m?Brr@`rrVs[nGWCh4og!1!!Y[W!$;H]&-)Y0q#(-m +!'gJ_!r,"LrW!!`!.=eH#!_SW*s]Rls8N)or;Qct5Q:Zapcn9I!!5=aI/a0N5O\Xp +#J^lMrrDinrs4,ss1f0Fi:m?PrriBd&-(S_qu?j#n:1K5rr37S+90+es5lJ,ff/Gs8NPt!$D6Wn:1HCrW%HJq"k!jnG`Iks2"_fi;`fdn,OR1_=2sS#Q=^Q +s7lHj!:^!g"TQ=s2"2Srs/N'J,ff/Gs8NPt!$D6Wn:1HCrW%HJq#C?onGWCq!UtU=!'gL9 +i:m9_s8N?!4ofsP!'UqnrrDiorrDQf!"/hsJ,]L5s+B8)!"],0#P^I_Hli>P&-)Y0 +q#C?onGWCq!UtU=!'gL9i:m9_s8N?!4ofsP!'UqnrrDiorrDQf!"/hsJ,]L5s+B8) +!"],0#P^I_Hli>P&-)Y0q#C?onGWCq!UtU=!'gL9i:m9_s8N?!4ofsP!'UqnrrDio +rrMV=s8N5U`Y#JonZrr>4ns8N)os8N,hJ,fNO_>jE5#PnB*i!7*fJ,]L4 +&-)Y0q#C?pn:1K<"Mt-9!!i?"#iGs(n:1H<4qI\n!;QTo!UtU=rrg1U`Y#JonZrr>4ns8N)os8N5kHiODfs8N>^ +p]9l6rr<*"rr_0a_=7I)"UDm5J,fjN? +i:m?BJ,]KLs8N2Z#Jop0!!NVDn:1K5s8N5kHiODfs8N>^p]9l6rr<*"rr_0a_=7I) +"UDm5J,fjN:i;^Um!!",@rsJ5trs-C0!$;IF +&-)Y0q#C?pn:1K86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t +#Jom0*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?o +nGWCf!WW0'i:oP:J,oTK!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!! +J,oWL"n6m]s1f0FrrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo +!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK +!It1Mrrqn>+90+es8N)oj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/qr/qr9.png b/archive/2014OC/qr/qr9.png new file mode 100644 index 0000000..63b4fa7 --- /dev/null +++ b/archive/2014OC/qr/qr9.png Binary files differ diff --git a/archive/2014OC/qr/qr9.ps b/archive/2014OC/qr/qr9.ps new file mode 100644 index 0000000..7ef155c --- /dev/null +++ b/archive/2014OC/qr/qr9.ps @@ -0,0 +1,1411 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.24.2 (http://poppler.freedesktop.org) +%%Creator: Writer +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: 595x842 595 842 0 () () +%%BoundingBox: 0 0 595 842 +%%Pages: 1 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + 2 array astore + /setpagedevice where { + pop 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font BAAAAA+IPAGothic +%!PS-TrueTypeFont-29810 +10 dict begin +/FontName /BAAAAA+IPAGothic def +/FontType 42 def +/FontMatrix [1 0 0 1 0 0] def +/FontBBox [0 -205 2016 1761] def +/PaintType 0 def +/Encoding 256 array +dup 0 /c00 put +dup 1 /c01 put +dup 2 /c02 put +dup 3 /c03 put +dup 4 /c04 put +dup 5 /c05 put +dup 6 /c06 put +dup 7 /c07 put +dup 8 /c08 put +dup 9 /c09 put +dup 10 /c0a put +dup 11 /c0b put +dup 12 /c0c put +dup 13 /c0d put +dup 14 /c0e put +dup 15 /c0f put +dup 16 /c10 put +dup 17 /c11 put +dup 18 /c12 put +dup 19 /c13 put +dup 20 /c14 put +dup 21 /c15 put +dup 22 /c16 put +dup 23 /c17 put +dup 24 /c18 put +dup 25 /c19 put +dup 26 /c1a put +dup 27 /c1b put +dup 28 /c1c put +dup 29 /c1d put +dup 30 /c1e put +dup 31 /c1f put +dup 32 /c20 put +dup 33 /c21 put +dup 34 /c22 put +dup 35 /c23 put +dup 36 /c24 put +dup 37 /c25 put +dup 38 /c26 put +dup 39 /c27 put +dup 40 /c28 put +dup 41 /c29 put +dup 42 /c2a put +dup 43 /c2b put +dup 44 /c2c put +dup 45 /c2d put +dup 46 /c2e put +dup 47 /c2f put +dup 48 /c30 put +dup 49 /c31 put +dup 50 /c32 put +dup 51 /c33 put +dup 52 /c34 put +dup 53 /c35 put +dup 54 /c36 put +dup 55 /c37 put +dup 56 /c38 put +dup 57 /c39 put +dup 58 /c3a put +dup 59 /c3b put +dup 60 /c3c put +dup 61 /c3d put +dup 62 /c3e put +dup 63 /c3f put +dup 64 /c40 put +dup 65 /c41 put +dup 66 /c42 put +dup 67 /c43 put +dup 68 /c44 put +dup 69 /c45 put +dup 70 /c46 put +dup 71 /c47 put +dup 72 /c48 put +dup 73 /c49 put +dup 74 /c4a put +dup 75 /c4b put +dup 76 /c4c put +dup 77 /c4d put +dup 78 /c4e put +dup 79 /c4f put +dup 80 /c50 put +dup 81 /c51 put +dup 82 /c52 put +dup 83 /c53 put +dup 84 /c54 put +dup 85 /c55 put +dup 86 /c56 put +dup 87 /c57 put +dup 88 /c58 put +dup 89 /c59 put +dup 90 /c5a put +dup 91 /c5b put +dup 92 /c5c put +dup 93 /c5d put +dup 94 /c5e put +dup 95 /c5f put +dup 96 /c60 put +dup 97 /c61 put +dup 98 /c62 put +dup 99 /c63 put +dup 100 /c64 put +dup 101 /c65 put +dup 102 /c66 put +dup 103 /c67 put +dup 104 /c68 put +dup 105 /c69 put +dup 106 /c6a put +dup 107 /c6b put +dup 108 /c6c put +dup 109 /c6d put +dup 110 /c6e put +dup 111 /c6f put +dup 112 /c70 put +dup 113 /c71 put +dup 114 /c72 put +dup 115 /c73 put +dup 116 /c74 put +dup 117 /c75 put +dup 118 /c76 put +dup 119 /c77 put +dup 120 /c78 put +dup 121 /c79 put +dup 122 /c7a put +dup 123 /c7b put +dup 124 /c7c put +dup 125 /c7d put +dup 126 /c7e put +dup 127 /c7f put +dup 128 /c80 put +dup 129 /c81 put +dup 130 /c82 put +dup 131 /c83 put +dup 132 /c84 put +dup 133 /c85 put +dup 134 /c86 put +dup 135 /c87 put +dup 136 /c88 put +dup 137 /c89 put +dup 138 /c8a put +dup 139 /c8b put +dup 140 /c8c put +dup 141 /c8d put +dup 142 /c8e put +dup 143 /c8f put +dup 144 /c90 put +dup 145 /c91 put +dup 146 /c92 put +dup 147 /c93 put +dup 148 /c94 put +dup 149 /c95 put +dup 150 /c96 put +dup 151 /c97 put +dup 152 /c98 put +dup 153 /c99 put +dup 154 /c9a put +dup 155 /c9b put +dup 156 /c9c put +dup 157 /c9d put +dup 158 /c9e put +dup 159 /c9f put +dup 160 /ca0 put +dup 161 /ca1 put +dup 162 /ca2 put +dup 163 /ca3 put +dup 164 /ca4 put +dup 165 /ca5 put +dup 166 /ca6 put +dup 167 /ca7 put +dup 168 /ca8 put +dup 169 /ca9 put +dup 170 /caa put +dup 171 /cab put +dup 172 /cac put +dup 173 /cad put +dup 174 /cae put +dup 175 /caf put +dup 176 /cb0 put +dup 177 /cb1 put +dup 178 /cb2 put +dup 179 /cb3 put +dup 180 /cb4 put +dup 181 /cb5 put +dup 182 /cb6 put +dup 183 /cb7 put +dup 184 /cb8 put +dup 185 /cb9 put +dup 186 /cba put +dup 187 /cbb put +dup 188 /cbc put +dup 189 /cbd put +dup 190 /cbe put +dup 191 /cbf put +dup 192 /cc0 put +dup 193 /cc1 put +dup 194 /cc2 put +dup 195 /cc3 put +dup 196 /cc4 put +dup 197 /cc5 put +dup 198 /cc6 put +dup 199 /cc7 put +dup 200 /cc8 put +dup 201 /cc9 put +dup 202 /cca put +dup 203 /ccb put +dup 204 /ccc put +dup 205 /ccd put +dup 206 /cce put +dup 207 /ccf put +dup 208 /cd0 put +dup 209 /cd1 put +dup 210 /cd2 put +dup 211 /cd3 put +dup 212 /cd4 put +dup 213 /cd5 put +dup 214 /cd6 put +dup 215 /cd7 put +dup 216 /cd8 put +dup 217 /cd9 put +dup 218 /cda put +dup 219 /cdb put +dup 220 /cdc put +dup 221 /cdd put +dup 222 /cde put +dup 223 /cdf put +dup 224 /ce0 put +dup 225 /ce1 put +dup 226 /ce2 put +dup 227 /ce3 put +dup 228 /ce4 put +dup 229 /ce5 put +dup 230 /ce6 put +dup 231 /ce7 put +dup 232 /ce8 put +dup 233 /ce9 put +dup 234 /cea put +dup 235 /ceb put +dup 236 /cec put +dup 237 /ced put +dup 238 /cee put +dup 239 /cef put +dup 240 /cf0 put +dup 241 /cf1 put +dup 242 /cf2 put +dup 243 /cf3 put +dup 244 /cf4 put +dup 245 /cf5 put +dup 246 /cf6 put +dup 247 /cf7 put +dup 248 /cf8 put +dup 249 /cf9 put +dup 250 /cfa put +dup 251 /cfb put +dup 252 /cfc put +dup 253 /cfd put +dup 254 /cfe put +dup 255 /cff put +readonly def +/CharStrings 256 dict dup begin +/.notdef 0 def +/c27 39 def +/c26 38 def +/c25 37 def +/c24 36 def +/c23 35 def +/c22 34 def +/c21 33 def +/c20 32 def +/c1f 31 def +/c1e 30 def +/c1d 29 def +/c1c 28 def +/c1b 27 def +/c1a 26 def +/c19 25 def +/c18 24 def +/c17 23 def +/c16 22 def +/c15 21 def +/c14 20 def +/c13 19 def +/c12 18 def +/c11 17 def +/c10 16 def +/c0f 15 def +/c0e 14 def +/c0d 13 def +/c0c 12 def +/c0b 11 def +/c0a 10 def +/c09 9 def +/c08 8 def +/c07 7 def +/c06 6 def +/c05 5 def +/c04 4 def +/c03 3 def +/c02 2 def +/c01 1 def +end readonly def +/sfnts [ +<000100000009008000030010637674202087228c0000009c000000a26670676d +0f5de35e0000014000000071676c7966153949d4000001b400001c5868656164 +2df9d49d00001e0c0000003668686561070bff2400001e4400000024686d7478 +cd3b237600001e68000000826c6f63618ab2833e00001eec000000526d617870 +084902fe00001f4000000020707265703f711a3d00001f600000000a00> +<080008000000ff0a006f0600043100b300d400ce00a0009600cd007600b7008e +008300b00057005000610060009100800052008a0095007d005400f6005e00e8 +009800c10059005a003c0079008900cb00ed009f006c00e600720076008e0057 +00ce00d20066007900b70077009b00a900890098007200e000de008c008f00b0 +00c400a400a2009100820066006800bc00bf005500460049006a004f0076008e +0057000000> +<400f0e0d0c0b0a090807060504030201002c172f3c2d2c2f3c2d2c1112392d2c +111217392d2c1017fd3c2d2c1017f43c2d2c1017dd3c2d2c1017d43c2d2c10fd +2d2c10f42d2c10dd2d2c10d42d2cc42d2cc02d2c004010010000010102020303 +04040505060600163f3f3f3f3f3f3f162d00000000> +<000500cdff33073306e1000300060009000c000f004c40410e0c0b0a09080706 +08040d0305041c01020f0d1c0100020403020101000102000e0f0e0d0a090605 +0408070b0308071c01000c0b1c0101020403000102010102002a2a2b2b2a2a2b +3130052111210721010111012301110501010733f99a0666aefaf8028502c7fd +7d8afd7b054cfd7ffd7dcd07ae6afce7fc910632fce7031df9c8500317fce90000> +<0002007f00b6076804fe0005000b002640110b090806050302000e0b09080605 +0302002e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e313013001317020125020137 +00017f014ea0a8b3feb305aeeffebd94012101220129017602443bfd99fe752b +020001cf4efe75fddd00000000> +<000100c3003d073c05e100170036401917151312100f0d0b090806000e171513 +12100f0d0b090806002e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e +2e2e3130133737363736370013170201242526273700130726270405c3233536 +43300b010eb5acb1fef901eb016293aa910131e4965a25fd7ffd61011d020203 +0402010271024539fdebfda62a35d8cb50fe95fe8467a037713b000000> +<00020071ff79079006a300090013005440350a00020d0111100f0e0d07060504 +030a0d0b13120c0b030101060908020103000e131211100f0e0d0c0b0a090807 +060504030201002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a +102a313001132101130101130121130321010301010301210400e402acfddbf6 +fd9ffda0f6fddb02ace397fe4e01569a018d018e9a0156fe4e06a3fd42fe6bfd +2901c5fe3b02d701950160fe38fefcfe1d012ffed101e3010400000000> +<000100d1fff60713059a0015003a402101151413110e0806050301000b0d0200 +011002000e15141311100e0806050301002e2e2e2e2e2e2e2e2e2e2e2e2b1310 +c01313102a133130011702030401070025060706070607000527000105270573 +727cda0144014088fec7fedf0c0801020502fec8fe737d03180136fc6e04059a +6bfea8fed9e5fec68b0156dd120801010405fe9dbb8b0150032f0c9d00> +<00020108ffa0067b064a0014001b004a402f010015021211020d0019170f0e0c +0a0605080d151b151a01000104140001000e1b1917151412110f0e0c0a060501 +002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2b2a102a102a2b3130011702010005 +2724133737262706072700131706070706071617121306106b5afef1feebfe4a +72018cf30610d1e18fb26f01ada99a212542194be0e1ab4e055458fe3cfe9bfe +95c883a001210814f7a5bd8773013b02442b7358913579a4f00107013b00000000> +<000100d9022b072703e50011002540150f190206190b110b090802000e090801 +11000102002a2b2e2f2e2e2f2e10ed10ed313013363332051633323715062322 +2726232207d9baf4ac0100d36be1d5baf4b6f6d36ddfd5033da8a485d5bea8a0 +89d5000000> +<00030083ffa0078b06500016001c00220056402922201f1d1c1a19171413110f +0e0c0b09050302000e22201f1d1c1a19171413110f0e0c0b09050302002e2e2e +2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e +2e2e2e2e2e2e3130251213170203372425372627370013072627040527363701 +0013170201250003371201020ae5a0a0d5aa64011801495096877d011bd9925e +13fe58fcb536c323feb0018c9199b6fe77061ffe4ae88ddb01a87701b401db31 +fdd5fed906132508d4a749feb1feba58951d49429f0b020270014602142dfdac +feb73b016c020531fe1cfec900> +<00050060ffa607a9068b00220026002a002e003400c340aa1d1a0401042f2303 +1b030223000313120e0c0b050d083332181707062505082e2b2a27242325052f +2d2c29282625221f1e0025092003041615100f090805302f0121200103000e1b +1f1d023013021d2d03181512032d2b033210022b2903330e022723030f0c0906 +042324032f0b02240003030007021a1604212e2d19011d2a2919012b28271901 +2325241901000404171601201f011e1d012c2b01262301010001080701222101 +08002a2a10c010c02b2b2b2b2b2b2b2b2b2a2a102a2b2b313025110607272413 +2135212627371617072136371706072115211205072627113315213501231133 +13113311331133112521260321020197498668018ac6fde70219554f81575e69 +01aa75669c7853023dfdddca01966e676cf8f9330269dede89e589e6fc040464 +f89efe9f802f025637536bdc01517fc069467db939a3d639ce727ffed5db773b +4efd9089890212fdee0212fdee0212fdee02127bbd011afef200000000> +<0001009aff92078206710014005140410807050302050d00140d0c0025030e01 +0411100113120f0e0302000e03000213110305110f020c0807030f0d03021312 +1119010f0104141301100f010e0d0103002a2a10c02b2b2b2b2a2a102a313001 +12010700030201272413361321352111331121150469c7025273fdceca75fd79 +730176d48d25fcfa030ea2031d03fafd85fed99301450250fd74fec48d8a0143 +da01348f01e8fe188f00000000> +<000201520021070605a60005000b00274016010b09080605030200080d02000e +0b090806050302002e2e2e2e2e2e2e2e2b13102a133130012627371617012401 +170005030ec9f368daf1fddb039b018a81fe7efc4703dbb7898b6ac9fc509f03 +6773fca8dd00000000> +<00030144ffe107e006e1000a001a002a0048402c2322131b220b010a09080601 +00060d130b0200010502000e27230f1f23170806050100050d170f090a090100 +2b10c4c42a10ed10ed2b1310c0131310c4c42a1310ed10ed3130011702010205 +2724130535013217161514070623222726353437361722070615141716333237 +36353427260617604dfefffcfe3e75032f9afb8505bd5d473b25447b372f7960 +3c461f214817274a31292d2f27055e58fdfafec1fec9a990f9035d159c01934a +41564138681b41877244295a10265124243f23273d3d292100> +<0002011fffa106d905be0003000e0042403306040d020b0a0d0e0d1a01040302 +1a0100020405040101000102000e0d0b0a030100030605020d010e0401020101 +03000103002a102a2b2b2a2a10c0c02b31300121152103211702050605272413 +2101cf0458fba8b005586283fef0eefe8a6b02b9dbfb1405be98fed65cfe51fe +de74989d028e000000> +<00020219ff8f05c906230003000f003c402f0f06020002030b0a020504010100 +0103020103000e0b0a020401030f040a010502010a0100020406050103000102 +002a2a2b2b2a10c0c02b3130013311230133111007060527243736110219aeae +0302ae9988fecf79012d777905fcfc6403c3fd4efe83f6d8978a85c0c401470000> +<000100bc02b80743035c0003001c401403021a01000104010001000e02010103 +000102002a2b2b2a313013211521bc0687f979035ca4000000> +<000100beffae07410617001800574046090706040301060d0a1211160d0c1a01 +0a17161a010002040b0a0118000102000e0706020b09030d0900021612110403 +050017030a090a010001040c0b0101000118170103002a2a2b2b2b2b2a2a10c0 +c0102a31300111060527242517060711211521020706052724373613213503db +e8fef64e026401b172d4cd02c0fd3e0c7796fec57d01377d680ffce503910169 +2b108d22a9854d2cfe8b91feb4b7e47e836fba9a010c910000> +<00010158008106a6041f000b003a40310b0a03021a0300090805041a03060204 +01000107060102000e04030a010901040605010201010a09010b000108070105 +002a2a2b2a2a313001211521112115213521112101e1043cfe290260fab20252 +fe37041f8dfd7e8f8f02820000> +<00030198fff20638049a0005000b0015003a40210111100c0b09080605030200 +0b0d0200011502000e1511100c0b090806050302002e2e2e2e2e2e2e2e2e2e2e +2e2b1310c01313102a1331300126273716173726273716170124133613170203 +0605023847598d6644f23d5d92643efe0e0175ccae3ea24de6c3fe93027bdaa3 +45a8d21cda9d44a5cefd50770108de019426fe36feeee98b00> +<0001012dffb8067b06470011003e4027010008020f0e020d000c0b0403040d08 +09081a01000104110001000e110f0e0c0b0908040301002e2e2e2e2e2e2e2e2e +2e2e2b2b2a102a102a2b3130011702012724131213210205270013170607060e +6db5fcc377017af9ee4dfdb9befeeb79019eb69e1446053d50fc57fe74839d01 +3001220180feb0e770014e02162d439a00> +<000500c1ffd1075206b80013002300330039003f0095406e2c221c2422140d0f +0808021c1c000202013f3d3c3a393736340f0b060b040203001400010a020011 +1005041a03020104010001131203020302000e302318282320203d3c3a200403 +01033937360b0a050011033f18033411060502010a0300010404030113100f00 +0312110103002a2a10c010c4c02b2b2f10ed10ed2b2a2a1310c01310c4132b13 +2b2f3f10ed10ed10ed3130013311211521111423222727163332351121352101 +3217161514070623222726353437361722070615141716333237363534272601 +361317020325022737121303b7a202a1fd5fcb8583237d8552fd5002b002bc5d +473b25437b372f79603c451f204816284931292d2f26fa1ede7c9479f00558a9 +c789e1a00639fe8591fc52ae18aa205203689101fa4a41564237681b41877244 +295a10265124243f23273d3d2921fab4e5016d41fe82fef3370161ff56fee6fe +ca00000000> +<000100eaffb606150625000a00304021090706040301060d000a0001000e0706 +020d0904030001000a010901040a0901002b2a10c0c0102a2b2b102a31300511 +04052700011706071103dafeb3fec56802cb01d18faae34a03e1fb8a81012d02 +6558e1c7fb91000000> +<000102dbffc50685063f0009002e402307050402040008030100010908010200 +0e0504020d01080702010a03000104090001002b2a102a2b2a2b313001331104 +05070025112302dba6019b01696cfeacfebca6063ffdc3bceaa60103a3fc690000> +<00020389ffe10477065a00030007002e40240504010601060706010100010302 +0103000e0302020100030605010200010607040002002b2a2b2b2a2a31300133 +0323073315230389ee25a425eeee065afb2fbaee00> +<00010293ff71056c06770008002f402408070605040302070d00010001000e05 +01000202010100010604030108000107060103002a2a2b2b2b102a3130013311 +01150101350103b4980120fe94fe9301210677fa37016ddbfe3101cfdbfe930000> +<000100a4ff71075a05f4000d003f403406040301040007030d0a090025030b01 +040c0b0108070102000e0403020c00030706010019030801040d0c010908010b +0a0103002a2a2b2b2a2a2b313001110401072425112311213521150421015901 +9a7afee8fe9fa0fd2306b60565feb89dfef181d4c2fbeb05f48f8f0000> +<00070075ff71078c064e001d00230027002b002f0033003700bd40aa05261009 +1e2402140a01032425030c251f0210101f2102373625013433322501302f2e25 +012c2b2a250128231e250124262525011f18172501191d002501150804353401 +3130012d2c01292801272401201f012221011a19011615011c1b010a000e091a +16020c0a020d1a1f1e190126252421201903221d1c171619031a010019011404 +042e2d012f2c01363532312a2905373433302b28052726012322011b1a011514 +0119180109002a2a102a2b2b2a2a2b2f2b2b2b10ed3130011114171633203736 +3717020706070623202726351121112135211123350511211523111711211101 +2115210721152117211521152115210481252bbd0126201d04970f31295570c8 +feff475e0290fd2603678dfcb5fe088989016ffe2b023cfdc46202f6fd0a6202 +3cfdc4023cfdc40308fd9a4610103b39f629fec047360c10192185032801ec83 +fca06eedfdbc6602aa77feaa015604aa7b917d927b917b0000> +<000200c30002074405b4001800240035401d210f0a011918060400050d120a02 +000e1d200e0220161918160e0604002e2e2e2f2f2e2e10ed10ed2b1310c4c42a +1310ed3130252411102526270203022322272635103736212017041110050306 +0706111417163332131203e602b2feec779e31aea9c06c6098fcfc018f0118c7 +011bfd0679d89cfe6c2f2c617e9e965f02130149963d0ffdf5fe98fea273b9f3 +0147f6f68dc5fea6fd848a052d2181d3fec3c87c350104014400000000> +<00020166ffec0699062b001400290050402e250b041d0b0c0c06040501012927 +1715141202070602030000010002000e21070819071029271715141210080200 +2e2e2f2f2e2e2e2e2e2e10ed10ed2b1310c01313142b13143f3f10ed10ed3130 +0526270623200326113437122120171611100716170116173635342702212207 +0615141716333237262705d9404599bffec9c19e6dc1016b012fc1aac24a43fe +315380704a84fef5df86736f87e78d62627314714f6d0102d5011fedbd014cf2 +d5fed3fec7e2585e020a498aa2f2c2940106c0a8f0eda2c94a72620000> +<000201e70068066e0602000d0014004b4037070f0a02140e0a01000b0a0a010f +0204100f010001000d0c0908030e12070514100a09080701070d050b0f0e0c0b +07030001040d0001002b2a10c42a10ed2b172f3c2f3c2b2a2b31300121321716 +1510050123012111231311212035342101e70241be77c7fe7f01cbf4fe69febc +b8b8019c0133fecd06023e64d9febc35fd5a0298fd6804f6fe46e5d500> +<000101390027065a053900090035402c09081a010007061a0104020401000105 +040103020103000e080704030a0301010402010109000106050103002a2a2b2a +2a3130012111233521352111210150050aa4fb83047dfb9a0539faee8d9e034b00> +<000302dbffc50733063f0009000f0015003e4033151312100f0d0c0a07050402 +0c00080301000109080102000e151312100f0d0c0a05040a0d01080702010a03 +000104090001002b2a102a2b2a2b313001331104050700251123012627371617 +37262737161702dba6019b01696cfeacfebca602f450696d556d775d636c6c5f +063ffdc3bceaa60103a3fc69048f917b4c58b218a0624a629a00000000> +<0001010cffba06f8067500330077403b2c0f11210f2633312f2e2a2624231d1b +1a18161513110f0d0b0a08050402000e1f202833312f2e2a2824231d1b1a1816 +15130f0d0b0a08050402002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e +2e2e2e10ed2b2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10 +ed10ed3130011621363717070607363717060506073633321336371704071617 +07342704151421323717062320113425262322012712132227015e9001054726 +980f2b2bd2f914f1fed1556a978ad847dffa4cfed5e00d049a06fe9e01f3bdcd +0ce7bffd8501e5347ccdfeb777fcaccd8b05540ca38a2b2976590a378d300fac +9c81fefa615587585e59d00d955fb387aa1b95190133e7e6c5fe48580146015c +0800000000> +<000a006aff69078b06a4000500090019002100250029002d0031003b004f0100 +40e942264b47463e030607034f32020701034b4b0103023b03313025012e2d2c +25012a292825012625242501221e1d25011a1817100f25030a14132501110500 +250106080725010109043d3c3736032f2e012b2a01272601232201211a011c1b +01201f010c0b01190e0d0a0316151211030906010201010403010e000e46121c +023736020a1e033b14180232270002470e4f3c19013d1d1c19011a1f1e190120 +17160b0a19030c01001901080706030219030406043e3d01282701292601302f +2c2b242305312e2d2a2522051b1a012120010f0e0113120111100d0c03151401 +1918010908010504010e002a2a10c02b2b2b2b2b2a2a10c02b2f2b2b10ed3130 +0111211523111711211101353315211521152115213521352135011123352111 +2311012115210721152117211521152115210136373613330207060701331114 +1716333237363717060706232227263502dbfe4b8383013202998d0200fe0001 +c9fc0a01a0fe31044e89fcc289fda001fefe02560291fd6f5601fefe0201fefe +020231d7463c038a044860e602448919133a680f0c07890d1422da922e25021b +fdbc6602aa77feaa01560408f8f87bba7979ba7bfdbcfe8cf9fef8018302e67b +917d927b917bfd385a917f0148fe8088b174032dfdc22f0d084034b429e23d6b +1f1b4b0000> +<000200b6ffb4078505cf00260032006440312f0f1a31272624221a1816141311 +0f0e0c0a0907050302000e2b201e31272624221e18161413110f0e0c0a090705 +0302002e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed2b2e2e2e2e2e +2e2e2e2e2e2e2e2e2e2e2f2e2e2e2e2e10ed3130012425170203041736371706 +0716170726270205272413262700232227263534373625361304050104070615 +14171633323736019d0126016a683c6e0108c71c039b0926a19f5eac5f65fe9b +7b015967f5ecfed5e5624c42a4c0013a4c3bfefefef6014bfef48141141c3038 +5b6b05850c3e4cfefbfee2285994e923e3b4506d8b7832fe89d96fb50172761b +fd64695d7ab2859915bf01102c15fdeb1c964e6434273d7d8d00000000> +<00030077ff7007a6063f00100028002e0087406d15261b2b000e022e29080104 +0e27032c002422211f1917110b0a06050b0d1b2526252501270f0e2501000204 +28270110000102000e0e0802000f032e0b0a030f1103291f021124032c2b2103 +24260319170605040d00222628111901240104252401272601010001100f0104 +002a2a10c0102a2b2b2b2b2b2a2a10c42a10c02b2b10ed313001151013121707 +0003020127001337213503161716212025060704232027262706072736371121 +3521032627371617055e968eea68fe796f6cfe7f6b01da3b02fe68eb59827e01 +9d0149011d2512fed8b5fe16a0a76192995e91b1fec601cb428ab36d9aa9061f +8dfe8bfee1feeca48f015201e9fde6fed67d013e03181985fad96f2e2b15415a +0b37388bab7e9c579001ee89011bbba15e7acf0000> +<000100d3ffc70758062b00190038401b170f070d0f1219151412100f07050302 +000e191514100f050302002e2e2e2e2e2e2e2e2e2b2e2e2e2e2f2e2e2f2e2e2e +10ed10ed31303700011702033633321716171233321317022120113510232001 +d3014801ba9ef9c8a190a3341a03038ac5ac83e0fee8fee07ffef0feb80a02db +03464afe57fe6897a452d2fefa01ab78fe2b018f100142fd1f00000000> +<000300baffdb075805b20005000b001e004940231e1c18170f0e0c0b09080605 +0302000e13201a1e1c1a18170f0e0c0b090806050302002e2e2e2e2e2e2e2e2e +2e2e2e2e2f2e2e10ed2b2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e31300126273716 +1737262737161701242517040704111417160517241110010405060e5c6b6f6c +61645f72697267f96202ff031c0efe99ccfecf9e9c015d0cfcb701c4fdf4fe4a +02ba97674e6692428d6950638d01646a3e931692defecbee706b16aa25025001 +980118464900000000> +<00020117ffd1069c064600250032004a4036280f2332262512110b0a08070504 +020c0d302300010001000e2c201f0b0a0504040d011f001211080702010a0500 +01043226250003002b2a10c4102a10ed2b2b10c4c42a10ed3130013311363717 +0605110405072627262726271514070607072227222726272635343736333217 +1526232207061514171633323503aa9cf5e22fdefed80100015664bdd31c2121 +04653f871108041017ae8d858390d44567674d875c58395590d10646fe4a1240 +983119fdf442c88b83560b0d0d0242d1452a0a020102035d5a79804c560e9114 +2b273f392d46b00000> +<00020177ff91060f06750005001500344019130f08150f0e0806050302000e11 +200c150f0e0c06050302002e2e2e2e2e2f2e2e2e10ed2b2e2e2e2e2e2f2e2e2e +10ed31300126253704050124333217161510052724111023220504dfe1feb04c +01340107fc420220dee16b4efd376d0290fec8fe1c04f88c658c5b91fe48b88f +6aa7fd79d1909002350114c900> +<00010000000307aec93934465f0f3cf5000f080000000000c6f481e000000000 +000000000000ff3307e006e100000006000200000000000000> +<00010000070aff0a000000000000000000000001000000000000000000000000 +0000001900> +<080000cd0800007f080000c308000071080000d108000108080000d908000083 +080000600800009a08000152080001440800011f08000219080000bc080000be +08000158080001980800012d080000c1080000ea080002db0800038904000000 +0800029300a4007500c3016601e7013902db010c006a00b6007700d300ba0117 +0177000000> +<00000050008600d40132018001e0021202880346039c03d0043c048004c004dc +0538056e05ba060206b406e8071807420742077207b0086c08ca0938098609b6 +0a040a960b980c260cc00d0e0d720de60e2c000000> +<0001000000280050000a00000000000200070000000f0000080002ac0000000000> + +] def +FontName currentdict end definefont pop +%%EndResource +/F15_0 /BAAAAA+IPAGothic 1 1 +[ /c00/c01/c02/c03/c04/c05/c06/c07 + /c08/c09/c0a/c0b/c0c/c0d/c0e/c0f + /c10/c11/c12/c13/c14/c15/c16/c17 + /c18/c19/c1a/c1b/c1c/c1d/c1e/c1f + /c20/c21/c22/c23/c24/c25/c26/c27 + /c28/c29/c2a/c2b/c2c/c2d/c2e/c2f + /c30/c31/c32/c33/c34/c35/c36/c37 + /c38/c39/c3a/c3b/c3c/c3d/c3e/c3f + /c40/c41/c42/c43/c44/c45/c46/c47 + /c48/c49/c4a/c4b/c4c/c4d/c4e/c4f + /c50/c51/c52/c53/c54/c55/c56/c57 + /c58/c59/c5a/c5b/c5c/c5d/c5e/c5f + /c60/c61/c62/c63/c64/c65/c66/c67 + /c68/c69/c6a/c6b/c6c/c6d/c6e/c6f + /c70/c71/c72/c73/c74/c75/c76/c77 + /c78/c79/c7a/c7b/c7c/c7d/c7e/c7f + /c80/c81/c82/c83/c84/c85/c86/c87 + /c88/c89/c8a/c8b/c8c/c8d/c8e/c8f + /c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9a/c9b/c9c/c9d/c9e/c9f + /ca0/ca1/ca2/ca3/ca4/ca5/ca6/ca7 + /ca8/ca9/caa/cab/cac/cad/cae/caf + /cb0/cb1/cb2/cb3/cb4/cb5/cb6/cb7 + /cb8/cb9/cba/cbb/cbc/cbd/cbe/cbf + /cc0/cc1/cc2/cc3/cc4/cc5/cc6/cc7 + /cc8/cc9/cca/ccb/ccc/ccd/cce/ccf + /cd0/cd1/cd2/cd3/cd4/cd5/cd6/cd7 + /cd8/cd9/cda/cdb/cdc/cdd/cde/cdf + /ce0/ce1/ce2/ce3/ce4/ce5/ce6/ce7 + /ce8/ce9/cea/ceb/cec/ced/cee/cef + /cf0/cf1/cf2/cf3/cf4/cf5/cf6/cf7 + /cf8/cf9/cfa/cfb/cfc/cfd/cfe/cff] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: 595x842 +%%PageBoundingBox: 0 0 595 842 +%%BeginPageSetup +%%PageOrientation: Portrait +595 842 pdfSetupPaper +pdfStartPage +0 0 595 842 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +0.1 w +q +0 0 595.4 842 re +W* +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +197.8 737.2 Td +/F15_0 40 Tf +(\001\002\003\004\005) +[40 +0 +40 +0 +40 +0 +40 +0 +40 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +63.8 686 Td +/F15_0 36 Tf +(\006\007\010\011\003\004\005\012\013\014\015\016\006) +[36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0 +36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.2 w +122.3 635.7 Td +/F15_0 36 Tf +(\017) +[36 +0] Tj +-82 TJm +(\020) +[36 +0] Tj +-82 TJm +(\021) +[36 +0] Tj +-82 TJm +(\022) +[36 +0] Tj +-82 TJm +(\023) +[36 +0] Tj +-82 TJm +(\024) +[36 +0] Tj +-82 TJm +(\012) +[36 +0] Tj +-82 TJm +(\025) +[36 +0] Tj +-82 TJm +(\026) +[36 +0] Tj +Q +q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +2 Tr +1.2 w +473.3 635.7 Td +/F15_0 36 Tf +(\027) +[18 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +57.8 597.1 Td +/F15_0 24 Tf +(\030\031\032\033\034\035\036\016\037 !"#$%"&'\026\030) +[24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0 +24 +0] Tj +Q +q +/DeviceRGB {} cs +[0 0 0] sc +[1 0 0 1 0 0] Tm +0 0 Td +Q +Q +q +175.2 309 245.1 245.1 re +W* +q +[245 0 0 245 175.2 309.1] cm +4 array 0 +[0 -1 245 245] pr +pop 245 245 pdfImClip +/DeviceGray setcolorspace +<< + /ImageType 1 + /Width 245 + /Height 245 + /ImageMatrix [245 0 0 -245 0 245] + /BitsPerComponent 1 + /Decode [0 1] + /DataSource currentfile + /ASCII85Decode filter + /RunLengthDecode filter +>> +pdfIm +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,S +j8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Sj8T,Ss8N)grW!6*s82lsrX\oK#QOf-J,oVb +&,cA+!e:7Fs8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82ls +rX\oK#QOf-J,oVb&,cA+!e:7Fs8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7F +s8N)grW!6*s82lsrX\oK#QOf-J,oVb&,cA+!e:7Fs8N,hJ,fNS_>f/Gp](j&+9)f/Gp](j&+9)jETp]9l3!!g:Ms8NE2_=2go!!2S=s7lWo&+FrH +#JpH<+8>m+HiODe&-)Y:#JonW*rl?2J,fjNM +i;^S's53l@&,ZD4^]8a(!!2S=s7lWo"Rpd=#JpH?(#],-&-(Pf4qIPk#J^=e*rl?2 +J,fHli=hn:1K5s8N5kHiODfs8Nhls1f0F +huGqOqu?u;!.5jg!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6 +n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4 +&,[LL!UtU=q#C@6n9b3@_=2gPpcn7q*s_cUquHc4&,[LL!UtU=q#C@6n9b3@_=2gP +pcn7q*s_cUquHc4&,[LL!UtU=q#C?pn:1KjNGi!9;OHli=hs*u0k4ofsPs8N2jJ,f6ds7cR)KDtoPs*u0rrVllmrr3c3 +!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn(An14^]4Jp#Q>6ds7cR)KDtoPs*u0r +rVllmrr3c3!<9h7"5jF`%tjoW!"X_^!!3+M*s_cE!;QQn&qg2a5Q?66s2"a5!<<#u +J,]bhrW!*,_=2sSq#::+KDtp9s*t+L_>jE5s8E"Jrs-@=!!NVDn:1K5rr3U`rr>:` +J,oVcs82lsrW%HJ#Jg<="UDm5J,f +!?VRGrr_0a^^pJF!;QQn%K%=J^^l(t!!2S=rs-@>!!+/Hrr3)Y#J^lMrrDinrselJ +s1f.trr<)hJ,]bhrr<'A#QF`*i!7%.s8N)orr3H*+90+eKDtoPn:1HC_#FB8*s_fF +"5jF"&-)Y0q#::&r#bsS%tjl^!UtU=#Jg?>!?VRGrr_0a^^pJF!;QTo#4R-B!'UpD +rr<$_rW)rt!rN$'s8N=S+924nJH#TL55kQ]rrW)u#QOf/J04gj +!.Y%Ds8N;mJ,]L4%tOZ[!'^A^rr3&t!!iQ(#CmorrW%HJq#C?un:1H<4qE2D!!#4^ +!<3!"qu@!%rs+&rs8E"Js7lWo#4R-B!'UpDrr<$_rW)rt!rN$'s8N=S+924nKDtp8!!E9$!5SU7!$D4?!/(1K +!;QTo$h+8u!'UpGrr>4_"98B$_#FB7+9)9?KDYZKq#C@%n,r[j4qE;G!'UAbs8N)7 +rr<$@rr2tNqu6Zks8N)grr<-#^^pJF"8Dosr;Qa#4qE/cp]:?n"Mb"es7lWo!:^!g +!rp%Hs8N2r!WW)t!!POsJ04OerVm#9!.Y%Ds8N)grr<-#^^pJF"8Dosr;Qa#4qE/c +p]:?n"Mb"es7lWo!:^!g!rp%Hs8N2r!WW)t!!POsJ04OerVm#9!.Y%Ds8N)grr<-# +^^pJF"8Dosr;Qa#4qE/cp]:?n"Mb"es7lQm!oX+XrW!)r4ob]brr<04KAcdFrr<-C +!'UqnrrDimrrV-Yrr)m#pc\Z[s8N'%%tig?_#FB:*rnJ8s8N)orVlrWs8Mut"Sb.\ +"98B$":p.Cs1nX7"!7M,&-)Y0q#13oi;`fU!!N'\!!E9$!!Egbi;^Um!!=;C4qI\n +!;QNm!oX+XrW!)r4ob]brr<04KAcdFrr<-C!'UqnrrDinrs",6p]9jds8N'0&,[LL +!Up(2#J^=hrs/N6s8N)orr31Ti:m?B"98B$%hJR[!!2Qh*s]R]J,]cQ&-)Y0q#:9t +KAcM*n,r^j!"TV<*rl?2!$;H]!.Y"RrX]&/!;QQn#(tk/!Up3krrn,OO8 +^]8la#Q>86rrDinrs",6p]9jds8N'0&,[LL!Up(2#J^=hrs/N6s8N)orr3B(!;J_g +KDu1l%tig?!!Wsdrr<)hJ,fNK_>aH7q#::$quHLU%tjle^^l(Urr<66KDtoPn:1K< +!5\[7!;QQn$iC#"4qE;G#J^k&i;Wc]%tjl^!UtU=rrBn7rrDinrsS`)pc]4@rs-=M +KAcb0"qQ@d!!2S=s8N)8rr2unrr3B(!;J_gKDu1l%tig?!!Wsdrr<)hJ,fNK_>aH7 +q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3 +J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?Tq +J,fNM_=.R,rsHU3J)C;kn,r[j!WN*!q#:9nr;?TqJ,fNM_=.R,rsHU3J)C;kn,r[j +!WN*!q#C@3n,qSRs6p-j#Jom0*s]RlKA["6&,ZG&!"],0!;QTo)=Rad#QO8qrs-C0 +!$;H]%tidFrX\o,p](j)rrDioru(;.i!9;O"9/VBn,OO8^^l(U#Q>83!;HO)s8N)o +s8Nu+"5jFan,r[q_=.FH#J^k&i!95lquHKl&-)Y0q#C@3n,qSRs6p-j#Jom0*s]Rl +KA["6&,ZG&!"],0!;QTo!q66a+90+er#b\un9b3@rX]&/!;QTo +)=W.Up](j)i!95lJ04g,&,[OE5Oa%##Q>86rrDioru(b +pcn7q!!iK6s8N)os8Nu+J,f9D&-(PmrXXN$s1f0C+8A(iHiOEN&-)Y0q#C@3n:1K5 +!"]+f#Q>6a+90+er#b\un9b3@rX]&/!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop/ +!!#7_rrDimrrM$_s8N.N*s_iG"T/8p5Oe[Q!XHR2rVup_rr2unrVloV#QOf*J0,$r +rri6"pcn9J!!3DAnGWCf5Q:Z_q#13ni!9;^!e;?ts8N6"!;JeJrr<**_=7F(!'gJ_ +!;QNm!T44_rrR]m#QOf,quHLVnG`Ii#Jop/!!#7_rrDinrs&BCs1f0Fi;W`gJ,fhj +n9b624og*4#Q=^Qs7lTn#5fSC^^pJ'rr3R\!!g@0HiWq*!.Y"RrW%HJq#:9tr#bsS +&-(Sert0b]#JonW!;J_XJ,]cQ!.Y%Drr33#+90+es5jE5#Q>6a +!!g@0!$D1?#6Wla4og*4q#::)quHc5s82j%rXXMZ#Jom0+8u6F"5j/C!.Y%Drr3Q- +!<9n8qu@!$%tFWb_=.FHrW!0*huGq@J,f"5s3qn:1K<#Q>6ds7cWaI/a0I4qI\n!;QTo$h/ZG#J^@`rrE*`rW!&q4qISk!!Y[W!$;H]&-)Y0 +q#(-m!'gJ_!<>=_!!E![&,cG-#!_SW*s]Rls8N)or;Qct5Q:Z`!'^A^"8G%jr;Qa$ +5O\Xp#J^lMrrDilrrE*arr3!!55kNapc]5drr<6fn,OO8^^pJF!;QQn"FqTo^^pJF +!Vc]qrrV*Y5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"A +s7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y +5QC`ai;!3M"9J"As7lTn"FqTo^^pJF!Vc]qrrV*Y5QC`ai;!3M"9J"As7lHj!:^!g +'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj +!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Q +s7lHj!:^!g'_h_/KAcMhn,OR1_=2sS#Q=^Qs7lWo!:]sf'`me(*rl?AKAcMg%tjoW +4ofsP!'UqnrrDiorrDQf!#5P(!$;1As+B8)4qE;Gpc\\**rnJ8s8N)os8N)grW!Z6 +n,OO1!WRf1pc]4@s7ebXHli>P&-)Y0q#C?onGWD&!Up(2!!3+Pi:oJHKE(^1!.5jg +4qI\n!;QTo!:]sf'`me(*rl?AKAcMg%tjoW4ofsP!'UqnrrDiorrMV=s8N)8s8N>^ +!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf_=2sS +!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8 +s8N>^!'gL9s7ehYrs7Nf_=2sS!'UqnrrDiorrMV=s8N)8s8N>^!'gL9s7ehYrs7Nf +_=2sS!'UqnrrDiortOsM!!g@?KAcdGn,OO8_>f/G#Jop0!!NVDn:1K5s8Nf&HiODf +s+B80_=.FH#JpFmi!7*frr<3-_=2sSq#C@.n9b3@_>f/Gs2"1)*s]X^KA[!NnG`Il +#JonZs7lWo'_$JM#JpFmi;^X_!$;H^s+B57_=7I)"UDm5J,ff/G#Jop0!!NVDn:1K5s8NDpHiODfn:0Br_#FB>+8>m+"5rqTrr3-%!UtU= +q#C@#n9b3@_=2s4s1nX7#9W^An,qVD!WN*&!!2S=s7lWo$1N+8>m+"5rqTrr3-%!UtU=q#C@+n9b3@_=.Qb#J^=hs7cR)r#bt= +#k3?%pcn7ts7lWo&b(/J#Jom3i!7$tJ,f9D&,[OLrs8+Di:oP+J,f86rrDiorrMV=s8N)8s8N/Ys1nX7!$D7@$Le/t#Jom0 +*s_cUs8N)os8N,hJ,fNK_>jN:i;^Um!!",@rsJ5trs-C0!$;IF&-)Y0q#C?pn:1K< +!5\^8!oX*orr<$@s8NGq"9/VBn,OO8rX]&/!;QTo!UtU=rrBn8rrV-Y_#FB7+92?J +n,r[q_=.FH#Q>86rrDiorrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;QTo +!:]sf!!3-""lT/?s*t+KrrIWMs8N8lHlrC(&-)Y0q#C?onGWCf!WW0'i:oP:J,oTK +!It1Mrrqn>+90+es8N)os8N)grVup!s8N8\pcne/!<3!!J,oWL"n6m]s1f0FrrDio +rrDQf!!!'"rrq?U5Q?66rr3"L!<<'&n9c>X^^pJF!;PUS!;PUS!;PUS!;PUS!;PUS +!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS!;PUS +!;PUS!;PUS!;H~> +%-EOD- +pdfImClipEnd +Q +Q +q +0 0 595.4 842 re +W* +Q +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font BAAAAA+IPAGothic +%%EOF diff --git a/archive/2014OC/rain.png b/archive/2014OC/rain.png new file mode 100644 index 0000000..a9cddbc --- /dev/null +++ b/archive/2014OC/rain.png Binary files differ diff --git a/archive/2014OC/sql/.htaccess b/archive/2014OC/sql/.htaccess new file mode 100644 index 0000000..8d2f256 --- /dev/null +++ b/archive/2014OC/sql/.htaccess @@ -0,0 +1 @@ +deny from all diff --git a/archive/2014OC/sub.rb b/archive/2014OC/sub.rb new file mode 100755 index 0000000..6067407 --- /dev/null +++ b/archive/2014OC/sub.rb @@ -0,0 +1,21 @@ +#!/usr/koeki/bin/ruby +# -*- coding:utf-8 -*- + +def rpg(job,sex,stump,bingo,sumexp) + lv = [1,4,10,16,24,33,49] + exp = stump + (bingo * 5) + iro = 0 + for hoge in lv + if exp >= hoge + iro += 1 + end + end + per = (exp.to_f)*100 / (sumexp.to_f) + png = job + "" + sex + "" + iro.to_s + ret = [png,per,exp] + return ret +end +#job = "sensi" +#sex = "G" +#hoge = rpg(job,sex,5,2,100) #職業,性別,スタンプ数,ビンゴ数,総経験値 +#puts hoge diff --git a/archive/2014OC/test.html b/archive/2014OC/test.html new file mode 100644 index 0000000..579aae5 --- /dev/null +++ b/archive/2014OC/test.html @@ -0,0 +1,64 @@ + + + +Visual Test + + + + + +

2014 オープンキャンパス

+
+
+
+ + + + +
+
+ +
+
+ +
+128x128(1935bytes) +
+
+ + diff --git a/archive/enq/als.html b/archive/enq/als.html new file mode 100644 index 0000000..f801de3 --- /dev/null +++ b/archive/enq/als.html @@ -0,0 +1,111 @@ + + + ���륹���Ʊ�Ĵ����� + + + + + +
+ +

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

���륹

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    3.40���50��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����꡼�ޥ�)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ���ڤ���ǫ�������åդ⤿�����󤤤�ΤǤ��Ҥ��Ԥ����ʤ�

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    _

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    ������Ź��

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    �㤤����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      �ե�åĸ�

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    �ե�åĸ�

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    �פ�ʤɤ�����夬����ɤ�

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    �פ�ʤɤ�����夬����ɤ���

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/anquate.html b/archive/enq/anquate.html new file mode 100644 index 0000000..01bde31 --- /dev/null +++ b/archive/enq/anquate.html @@ -0,0 +1,25 @@ + + + +���󥱡��ȷ�� + + +

���󥱡��ȷ��

+

���륹���Ʊ�

+

ʩ�Ťκ�ƣ

+

����ۥ���

+

����

+

���Ӳۻ���

+

������

+

��������Ʋ

+

����������

+

������Ź

+

�⥢��

+

�����

+

cafe+POM

+

����ۻ���

+

����������

+

��������¢��Ź

+

��ɮ

+ + \ No newline at end of file diff --git a/archive/enq/ars1-150.JPG b/archive/enq/ars1-150.JPG new file mode 100644 index 0000000..b6cac35 --- /dev/null +++ b/archive/enq/ars1-150.JPG Binary files differ diff --git a/archive/enq/ars1-720.JPG b/archive/enq/ars1-720.JPG new file mode 100644 index 0000000..9b409aa --- /dev/null +++ b/archive/enq/ars1-720.JPG Binary files differ diff --git a/archive/enq/ars1.jpg b/archive/enq/ars1.jpg new file mode 100644 index 0000000..58f44f3 --- /dev/null +++ b/archive/enq/ars1.jpg Binary files differ diff --git a/archive/enq/butudan.html b/archive/enq/butudan.html new file mode 100644 index 0000000..bfa6dd4 --- /dev/null +++ b/archive/enq/butudan.html @@ -0,0 +1,111 @@ + + +ʩ�Ťκ�ƣ + + + + +
+ +

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

ʩ�Ťκ�ƣ

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    +

    4.60���

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(ǯ�ۤ���)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    _

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ���饷���⤤

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    _

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      NTT��

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    ��

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    �Żҥ��饷�ˤ���㤤ʪ�������ɺҾ����ȯ��(ex:GO���)

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ����ϥܥ��ƥ����ؤλ���(�ϰ��Ϣ�Ȥ��ƥܥ��ƥ�����Ԥʤä� + ����)�ޤ���¾�����ԻԤȹ���Ϣ��ǷҤ��äƤ��롣

    +
  28. + +
+
+ + diff --git a/archive/enq/enq.css b/archive/enq/enq.css new file mode 100644 index 0000000..1d291be --- /dev/null +++ b/archive/enq/enq.css @@ -0,0 +1,7 @@ +body{ + background:#f7b45e; +} + +div.main{ + background: white; border: 10px solid #f7b4a4; padding: 1em; margin: 10px; +} \ No newline at end of file diff --git a/archive/enq/enq.html b/archive/enq/enq.html new file mode 100644 index 0000000..cb40245 --- /dev/null +++ b/archive/enq/enq.html @@ -0,0 +1,80 @@ + + + +SKIP - Shonai Koeki Information Project + + + + + + + +
+kamon +
+ +

������� +���Ǥ����� �ʤ���餵��ε����򹹿�����

+
+

+���󥱡��ȷ�� +

+ +

���󥱡���ʬ��

+

��ʵ��ؤ�ǯ��

+ + + + + +
10��0��
20��30��3��
40��50��6��
60��7��
+

��ʵ���

+ + + + + +
����꡼�ޥ�2��
����6��
�����7��
����¾1��
+

��Ź���ߤ������

+
    +
  • �ۤȤ�ɤΤ�Ź����־�
  • +
  • ���٥��
  • +
  • HP�ʤɤΥ�ǥ���
  • +
+

���䤷��������

+
    +
  • �㤤�������뤪Ź��¿��
  • +
  • ǯ��˴ط��ʤ��ҿ������䤷�����Ȥ����ո���¿��
  • +
+

��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ�����

+ + + +
���Ѥ��Ƥ���12��
���Ѥ��Ƥ��ʤ�4��
+

���Ѥ��Ƥ��ʤ���ͳ�ϡ����ݤ������ʤ�

+

HP,Facebook����äƤ��뤫

+ + + +
���äƤ���10��
���äƤ��ʤ�6��
+

���Ѥ��Ƥ��ʤ���ͳ�ϡ��Ȥ������狼��ʤ������֤��ʤ��ʤ�

+

ȯ�����Ƥ�餤��������

+
    +
  • �������夤�Τ���Į���ä��ΤäƤ�館��褦�ʾ���
  • +
  • ���٥�Ȥʤɤ��̤��Ƴ�����ޤ��Ԥ˼��Ĥ�̥�Ϥ��ΤäƤ�館��褦�ʾ���
  • +
+ +

+������
+

+ + diff --git a/archive/enq/horumon.html b/archive/enq/horumon.html new file mode 100644 index 0000000..66330bb --- /dev/null +++ b/archive/enq/horumon.html @@ -0,0 +1,110 @@ + + + +����ۥ���Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

����ۥ���

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    +

    2.20��30��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    2.����꡼�ޥ�

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    �ں����

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    �ʤ�

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    ������־�

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    ��ڽ�͸

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    �����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      ����

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    �ϰ�ȯŸ���ϻ��ϾäˤĤʤ�����

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ��Į�ޥåפʤɤ��äƤ�餤����

    +
  28. + +
+
+ + diff --git a/archive/enq/horumon1-150.JPG b/archive/enq/horumon1-150.JPG new file mode 100644 index 0000000..59925ff --- /dev/null +++ b/archive/enq/horumon1-150.JPG Binary files differ diff --git a/archive/enq/horumon1-720.JPG b/archive/enq/horumon1-720.JPG new file mode 100644 index 0000000..5fc6ded --- /dev/null +++ b/archive/enq/horumon1-720.JPG Binary files differ diff --git a/archive/enq/horumon1.jpg b/archive/enq/horumon1.jpg new file mode 100644 index 0000000..0dae804 --- /dev/null +++ b/archive/enq/horumon1.jpg Binary files differ diff --git a/archive/enq/kameya.html b/archive/enq/kameya.html new file mode 100644 index 0000000..c7e6ae4 --- /dev/null +++ b/archive/enq/kameya.html @@ -0,0 +1,111 @@ + + + +����Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

����

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    3.40��50���40�夫��60��ʾ�ޤǤ��������ȤΤ��ȡ�

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    +1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾�ʰ������ǯ��

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ���λ����ˤ�ä��Ѥ��ʲƴ��ϡּ㤢��ס�

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    �ʤ�

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    ���㥹�ڡ���

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    ����֤ߤĤФ���

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    30���40��Τ��Ҥ�����ä����䤷������

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      �˥եƥ�

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    �ե�åĸ�

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ���λ��������ھ��ʤξҲ�

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    �ä��Ѥ�̵���Ȥ⡢��äȼ��Ĥγ����⤤���ߤ�����

    +

    �⤯�Τ��ڤ����褦�ʳ��ˤʤäƤۤ�����

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/kikuti.html b/archive/enq/kikuti.html new file mode 100644 index 0000000..c95f239 --- /dev/null +++ b/archive/enq/kikuti.html @@ -0,0 +1,110 @@ + + + + ���Ӳۻ���Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

���Ӳۻ���

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    3.40��50��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ����̼(���󤳡������ҡ����䤭����)

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ������

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ��ǯ����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      ����

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�(HP ����)

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    ��

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ��Ĺ�ԺߤΤ��ᡢ��α

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ��Ĺ�ԺߤΤ��ᡢ��α

    +
  28. + +
+
+ +ko \ No newline at end of file diff --git a/archive/enq/konoki.html b/archive/enq/konoki.html new file mode 100644 index 0000000..512aead --- /dev/null +++ b/archive/enq/konoki.html @@ -0,0 +1,113 @@ + + + +������Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

������

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    2��4����Ǥ����¿���Τ�40��50���

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(���ء��Ż�����Τ��줵���

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ���ʪ��������������ʰ��֤Τ�������ϻ���������⤯�Ƥ��ޤ����ʤ���¾�ξ��ʤ����פʤ����Ƥ��롣�� +���������ҥ顼��󤬰��ֿ͵��ʿɤ��ơ����󤫤����Ҥ����ܥ饤���դ���

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    �Ϥ��ʲ�²ϫƯ�ʤΤǿͼ꤬­��ʤ���

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    ��̩

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ������äƤ���뤪����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      _

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      �ˤ��ʤ�

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.�������ʤ�Ź�ξ���Ϥ����ͤθ����ߤǾ����ή��뤫���ä�ɬ�פʤ����������뵤��ʤ���

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    �ե�åĸ�

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    �狼��ʤ���Ź�礬α����ä������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    _

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    Ź�礬α��Ǥ��μ����Ź��Ǥʤ���������뤳�Ȥ��Ǥ��ʤ��ȸ���줿

    +
  28. + +
+
+ + + + diff --git a/archive/enq/kurihara.html b/archive/enq/kurihara.html new file mode 100644 index 0000000..d114447 --- /dev/null +++ b/archive/enq/kurihara.html @@ -0,0 +1,110 @@ + + + + ��������ƲĴ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

��������Ʋ

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    4.60���

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(�����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ���Ҥ������ʸ������Ƥ���Ĥ����Ļ�

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    _

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    �⤭�ʤ��鼫ʬ�Τ�Ź�ˤ�äƤ���뤪�һ����������ߤ�����

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    �㤤����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      -

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    _

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    -

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/logo.png b/archive/enq/logo.png new file mode 100644 index 0000000..ad20684 --- /dev/null +++ b/archive/enq/logo.png Binary files differ diff --git a/archive/enq/minato.html b/archive/enq/minato.html new file mode 100644 index 0000000..65ea9ed --- /dev/null +++ b/archive/enq/minato.html @@ -0,0 +1,110 @@ + + + + ����������Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

����������

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    4.60���������ϼ�Ԥ����Ѥ�¿��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(�����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    �¿������ڡ�24���ֱĶ�

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    _

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    _

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      ����

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�(�ۡ���ڡ���)

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    _

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ��Ź�������������Ȼפ������Ĥ˻Ż��䥤�٥�Ȥʤɤ����䤷�Ƽ��Ĥ򥢥ԡ��뤷�Ƥۤ�����(������Ľ꤬�濴�Ȥʤä�)

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/minato_ya.html b/archive/enq/minato_ya.html new file mode 100644 index 0000000..36ccdbf --- /dev/null +++ b/archive/enq/minato_ya.html @@ -0,0 +1,110 @@ + + + +����Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

����

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    +

    4.30��40��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5����¾(�����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    �ݤ�����

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    �ä�̵��

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    �顼���

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    �ä˼��

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      ���ݤ���������

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    �������䥵���ӥ��ξҲ�

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    �ȼ��Υ����ӥ��ʤɤ�ȯ�����Ƥ�餤����

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/minatotokei1-150.jpg b/archive/enq/minatotokei1-150.jpg new file mode 100644 index 0000000..3679a1f --- /dev/null +++ b/archive/enq/minatotokei1-150.jpg Binary files differ diff --git a/archive/enq/minatotokei1-720.jpg b/archive/enq/minatotokei1-720.jpg new file mode 100644 index 0000000..379f70a --- /dev/null +++ b/archive/enq/minatotokei1-720.jpg Binary files differ diff --git a/archive/enq/minatotokei1.jpg b/archive/enq/minatotokei1.jpg new file mode 100644 index 0000000..ccbdb44 --- /dev/null +++ b/archive/enq/minatotokei1.jpg Binary files differ diff --git a/archive/enq/minatoza1-150.jpg b/archive/enq/minatoza1-150.jpg new file mode 100644 index 0000000..82665f1 --- /dev/null +++ b/archive/enq/minatoza1-150.jpg Binary files differ diff --git a/archive/enq/minatoza1-720.jpg b/archive/enq/minatoza1-720.jpg new file mode 100644 index 0000000..23e4cae --- /dev/null +++ b/archive/enq/minatoza1-720.jpg Binary files differ diff --git a/archive/enq/minatoza1.jpg b/archive/enq/minatoza1.jpg new file mode 100644 index 0000000..0312af8 --- /dev/null +++ b/archive/enq/minatoza1.jpg Binary files differ diff --git a/archive/enq/moare.html b/archive/enq/moare.html new file mode 100644 index 0000000..df81b1d --- /dev/null +++ b/archive/enq/moare.html @@ -0,0 +1,109 @@ + + + +�⥢��Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

�⥢��

+
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    2.20��30��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(�������������)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    �֤䵨�ᴶ�������줿���ؤ��Υե졼�С��䡢���־��ʤΥ��祳�졼�Ȥ���

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ����󥯤ηҤ��꤬�夤�Τ�����

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    �ϡ����̤Ǥ��ä�̵�������ե��̤Ǥ�ñȯ�ǽ����ʤ���äȳ�ĥ���줿��ǥ������ߤ�����

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    10��ο͡��ˤ�äȾ����ȯ�����Ƥ���������

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      �פ��

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    �ե�åĸ�

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ���ʤ����˴ؤ�餺����Ź�˴ؤ��ͤ�ȡ������ȯ�����Ƥ���������

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ���������ư�ʳ��Ǥ⡢�������Ȥ������Ĥ˶�̣����äơ�����������Ƥ��äƤۤ�����

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/ogawaen.html b/archive/enq/ogawaen.html new file mode 100644 index 0000000..43b0554 --- /dev/null +++ b/archive/enq/ogawaen.html @@ -0,0 +1,110 @@ + + + + �����Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

�����

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    4.60���

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    �ʼ��������ʤɤ�����

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    _

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    _

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ���

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      NTT �Ҥ���

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    _

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    �����Ҹˤ䳤���Ծ�ʤɤδѸ��Ϥ���Į���֤�Τ��ä��ߤ�����

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/archive/enq/ogawaen1-150.jpg b/archive/enq/ogawaen1-150.jpg new file mode 100644 index 0000000..d803353 --- /dev/null +++ b/archive/enq/ogawaen1-150.jpg Binary files differ diff --git a/archive/enq/ogawaen1-720.jpg b/archive/enq/ogawaen1-720.jpg new file mode 100644 index 0000000..530b454 --- /dev/null +++ b/archive/enq/ogawaen1-720.jpg Binary files differ diff --git a/archive/enq/ogawaen1.jpg b/archive/enq/ogawaen1.jpg new file mode 100644 index 0000000..71fb809 --- /dev/null +++ b/archive/enq/ogawaen1.jpg Binary files differ diff --git a/archive/enq/ogawaen2-150.jpg b/archive/enq/ogawaen2-150.jpg new file mode 100644 index 0000000..78f1e4d --- /dev/null +++ b/archive/enq/ogawaen2-150.jpg Binary files differ diff --git a/archive/enq/ogawaen2-720.jpg b/archive/enq/ogawaen2-720.jpg new file mode 100644 index 0000000..ce5633b --- /dev/null +++ b/archive/enq/ogawaen2-720.jpg Binary files differ diff --git a/archive/enq/ogawaen2.jpg b/archive/enq/ogawaen2.jpg new file mode 100644 index 0000000..da2dd0e --- /dev/null +++ b/archive/enq/ogawaen2.jpg Binary files differ diff --git a/archive/enq/pom.html b/archive/enq/pom.html new file mode 100644 index 0000000..6efb14b --- /dev/null +++ b/archive/enq/pom.html @@ -0,0 +1,111 @@ + + + + CAFE+POMĴ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

CAFE+POM

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    2.20���30��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ���꡼�󥫥졼

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ������

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    ���ڥ��٥�Ȥ��ꤿ��

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    �������

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ��������

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      Yahoo

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�(�ۡ���ڡ���)

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    ADSL

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ���٥�ȳ�ư��̵ͭ

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ���ĤΤ��Ȥ��ä��İ������ߤ������������dz����ˤ�͵��Τ�Ź + �ǡ�Wi-Fi ��Ȥ��롣

    +
  28. +
+ +
+ + \ No newline at end of file diff --git a/archive/enq/pom1-150.jpg b/archive/enq/pom1-150.jpg new file mode 100644 index 0000000..725f64e --- /dev/null +++ b/archive/enq/pom1-150.jpg Binary files differ diff --git a/archive/enq/pom1-720.jpg b/archive/enq/pom1-720.jpg new file mode 100644 index 0000000..9aa8cc7 --- /dev/null +++ b/archive/enq/pom1-720.jpg Binary files differ diff --git a/archive/enq/pom1.jpg b/archive/enq/pom1.jpg new file mode 100644 index 0000000..74ef284 --- /dev/null +++ b/archive/enq/pom1.jpg Binary files differ diff --git a/archive/enq/pom2-150.jpg b/archive/enq/pom2-150.jpg new file mode 100644 index 0000000..1240540 --- /dev/null +++ b/archive/enq/pom2-150.jpg Binary files differ diff --git a/archive/enq/pom2-720.jpg b/archive/enq/pom2-720.jpg new file mode 100644 index 0000000..fde697a --- /dev/null +++ b/archive/enq/pom2-720.jpg Binary files differ diff --git a/archive/enq/pom2.jpg b/archive/enq/pom2.jpg new file mode 100644 index 0000000..76edcd1 --- /dev/null +++ b/archive/enq/pom2.jpg Binary files differ diff --git a/archive/enq/pom3-150.jpg b/archive/enq/pom3-150.jpg new file mode 100644 index 0000000..73e5148 --- /dev/null +++ b/archive/enq/pom3-150.jpg Binary files differ diff --git a/archive/enq/pom3-720.jpg b/archive/enq/pom3-720.jpg new file mode 100644 index 0000000..91f68a6 --- /dev/null +++ b/archive/enq/pom3-720.jpg Binary files differ diff --git a/archive/enq/pom3.jpg b/archive/enq/pom3.jpg new file mode 100644 index 0000000..6332730 --- /dev/null +++ b/archive/enq/pom3.jpg Binary files differ diff --git a/archive/enq/romantei1-150.jpg b/archive/enq/romantei1-150.jpg new file mode 100644 index 0000000..b73bdfa --- /dev/null +++ b/archive/enq/romantei1-150.jpg Binary files differ diff --git a/archive/enq/romantei1-720.jpg b/archive/enq/romantei1-720.jpg new file mode 100644 index 0000000..1d1ce53 --- /dev/null +++ b/archive/enq/romantei1-720.jpg Binary files differ diff --git a/archive/enq/romantei1.jpg b/archive/enq/romantei1.jpg new file mode 100644 index 0000000..1a27d6e --- /dev/null +++ b/archive/enq/romantei1.jpg Binary files differ diff --git a/archive/enq/romantei2-150.jpg b/archive/enq/romantei2-150.jpg new file mode 100644 index 0000000..3988c15 --- /dev/null +++ b/archive/enq/romantei2-150.jpg Binary files differ diff --git a/archive/enq/romantei2-720.jpg b/archive/enq/romantei2-720.jpg new file mode 100644 index 0000000..d8914f6 --- /dev/null +++ b/archive/enq/romantei2-720.jpg Binary files differ diff --git a/archive/enq/romantei2.jpg b/archive/enq/romantei2.jpg new file mode 100644 index 0000000..f66f0eb --- /dev/null +++ b/archive/enq/romantei2.jpg Binary files differ diff --git a/archive/enq/romantei3-150.jpg b/archive/enq/romantei3-150.jpg new file mode 100644 index 0000000..7f8d4e8 --- /dev/null +++ b/archive/enq/romantei3-150.jpg Binary files differ diff --git a/archive/enq/romantei3-720.jpg b/archive/enq/romantei3-720.jpg new file mode 100644 index 0000000..199d94d --- /dev/null +++ b/archive/enq/romantei3-720.jpg Binary files differ diff --git a/archive/enq/romantei3.jpg b/archive/enq/romantei3.jpg new file mode 100644 index 0000000..32aa396 --- /dev/null +++ b/archive/enq/romantei3.jpg Binary files differ diff --git a/archive/enq/rupo1-150.jpg b/archive/enq/rupo1-150.jpg new file mode 100644 index 0000000..976b0bb --- /dev/null +++ b/archive/enq/rupo1-150.jpg Binary files differ diff --git a/archive/enq/rupo1-720.jpg b/archive/enq/rupo1-720.jpg new file mode 100644 index 0000000..266af8e --- /dev/null +++ b/archive/enq/rupo1-720.jpg Binary files differ diff --git a/archive/enq/rupo1.jpg b/archive/enq/rupo1.jpg new file mode 100644 index 0000000..4ecb367 --- /dev/null +++ b/archive/enq/rupo1.jpg Binary files differ diff --git a/archive/enq/rupo2-150.jpg b/archive/enq/rupo2-150.jpg new file mode 100644 index 0000000..b66eca0 --- /dev/null +++ b/archive/enq/rupo2-150.jpg Binary files differ diff --git a/archive/enq/rupo2-720.jpg b/archive/enq/rupo2-720.jpg new file mode 100644 index 0000000..27b7367 --- /dev/null +++ b/archive/enq/rupo2-720.jpg Binary files differ diff --git a/archive/enq/rupo2.jpg b/archive/enq/rupo2.jpg new file mode 100644 index 0000000..1e2258d --- /dev/null +++ b/archive/enq/rupo2.jpg Binary files differ diff --git a/archive/enq/skip.png b/archive/enq/skip.png new file mode 100644 index 0000000..c9bd92a --- /dev/null +++ b/archive/enq/skip.png Binary files differ diff --git a/archive/enq/takeuti.html b/archive/enq/takeuti.html new file mode 100644 index 0000000..5debc72 --- /dev/null +++ b/archive/enq/takeuti.html @@ -0,0 +1,113 @@ + + + +����ۻ���Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

����ۻ���

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    4.60���

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����¾)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ������������

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ������

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    +

    ��־줬�����Τ��礭����־줬���ä��餤��

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ǯ��ط��ʤ�����Ź���˿��̤��¿��������

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    NTT

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    _

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    _

    +
  28. + +
+ +
+ + + + diff --git a/archive/enq/tigusa.html b/archive/enq/tigusa.html new file mode 100644 index 0000000..3fd76be --- /dev/null +++ b/archive/enq/tigusa.html @@ -0,0 +1,113 @@ + + + + ����������Ĵ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

��ʪ�����

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    3.40���50��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(ǭ�����ʿ͡�����)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    ǭ���å�

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ������

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    ��־줬�ʤ�����

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    _

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ��̣�������̤����䤷����

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      �����ҥͥå�

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      _

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�(facebook, �֥�)

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    �ե�åĸ�

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ��̣���γ�ư

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ������������ʤ���ǭ���å��ϲİ����Ƽ�Ԥ˿͵����Ф����ʤΤǡ� + ��������dz����Τ��Ҥ���������Ȼפ������ȡ�facenook ����Ͽ���� + ��������dz��Ѥ��ʤ��ʤ��Ǥ��Ƥ��ʤ��Τǡ����Ѥ������ȹͤ��Ƥ��롣

    +
  28. + +
+ +
+ + \ No newline at end of file diff --git a/archive/enq/tomizou.html b/archive/enq/tomizou.html new file mode 100644 index 0000000..d98c87a --- /dev/null +++ b/archive/enq/tomizou.html @@ -0,0 +1,109 @@ + + +佐々木富造商店調査結果 + + + + +
+

SWAN×SKIP現地調査第二弾調査結果

+ +

佐々木富造商店

+ +
    +
  1. +

    お店の客層はどの層が一番多いですか?
    + 1.~10代 2.20~30代  3.40~50代 4.60代~

    +

    +
  2. + +
  3. +

    どのような客が多いですか?
    + 1.学生 2.サラリーマン 3.子連れの家族 4.カップル 5.その他

    +

    2.5(お年寄り)

    +
  4. + +
  5. +

    この店に一番のおすすめ商品を教えて下さい。

    +

    日本酒

    +
  6. + +
  7. +

    お店を宣伝する上で、不便を感じることはありますか?

    +

    _

    +
  8. + +
  9. +

    お店にこんなのがあったらよい、と考えているものがありましたら教えて下 さい。

    +

    _

    +
  10. + +
  11. +

    おすすめの穴場がありましたら教えて下さい。

    +

    _

    +
  12. + +
  13. +

    今後どのようなお客樣を増やしていきたいと考えていますか?

    +

    どの世代のお客様も増やしていきたい。

    +
  14. + +
  15. +

    お店でインターネットを利用していますか?
    + 1.はい 2.いいえ

    +

    +
      +
    1. はいと答えた人
      + お使いのプロバイダ-を教えて下さい。 +
    2. +

      OCN

      +
    3. いいえと答えた人
      + 使用していない理由を教えて下さい。 +

      _

      +
    4. +
    +
  16. + +
  17. +

    お店の facebook やホームページを持っていますか?
    + 1.はい 2.いいえ

    +

    1(楽天に出店している)

    +
  18. + +
  19. +

    電話回線は何をお使いですか?

    +

    フレッツ光、ISDN

    +
  20. + +
  21. +

    携帯やスマートフォンで情報を検索する機会はありますか?
    + 1.はい 2.いいえ

    +

    +
  22. + +
  23. +

    今後、中町のお店とSKIPが連携して情報発信を行う際に協力していただ + けますか?
    + 1.はい 2.いいえ

    +

    +
  24. + +
  25. +

    (13で はい と答えた人)
    + どのような情報を発信していきたいですか?また、どのような活動をしたい + ですか?
    + (自由解答)

    +

    _

    +
  26. + +
  27. +

    私達は、地域人たちや観光客などにもっと酒田の情報を発信していきた + いと思っているのですが、商店街の方として何かご意見、ご要望はありま + すか?自由にご記入ください。

    +

    宣伝してもらいたい。対策はこれから考えたいと思っている。

    +
  28. + +
+
+ + diff --git a/archive/enq/tukushi.html b/archive/enq/tukushi.html new file mode 100644 index 0000000..4a41af6 --- /dev/null +++ b/archive/enq/tukushi.html @@ -0,0 +1,111 @@ + + + + ��ɮĴ����� + + + + +
+

SWAN��SKIP����Ĵ��������Ĵ�����

+ +

��ɮ

+ +
    +
  1. +

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    + 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    +

    4.60�������ϼ�Ԥ����Ѥ�¿��

    +
  2. + +
  3. +

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    + 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    +

    5.����¾(����Ϲ���ԡ���ϥ���꡼�ޥ�)

    +
  4. + +
  5. +

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    +

    A������B����

    +
  6. + +
  7. +

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    +

    ͽ��򤷤Ƥ��ʤ������ͤؤ��б�(��ɮ��ͽ����)

    +
  8. + +
  9. +

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    +

    ��Ź�Υۡ���ڡ���

    +
  10. + +
  11. +

    ��������η�줬����ޤ����鶵���Ʋ�������

    +

    ����(���)

    +
  12. + +
  13. +

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    +

    ��񤬥ᥤ��ʤΤǼҲ��

    +
  14. + +
  15. +

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.������

    +
      +
    1. �Ϥ�����������
      + ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� +
    2. +

      ����

      +
    3. ����������������
      + ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� +

      �Ȥ�����ʬ����ʤ�

      +
    4. +
    +
  16. + +
  17. +

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    + 1.�Ϥ� 2.������

    +

    2.������

    +
  18. + +
  19. +

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    +

    ������

    +
  20. + +
  21. +

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    -

    +
  22. + +
  23. +

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� + ���ޤ���?
    + 1.�Ϥ� 2.������

    +

    1.�Ϥ�(���֤��礨��)

    +
  24. + +
  25. +

    (13�� �Ϥ� ����������)
    + �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� + �Ǥ���?
    + (��ͳ����)

    +

    ���ڤ������褦�����ʤ�꡼���ʥ֥�ˤ�������

    +
  26. + +
  27. +

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� + ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� + ����?��ͳ�ˤ���������������

    +

    ��־줬�ʤ��ΤǤĤ��ä��ߤ������赤�Τʤ�����������Τdz赤�� + �ߤ�����

    +
  28. + +
+
+ + \ No newline at end of file diff --git a/enq/als.html b/enq/als.html deleted file mode 100644 index f801de3..0000000 --- a/enq/als.html +++ /dev/null @@ -1,111 +0,0 @@ - - - ���륹���Ʊ�Ĵ����� - - - - - -
- -

SWAN��SKIP����Ĵ��������Ĵ�����

- -

���륹

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    3.40���50��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����꡼�ޥ�)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ���ڤ���ǫ�������åդ⤿�����󤤤�ΤǤ��Ҥ��Ԥ����ʤ�

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    _

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    ������Ź��

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    �㤤����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      �ե�åĸ�

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    �ե�åĸ�

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    �פ�ʤɤ�����夬����ɤ�

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    �פ�ʤɤ�����夬����ɤ���

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/anquate.html b/enq/anquate.html deleted file mode 100644 index 01bde31..0000000 --- a/enq/anquate.html +++ /dev/null @@ -1,25 +0,0 @@ - - - -���󥱡��ȷ�� - - -

���󥱡��ȷ��

-

���륹���Ʊ�

-

ʩ�Ťκ�ƣ

-

����ۥ���

-

����

-

���Ӳۻ���

-

������

-

��������Ʋ

-

����������

-

������Ź

-

�⥢��

-

�����

-

cafe+POM

-

����ۻ���

-

����������

-

��������¢��Ź

-

��ɮ

- - \ No newline at end of file diff --git a/enq/ars1-150.JPG b/enq/ars1-150.JPG deleted file mode 100644 index b6cac35..0000000 --- a/enq/ars1-150.JPG +++ /dev/null Binary files differ diff --git a/enq/ars1-720.JPG b/enq/ars1-720.JPG deleted file mode 100644 index 9b409aa..0000000 --- a/enq/ars1-720.JPG +++ /dev/null Binary files differ diff --git a/enq/ars1.jpg b/enq/ars1.jpg deleted file mode 100644 index 58f44f3..0000000 --- a/enq/ars1.jpg +++ /dev/null Binary files differ diff --git a/enq/butudan.html b/enq/butudan.html deleted file mode 100644 index bfa6dd4..0000000 --- a/enq/butudan.html +++ /dev/null @@ -1,111 +0,0 @@ - - -ʩ�Ťκ�ƣ - - - - -
- -

SWAN��SKIP����Ĵ��������Ĵ�����

- -

ʩ�Ťκ�ƣ

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    -

    4.60���

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(ǯ�ۤ���)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    _

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ���饷���⤤

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    _

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      NTT��

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    ��

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    �Żҥ��饷�ˤ���㤤ʪ�������ɺҾ����ȯ��(ex:GO���)

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ����ϥܥ��ƥ����ؤλ���(�ϰ��Ϣ�Ȥ��ƥܥ��ƥ�����Ԥʤä� - ����)�ޤ���¾�����ԻԤȹ���Ϣ��ǷҤ��äƤ��롣

    -
  28. - -
-
- - diff --git a/enq/enq.css b/enq/enq.css deleted file mode 100644 index 1d291be..0000000 --- a/enq/enq.css +++ /dev/null @@ -1,7 +0,0 @@ -body{ - background:#f7b45e; -} - -div.main{ - background: white; border: 10px solid #f7b4a4; padding: 1em; margin: 10px; -} \ No newline at end of file diff --git a/enq/enq.html b/enq/enq.html deleted file mode 100644 index cb40245..0000000 --- a/enq/enq.html +++ /dev/null @@ -1,80 +0,0 @@ - - - -SKIP - Shonai Koeki Information Project - - - - - - - -
-kamon -
- -

������� -���Ǥ����� �ʤ���餵��ε����򹹿�����

-
-

-���󥱡��ȷ�� -

- -

���󥱡���ʬ��

-

��ʵ��ؤ�ǯ��

- - - - - -
10��0��
20��30��3��
40��50��6��
60��7��
-

��ʵ���

- - - - - -
����꡼�ޥ�2��
����6��
�����7��
����¾1��
-

��Ź���ߤ������

-
    -
  • �ۤȤ�ɤΤ�Ź����־�
  • -
  • ���٥��
  • -
  • HP�ʤɤΥ�ǥ���
  • -
-

���䤷��������

-
    -
  • �㤤�������뤪Ź��¿��
  • -
  • ǯ��˴ط��ʤ��ҿ������䤷�����Ȥ����ո���¿��
  • -
-

��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ�����

- - - -
���Ѥ��Ƥ���12��
���Ѥ��Ƥ��ʤ�4��
-

���Ѥ��Ƥ��ʤ���ͳ�ϡ����ݤ������ʤ�

-

HP,Facebook����äƤ��뤫

- - - -
���äƤ���10��
���äƤ��ʤ�6��
-

���Ѥ��Ƥ��ʤ���ͳ�ϡ��Ȥ������狼��ʤ������֤��ʤ��ʤ�

-

ȯ�����Ƥ�餤��������

-
    -
  • �������夤�Τ���Į���ä��ΤäƤ�館��褦�ʾ���
  • -
  • ���٥�Ȥʤɤ��̤��Ƴ�����ޤ��Ԥ˼��Ĥ�̥�Ϥ��ΤäƤ�館��褦�ʾ���
  • -
- -

-������
-

- - diff --git a/enq/horumon.html b/enq/horumon.html deleted file mode 100644 index 66330bb..0000000 --- a/enq/horumon.html +++ /dev/null @@ -1,110 +0,0 @@ - - - -����ۥ���Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

����ۥ���

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    -

    2.20��30��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    2.����꡼�ޥ�

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    �ں����

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    �ʤ�

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    ������־�

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    ��ڽ�͸

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    �����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      ����

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    �ϰ�ȯŸ���ϻ��ϾäˤĤʤ�����

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ��Į�ޥåפʤɤ��äƤ�餤����

    -
  28. - -
-
- - diff --git a/enq/horumon1-150.JPG b/enq/horumon1-150.JPG deleted file mode 100644 index 59925ff..0000000 --- a/enq/horumon1-150.JPG +++ /dev/null Binary files differ diff --git a/enq/horumon1-720.JPG b/enq/horumon1-720.JPG deleted file mode 100644 index 5fc6ded..0000000 --- a/enq/horumon1-720.JPG +++ /dev/null Binary files differ diff --git a/enq/horumon1.jpg b/enq/horumon1.jpg deleted file mode 100644 index 0dae804..0000000 --- a/enq/horumon1.jpg +++ /dev/null Binary files differ diff --git a/enq/kameya.html b/enq/kameya.html deleted file mode 100644 index c7e6ae4..0000000 --- a/enq/kameya.html +++ /dev/null @@ -1,111 +0,0 @@ - - - -����Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

����

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    3.40��50���40�夫��60��ʾ�ޤǤ��������ȤΤ��ȡ�

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    -1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾�ʰ������ǯ��

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ���λ����ˤ�ä��Ѥ��ʲƴ��ϡּ㤢��ס�

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    �ʤ�

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    ���㥹�ڡ���

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    ����֤ߤĤФ���

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    30���40��Τ��Ҥ�����ä����䤷������

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      �˥եƥ�

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    �ե�åĸ�

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ���λ��������ھ��ʤξҲ�

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    �ä��Ѥ�̵���Ȥ⡢��äȼ��Ĥγ����⤤���ߤ�����

    -

    �⤯�Τ��ڤ����褦�ʳ��ˤʤäƤۤ�����

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/kikuti.html b/enq/kikuti.html deleted file mode 100644 index c95f239..0000000 --- a/enq/kikuti.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - ���Ӳۻ���Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

���Ӳۻ���

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    3.40��50��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ����̼(���󤳡������ҡ����䤭����)

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ������

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ��ǯ����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      ����

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�(HP ����)

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    ��

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ��Ĺ�ԺߤΤ��ᡢ��α

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ��Ĺ�ԺߤΤ��ᡢ��α

    -
  28. - -
-
- -ko \ No newline at end of file diff --git a/enq/konoki.html b/enq/konoki.html deleted file mode 100644 index 512aead..0000000 --- a/enq/konoki.html +++ /dev/null @@ -1,113 +0,0 @@ - - - -������Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

������

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    2��4����Ǥ����¿���Τ�40��50���

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(���ء��Ż�����Τ��줵���

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ���ʪ��������������ʰ��֤Τ�������ϻ���������⤯�Ƥ��ޤ����ʤ���¾�ξ��ʤ����פʤ����Ƥ��롣�� -���������ҥ顼��󤬰��ֿ͵��ʿɤ��ơ����󤫤����Ҥ����ܥ饤���դ���

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    �Ϥ��ʲ�²ϫƯ�ʤΤǿͼ꤬­��ʤ���

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    ��̩

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ������äƤ���뤪����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      _

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      �ˤ��ʤ�

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.�������ʤ�Ź�ξ���Ϥ����ͤθ����ߤǾ����ή��뤫���ä�ɬ�פʤ����������뵤��ʤ���

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    �ե�åĸ�

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    �狼��ʤ���Ź�礬α����ä������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    _

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    Ź�礬α��Ǥ��μ����Ź��Ǥʤ���������뤳�Ȥ��Ǥ��ʤ��ȸ���줿

    -
  28. - -
-
- - - - diff --git a/enq/kurihara.html b/enq/kurihara.html deleted file mode 100644 index d114447..0000000 --- a/enq/kurihara.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - ��������ƲĴ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

��������Ʋ

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    4.60���

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(�����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ���Ҥ������ʸ������Ƥ���Ĥ����Ļ�

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    _

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    �⤭�ʤ��鼫ʬ�Τ�Ź�ˤ�äƤ���뤪�һ����������ߤ�����

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    �㤤����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      -

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    _

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    -

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/logo.png b/enq/logo.png deleted file mode 100644 index ad20684..0000000 --- a/enq/logo.png +++ /dev/null Binary files differ diff --git a/enq/minato.html b/enq/minato.html deleted file mode 100644 index 65ea9ed..0000000 --- a/enq/minato.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - ����������Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

����������

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    4.60���������ϼ�Ԥ����Ѥ�¿��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(�����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    �¿������ڡ�24���ֱĶ�

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    _

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    _

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      ����

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�(�ۡ���ڡ���)

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    _

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ��Ź�������������Ȼפ������Ĥ˻Ż��䥤�٥�Ȥʤɤ����䤷�Ƽ��Ĥ򥢥ԡ��뤷�Ƥۤ�����(������Ľ꤬�濴�Ȥʤä�)

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/minato_ya.html b/enq/minato_ya.html deleted file mode 100644 index 36ccdbf..0000000 --- a/enq/minato_ya.html +++ /dev/null @@ -1,110 +0,0 @@ - - - -����Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

����

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�塡 3.40���50�塡4.60�叢�

    -

    4.30��40��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5����¾(�����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    �ݤ�����

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    �ä�̵��

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    �顼���

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    �ä˼��

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      ���ݤ���������

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    �������䥵���ӥ��ξҲ�

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    �ȼ��Υ����ӥ��ʤɤ�ȯ�����Ƥ�餤����

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/minatotokei1-150.jpg b/enq/minatotokei1-150.jpg deleted file mode 100644 index 3679a1f..0000000 --- a/enq/minatotokei1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/minatotokei1-720.jpg b/enq/minatotokei1-720.jpg deleted file mode 100644 index 379f70a..0000000 --- a/enq/minatotokei1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/minatotokei1.jpg b/enq/minatotokei1.jpg deleted file mode 100644 index ccbdb44..0000000 --- a/enq/minatotokei1.jpg +++ /dev/null Binary files differ diff --git a/enq/minatoza1-150.jpg b/enq/minatoza1-150.jpg deleted file mode 100644 index 82665f1..0000000 --- a/enq/minatoza1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/minatoza1-720.jpg b/enq/minatoza1-720.jpg deleted file mode 100644 index 23e4cae..0000000 --- a/enq/minatoza1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/minatoza1.jpg b/enq/minatoza1.jpg deleted file mode 100644 index 0312af8..0000000 --- a/enq/minatoza1.jpg +++ /dev/null Binary files differ diff --git a/enq/moare.html b/enq/moare.html deleted file mode 100644 index df81b1d..0000000 --- a/enq/moare.html +++ /dev/null @@ -1,109 +0,0 @@ - - - -�⥢��Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

�⥢��

-
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    2.20��30��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(�������������)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    �֤䵨�ᴶ�������줿���ؤ��Υե졼�С��䡢���־��ʤΥ��祳�졼�Ȥ���

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ����󥯤ηҤ��꤬�夤�Τ�����

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    �ϡ����̤Ǥ��ä�̵�������ե��̤Ǥ�ñȯ�ǽ����ʤ���äȳ�ĥ���줿��ǥ������ߤ�����

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    10��ο͡��ˤ�äȾ����ȯ�����Ƥ���������

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      �פ��

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    �ե�åĸ�

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ���ʤ����˴ؤ�餺����Ź�˴ؤ��ͤ�ȡ������ȯ�����Ƥ���������

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ���������ư�ʳ��Ǥ⡢�������Ȥ������Ĥ˶�̣����äơ�����������Ƥ��äƤۤ�����

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/ogawaen.html b/enq/ogawaen.html deleted file mode 100644 index 43b0554..0000000 --- a/enq/ogawaen.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - �����Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

�����

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    4.60���

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    �ʼ��������ʤɤ�����

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    _

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    _

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ���

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      NTT �Ҥ���

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    _

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    �����Ҹˤ䳤���Ծ�ʤɤδѸ��Ϥ���Į���֤�Τ��ä��ߤ�����

    -
  28. - -
-
- - \ No newline at end of file diff --git a/enq/ogawaen1-150.jpg b/enq/ogawaen1-150.jpg deleted file mode 100644 index d803353..0000000 --- a/enq/ogawaen1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/ogawaen1-720.jpg b/enq/ogawaen1-720.jpg deleted file mode 100644 index 530b454..0000000 --- a/enq/ogawaen1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/ogawaen1.jpg b/enq/ogawaen1.jpg deleted file mode 100644 index 71fb809..0000000 --- a/enq/ogawaen1.jpg +++ /dev/null Binary files differ diff --git a/enq/ogawaen2-150.jpg b/enq/ogawaen2-150.jpg deleted file mode 100644 index 78f1e4d..0000000 --- a/enq/ogawaen2-150.jpg +++ /dev/null Binary files differ diff --git a/enq/ogawaen2-720.jpg b/enq/ogawaen2-720.jpg deleted file mode 100644 index ce5633b..0000000 --- a/enq/ogawaen2-720.jpg +++ /dev/null Binary files differ diff --git a/enq/ogawaen2.jpg b/enq/ogawaen2.jpg deleted file mode 100644 index da2dd0e..0000000 --- a/enq/ogawaen2.jpg +++ /dev/null Binary files differ diff --git a/enq/pom.html b/enq/pom.html deleted file mode 100644 index 6efb14b..0000000 --- a/enq/pom.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - CAFE+POMĴ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

CAFE+POM

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    2.20���30��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ���꡼�󥫥졼

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ������

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    ���ڥ��٥�Ȥ��ꤿ��

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    �������

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ��������

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      Yahoo

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�(�ۡ���ڡ���)

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    ADSL

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ���٥�ȳ�ư��̵ͭ

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ���ĤΤ��Ȥ��ä��İ������ߤ������������dz����ˤ�͵��Τ�Ź - �ǡ�Wi-Fi ��Ȥ��롣

    -
  28. -
- -
- - \ No newline at end of file diff --git a/enq/pom1-150.jpg b/enq/pom1-150.jpg deleted file mode 100644 index 725f64e..0000000 --- a/enq/pom1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/pom1-720.jpg b/enq/pom1-720.jpg deleted file mode 100644 index 9aa8cc7..0000000 --- a/enq/pom1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/pom1.jpg b/enq/pom1.jpg deleted file mode 100644 index 74ef284..0000000 --- a/enq/pom1.jpg +++ /dev/null Binary files differ diff --git a/enq/pom2-150.jpg b/enq/pom2-150.jpg deleted file mode 100644 index 1240540..0000000 --- a/enq/pom2-150.jpg +++ /dev/null Binary files differ diff --git a/enq/pom2-720.jpg b/enq/pom2-720.jpg deleted file mode 100644 index fde697a..0000000 --- a/enq/pom2-720.jpg +++ /dev/null Binary files differ diff --git a/enq/pom2.jpg b/enq/pom2.jpg deleted file mode 100644 index 76edcd1..0000000 --- a/enq/pom2.jpg +++ /dev/null Binary files differ diff --git a/enq/pom3-150.jpg b/enq/pom3-150.jpg deleted file mode 100644 index 73e5148..0000000 --- a/enq/pom3-150.jpg +++ /dev/null Binary files differ diff --git a/enq/pom3-720.jpg b/enq/pom3-720.jpg deleted file mode 100644 index 91f68a6..0000000 --- a/enq/pom3-720.jpg +++ /dev/null Binary files differ diff --git a/enq/pom3.jpg b/enq/pom3.jpg deleted file mode 100644 index 6332730..0000000 --- a/enq/pom3.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei1-150.jpg b/enq/romantei1-150.jpg deleted file mode 100644 index b73bdfa..0000000 --- a/enq/romantei1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei1-720.jpg b/enq/romantei1-720.jpg deleted file mode 100644 index 1d1ce53..0000000 --- a/enq/romantei1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei1.jpg b/enq/romantei1.jpg deleted file mode 100644 index 1a27d6e..0000000 --- a/enq/romantei1.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei2-150.jpg b/enq/romantei2-150.jpg deleted file mode 100644 index 3988c15..0000000 --- a/enq/romantei2-150.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei2-720.jpg b/enq/romantei2-720.jpg deleted file mode 100644 index d8914f6..0000000 --- a/enq/romantei2-720.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei2.jpg b/enq/romantei2.jpg deleted file mode 100644 index f66f0eb..0000000 --- a/enq/romantei2.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei3-150.jpg b/enq/romantei3-150.jpg deleted file mode 100644 index 7f8d4e8..0000000 --- a/enq/romantei3-150.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei3-720.jpg b/enq/romantei3-720.jpg deleted file mode 100644 index 199d94d..0000000 --- a/enq/romantei3-720.jpg +++ /dev/null Binary files differ diff --git a/enq/romantei3.jpg b/enq/romantei3.jpg deleted file mode 100644 index 32aa396..0000000 --- a/enq/romantei3.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo1-150.jpg b/enq/rupo1-150.jpg deleted file mode 100644 index 976b0bb..0000000 --- a/enq/rupo1-150.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo1-720.jpg b/enq/rupo1-720.jpg deleted file mode 100644 index 266af8e..0000000 --- a/enq/rupo1-720.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo1.jpg b/enq/rupo1.jpg deleted file mode 100644 index 4ecb367..0000000 --- a/enq/rupo1.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo2-150.jpg b/enq/rupo2-150.jpg deleted file mode 100644 index b66eca0..0000000 --- a/enq/rupo2-150.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo2-720.jpg b/enq/rupo2-720.jpg deleted file mode 100644 index 27b7367..0000000 --- a/enq/rupo2-720.jpg +++ /dev/null Binary files differ diff --git a/enq/rupo2.jpg b/enq/rupo2.jpg deleted file mode 100644 index 1e2258d..0000000 --- a/enq/rupo2.jpg +++ /dev/null Binary files differ diff --git a/enq/skip.png b/enq/skip.png deleted file mode 100644 index c9bd92a..0000000 --- a/enq/skip.png +++ /dev/null Binary files differ diff --git a/enq/takeuti.html b/enq/takeuti.html deleted file mode 100644 index 5debc72..0000000 --- a/enq/takeuti.html +++ /dev/null @@ -1,113 +0,0 @@ - - - -����ۻ���Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

����ۻ���

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    4.60���

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����¾)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ������������

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ������

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ� ������

    -

    ��־줬�����Τ��礭����־줬���ä��餤��

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ǯ��ط��ʤ�����Ź���˿��̤��¿��������

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    NTT

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    _

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    _

    -
  28. - -
- -
- - - - diff --git a/enq/tigusa.html b/enq/tigusa.html deleted file mode 100644 index 3fd76be..0000000 --- a/enq/tigusa.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - ����������Ĵ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

��ʪ�����

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    3.40���50��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(ǭ�����ʿ͡�����)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    ǭ���å�

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ������

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    ��־줬�ʤ�����

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    _

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ��̣�������̤����䤷����

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      �����ҥͥå�

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      _

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�(facebook, �֥�)

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    �ե�åĸ�

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ��̣���γ�ư

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ������������ʤ���ǭ���å��ϲİ����Ƽ�Ԥ˿͵����Ф����ʤΤǡ� - ��������dz����Τ��Ҥ���������Ȼפ������ȡ�facenook ����Ͽ���� - ��������dz��Ѥ��ʤ��ʤ��Ǥ��Ƥ��ʤ��Τǡ����Ѥ������ȹͤ��Ƥ��롣

    -
  28. - -
- -
- - \ No newline at end of file diff --git a/enq/tomizou.html b/enq/tomizou.html deleted file mode 100644 index d98c87a..0000000 --- a/enq/tomizou.html +++ /dev/null @@ -1,109 +0,0 @@ - - -佐々木富造商店調査結果 - - - - -
-

SWAN×SKIP現地調査第二弾調査結果

- -

佐々木富造商店

- -
    -
  1. -

    お店の客層はどの層が一番多いですか?
    - 1.~10代 2.20~30代  3.40~50代 4.60代~

    -

    -
  2. - -
  3. -

    どのような客が多いですか?
    - 1.学生 2.サラリーマン 3.子連れの家族 4.カップル 5.その他

    -

    2.5(お年寄り)

    -
  4. - -
  5. -

    この店に一番のおすすめ商品を教えて下さい。

    -

    日本酒

    -
  6. - -
  7. -

    お店を宣伝する上で、不便を感じることはありますか?

    -

    _

    -
  8. - -
  9. -

    お店にこんなのがあったらよい、と考えているものがありましたら教えて下 さい。

    -

    _

    -
  10. - -
  11. -

    おすすめの穴場がありましたら教えて下さい。

    -

    _

    -
  12. - -
  13. -

    今後どのようなお客樣を増やしていきたいと考えていますか?

    -

    どの世代のお客様も増やしていきたい。

    -
  14. - -
  15. -

    お店でインターネットを利用していますか?
    - 1.はい 2.いいえ

    -

    -
      -
    1. はいと答えた人
      - お使いのプロバイダ-を教えて下さい。 -
    2. -

      OCN

      -
    3. いいえと答えた人
      - 使用していない理由を教えて下さい。 -

      _

      -
    4. -
    -
  16. - -
  17. -

    お店の facebook やホームページを持っていますか?
    - 1.はい 2.いいえ

    -

    1(楽天に出店している)

    -
  18. - -
  19. -

    電話回線は何をお使いですか?

    -

    フレッツ光、ISDN

    -
  20. - -
  21. -

    携帯やスマートフォンで情報を検索する機会はありますか?
    - 1.はい 2.いいえ

    -

    -
  22. - -
  23. -

    今後、中町のお店とSKIPが連携して情報発信を行う際に協力していただ - けますか?
    - 1.はい 2.いいえ

    -

    -
  24. - -
  25. -

    (13で はい と答えた人)
    - どのような情報を発信していきたいですか?また、どのような活動をしたい - ですか?
    - (自由解答)

    -

    _

    -
  26. - -
  27. -

    私達は、地域人たちや観光客などにもっと酒田の情報を発信していきた - いと思っているのですが、商店街の方として何かご意見、ご要望はありま - すか?自由にご記入ください。

    -

    宣伝してもらいたい。対策はこれから考えたいと思っている。

    -
  28. - -
-
- - diff --git a/enq/tukushi.html b/enq/tukushi.html deleted file mode 100644 index 4a41af6..0000000 --- a/enq/tukushi.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - ��ɮĴ����� - - - - -
-

SWAN��SKIP����Ĵ��������Ĵ�����

- -

��ɮ

- -
    -
  1. -

    ��Ź�ε��ؤϤɤ��ؤ�����¿���Ǥ�����
    - 1.���10�塡2.20���30�� ��3.40���50�塡4.60�叢�

    -

    4.60�������ϼ�Ԥ����Ѥ�¿��

    -
  2. - -
  3. -

    �ɤΤ褦�ʵҤ�¿���Ǥ�����
    - 1.������2.����꡼�ޥ�3.��Ϣ��β�²��4.���åץ롡5.����¾

    -

    5.����¾(����Ϲ���ԡ���ϥ���꡼�ޥ�)

    -
  4. - -
  5. -

    ����Ź�˰��֤Τ������ᾦ�ʤ򶵤��Ʋ�������

    -

    A������B����

    -
  6. - -
  7. -

    ��Ź�����������ǡ����ؤ򴶤��뤳�ȤϤ���ޤ���?

    -

    ͽ��򤷤Ƥ��ʤ������ͤؤ��б�(��ɮ��ͽ����)

    -
  8. - -
  9. -

    ��Ź�ˤ���ʤΤ����ä���褤���ȹͤ��Ƥ����Τ�����ޤ����鶵���Ʋ�������

    -

    ��Ź�Υۡ���ڡ���

    -
  10. - -
  11. -

    ��������η�줬����ޤ����鶵���Ʋ�������

    -

    ����(���)

    -
  12. - -
  13. -

    ����ɤΤ褦�ʤ���������䤷�Ƥ��������ȹͤ��Ƥ��ޤ���?

    -

    ��񤬥ᥤ��ʤΤǼҲ��

    -
  14. - -
  15. -

    ��Ź�ǥ��󥿡��ͥåȤ����Ѥ��Ƥ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.������

    -
      -
    1. �Ϥ�����������
      - ���Ȥ��Υץ�Х��� �򶵤��Ʋ������� -
    2. -

      ����

      -
    3. ����������������
      - ���Ѥ��Ƥ��ʤ���ͳ�򶵤��Ʋ������� -

      �Ȥ�����ʬ����ʤ�

      -
    4. -
    -
  16. - -
  17. -

    ��Ź�� facebook ��ۡ���ڡ�������äƤ��ޤ���?
    - 1.�Ϥ� 2.������

    -

    2.������

    -
  18. - -
  19. -

    ���ò����ϲ��򤪻Ȥ��Ǥ���?

    -

    ������

    -
  20. - -
  21. -

    ���Ӥ䥹�ޡ��ȥե���Ǿ���򸡺����뵡��Ϥ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    -

    -
  22. - -
  23. -

    ���塢��Į�Τ�Ź��SKIP��Ϣ�Ȥ��ƾ���ȯ����Ԥ��ݤ˶��Ϥ��Ƥ����� - ���ޤ���?
    - 1.�Ϥ� 2.������

    -

    1.�Ϥ�(���֤��礨��)

    -
  24. - -
  25. -

    (13�� �Ϥ� ����������)
    - �ɤΤ褦�ʾ����ȯ�����Ƥ��������Ǥ���?�ޤ����ɤΤ褦�ʳ�ư�򤷤��� - �Ǥ���?
    - (��ͳ����)

    -

    ���ڤ������褦�����ʤ�꡼���ʥ֥�ˤ�������

    -
  26. - -
  27. -

    ��ã�ϡ��ϰ�ͤ�����Ѹ��Ҥʤɤˤ�äȼ��Ĥξ����ȯ�����Ƥ����� - ���ȻפäƤ���ΤǤ�������Ź�������Ȥ��Ʋ������ո�������˾�Ϥ���� - ����?��ͳ�ˤ���������������

    -

    ��־줬�ʤ��ΤǤĤ��ä��ߤ������赤�Τʤ�����������Τdz赤�� - �ߤ�����

    -
  28. - -
-
- - \ No newline at end of file