一部のWebコミックに人力で訳を追加(MP:ch2,page=0142)
当前为
// ==UserScript==
// @name Web Comic Translator
// @namespace WCT
// @description 一部のWebコミックに人力で訳を追加(MP:ch2,page=0142)
// @include http://devilscandycomic.com/comic/*
// @include http://www.monsterpop.mayakern.com/*
// @version 1.0.24.0
// @require https://code.jquery.com/jquery-3.3.1.slim.min.js
// @grant none
// @license GPLv3; https://www.gnu.org/licenses/gpl-3.0.html;
// ==/UserScript==
// Greasemonkey,Tampermonkey,Violentmonkeyでの共用使用可能にUserScriptsを記載
// UserScript定義の都合上、先頭には記載できないので、ライセンスはここに記載。
// コピーレフト © 2017
// 本ソースのライセンスは以下のGPLv3が適用されるものとする。
// https://www.gnu.org/licenses/gpl-3.0.html
// つまり使用・改造・複製・再配布・閲覧等を自由に行うことを認める。
// ソースを閲覧したい場合、配布物それ自体がソース(またはそのzip圧縮)なためそれを読むか
// 適用したブラウザのフォルダ内に展開されたものを読んで下さい。
// と言うかここ読める時点で、ソース読めてる。
// そもそもライセンス適用する程大した内容ではないけど
// $つまりjqueryを使うので、
// manifest.jsonのjsにjqueryのファイルパスを
// このjsファイルより「先に」記載する必要がある
// console.log("拡張機能の始動開始。");
// JSONを返す関数
function getJson(jsonNameString) {
var resultJsonObject;
switch (jsonNameString) {
case "devilsCandy.json":
// デビルズキャンディ
resultJsonObject = DEVILS_CANDY_JSON;
break;
case "monsterPop.json":
// モンスターポップ
resultJsonObject = MONSTER_POP_JSON;
break;
}
return resultJsonObject;
}
// DOM生成後に動作する関数
$(function(){
// console.log('function動作開始');
// ホスト名取得
var host_string = location.host;
// url全体を取得
var url_string = location.href;
// 画像の親タグjQueryオブジェクトを保持する変数(基本1タグのみの前提)
var imageParents;
// 現在の1ページ分の文章の配列を保持する変数
var one_page_texts_array;
var jsonObject;
// ホストで取得対象を変更
switch (host_string) {
case "devilscandycomic.com":
// デビルズキャンディ
imageParents = $("#cc-comicbody");
jsonObject = getJson("devilsCandy.json");
one_page_texts_array = jsonObject[url_string];
break;
case "www.monsterpop.mayakern.com":
// モンスターポップ
imageParents = $("#comic");
jsonObject = getJson("monsterPop.json");
one_page_texts_array = jsonObject[url_string];
break;
}
if (!imageParents) {
// 処理対象のタグがなければ処理終了
return;
}
if (!one_page_texts_array) {
// URLに対するページデータがなければ処理終了
return;
}
imageParents.css('position','relative'); // 親タグの位置スタイルを相対へ設定
for(var item of one_page_texts_array) {
// 文字1件毎にテキストとスタイルを取得
var text_string = item["text"];
var style_string = item["style"];
// 親タグの下に文字表示タグを追加
imageParents.append(
'<figcaption style="position: absolute;font-family: Meiryo, メイリオ;' + style_string + '">'
+ text_string
+ '</figcaption>');
}
});
// console.log('拡張機能の動作終了。');
// Devil's Candy本文
const DEVILS_CANDY_JSON = {
"http://devilscandycomic.com/comic/prologue-01": [
{
"text" :"全ての悪魔において、<br/>知らぬ者はほどんどいない<br/><span style=\"color: red\"><ruby><rb>与えし者<rp>(</rp><rt>ギヴァー</rt><rp>)</rp></ruby>、</span><br/>彼の与えた物は今も残る",
"style":"font-size: 16px;color: white;background-color: #45467e;left: 38.5%;top: 9%;"
}
],
"http://devilscandycomic.com/comic/prologue-02": [
{
"text" :"鏡を見る時、<br/>我らは見る<br/>喜びと共に受け入れた<br/>残忍な姿を持つ生き物達を",
"style":"font-size: 16px;color: white;background-color: black;left: 38%;top: 33%;"
},
{
"text" :"引き裂くための爪、飛び立つための翼<br/>噛むための牙、突き刺すための角",
"style":"font-size: 16px;color: white;background-color: black;left: 35%;top: 41.5%;"
},
{
"text" :"夜を見通すための<br/>明るく輝く目、<br/>全てに恐怖を与えるための<br/>長く、鞭打つ尻尾",
"style":"font-size: 16px;color: white;background-color: black;left: 35%;top: 47%;"
}
],
"http://devilscandycomic.com/comic/prologue-03": [
{
"text" :"与えし者自身の体から、<br/>これらの宝は与えられた、<br/>全ての悪魔達が<br/>繁栄と成長できるように。",
"style":"font-size: 15px;color: white;background-color: #1C1F20;left: 30%;top: 18%;text-align: left;"
},
{
"text" :"自分のパーツを<br/>分け与え失った時、<br/>世界は道を見失わないと<br/>彼は思った。",
"style":"font-size: 15px;color: white;background-color: #1C1F20;left: 30%;top: 26%;text-align: left;"
},
{
"text" :"この天国のような<br/>地獄を去る前に、<br/>彼は振り向き我ら<br/>全てに別れを告げた。",
"style":"font-size: 15px;color: white;background-color: #1C1F20;left: 30%;top: 33.7%;width: 156px;text-align: left;"
}
],
"http://devilscandycomic.com/comic/prologue-04": [
{
"text" :"そして我らの涙が落ちる時、我らは何を見たのか?",
"style":"font-size: 25px;color: white;background-color: #141615;left: 15%;top: 18%;"
},
{
"text" :"何だ、この奇妙で小さく、ほとんど悪魔ではないものは。",
"style":"font-size: 25px;color: white;background-color: #131514;left: 13%;top: 78%;"
}
],
"http://devilscandycomic.com/comic/ch01p07": [
{
"text" :"縫合糸<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 25.1%;top: 13%;"
},
{
"text" :"縫合糸<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 71.6%;top: 30%;width: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<ruby><rb>剪刀<rp>(</rp><rt>せんとう</rt><rp>)</rp></ruby><br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 19.2%;top: 45.5%;width: 60px;"
},
{
"text" :"<ruby><rb>剪刀<rp>(</rp><rt>せんとう</rt><rp>)</rp></ruby><br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 53%;width: 64px;"
},
{
"text" :"チェーン<br/>ソー…",
"style":"font-size: 16px;color: black;background-color: white;left: 42%;top: 63%;"
},
{
"text" :"チェーン<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 29.2%;top: 68.8%;"
},
{
"text" :"は…?",
"style":"font-size: 14px;color: black;background-color: white;left: 34.2%;top: 72.8%;"
}
],
"http://devilscandycomic.com/comic/ch01p08": [
{
"text" :"最後の<br/>仕上げだ<br/>…",
"style":"font-size: 15px;color: black;background-color: white;left: 18%;top: 8.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">生命<br/>の<br/>スパーク!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 74.5%;top: 37.6%;"
}
],
"http://devilscandycomic.com/comic/ch01p09": [
{
"text" :"生きてる、<br/>ニモ!<br/>実験は<br/>成功だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 11%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ふぁ~あ</span>",
"style":"font-size: 24px;color: black;background-color: white;left: 76.1%;top: 8.3%;"
},
{
"text" :"お前の<br/>課題が<br/>終わって<br/>嬉しいよ、<br/>カズ…",
"style":"font-size: 14px;color: black;background-color: white;left: 49.5%;top: 31.3%;width: 89px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも<br/>急がなきゃ<br/>俺達遅刻だ",
"style":"font-size: 16px;color: black;background-color: white;left: 80.7%;top: 46.9%;"
},
{
"text" :"朝食!",
"style":"font-size: 16px;color: black;background-color: white;left: 53.4%;top: 61%;width: 66px;"
},
{
"text" :"朝食<br/>食べ<br/>なきゃ!",
"style":"font-size: 16px;color: black;background-color: white;left: 61.3%;top: 63%;"
},
{
"text" :"1日で<br/>最も大切な<br/>食事だ!",
"style":"font-size: 15px;color: black;background-color: white;left: 78.5%;top: 60.4%;"
}
],
"http://devilscandycomic.com/comic/ch01p10": [
{
"text" :"あー…",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 6%;"
},
{
"text" :"やぁ<br/>君",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 8%;width: 55px;"
},
{
"text" :"テレビでも<br/>どうかな",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 5%;width: 98px;height: 47px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
}
],
"http://devilscandycomic.com/comic/ch01p11": [
{
"text" :"性同一性障害は<br/>許す、レディ・<br/>ダーク・ロード<br/>だが<span style=\"font-weight: bold;\">お前の<br/>心の悪</span>は<br/>許さん!",
"style":"font-size: 15px;color: black;background-color: white;left: 10.5%;top: 7%;"
},
{
"text" :"そう言うがな、<br/>デビライザー、<br/>その鎧の下の、<br/>お前は獣だ、<br/>私と同じだ!",
"style":"font-size: 15px;color: black;background-color: white;left: 81%;top: 8%;"
},
{
"text" :"仲間になれ<br/>デビライザー",
"style":"font-size: 15px;color: black;background-color: white;left: 7%;top: 40%;"
},
{
"text" :"仲間になれ",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 47%;"
},
{
"text" :"仲間になれ",
"style":"font-size: 16px;color: black;background-color: white;left: 73%;top: 43.5%;"
},
{
"text" :"獣か…<br/>そうだ、<br/>多分そう<br/>だろう…",
"style":"font-size: 15px;color: black;background-color: white;left: 9%;top: 58%;width: 68px;"
},
{
"text" :"<span style=\"font-weight: bold;\">…だが俺は<br/>貴様とは違う!</span><br/>俺の<ruby><rb>顎門<rp>(</rp><rt>あぎと</rt><rp>)</rp></ruby>は<br/>正義のために<br/>のみ飢える!",
"style":"font-size: 15px;color: black;background-color: white;left: 15%;top: 64.5%;"
},
{
"text" :"俺の爪は<br/>世界を覆う闇の<br/>血まみれの腸から<br/>希望の光を<br/>解き放つために<br/>のみ切り裂く!",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 60.5%;"
}
],
"http://devilscandycomic.com/comic/ch01p12": [
{
"text" :"<span style=\"font-weight: bold;\">唸れ、<br/>バーニング<br/>ブラッド!</span>",
"style":"font-size: 30px;color: black;background-color: white;left: 68%;top: 6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">デビル<br/><ruby><rb>大虐殺<rp>(</rp><rt>ヘカトン</rt><rp>)</rp></ruby>!! </span>",
"style":"font-size: 30px;color: black;background-color: white;left: 13.1%;top: 45%;"
}
],
"http://devilscandycomic.com/comic/ch01p13": [
{
"text" :"わ!わ!<br/>悪者を<br/>倒したの?",
"style":"font-size: 15px;color: black;background-color: white;left: 35%;top: 7.5%;"
},
{
"text" :"もちろん。<br/>でも心配は<br/>いらないぜ、<br/>明日には<br/>別のと<br/>戦ってるさ",
"style":"font-size: 15px;color: black;background-color: white;left: 76.6%;top: 8.5%;"
},
{
"text" :"ところで、<br/>どうにかしろよ<br/>お前の…あれ?",
"style":"font-size: 16px;color: black;background-color: white;left: 32.5%;top: 28.3%;"
}
],
"http://devilscandycomic.com/comic/ch01p14": [
{
"text" :"鎖か何かに<br/>繋いでおくべき<br/>じゃないか?",
"style":"font-size: 16px;color: black;background-color: white;left: 6.5%;top: 6.6%;"
},
{
"text" :"それか口輪<br/>付けるか…",
"style":"font-size: 16px;color: black;background-color: white;left: 13.5%;top: 13.2%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ニモ、酷いよ!</span><br/>彼女は悪魔だ、<br/>僕らみたいな!",
"style":"font-size: 16px;color: black;background-color: white;left: 25.5%;top: 8%;"
},
{
"text" :"<span style=\"font-size: x-large;font-weight: bold;\">失礼だ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 27.3%;top: 17%;width: 103px;height: 35px;"
},
{
"text" :"オレら<br/>みたいか?",
"style":"font-size: 16px;color: black;background-color: white;left: 44.5%;top: 6.5%;"
},
{
"text" :"それで<br/>彼女の<br/>名前は?",
"style":"font-size: 16px;color: black;background-color: white;left: 44.5%;top: 32%;"
},
{
"text" :"ルバーブ?<br/>レックス?<br/>キラーか、<br/>多分?",
"style":"font-size: 16px;color: black;background-color: white;left: 53.5%;top: 34%;"
},
{
"text" :"<span style=\"font-weight: bold;\">キ…キラー!?</span><br/>ペットでも<br/>そんな名前<br/>良くないよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 36.5%;"
},
{
"text" :"でも うん、<br/>考えたんだ…<br/><span style=\"font-size: x-large;font-weight: bold;\">パンドラ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 42.4%;top: 65.7%;"
},
{
"text" :"いい<br/>名前<br/>だろう?",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 82%;"
}
],
"http://devilscandycomic.com/comic/ch01p15": [
{
"text" :"知らねぇよ。<br/>同棲メイドには<br/>いい名前か?",
"style":"font-size: 15px;color: black;background-color: white;left: 25%;top: 7.5%;"
},
{
"text" :"それか<br/>話相手欲しくて<br/>彼女作ったか?",
"style":"font-size: 16px;color: black;background-color: white;left: 57%;top: 34.6%;"
},
{
"text" :"そうそう!<br/>ところで、<br/>手伝ってくれて<br/>ありがとう<br/>電気生命生成を",
"style":"font-size: 15px;color: black;background-color: white;left: 12.3%;top: 49.5%;"
},
{
"text" :"僕には本当に<br/>君みたいな<br/>技術の才能<br/>ないからさ",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 50.5%;"
},
{
"text" :"構わねぇよ。<br/>死肉の山に命を<br/>吹き込む時は、<br/>いつでも頼りな",
"style":"font-size: 16px;color: black;background-color: white;left: 46.5%;top: 84.8%;width:120px;"
},
{
"text" :"おい、待て、<br/>話題を変えるな",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 64%;"
}
],
"http://devilscandycomic.com/comic/ch01p16": [
{
"text" :"ドアの前を",
"style":"font-size: 14px;color: black;background-color: white;left: 16.9%;top: 5%;width: 110px;transform: rotate(-5deg);"
},
{
"text" :"空けてお立ち下さい…",
"style":"font-size: 14px;color: black;background-color: white;left: 23.5%;top: 5.7%;transform: rotate(-5deg);width: 156px;"
},
{
"text" :"一人暮らしでも<br/>いつでも<br/>オレを呼べよ<br/><span style=\"font-weight: bold;\">生き物作る</span><br/>代わりにさ",
"style":"font-size: 16px;color: black;background-color: white;left: 43.5%;top: 7%;"
},
{
"text" :"あと<br/>行ったぞ<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 66.5%;top: 10%;"
},
{
"text" :"<span style=\"font-weight: bold;\">アッ!</span>",
"style":"font-size: 21px;color: black;background-color: white;left: 77.5%;top: 12.5%;"
},
{
"text" :"ヘムロック・ハート・アカデミー",
"style":"font-size: 14px;color: black;left: 34%;top: 41%;"
},
{
"text" :"正直言って、<br/>ニモ、<br/>君の見識の<br/>無さには<br/>失望した!",
"style":"font-size: 16px;color: black;background-color: white;left: 15.8%;top: 72%;"
},
],
"http://devilscandycomic.com/comic/ch01p17": [
{
"text" :"<span style=\"font-weight: bold;\">生命の奇跡</span>を<br/>目撃してそれ?<br/>パンドラが<br/>赤ん坊頃の君を<br/>笑い者にしたら<br/>どう思う?",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 6.7%;"
},
{
"text" :"第1に、<br/>その例えは<br/>無意味だ、<br/>仮に彼女が<br/>赤ん坊でも、<br/>デカイし変だろ",
"style":"font-size: 15px;color: black;background-color: white;left: 29.5%;top: 9.5%;"
},
{
"text" :"第2に、誰も<br/>赤子のオレを<br/>笑わない、<br/>俺は愛らし<br/>かったから",
"style":"font-size: 15px;color: black;background-color: white;left: 51.5%;top: 11.4%;"
},
{
"text" :"赤ん坊の君の<br/>写真見たけど<br/>同意せざるを<br/>得ないかな",
"style":"font-size: 15px;color: black;background-color: white;left: 51%;top: 29.8%;"
},
{
"text" :"カズ…",
"style":"font-size: 16px;color: black;background-color: white;left: 86%;top: 30.5%;"
},
{
"text" :"あたしが<br/>彼みたいな<br/>2つ目なら<br/>きっと愛して<br/>くれる…",
"style":"font-size: 18px;color: black;background-color: white;left: 15%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch01p18": [
{
"text" :"駄目で<br/>元々…",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 6.5%;width: 68px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"おはよう、<br/>カズ!",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">うわぁあああああ!<br/>顔に何か ヒトミ!?</span>",
"style":"font-size: 32px;color: black;background-color: white;left: 55.5%;top: 4.5%;"
},
{
"text" :"あー…<br/>つまり…<br/>本当に…<br/><span style=\"font-weight: bold;\">面白いね!</span><br/>最近の流行?",
"style":"font-size: 16px;color: black;background-color: white;left: 39%;top: 43.5%;width: 105px;height: 118px;"
},
{
"text" :"彼女<br/>誰?!",
"style":"font-size: 16px;color: black;background-color: white;left: 85%;top: 49.5%;width: 54px;"
},
{
"text" :"<span style=\"font-weight: bold;\">ああ!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 21%;top: 62%;"
},
{
"text" :"手を繋いでる!<br/>カズの彼女に<br/>違いないわ!<br/>何てバカな<br/>あたし!",
"style":"font-size: 15px;color: black;background-color: white;left: 46.5%;top: 62.2%;width: 127px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"とにかく<br/>生物の授業で!<br/>君の課題見るの<br/>待ちきれない!",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 59.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p19": [
{
"text" :"あたし何言ってるの?<br/>彼みたいな男の子が<br/>あたしみたいな醜い<br/>サイクロプス見て<br/>どうするのよ?",
"style":"font-size: 13px;color: black;background-color: white;left: 17.2%;top: 8.2%;width: 143px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"お困りかぁぁぁい?",
"style":"font-size: 16px;color: black;left: 40.5%;top: 7.7%;"
},
{
"text" :"おはよう、<br/>ジャイロ。<br/>大丈夫よ。<br/>考え事してた<br/>だけよ",
"style":"font-size: 14px;color: black;background-color: white;left: 65%;top: 10.5%;width: 96px;height: 88px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">カズゥゥゥ</span>のこと<br/>考えてたな?",
"style":"font-size: 18px;color: black;background-color: white;left: 13%;top: 45%;width: 120px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いえ、<br/>私は…",
"style":"font-size: 15px;color: black;background-color: white;left: 57%;top: 46%;"
},
{
"text" :"<span><span style=\"font-weight: bold;\">2つ目</span>の女の子</span>しか好きじゃ<br/>ないかって?",
"style":"font-size: 16px;color: black;background-color: white;left: 72.5%;top: 45.5%;width: 125px;height: 89px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">彼がそう<br/>言ったの!?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 64%;width: 125px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">そう<br/>だぜぇ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 32.2%;top: 64.5%;"
},
{
"text" :"2つ目に限らず<br/><span>3、4、5個<span style=\"font-weight: bold;\">以上</span></span>でもいいとよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 64%;top: 68%;width: 112px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あたし…<br/>全然<br/>足りない",
"style":"font-size: 15px;color: black;background-color: white;left: 80%;top: 74.9%;width: 77px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch01p20": [
{
"text" :"オレなら<br/>助けられるぜ<br/><span style=\"font-weight: bold;\">もちろぉぉん</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 8.5%;top: 5%;width: 95px;height: 68px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">秘密の研究所</span>で好きなだけ<br/>目を付けて<br/>直せるぜ",
"style":"font-size: 15px;color: black;background-color: white;left: 25.5%;top: 37.5%;width: 98px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">秘密の<br/>研究…</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 49.5%;top: 8.5%;width: 66px;"
},
{
"text" :"むぐっ!",
"style":"font-size: 11px;color: black;background-color: white;left: 85.5%;top: 8%;"
},
{
"text" :"<span><span style=\"font-weight: bold;\">秘密</span>と</span>呼ぶのは<br/>訳ありだぜ<br/><span style=\"font-weight: bold;\">お嬢さん</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 77.3%;top: 33%;width: 94px;height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"font-weight: bold;\">とにかぁぁぁく</span><br/>オレの申し出を<br/>覚えててくれ",
"style":"font-size: 15px;color: black;background-color: white;left: 8%;top: 52.2%;"
},
{
"text" :"お代は<br/>一本小さな<br/><span style=\"font-weight: bold;\">手だぁぁぁ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 55%;"
},
{
"text" :"<span style=\"font-weight: bold;\">手…?</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 20%;top: 72%;width: 92px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch01p21": [
{
"text" :"女の子相手は<br/>恥ずかしいから<br/>自分用に恋人を<br/>ありあわせで<br/>作ったんだろ?",
"style":"font-size: 15px;color: black;background-color: white;left: 16%;top: 6.5%;width: 112px;height: 107px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん。<br/>少し<br/>キモい",
"style":"font-size: 14px;color: black;background-color: white;left: 23.5%;top: 16.5%;width: 61px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ニモー!<br/>もう止めて<br/>くれる?!",
"style":"font-size: 17px;color: black;background-color: white;left: 34.4%;top: 11.8%;width: 93px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"新入<br/>生?",
"style":"font-size: 12px;color: black;background-color: white;left: 8.7%;top: 18.5%;width: 33px;height: 25px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何の<br/>悪魔かな",
"style":"font-size: 13px;color: black;background-color: white;left: 13.2%;top: 19.8%;width: 55px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"生物学への愛の<br/>ロマンスだけさ!<br/>ゼロから作った<br/>のも世界に誇示<br/>するためだし!",
"style":"font-size: 15px;color: black;background-color: white;left: 63%;top: 13%;"
},
{
"text" :"これは君の<br/>気まぐれな<br/>“ありあわせ”<br/>とは違う",
"style":"font-size: 16px;color: black;background-color: white;left: 57.3%;top: 52.7%;"
},
{
"text" :"生きた女の子を<br/>作る以上に<br/>挑戦的なこと<br/>ってある?",
"style":"font-size: 16px;color: black;background-color: white;left: 64.6%;top: 60.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p22": [
{
"text" :"どうした<br/>んだ?",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 7%;"
},
{
"text" :"<span style=\"font-weight: bold;\">アッ<br/>?!</span>",
"style":"font-size: 34px;color: black;background-color: white;left: 38%;top: 23%;width: 80px;"
},
{
"text" :"<span style=\"font-weight: bold;\">み…皆女の子<br/>作ったの?!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 14%;top: 70%;width: 125px;"
},
{
"text" :"お前あれを<br/>女の子って<br/>呼べるの<span style=\"font-weight: bold;\">かよ</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 32.5%;top: 69%;"
},
{
"text" :"す…少なくとも<br/>僕は服を着せる<br/>良識はあるよ!<br/><span style=\"font-size: 12px;\">これが“男性視点”<br/>ってやつか…?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 74.8%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch01p23": [
{
"text" :"そ…それで<br/>君は何<br/>作った?",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 8.3%;"
},
{
"text" :"ケルベロス<br/>だよ",
"style":"font-size: 16px;color: black;background-color: white;left: 68.4%;top: 8.5%;"
},
{
"text" :"他にはない<br/>カッコよさだ、<br/>翼があるからな",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 13%;"
},
{
"text" :"そして<br/>ポケット<br/>サイズ!",
"style":"font-size: 16px;color: black;background-color: white;left: 36.5%;top: 42.5%;"
},
{
"text" :"<span>それ<span style=\"font-weight: bold;\">は</span></span>いい…!",
"style":"font-size: 15px;color: black;background-color: white;left: 47.2%;top: 46.5%;width: 59px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ヒトミにお前の<br/><span style=\"font-weight: bold;\">完全オリジナルの<br/>彼女じゃないやつ</span><br/>見せないのか?",
"style":"font-size: 15px;color: black;background-color: white;left: 73.5%;top: 62.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p24": [
{
"text" :"<span style=\"font-weight: bold;\">彼女が</span><br/>何作ったかの<br/>方が興味ある。<br/>きっと素晴ら<br/>しいさ!",
"style":"font-size: 14px;color: black;background-color: white;left: 34.5%;top: 6%;"
},
{
"text" :"大したこと<br/>ないわ",
"style":"font-size: 14px;color: black;background-color: white;left: 72%;top: 6.5%;"
},
{
"text" :"ただの小さな<br/>テディベア。<br/>体は全部<br/>パッチワーク、<br/>でも内臓は全部<br/>機能するわよ",
"style":"font-size: 14px;color: black;background-color: white;left: 78.7%;top: 8.5%;z-index: 1"
},
{
"text" :"わぁ!彼の服<br/>好きだな!<br/>君はいい手を<br/>してるね!",
"style":"font-size: 14px;color: black;background-color: white;left: 10.5%;top: 35%;"
},
{
"text" :"あたし<br/>の手…",
"style":"font-size: 16px;color: black;background-color: white;left: 57%;top: 43.5%;font-weight: bold;"
},
{
"text" :"子供達、<br/>お喋りは<br/>止めよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 17.5%;top: 56.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">生物学教師<br/>ミズ・<br/>トリンクル</span>",
"style":"font-size: 13px;color: black;background-color: white;left: 32%;top: 67.5%;width: 103px; height: 55px;"
},
{
"text" :"皆さん<br/>注目",
"style":"font-size: 16px;color: black;background-color: white;left: 64%;top: 55%;width: 73px;"
},
{
"text" :"皆さんの<br/>生物学の<br/>課題の発表の<br/>時間です",
"style":"font-size: 15px;color: black;background-color: white;left: 74%;top: 57.3%;"
},
{
"text" :"変ね。<br/>こんなに<br/>生徒多かった<br/>かしら…",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 67.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p25": [
{
"text" :"けしからない。<br/>けしからない。<br/>まただらしなく<br/>作られた娼婦<br/>ですか。<br/>恥をお知り",
"style":"font-size: 14px;color: black;background-color: white;left: 35%;top: 77.5%;"
},
{
"text" :"わからない…!<br/>どこから<br/>これだけの<br/>パーツが?",
"style":"font-size: 15px;color: black;background-color: white;left: 59%;top: 48.5%;"
},
{
"text" :"皆生物学に<br/>入れ込んでて<br/>僕だけ分かって<br/>ないのかな?",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 71.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p26": [
{
"text" :"<span style=\"font-weight: bold;\">いいぃぃぃ</span><br/>仕事だ、<br/>カズ",
"style":"font-size: 14px;color: black;background-color: white;left: 15%;top: 5%;"
},
{
"text" :"彼女は<br/><span style=\"font-weight: bold;\">見事だぁぁぁぁ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 10.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">は?!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 11.5%;top: 15.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">あ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 55.5%;top: 8%;"
},
{
"text" :"課題評価の後<br/>彼女を<span style=\"font-weight: bold;\">オレ</span>に<span style=\"font-weight: bold;\">手放す</span><br/>気はないか?",
"style":"font-size: 15px;color: black;background-color: white;left: 54.5%;top: 25.6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">彼女を<br/>手放す?!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 15%;top: 50%;"
},
{
"text" :"彼女は<br/><span style=\"font-weight: bold;\">物</span>じゃない、<br/>ジャイロ!<br/>彼女は悪魔だ<br/>僕らと同じ!",
"style":"font-size: 15px;color: black;background-color: white;left: 76.5%;top: 47.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">合理的</span>にいこうぜ。<br/><span style=\"font-weight: bold;\">取引</span>しよう。<br/><span style=\"font-weight: bold;\">あらゆるぅぅ</span>種類の<br/>パーツと交換してやる",
"style":"font-size: 16px;color: black;background-color: white;left: 14.5%;top: 63.2%;"
},
{
"text" :"<span style=\"font-weight: bold;\">パーツ?!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 73.2%;"
},
{
"text" :"<span style=\"font-weight: bold;\">これは<br/>彼の<br/>仕業?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 63%;width: 82px;"
},
{
"text" :"皆交換<br/>したのか…",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 63%;height: 53px;"
},
],
"http://devilscandycomic.com/comic/ch01p27": [
{
"text" :"素晴らしい<br/>仕事ね、ヒトミ。<br/>怖い小さな獣、<br/>でも見事な<br/>構成よ",
"style":"font-size: 14px;color: black;background-color: white;left: 27.5%;top: 6%;"
},
{
"text" :"ありがとう、<br/>ミズ・<br/>トリンクル!",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 34.5%;"
},
{
"text" :"では、私の<br/>優等生を<br/>見ましょう!",
"style":"font-size: 15px;color: black;background-color: white;left: 49%;top: 8.5%;"
},
{
"text" :"私を失望<br/>させないと<br/>信じてるわ!",
"style":"font-size: 15px;color: black;background-color: white;left: 61%;top: 10%;"
},
{
"text" :"<span style=\"font-weight: bold;\">おぉぉっと。<br/>圧倒されて</span><br/>黙っちまうぜ",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 34%;"
},
{
"text" :"さぁ、<br/><span style=\"font-weight: bold;\">レディィ達<br/>恋人ぉぉぉ</span>の<br/>元に来い!",
"style":"font-size: 22px;color: black;background-color: white;left: 69.5%;top: 48.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p28": [
{
"text" :"なんて<br/>淫らな!",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 23%;"
},
{
"text" :"授業で<br/>そんな事<br/>ダメよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 37%;top: 25%;"
},
{
"text" :"待って…何…<br/>何<span style=\"font-weight: bold;\">を</span>あなたは<br/>してるの?!",
"style":"font-size: 16px;color: black;background-color: white;left: 19.5%;top: 53.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p29": [
{
"text" :"<span style=\"font-weight: bold;\">見よ、究極の<br/>第9グレード<br/>バイオ<br/>プロジェクト…</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 11.5%;top: 16.5%;"
},
{
"text" :"究極の<br/><span style=\"font-weight: bold;\">女性!!</span>",
"style":"font-size: 38px;color: black;background-color: white;left: 71%;top: 28%;"
},
],
"http://devilscandycomic.com/comic/ch01p30": [
{
"text" :"悪いね男子<br/>諸君、でも<br/>彼女は全部<br/><span style=\"font-weight: bold;\">オレの物ぉ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 7.8%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ヒッ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 53%;line-height: 33px;"
},
],
"http://devilscandycomic.com/comic/ch01p31": [
{
"text" :"<span style=\"font-weight: bold;\">パンドラ!!</span>",
"style":"font-size: 23px;color: black;background-color: white;left: 11.5%;top: 66%;"
},
{
"text" :"もちろん<br/>食べたくないでしょ<br/><span style=\"font-weight: bold;\">あたし</span>なんて…",
"style":"font-size: 13px;color: black;background-color: white;left: 83%;top: 36%;"
},
],
"http://devilscandycomic.com/comic/ch01p32": [
{
"text" :"やれやれ",
"style":"font-size: 16px;color: black;background-color: white;left: 67.3%;top: 9.5%;"
},
{
"text" :"屋根に<br/>上がったか。<br/>警察呼ぶ<br/>べきだ…",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 11.5%;"
},
{
"text" :"ニモ!<br/>なんとかして!<br/>彼女を<br/>食べる気だ!",
"style":"font-size: 15px;color: black;background-color: white;left: 14%;top: 62%;"
},
{
"text" :"おい、<span style=\"font-weight: bold;\">オレに</span><br/>なんとかしろ?<br/><span style=\"font-weight: bold;\">オレの</span>責任って<br/>言うのかよ?",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 62%;"
},
{
"text" :"<span style=\"font-weight: bold;\">お願い!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 63%;"
},
{
"text" :"君がいなきゃ<br/>何も<br/>できないんだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 64%;"
},
{
"text" :"まぁ、<br/>そこまで<br/>言うなら…",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 61.3%;"
},
{
"text" :"へっ。<br/>魔法の<br/>言葉さ",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 80.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p33": [
{
"text" :"ンググググ<br/>ウウウ…",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 3%;"
},
{
"text" :"よし!!",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 5%;height: 25px;"
},
{
"text" :"オレは<br/>ケルベロスと<br/>屋根へ向かう",
"style":"font-size: 16px;color: black;background-color: white;left: 28.5%;top: 20%;"
},
{
"text" :"お前は階段だ<br/>上で合流<br/>しよう",
"style":"font-size: 16px;color: black;background-color: white;left: 34.5%;top: 27%;"
},
{
"text" :"さあ、<br/>行くぞ",
"style":"font-size: 17px;color: black;background-color: white;left: 64%;top: 4.7%;"
},
{
"text" :"おっと、<br/>オレのバッグ<br/>投げてくれ",
"style":"font-size: 13px;color: black;background-color: white;left: 80.8%;top: 7.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">今行くよ、<br/>パンドラァァ!!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 12.5%;top: 57.5%;"
},
{
"text" :"カズ!",
"style":"font-size: 23px;color: black;background-color: white;left: 70%;top: 56.5%;"
},
],
"http://devilscandycomic.com/comic/ch01p34": [
{
"text" :"とにかく<br/>お前のやってる<br/>ことを…<br/><span style=\"font-weight: bold;\">くいとめる!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 40%;"
},
{
"text" :"<span style=\"font-weight: bold;\">正直言って、</span><br/>お前の見識の<br/>なさには<br/>失望したぜ、<br/>ニモ",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 44%;"
},
{
"text" :"オレ達が<br/><span style=\"font-weight: bold;\">戦ぁぁぁう<br/>必要はない!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 80%;top: 53.5%;"
},
{
"text" :"おい、<br/>黙れ",
"style":"font-size: 20px;color: black;background-color: white;left: 77%;top: 85%;"
},
],
"http://devilscandycomic.com/comic/ch01p35": [
{
"text" :"<span style=\"font-weight: bold;\">オレェェェ<br/>の<br/>仲間になれ!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 38.5%;top: 19%;"
},
{
"text" :"<span style=\"font-weight: bold;\">お前の<br/>脳ぉぉぉぉ<br/>が欲しい!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 33.5%;top: 37%;"
},
{
"text" :"<span style=\"font-size: large;font-weight: bold;\">うぐ<br/>っ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 27.1%;top: 52.5%;"
},
{
"text" :"オレの脳!?<br/>なんだ、<br/>食う気か?",
"style":"font-size: 16px;color: black;background-color: white;left: 54.5%;top: 40%;"
},
{
"text" :"違う、違う!<br/>オレが欲しいのは<br/><span style=\"font-weight: bold;\">パートナァァァ!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 79.3%;top: 40%;"
},
{
"text" :"悪いが、<br/>オレはお前の<br/>奥さんに<br/>興味ないぜ",
"style":"font-size: 15px;color: black;background-color: white;left: 76.5%;top: 78%;"
},
],
"http://devilscandycomic.com/comic/ch01p36": [
{
"text" :"ワオ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 22.5%;top: 5.5%;"
},
{
"text" :"ついでに、<br/>お前の一番の<br/>相手がお前を<br/>困らせてる<br/>ようだが",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 41.5%;"
},
{
"text" :"まぁまぁ、ニモ、<br/><span style=\"font-weight: bold;\">ジェラシィィィィ</span><br/>はよせ。<br/>オレは一緒にいるの<br/>大好きなんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 15.5%;top: 68.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">やめ<br/>うぐぁ<br/>やめて</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 35.5%;top: 68%;width: 100px;"
},
],
"http://devilscandycomic.com/comic/ch01p37": [
{
"text" :"<span style=\"font-weight: bold;\">危ねぇ!!</span>",
"style":"font-size: 36px;color: black;background-color: white;left: 11%;top:7%;height: 57px;"
},
{
"text" :"いい<br/>だろう!",
"style":"font-size: 14px;color: black;background-color: white;left: 57.5%;top: 7%;"
},
{
"text" :"お前が<br/><span style=\"font-weight: bold;\">その気</span>なら、<br/>本当の計画<br/>教えねぇ!",
"style":"font-size: 16px;color: black;background-color: white;left: 79.5%;top: 20%;"
},
{
"text" :"“本当の計画”?<br/>こんなこと<br/>する気は<br/>なかったのか?",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 36%;"
},
{
"text" :"いや違うな。<br/>オレは取引した<br/>上質なパーツで…",
"style":"font-size: 16px;color: black;background-color: white;left: 35.5%;top: 56.5%;width: 133px;height: 70px;"
},
],
"http://devilscandycomic.com/comic/ch01p38": [
{
"text" :"<span style=\"font-weight: bold;\">ガハッ!</span>",
"style":"font-size: 30px;color: black;background-color: white;left: 80%;top: 3%;width: 107px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うぐっ<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 48%;top: 57.5%;"
},
{
"text" :"痛て<br/>て",
"style":"font-size: 16px;color: black;background-color: white;left: 53%;top: 62.5%;"
},
{
"text" :"ハァ",
"style":"font-size: 16px;color: black;background-color: white;left: 44.5%;top: 67%;"
},
{
"text" :"ハァッ",
"style":"font-size: 14px;color: black;background-color: white;left: 43.5%;top: 69.5%;"
},
{
"text" :"ニモ?!",
"style":"font-size: 20px;color: black;background-color: white;left: 50%;top: 87%;"
},
{
"text" :"大丈夫<br/>かい?!",
"style":"font-size: 16px;color: black;background-color: white;left: 53.5%;top: 91.5%;"
},
{
"text" :"心配すんな、<br/>俺が何とか<br/>する!",
"style":"font-size: 18px;color: black;background-color: white;left: 66%;top: 51.5%;"
},
{
"text" :"でも…!",
"style":"font-size: 13px;color: black;background-color: white;left: 81%;top: 56.6%;"
},
],
"http://devilscandycomic.com/comic/ch01p39": [
],
"http://devilscandycomic.com/comic/ch01p40": [
{
"text" :"効いて<br/>ない!",
"style":"font-size: 20px;color: black;background-color: white;left: 12.5%;top: 33%;"
},
{
"text" :"効いてない<br/>ってどういう<br/>意味だ?",
"style":"font-size: 14px;color: black;background-color: white;left: 11.7%;top: 58.5%;"
},
{
"text" :"黙らせ<br/>ただろ?",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 63.5%;"
},
{
"text" :"そうじゃ<br/>なくて…",
"style":"font-size: 13px;color: black;background-color: white;left: 28%;top: 65%;"
},
{
"text" :"もしお前の<br/>生物の課題が<br/>吸収されたら<br/>どうすれば<br/>いいんだ?",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 40.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ああっ!<br/>パンドラ!!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 78%;top: 76%;"
},
],
"http://devilscandycomic.com/comic/ch01p41": [
{
"text" :"<span style=\"font-weight: bold;\">やめろ<br/>!!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 11.5%;top: 8%;"
},
{
"text" :"な…",
"style":"font-size: 20px;color: black;background-color: white;left: 12.5%;top: 15%;"
},
{
"text" :"<span style=\"font-weight: bold;\">彼女を<br/>離せ!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 52%;top: 11%;"
},
{
"text" :"<span style=\"font-weight: bold;\">うぐっ<br/>!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 82%;"
},
{
"text" :"<span style=\"font-weight: bold;\">やめろ!</span><br/>死ぬ気<br/>かよ!",
"style":"font-size: 20px;color: black;background-color: white;left: 76%;top: 70.3%;width: 86px;"
},
],
"http://devilscandycomic.com/comic/ch01p42": [
{
"text" :"<span style=\"font-weight: bold;\">嫌だ!</span>",
"style":"font-size:35px;color: black;background-color: white;left: 11.5%;top: 8.7%;"
},
{
"text" :"僕はパンドラの<br/>命に責任がある!<br/>生まれた日を<br/>彼女の最期に<br/>してたまるか!",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 12%;height: 125px;"
},
{
"text" :"<span style=\"font-weight: bold;\">僕は…僕は<br/>彼女にこの世界は<br/>美しい場所だって<br/>見せてあげ<br/>たいんだ!!</span>",
"style":"font-size: 25px;color: black;background-color: white;left: 36%;top: 43%;"
},
{
"text" :"<span style=\"font-weight: bold;\">パンドラ!!<br/>君には輝ける<br/>未来がある!!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 66%;top: 44%;width: 120px;"
},
],
"http://devilscandycomic.com/comic/ch01p43": [
{
"text" :"<span style=\"font-weight: bold;\">君はただの<br/>生物学の課題<br/>なんかじゃ<br/>ない!!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 18%;top: 5.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">仲間になれぇぇ…</span>",
"style":"font-size: 32px;color: black;background-color: white;left: 39%;top: 18%;width :283px;"
},
{
"text" :"<span style=\"font-size: small;\">仲間になれ、<br/>デビライザー!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 17%;top: 56%;"
},
{
"text" :"その鎧の下の、<br/>お前は獣だ、<br/>私と同じだ!",
"style":"font-size: 14px;color: black;background-color: white;left: 68.3%;top: 56.5%;"
},
{
"text" :"獣か…<br/>そうだ、<br/>多分<br/>そうだ<br/>ろう…",
"style":"font-size: 14px;color: black;background-color: white;left: 15.5%;top: 71.5%;"
},
{
"text" :"<span style=\"font-size: large;font-weight: bold;\">だが俺は<br/>貴様とは<br/>違う!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 54.2%;top: 72%;"
},
],
"http://devilscandycomic.com/comic/ch01p44": [
],
"http://devilscandycomic.com/comic/ch01p45": [
{
"text" :"<span style=\"font-weight: bold;\">スゲェな、おい!</span><br/>お前本当に<br/>作り方知って<br/>んだよな…<br/>アレの!",
"style":"font-size: 14px;color: black;background-color: white;left: 13.5%;top: 31.5%;"
},
{
"text" :"あー、その、<br/>ありがと。<br/><span style=\"font-weight: bold;\">でも、ねぇ!<br/>彼女は<br/>物じゃない<br/>って!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 27.5%;top: 34%;"
},
{
"text" :"<span style=\"font-weight: bold;\">気をつけろ、<br/>キラー!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 65.5%;height: 49px;"
},
{
"text" :"<span style=\"font-weight: bold;\">その呼び方<br/>やめて!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 68%;top: 72%;"
},
],
"http://devilscandycomic.com/comic/ch01p46": [
{
"text" :"<span style=\"font-weight: bold;\">わ!!</span>",
"style":"font-size: 21px;color: black;background-color: white;left: 28.7%;top: 35.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">パンドラ?!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 9.5%;top: 69.1%;"
},
],
"http://devilscandycomic.com/comic/ch01p47": [
{
"text" :"<span style=\"font-weight: bold;\">は?!</span>",
"style":"font-size: 36px;color: black;background-color: white;left: 75.7%;top: 48.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">カズ!!</span>",
"style":"font-size: 43px;color: black;background-color: white;left: 71.3%;top: 84%;"
},
],
"http://devilscandycomic.com/comic/ch01p48": [
{
"text" :"あたしの嫌いな<br/>サイクロプス<br/>の手を使えば<br/>多分彼を<br/>救える",
"style":"font-size: 14px;color: black;background-color: white;left: 29.1%;top: 10%;"
},
{
"text" :"あの巨大な腕を<br/>パンケーキ<br/>みたく平たく<br/>叩き潰すか…<br/>真っ二つか…<br/>細切れに<br/>引き裂けるわ",
"style":"font-size: 15px;color: black;background-color: white;left: 75%;top: 21%;"
},
{
"text" :"でもそしたら<br/>カズはあたしが<br/>乱暴って知るわ…<br/>乱暴で目の数も<br/>全然足りない",
"style":"font-size: 15px;color: black;background-color: white;left: 9%;top: 45.5%;"
},
{
"text" :"多分あたしは<br/>手を無くした<br/>方がいい。<br/>ジャイロに渡せば<br/>彼はやめる、<br/>そして…",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 62.5%;border:solid 1px;"
},
{
"text" :"そして<br/>…!",
"style":"font-size: 16px;color: white;background-color: black;left: 38%;top: 71.5%;"
},
{
"text" :"心配いらない。<br/>僕が君の<br/>手になるよ",
"style":"font-size: 16px;color: black;background-color: white;left: 51.5%;top: 65%;"
},
{
"text" :"<span style=\"font-weight: bold;\">危ない!</span>",
"style":"font-size: 31px;color: black;background-color: white;left: 80%;top: 86.6%;"
},
],
"http://devilscandycomic.com/comic/ch01p49": [
],
"http://devilscandycomic.com/comic/ch01p50": [
{
"text" :"ジャイロ",
"style":"font-size: 16px;color: black;left: 30%;top: 4.5%;"
},
{
"text" :"何だ?!<br/>ヒトミ<br/>?!",
"style":"font-size: 12px;color: black;background-color: white;left: 10.5%;top: 57%;"
},
{
"text" :"どう<br/>やって<br/>…?!>",
"style":"font-size: 12px;color: black;background-color: white;left: 15.7%;top: 59%;"
},
{
"text" :"何が起き<br/>てる?!",
"style":"font-size: 12px;color: black;background-color: white;left: 30.5%;top: 60.3%;"
},
{
"text" :"あぐっ!",
"style":"font-size: 17px;color: black;background-color: white;left: 77%;top: 58%;"
},
],
"http://devilscandycomic.com/comic/ch01p51": [
],
"http://devilscandycomic.com/comic/ch01p52": [
{
"text" :"ほらっ、<br/>お前鋭い物<br/>好きだろ?",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 8%;"
},
{
"text" :"<span style=\"font-weight: bold;\">化物</span>を<br/>殺せよ、<br/>オレは違う!",
"style":"font-size: 13px;color: black;background-color: white;left: 64%;top: 51.8%;"
},
],
"http://devilscandycomic.com/comic/ch01p53": [
],
"http://devilscandycomic.com/comic/ch01p54": [
{
"text" :"<span style=\"font-weight: bold;\">うわっ、<br/>キモい!!</span>",
"style":"font-size: 21px;color: black;background-color: white;left: 24%;top: 50%;"
},
],
"http://devilscandycomic.com/comic/ch01p55": [
{
"text" :"<span style=\"font-size: x-large;font-weight: bold;\">す…<br/>すごいや、<br/>みんな!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 7.5%;"
},
{
"text" :"<span style=\"font-size: x-large;font-weight: bold;\">バイオ<br/>モンスターを<br/>やつけた!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 8%;"
},
{
"text" :"ああ、<br/>オレはただ<br/>明日には別のと<br/>戦うハメに<br/>ならないことを<br/>望むよ",
"style":"font-size: 15px;color: black;background-color: white;left: 76%;top: 9%;"
},
{
"text" :"OK、<span style=\"font-weight: bold;\">今</span><br/>警察呼ぶよ。<br/>それと消防も。<br/>あと救急",
"style":"font-size: 16px;color: black;background-color: white;left: 25.5%;top: 55%;"
},
{
"text" :"生物学の課題<br/>ダメにして<br/>ごめんね、<br/>ジャイロ",
"style":"font-size: 15px;color: black;background-color: white;left: 42%;top: 60%;"
},
{
"text" :"あたしは<br/>ハグされて<br/>ない…",
"style":"font-size: 14px;color: black;background-color: white;left: 81.5%;top: 67%;"
},
{
"text" :"あー<br/>…!",
"style":"font-size: 18px;color: black;background-color: white;left: 24%;top: 71.2%;"
},
{
"text" :"<span style=\"font-size: large;font-weight: bold;\">チャプター1:完</span>",
"style":"font-size: 16px;color: white;background-color: black;left: 79.5%;top: 95.5%;"
},
],
"http://devilscandycomic.com/comic/ch01extra01": [
{
"text" :"<span style=\"font-weight: bold;\">パンドラ対策</span>",
"style":"font-size: 35px;color: black;background-color: white;left: 7%;top: 10%;width: 340px;"
},
{
"text" :"<span style=\"font-weight: bold;\">1.窓を閉める</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 9%;top: 15.25%;width: 182px;border:solid 1px;"
},
{
"text" :"<span style=\"font-weight: bold;\">2.ドアを<br/>ロック</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 9%;top: 34.5%;width: 81px;border:solid 1px;"
},
{
"text" :"<span style=\"font-weight: bold;\">3.電源を<br/>カバーする</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 9%;top: 54.5%;width: 118px;height: 63px;border:solid 1px;"
},
{
"text" :"<span style=\"font-weight: bold;\">4.尖った物を隠す</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 18%;top: 73.8%;width: 224px;height: 26px;border:solid 1px;"
},
{
"text" :"<span style=\"font-size: xx-large;font-weight: bold;\">ディナー</span>",
"style":"font-size: 35px;color: black;background-color: white;left: 63%;top: 10%;width: 153px;"
},
{
"text" :"あっ!<br/>お腹空い<br/>たんだ?",
"style":"font-size: 15px;color: black;background-color: white;left: 83%;top: 15%;height: 73px;"
},
{
"text" :"ピザを<br/>頼もう!",
"style":"font-size: 16px;color: black;background-color: white;left: 55.5%;top: 35%;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"<span style=\"\">何枚に<br/>しよう<br/>かな…</span>",
"style":"font-size: 13.5px;color: black;background-color: #c7c5db;left: 82.5%;top: 34.3%;"
},
{
"text" :"<span style=\"font-size: small;\">いぇ~い<br/>ピッザー!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 55.5%;top: 54.5%;"
},
{
"text" :"食べててよ、<br/>お皿取って<br/>くる!",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 53.5%;"
},
{
"text" :"OK、<br/>僕の分は<br/>無し、<br/>いいね",
"style":"font-size: 16px;color: black;background-color: white;left: 84%;top: 74%;"
},
],
"http://devilscandycomic.com/comic/ch01extra02": [
{
"text" :"<span style=\"font-size: xx-large;font-weight: bold;\">ベッド タイム</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 10%;"
},
{
"text" :"うわっ、<br/>もう<br/>こんな<br/>遅く!",
"style":"font-size: 16px;color: black;background-color: white;left: 37.9%;top: 16%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ベッド<br/>タイム</span>は<br/>どうすりゃ<br/>いい?!",
"style":"font-size: 16px;color: black;background-color: white;left: 34%;top: 34.5%;"
},
{
"text" :"それに<br/>バスタイムも<br/>?!?",
"style":"font-size: 16px;color: black;background-color: #938fb5;left: 34.5%;top: 43.5%;"
},
{
"text" :"“女の子相手は恥ずかしい”",
"style":"font-size: 16px;color: black;background-color: #adb5cb;left: 10%;top: 54.5%;transform: rotate(-5deg);"
},
{
"text" :"“<span style=\"font-size: small;\">同棲<br/>メイド</span>”",
"style":"font-size: 16px;color: black;background-color: #adb5cb;left: 26%;top: 56.5%;transform: rotate(10deg);"
},
{
"text" :"ううう!!<br/>ニモのバカ!<br/>想像しちゃう<br/>じゃない<br/>かぁぁぁぁぁ<br/>!!",
"style":"font-size: 15px;color: black;background-color: white;left: 33.5%;top: 54%;"
},
{
"text" :"<span style=\"font-size: small;\">“恋人をありあわせで<br/>作った”</span>",
"style":"font-size: 16px;color: black;background-color: #adb5cb;left: 31%;top: 66.5%;transform: rotate(10deg);"
},
{
"text" :"パンドラ、<br/>どこで<br/>寝た…",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 74%;"
},
{
"text" :"<span style=\"font-size: small;\">あら!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 37%;top: 76.5%;"
},
{
"text" :"<span style=\"font-size: xx-large;font-weight: bold;\">ショートカット</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 10%;"
},
{
"text" :"彼女は…<br/>かなり…<br/>重い…",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 16%;"
},
{
"text" :"グーーーー",
"style":"font-size: 16px;color: black;background-color: white;left: 82.9%;top: 27.7%;"
},
{
"text" :"でも彼女の<br/>初めての<br/>夜だ!<br/>ちゃんと<br/>ベッドに<br/>寝かせ<br/>ないと!",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 36%;"
},
{
"text" :"カズの家",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 54%;width: 129px;"
},
{
"text" :"スタート",
"style":"font-size: 15px;color: black;background-color: white;left: 53.2%;top: 66.2%;"
},
{
"text" :"ゴール",
"style":"font-size: 16px;color: black;background-color: white;left: 81.5%;top: 55%;"
},
{
"text" :"えぇ…",
"style":"font-size: 12px;color: black;background-color: #938fb5;left: 82.3%;top: 70.1%;"
},
],
"http://devilscandycomic.com/comic/ch01extra03": [
{
"text" :"ふんっ!",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 8.2%;"
},
{
"text" :"おやすみ、<br/>パンドラ!",
"style":"font-size: 25px;color: black;background-color: white;left: 4.5%;top: 28%;"
},
{
"text" :"~~~!!",
"style":"font-size: 20px;color: black;background-color: white;left: 9%;top: 57%;"
},
{
"text" :"やった!<br/>本当に<br/>やったんだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 60%;"
},
{
"text" :"1日が終わった<br/>何の問題も<br/>なく!!",
"style":"font-size: 16px;color: black;background-color: white;left: 39%;top: 57%;"
},
{
"text" :"ただ<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 56%;width: 57px;"
},
{
"text" :"1日1日を<br/>大切に生きる<br/>だけさ!",
"style":"font-size: 16px;color: black;background-color: white;left: 76.5%;top: 55.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">手に<br/>負えない</span>",
"style":"font-size: 26px;color: black;background-color: white;left: 77.8%;top: 84.5%;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch02p00": [
],
"http://devilscandycomic.com/comic/ch02p01": [
],
"http://devilscandycomic.com/comic/ch02p02": [
{
"text" :"嫌だ<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 19.2%;top: 61%;width: 41px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"離れろ<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 21.5%;top: 66%;"
},
{
"text" :"<span style=\"font-weight: bold;\">乱暴は<br/>やめて<br/>くれ!</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 81%;top: 57%;"
},
{
"text" :"<span style=\"font-weight: bold;\">子供達の<br/>事も考えて<br/>あげて<br/>くれ!</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 78%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch02p03": [
{
"text" :"お前がその<br/>子供達を<br/><span style=\"font-weight: bold;\">食ったろ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 5%;"
},
{
"text" :"見ろ、<br/>お前の口から<br/>腕が一本<br/>飛び出してる!",
"style":"font-size: 16px;color: black;background-color: white;left: 45.5%;top: 7.1%;"
},
{
"text" :"<span style=\"font-weight: bold;\">これはその、<br/>1度だけだ!<br/>二度としない!</span>",
"style":"font-size: 19px;color: black;background-color: white;left: 9%;top: 47.3%;"
},
{
"text" :"<span style=\"font-weight: bold;\">見逃して<br/>くれない<br/>か?</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 21.6%;top: 54.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">軟弱者!!</span>",
"style":"font-size: 55px;color: black;background-color: white;left: 30.7%;top: 65%;;"
},
{
"text" :"ハハハ!<br/>うわぁ~~",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 47.5%;"
},
],
"http://devilscandycomic.com/comic/ch02p04": [
{
"text" :"デビライザーは<br/>大人のなり方を<br/>僕に教えて<br/>くれる!",
"style":"font-size: 13px;color: black;background-color: white;left: 12%;top: 5.5%;"
},
{
"text" :"注意深く<br/>観て<br/>君が学ぶべき<br/>事を<br/>知ってね!",
"style":"font-size: 14px;color: black;background-color: white;left: 19.3%;top: 13%;"
},
{
"text" :"でも学習に<br/>最高の場所は<br/>学校さ、<br/>だから準備<br/>しよう!",
"style":"font-size: 16px;color: black;background-color: white;left: 16%;top: 36%;"
},
{
"text" :"ニモが<br/>もうすぐ<br/>来るはず<br/>だから…",
"style":"font-size: 16px;color: black;background-color: white;left: 66.5%;top: 37.5%;"
},
{
"text" :"カズ やめろ",
"style":"font-size: 18px;color: black;background-color: white;left: 43%;top: 72.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">どうして?</span><br/>彼女にも<br/>学習は<br/>必要だよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 80.5%;top: 60%;"
},
],
"http://devilscandycomic.com/comic/ch02p05": [
{
"text" :"彼女の脳を<br/>取り出せよ。<br/>そしたら<br/>何も悩む必要<br/>なくなるだろ",
"style":"font-size: 16px;color: black;background-color: white;left: 12.4%;top: 5%;"
},
{
"text" :"それか<br/>新しい、<br/>賢いのを<br/>やれよ",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 8%;"
},
{
"text" :"そうかい?<br/>君は賢いね、<br/>君の脳を<br/>あげたら?",
"style":"font-size: 15px;color: black;background-color: white;left: 58%;top: 5.6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">そしたら</span><br/>君は<br/>どうする?",
"style":"font-size: 15px;color: black;background-color: white;left: 70%;top: 5.8%;"
},
{
"text" :"新しい<br/>野蛮な体で<br/>お前の顔を<br/>繰り返し<br/>蹴ってやるよ",
"style":"font-size: 15px;color: black;background-color: white;left: 74.5%;top: 30%;"
},
{
"text" :"あー。<br/>議論する<br/>価値も<br/>ねぇよ",
"style":"font-size: 16px;color: black;background-color: white;left: 15.5%;top: 53.5%;"
},
{
"text" :"“だから言っただろ”<br/>って言う気力は<br/>お前が大失敗する<br/>時まで<br/>とっておくぜ",
"style":"font-size: 15px;color: black;background-color: white;left: 26%;top: 54.5%;"
},
{
"text" :"ニモを<br/>覚えてるかい<br/>パンドラ?<br/>僕らの友達。<br/><span style=\"font-weight: bold;\">友達さ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 71%;"
},
],
"http://devilscandycomic.com/comic/ch02p06": [
{
"text" :"よし、<br/>パンドラ、<br/>これが学校、<br/>以前と<br/>同じだね!",
"style":"font-size: 16px;color: black;background-color: white;left: 55.5%;top: 32.5%;"
},
{
"text" :"僕らは<br/>ここに<br/>週5日来て<br/>1日中…",
"style":"font-size: 16px;color: black;background-color: white;left: 57%;top: 45.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">カズ!</span><br/>君がいて<br/>良かった!<br/>私は…",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 58%;"
},
{
"text" :"あっ、<br/>エリオット!",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 58%;"
},
{
"text" :"か…完璧な<br/>タイミングだ!<br/>新入生の<br/>転入のお話が。<br/>こちらは<br/>パンドラ…",
"style":"font-size: 16px;color: black;background-color: white;left: 49%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch02p07": [
{
"text" :"じ…<br/>時間がない<br/>カズ!<br/>学校が…",
"style":"font-size: 15px;color: black;background-color: white;left: 9%;top: 7%;"
},
{
"text" :"こちらはエリオット<br/>・ヘムロック校長。<br/>“エリオット”でも<br/>気にしないよ、<br/><ruby style=\"font-weight: bold;\"><rb>校長<rp>(</rp><rt>princiPAL</rt><rp>)</rp></rp></ruby>に<ruby style=\"font-weight: bold;\">友達<rp>(</rp><rt>PAL</rt><rp>)</rp></rp></ruby>を<br/>含む主義さ!",
"style":"font-size: 14px;color: black;background-color: white;left: 23.8%;top: 4%;width: 134px;"
},
{
"text" :"<span style=\"font-weight: bold;\">学校が<br/>幽霊<br/>だらけだ!</span>",
"style":"font-size: 25px;color: black;background-color: white;left: 11%;top: 45%;"
},
{
"text" :"冗談好き<br/>ですね!<br/>幽霊は<br/>実在しないって<br/>皆知ってますよ",
"style":"font-size: 14px;color: black;background-color: white;left: 21.5%;top: 64.5%;"
},
{
"text" :"た…多分<br/>自分で<br/>見た方がいい",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 65%;"
},
{
"text" :"(おはよう<br/>ニモ)",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 71.5%;width: 93px;"
},
{
"text" :"(おはよう)",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 76.6%;height: 27px;"
},
],
"http://devilscandycomic.com/comic/ch02p08": [
{
"text" :"ほらね?<br/>何も…",
"style":"font-size: 16px;color: black;background-color: white;left: 45.5%;top: 8.5%;"
},
{
"text" :"これは<br/>普通じゃない。<br/>頼むから<br/>これは学ば<br/>ないでくれよ",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 79.5%;"
},
],
"http://devilscandycomic.com/comic/ch02p09": [
{
"text" :"さ…さぁ、<br/>教室へ!<br/>登校日だよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 10.5%;top: 15%;"
},
{
"text" :"今日の<br/>最初の授業は<br/>料理の文化化、<br/>世界中の悪魔達の<br/>違いを勉強と<br/>料理の準備を<br/>通して学ぶよ",
"style":"font-size: 15px;color: black;background-color: white;left: 44%;top: 11%;"
},
{
"text" :" ストリクソン<br/>先生は、少し<br/>変だけど、<br/>肝臓の料理を<br/>作れば、<br/>大丈夫さ",
"style":"font-size: 14px;color: black;background-color: white;left: 65.5%;top: 23.8%;"
},
{
"text" :"とにかく、<br/>楽しいよ…<br/>君みたいに<br/>素敵な女子<br/>も沢山いる",
"style":"font-size: 14px;color: black;background-color: white;left: 78%;top: 25%;"
},
{
"text" :"お…<br/>おはよう!",
"style":"font-size: 14px;color: black;background-color: white;left: 26%;top: 39.5%;"
},
{
"text" :"今日は静か<br/>みたいだね。<br/>まだ早いよ。<br/>ベルが鳴る<br/>まで待とう",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch02p10": [
{
"text" :"許せ生徒達よ、<br/>教室に生徒が<br/>4人では正しく<br/>敬意ある扱いを<br/>獲物…(ゴホン)<br/><span style=\"font-weight: bold;\">材料</span>にできない",
"style":"font-size: 14px;color: black;background-color: white;left: 31%;top: 8.5%;"
},
{
"text" :"自習時間だと<br/>考えてくれ。<br/>自由に肝臓を料理<br/>してもいい…",
"style":"font-size: 14px;color: black;background-color: white;left: 51%;top: 9.5%;"
},
{
"text" :"…肝臓形クッキー<br/>を焼くのもいい…<br/>その素晴らしさを<br/>考えつつノートに<br/>肝臓を落書き<br/>してもいい",
"style":"font-size: 14px;color: black;background-color: white;left: 51%;top: 17.5%;"
},
{
"text" :"お前がそれ<br/>作ったなんて<br/>驚いたぜ。<br/>幽霊よりもさ",
"style":"font-size: 15px;color: black;background-color: white;left: 24.2%;top: 41.2%;"
},
{
"text" :"科学の<br/>課題…?",
"style":"font-size: 16px;color: black;background-color: white;left: 37.2%;top: 42%;"
},
{
"text" :"えっ?<br/>なんで誰も<br/>授業に来ない?<br/>全然分から<br/>ないなぁ!<br/>僕は怖くな…",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 42.5%;"
},
{
"text" :"ごめん<br/>遅れたわ",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 65.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">キャア!</span><br/>なんだ<br/>マリナか",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 86%;"
},
{
"text" :"生徒会長は<br/>良い見本たるべき<br/>だけど、恐ろしい<br/>亡霊で立ち往生<br/>してたの",
"style":"font-size: 14.5px;color: black;background-color: white;left: 41.2%;top: 60%;"
},
{
"text" :"少し困惑よ、<br/>私の生と死後の<br/>全体観が<br/>逆転した<br/>ようなものを<br/>見たから",
"style":"font-size: 15px;color: black;background-color: white;left: 50%;top: 84%;"
},
{
"text" :"ねぇ、<br/>クッキー<br/>焼いたの!<br/>誰か一つ<br/>いかが?",
"style":"font-size: 14px;color: black;background-color: white;left: 79.5%;top: 75.5%;"
},
],
"http://devilscandycomic.com/comic/ch02p11": [
{
"text" :"ヤギー?",
"style":"font-size: 25px;color: black;background-color: white;left: 11%;top: 6%;"
},
{
"text" :"バターが<br/>ヒデェ<br/>多すぎだな",
"style":"font-size: 16px;color: black;background-color: white;left: 53.5%;top: 22.5%;"
},
{
"text" :"いる<br/>かい?",
"style":"font-size: 14px;color: black;background-color: white;left: 68%;top: 14.2%;"
},
{
"text" :"いや。<br/>いい<br/>かな",
"style":"font-size: 14px;color: black;background-color: white;left: 83%;top: 13.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">どういたし<br/>まして、<br/>クレアンス!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 45%;width: 103px;"
},
{
"text" :"僕にも<br/>クッキー…",
"style":"font-size: 13px;color: black;background-color: white;left: 13%;top: 49.5%;"
},
{
"text" :"これはマズい、<br/>カズ!<br/>シンプルに<br/>マズい…",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 78%;"
},
{
"text" :"恐ろしい時です!<br/>もしこの<br/>恐ろしい祟りの<br/>真相を解明できねば<br/>学校を閉鎖するしか<br/>ありません!",
"style":"font-size: 16px;color: black;background-color: white;left: 56.2%;top: 45.8%;"
},
],
"http://devilscandycomic.com/comic/ch02p12": [
{
"text" :"お…お願い!<br/><span style=\"font-weight: bold;\">助けて!<br/>子供達</span>の事も<br/>考えてあげて!",
"style":"font-size: 14px;color: black;background-color: white;left: 14.3%;top: 8%;"
},
{
"text" :"<span style=\"font-weight: bold;\">軟弱者!</span>",
"style":"font-size: 50px;color: black;background-color: white;left: 60%;top: 4.2%;width: 199px;"
},
{
"text" :"<span style=\"font-weight: bold;\">喋れる<br/>の?!</span>",
"style":"font-size: 16.5px;color: black;background-color: white;left: 87.1%;top: 9.5%;"
},
{
"text" :"わ…私は、<br/>教育のプロとして、<br/>肉体を持たず<br/>実在が不確かな<br/>存在相手でも<br/>私の創設した物を<br/>放棄するわけには<br/>いかない!",
"style":"font-size: 16px;color: black;background-color: white;left: 9.5%;top: 52%;"
},
{
"text" :"でも仮に、幽霊が<br/>実在する仮定で<br/>議論するとしても。<br/>その場合、君は…<br/>つまり<span style=\"font-weight: bold;\">私達は…</span><br/>どうすれば?",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 54%;"
},
{
"text" :"スケルトン<br/>忍者先生に<br/>聞いてみましょう。<br/>スケルトン達は<br/>アンデッドでしょ?",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 57%;"
},
],
"http://devilscandycomic.com/comic/ch02p13": [
{
"text" :"彼らは<br/>自分の名を…<br/>顔を…<br/>声を…<br/>血と肉を<br/>犠牲にした",
"style":"font-size: 15px;color: black;background-color: white;left: 14.5%;top: 5%;"
},
{
"text" :"平穏な死を拒否し<br/>重要な目的を<br/>成すため<br/>留まり続ける、<br/>終わりを<br/>見るまで<br/>安息はない",
"style":"font-size: 15px;color: black;background-color: white;left: 67%;top: 6%;"
},
{
"text" :"(メモっといて、<br/>パンドラ!)",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 18.5%;transform: rotate(-13deg);"
},
{
"text" :"素晴らしい<br/>考えです、カズ!<br/>君はそれを、<br/>私はここで…<br/>偵察します",
"style":"font-size: 15px;color: black;background-color: white;left: 6.5%;top: 35.2%;"
},
{
"text" :"了解です<br/>サー!",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 35.5%;"
},
{
"text" :"軟弱者",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 37%;"
},
{
"text" :"恐れるな<br/>同僚よ。<br/>私が君とその<br/>ジューシーで<br/>蛋白質を作る<br/>肝臓を守る",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 59%;"
},
],
"http://devilscandycomic.com/comic/ch02p14": [
{
"text" :"あれ?",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 7.5%;"
},
{
"text" :"わっ!",
"style":"font-size: 20px;color: black;background-color: white;left: 88.5%;top: 24.2%;font-weight: bold;"
},
{
"text" :"妙だな",
"style":"font-size: 18px;color: black;background-color: white;left: 73.5%;top: 39.5%;height: 30px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"この翼棟<br/>には幽霊が<br/>いない",
"style":"font-size: 16px;color: black;background-color: white;left: 79.5%;top: 42%;"
},
{
"text" :"幽霊から体育館<br/>を守ってますね?<br/>この人が<br/>スケルトン<br/>忍者先生",
"style":"font-size: 14px;color: black;background-color: white;left: 66.5%;top: 53%;"
},
{
"text" :"でもそれなら<br/>外にいた方が<br/>…?",
"style":"font-size: 16px;color: black;background-color: white;left: 66%;top: 77.5%;height: 70px;"
},
],
"http://devilscandycomic.com/comic/ch02p15": [
{
"text" :"よぉ<br/>親友",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 4.5%;width: 70px;"
},
{
"text" :"ハイ カズ!<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 5%;"
},
{
"text" :"カズの<br/>彼女…",
"style":"font-size: 14px;color: black;background-color: white;left: 78.3%;top: 9.5%;"
},
{
"text" :"ねぇ<br/>皆",
"style":"font-size: 16px;color: black;background-color: white;left: 8.8%;top: 30%;"
},
{
"text" :"体育の授業は<br/>まだだったね?<br/>なんで皆<br/>そこら中で<br/>座ってるの?",
"style":"font-size: 15px;color: black;background-color: white;left: 15.8%;top: 30%;"
},
{
"text" :"神経学の授業に<br/>行こうとしたよ、<br/>けど科学棟は<br/>完全に溢れてた<br/>…奴らで",
"style":"font-size: 15px;color: black;background-color: white;left: 36.3%;top: 30.7%;"
},
{
"text" :"料理の文化化を<br/>君と受ける<br/>気だったけど、<br/>叫んで幽霊から<br/>走って逃げて<br/>…結局<br/>ここに来たわ",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 30%;"
},
{
"text" :"つまり幽霊は<br/>科学が好きで<br/>体育が嫌い?",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 61%;"
},
{
"text" :"いや、奴らは<br/>ひどく活発で<br/>皆の科学の学習を<br/>邪魔してる、<br/>きっと逆だ",
"style":"font-size: 16px;color: black;background-color: white;left: 28.5%;top: 60.5%;"
},
{
"text" :"多分奴らは<br/>科学を勉強して<br/>欲しくないんだ<br/>実在しないって<br/>バレちゃうから!",
"style":"font-size: 16px;color: black;background-color: white;left: 52%;top: 60%;"
},
{
"text" :"どう思います、<br/>スケルトン<br/>忍者先生?<br/>同じアンデッド<br/>ですよね?",
"style":"font-size: 14px;color: black;background-color: white;left: 74%;top: 60%;"
},
],
"http://devilscandycomic.com/comic/ch02p16": [
{
"text" :"お前本当に<br/>そう呼ぶの?<br/><span style=\"font-weight: bold;\">“スケルトン<br/>忍者先生”って?</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 8%;top: 5.5%;"
},
{
"text" :"何人かの子は<br/>彼は以前忍者だった<br/>かもって言ってる<br/>その…生きてた頃ね。<br/>彼は<span style=\"font-weight: bold;\">否定しない</span>し、<br/>だから…",
"style":"font-size: 14px;color: black;background-color: white;left: 55.5%;top: 5%;"
},
{
"text" :"エリオット<br/>は正しい!<br/>完全に<br/>マズい!",
"style":"font-size: 15px;color: black;background-color: white;left: 12.5%;top: 32%;z-index: 1;"
},
{
"text" :"幽霊だらけ、<br/>授業は非行、<br/>体育は皆座るし、<br/>教師は喫煙<br/>するし…",
"style":"font-size: 16px;color: black;background-color: white;left: 21.5%;top: 36%;"
},
{
"text" :"<span style=\"font-weight: bold;\">…宇宙の<br/>本質が疑わしく<br/>なって<br/>いる!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 76.6%;top: 33.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">パンドラが<br/>間違いを<br/>学んじゃう<br/>!!!</span>",
"style":"font-size: 31px;color: black;background-color: white;left: 78%;top: 49%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ここは君を連れて<br/>来たい世界じゃない!<br/>バカげた幽霊共に<br/>科学の力を見せてやる!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch02p17": [
{
"text" :"あっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 7.5%;top: 23.6%;font-weight: bold;"
},
{
"text" :"ここが<br/>科学棟…",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 11%;"
},
{
"text" :"科学は<br/>たわごとだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 10.7%;top: 45%;"
},
{
"text" :"我らは<br/>実在しないと<br/>教える<br/>だろう!",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 41%;"
},
{
"text" :"進化は<br/>ただの<br/>屁理屈だ!<br/>重力も!",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 70%;width: 87px;"
},
{
"text" :"もし世界が<br/>丸ければ、<br/>我らは皆<br/>落ちる!",
"style":"font-size: 19px;color: black;background-color: white;left: 56.2%;top: 73.5%;"
},
{
"text" :"黙れ!!<br/>科学は<br/>凄いんだ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 69%;font-weight: bold;"
},
{
"text" :"*<br/>鍵<br/>の<br/>か<br/>か<br/>っ<br/>て<br/>い<br/>な<br/>い<br/>ド<br/>ア",
"style":"font-size: 14px;color: black;background-color: white;left: 91.5%;top: 79%;"
},
],
"http://devilscandycomic.com/comic/ch02p18": [
{
"text" :"立ち<br/>去れぃ!",
"style":"font-size: 16px;color: black;background-color: white;left: 18.4%;top: 5%;"
},
{
"text" :"君の<br/>知的好奇心は<br/>ここでは歓迎<br/>されない!",
"style":"font-size: 16px;color: black;background-color: white;left: 16.7%;top: 11%;"
},
{
"text" :"運動か<br/>何かしに行け!",
"style":"font-size: 18px;color: black;background-color: white;left: 52%;top: 14.7%;"
},
{
"text" :"勉強<br/>するなよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 57%;top: 21.5%;"
},
{
"text" :"科学は<br/>理解への<br/>門だ!",
"style":"font-size: 35px;color: black;background-color: white;left: 9.5%;top: 38.5%;font-weight: bold;"
},
{
"text" :"科学は<br/>世界!<br/>科学こそ<br/>人生!",
"style":"font-size: 28px;color: black;background-color: white;left: 79%;top: 42%;font-weight: bold;"
},
{
"text" :"魔法の<br/>言葉を<br/>言ったな",
"style":"font-size: 25px;color: black;background-color: white;left: 40.4%;top: 81.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p19": [
{
"text" :"くあっ!",
"style":"font-size: 40px;color: black;background-color: white;left: 73%;top: 47.5%;font-weight: bold;width: 141px; line-height: 86px;"
},
{
"text" :"ようこそ、<br/>科学の者",
"style":"font-size: 16px;color: black;background-color: white;left: 40%;top: 61%;font-weight: bold;"
},
{
"text" :"ようこそ、<br/>科学の者",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 69%;"
},
{
"text" :"ようこそ、<br/>科学の者",
"style":"font-size: 16px;color: black;background-color: white;left: 75.3%;top: 62%;"
},
{
"text" :"ようこそ、<br/>科学の者",
"style":"font-size: 14px;color: black;background-color: white;left: 70.5%;top: 68%;"
},
],
"http://devilscandycomic.com/comic/ch02p20": [
{
"text" :"テスト合格<br/>おめでとう!<br/>“幽霊”達は<br/>君を全く<br/>阻止でき<br/>なかった",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 10.5%;"
},
{
"text" :"待って…<br/>君達は…<br/>!!",
"style":"font-size: 16px;color: black;background-color: white;left: 82.5%;top: 20%;"
},
{
"text" :"物理学の<br/>エキスパート<br/>ホレイショー<br/>・ヘックス!",
"style":"font-size: 15px;color: black;background-color: white;left: 32%;top: 26%;font-weight: bold;"
},
{
"text" :"神経学、<br/>マデュー・<br/>モーガン",
"style":"font-size: 16px;color: black;background-color: white;left: 46.2%;top: 28%;"
},
{
"text" :"マディって<br/>呼んで…<br/>呼ばなくても<br/>気にしない",
"style":"font-size: 12px;color: black;background-color: white;left: 45%;top: 35.5%;"
},
{
"text" :"化学の<br/>エキスパート<br/>ベベ・<br/>プシュミ!",
"style":"font-size: 15px;color: black;background-color: white;left: 41.5%;top: 43%;font-weight: bold;width: 101px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"愛の<br/><ruby><rb>十字軍<rp>(</rp><rt>クルセイダー</rt><rp>)</ruby>ビビ…",
"style":"font-size: 12.5px;color: black;background-color: white;left: 69%;top: 43.5%;width: 64px;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"て…天文学の<br/>エキスパート、<br/>トビー・<br/>アズラー=ザ",
"style":"font-size: 14px;color: black;background-color: white;left: 80.5%;top: 43.5%;"
},
{
"text" :"皆揃って、<br/>我ら…",
"style":"font-size: 20px;color: black;background-color: white;left: 12%;top: 68%;font-weight: bold;"
},
{
"text" :"科学<br/>クラブ!",
"style":"font-size: 23px;color: black;background-color: white;left: 80%;top: 84%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p21": [
{
"text" :"気づいていると<br/>思うが私達は<br/>リーダーを<br/>失っている",
"style":"font-size: 14px;color: black;background-color: white;left: 17%;top: 6%;"
},
{
"text" :"ジャイロ<br/>…?",
"style":"font-size: 13px;color: black;background-color: white;left: 43.5%;top: 15%;"
},
{
"text" :"エリオット<br/>が停学に!<br/><span style=\"font-weight: bold;\">あの<br/>大バカ!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 55.5%;top: 8%;"
},
{
"text" :"つまり、<br/>つるんでた<br/>わけでも<br/>ないけど…",
"style":"font-size: 14px;color: black;background-color: white;left: 66.5%;top: 10%;"
},
{
"text" :"<span style=\"font-weight: bold;\">いや、<br/>まいりました。</span><br/>ですが彼の化学へ<br/>の際限ない積極性<br/>と熱意はかけがえ<br/>ないものでして",
"style":"font-size: 13px;color: black;background-color: white;left: 77.5%;top: 7%;"
},
{
"text" :"かくかく<br/>しかじか",
"style":"font-size: 12px;color: black;background-color: white;left: 83.7%;top: 18.3%;"
},
{
"text" :"だから、<br/>部は危機に<br/>直面した",
"style":"font-size: 16px;color: black;background-color: white;left: 6.5%;top: 40%;"
},
{
"text" :"認めたくないが<br/>誰もジャイロの<br/>代わりは<br/>務まら<br/>なかった",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 45.5%;"
},
{
"text" :"だがその後、<br/>彼の傑作が<br/>我らの手に<br/>残されたと<br/>気づいた…",
"style":"font-size: 15px;color: black;background-color: white;left: 74%;top: 42.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">…彼が集めた<br/>上質なパーツ</span><br/>から入念に<br/>構成した<br/>実験成果!",
"style":"font-size: 16px;color: black;background-color: white;left: 7.5%;top: 64.5%;"
},
{
"text" :"私達が<br/>やるべきは<br/>彼の最高傑作の<br/>完成だった…",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 65%;"
},
{
"text" :"…そして<br/>部の新たなる<br/>リーダーを<br/><span style=\"font-weight: bold;\">創った!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 75.3%;top: 62.5%;width: 104px;"
},
],
"http://devilscandycomic.com/comic/ch02p22": [
{
"text" :"完璧な<br/>存在だ",
"style":"font-size: 22px;color: black;background-color: white;left: 15%;top: 9%;"
},
{
"text" :"欠けてる<br/>のは<br/>脳だけよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 17.5%;"
},
{
"text" :"仕事を<br/>邪魔されぬよう<br/>“セキュリティー<br/>システム”を<br/>有効にした",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 8%;"
},
{
"text" :"凡人共はそれを<br/>“幽霊”と呼ぶ、<br/>だが本当は、<br/>立体映像以上の<br/>何物でもない、<br/>幻覚を引き起こす<br/>聞こえない波長も<br/>組み合わせたがね",
"style":"font-size: 15px;color: black;background-color: white;left: 10%;top: 52.5%;"
},
{
"text" :"計画は<br/>人々を私達の<br/>秘密研究所から<br/>遠ざけることだ…<br/>だが別の目的も<br/>果たした",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 53%;"
},
{
"text" :"誰であれ<br/>幻覚を<br/>見抜けた者は<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 52%;"
},
{
"text" :"リーダー<br/>にする<br/>価値がある",
"style":"font-size: 16px;color: black;background-color: white;left: 63.5%;top: 59%;"
},
{
"text" :"少なくとも<br/>脳を引きずり出し<br/>私達の巨大な<br/>バイオモンスターに<br/>繋げる価値がある",
"style":"font-size: 14px;color: black;background-color: white;left: 74%;top: 54.5%;"
},
{
"text" :"もしか<br/>して…",
"style":"font-size: 16px;color: black;background-color: white;left: 78.1%;top: 89%;"
},
],
"http://devilscandycomic.com/comic/ch02p23": [
{
"text" :"今まで<br/>ずっと<br/>授業<br/>サボってた<br/>?!",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 5.5%;font-weight: bold;"
},
{
"text" :"私達は学校<br/>に行く必要<br/>ないの!",
"style":"font-size: 16px;color: black;background-color: white;left: 36.8%;top: 9%;"
},
{
"text" :"うん<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 52%;top: 10.7%;"
},
{
"text" :"私達科学の<br/>エリートは<br/>無知な大衆を<br/>支配する!",
"style":"font-size: 14px;color: black;background-color: white;left: 68%;top: 6%;"
},
{
"text" :"バカな事は<br/>奴らが苦労して<br/>やればいい…<br/>体育とか<br/>社会科とか!",
"style":"font-size: 14x;color: black;background-color: white;left: 78%;top: 6%;"
},
{
"text" :"それは<span style=\"font-weight: bold;\">逆だよ</span><br/>科学の<br/>あるべき姿と!<br/>知識は皆のものだ!<br/>無知は<br/>敵だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 12.5%;top: 38%;"
},
{
"text" :"僕は<br/><span style=\"font-weight: bold;\">決して</span>君達の<br/>計画の一部<br/>に<span style=\"font-weight: bold;\">ならない!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 66.5%;top: 36%;"
},
{
"text" :"もし僕の脳を<br/>入れたら、<br/><span style=\"font-weight: bold;\">新しい<br/>野蛮な体で、<br/>君達の顔を<br/>繰り返し<br/>蹴ってやるぞ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 75.9%;top: 40%;"
},
{
"text" :"そんな事<br/>言われると<br/>怖い",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 60%;"
},
{
"text" :"ならば私達<br/>天才の脳の一部を<br/>摘出してもいい…<br/>そして<br/>超集合脳を作る<br/>それなら少なくとも<br/>暴れたり裏切りは<br/>しないだろう",
"style":"font-size: 15px;color: black;background-color: white;left: 39%;top: 63.5%;"
},
{
"text" :"ええ、それ<br/>なんか怖い…",
"style":"font-size: 14px;color: black;background-color: white;left: 10.6%;top: 81%;"
},
{
"text" :"うん、それは<br/>投票で決める<br/>必要があるわ",
"style":"font-size: 15px;color: black;background-color: white;left: 10.6%;top: 85.5%;"
},
{
"text" :"今のところ<br/>保留ね…",
"style":"font-size: 15px;color: black;background-color: white;left: 23%;top: 87.5%;"
},
{
"text" :"詳細は<br/>後で<br/>詰めよう。<br/>今は…",
"style":"font-size: 16px;color: black;background-color: white;left: 48.5%;top: 82%;"
},
{
"text" :"…頭蓋骨を<br/>切り開いて<br/>貴重な知力を<br/>掘り出す!",
"style":"font-size: 19px;color: black;background-color: white;left: 77%;top: 60%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p24": [
{
"text" :"ま…待って!!",
"style":"font-size: 20px;color: black;background-color: white;left: 72%;top: 4.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p25": [
{
"text" :"ぐわっ!",
"style":"font-size: 35px;color: black;background-color: white;left: 10%;top: 7%;font-weight: bold;"
},
{
"text" :"君は少し<br/>違う<br/>ようだね",
"style":"font-size: 18px;color: black;background-color: white;left: 65.6%;top: 6.5%;"
},
{
"text" :"君自身が<br/>究極の存在<br/>そう<br/>なんだろ?",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 6%;"
},
{
"text" :"カズの脳が<br/>完璧な体に入れば<br/>彼は君の夫に<br/>なれるぞ!",
"style":"font-size: 16px;color: black;background-color: white;left: 36.5%;top: 36.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">優れた<br/>超脳タンク</span>より<br/>その<span style=\"font-weight: bold;\">痩せこけた<br/>脳袋</span>の方が<br/>好きとか<br/>言うなよ",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 44%;"
},
{
"text" :"そんな目的で<br/>パンドラを<br/>創ってない!",
"style":"font-size: 16px;color: black;background-color: white;left: 64%;top: 36%;font-weight: bold;"
},
{
"text" :"科学の<br/>課題で…",
"style":"font-size: 24px;color: black;background-color: white;left: 77%;top: 36%;font-weight: bold;"
},
{
"text" :"何だ?",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 71%;"
},
],
"http://devilscandycomic.com/comic/ch02p26": [
{
"text" :"君の設計哲学を<br/>ぜひ聞いて<br/>みたいよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 8.5%;"
},
{
"text" :"確かに、<br/>君の創造物は<br/>少し簡単に<br/>気が散りすぎだ<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 28%;"
},
{
"text" :"だがこの<br/>反射神経とは<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 38.5%;"
},
{
"text" :"実に<br/>不思議だ!",
"style":"font-size: 20px;color: black;background-color: white;left: 39.5%;top: 45%;"
},
],
"http://devilscandycomic.com/comic/ch02p27": [
],
"http://devilscandycomic.com/comic/ch02p28": [
{
"text" :"この頑丈な<br/>構造!",
"style":"font-size: 22px;color: black;background-color: white;left: 13%;top: 7%;"
},
{
"text" :"そのうえ<br/>創造主に忠実!",
"style":"font-size: 18px;color: black;background-color: white;left: 15%;top: 14%;"
},
{
"text" :"自己防衛<br/>ユニット<br/>かな、恐らくは?",
"style":"font-size: 16px;color: black;background-color: white;left: 76.5%;top: 25.5%;"
},
{
"text" :"いや、<br/>それにしては<br/>あまりにも<br/>感情的<br/>すぎる",
"style":"font-size: 14px;color: black;background-color: white;left: 56.5%;top: 60%;"
},
{
"text" :"<ruby><rb>君<rp>(</rp><rt>カズ</rt><rp>)</ruby>は<ruby><rb>それ<rp>(</rp><rt>パンドラ</rt><rp>)</ruby>が<br/>本物の女の子<br/>だと<span style=\"font-weight: bold;\">ほとんど</span><br/>思っていた<br/>ようだが!",
"style":"font-size: 14px;color: black;background-color: white;left: 69.5%;top: 63%;"
},
],
"http://devilscandycomic.com/comic/ch02p29": [
{
"text" :"おー、次は<br/>アレをやる気<br/>なの?",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 3%;"
},
{
"text" :"アレ<br/>やって!<br/>アレ<br/>やって!",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 3%;"
},
{
"text" :"いいよ、私は<br/>見せたくないが<br/>選択肢はない<br/>ようだね",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 38.5%;"
},
{
"text" :"君達の微弱な<br/>感覚器官では<br/>不思議と<br/>見えないだろう、<br/>だがこの部屋は<br/>数インチ単位で<br/>私の計算下だ",
"style":"font-size: 16px;color: black;background-color: white;left: 7.5%;top: 70%;"
},
{
"text" :"私の攻撃速度も<br/>コースも<br/>含めてな…<br/>だがもう少し<br/>面白いことが<br/>起こる",
"style":"font-size: 16px;color: black;background-color: white;left: 72.2%;top: 74%;"
},
],
"http://devilscandycomic.com/comic/ch02p30": [
{
"text" :"私の体の<br/>微細な振動が<br/>脳波を破壊する<br/>愉快な力を<br/>持っていると<br/>気付くだろう",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 6.5%;"
},
{
"text" :"さぁ…<br/><span style=\"font-weight: bold;\">見るがいい、<br/>物理学の<br/>力を!</span>",
"style":"font-size: 20px;color: black;background-color: white;left: 71.5%;top: 20%;"
},
{
"text" :"私が<br/>君なら<br/>動かない",
"style":"font-size: 19px;color: black;background-color: white;left: 85%;top: 73.6%;"
},
],
"http://devilscandycomic.com/comic/ch02p31": [
{
"text" :"パンドラ<br/>!!",
"style":"font-size: 33px;color: black;background-color: white;left: 52%;top: 35.5%;font-weight: bold;transform: rotate(-36deg);"
},
],
"http://devilscandycomic.com/comic/ch02p32": [
{
"text" :"まって、<br/>やめて!!",
"style":"font-size: 16px;color: black;background-color: white;left: 48.5%;top: 37.5%;font-weight: bold;"
},
{
"text" :"ぼ…僕は<br/>まだ君を<br/>元通り縫える<br/>でももう一度<br/>当たれば…",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 67.5%;"
},
{
"text" :"君は<br/>指数本失う<br/>だけじゃ<br/>済まない<br/>かも",
"style":"font-size: 16px;color: black;background-color: white;left: 24.5%;top: 72.6%;"
},
],
"http://devilscandycomic.com/comic/ch02p33": [
{
"text" :"彼女に<br/>これ以上<br/>手を出すな!",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 5.5%;font-weight: bold;"
},
{
"text" :"もし<br/>僕の脳が<br/>欲しい<br/>なら…",
"style":"font-size: 16px;color: black;background-color: white;left: 42%;top: 8%;"
},
{
"text" :"“持って<br/>行け”?",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 4.5%;"
},
{
"text" :"ええ。<br/>計画通り",
"style":"font-size: 16px;color: black;background-color: white;left: 60.5%;top: 10%;"
},
{
"text" :"少し<span style=\"font-weight: bold;\">遅い</span>わね、<br/>でも頭が完全に<br/>正しく機能<br/>してるわ",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 3.6%;"
},
{
"text" :"いやぁ。<br/>私は今日は<br/>暴力的なのは<br/>もう十分です",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 17%;"
},
{
"text" :"手早く<br/>やるよ",
"style":"font-size: 16px;color: black;background-color: white;left: 7%;top: 45%;"
},
{
"text" :"い…<br/>いや<br/>僕は…",
"style":"font-size: 14px;color: black;background-color: white;left: 26.5%;top: 45.5%;"
},
{
"text" :"僕は<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 30%;top: 50.5%;"
},
{
"text" :"準備を<br/>しろ…",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 43.5%;"
},
{
"text" :"何て言えば<br/>いいんだ?",
"style":"font-size: 22px;color: black;background-color: white;left: 4.5%;top: 61.5%;"
},
{
"text" :"彼らは<br/>言い訳なんか<br/>聞いてくれ<br/>そうもない!",
"style":"font-size: 20x;color: black;background-color: white;left: 5%;top: 70%;"
},
{
"text" :"もちろん<br/>僕は脳を<br/>失いたくない<br/>でも僕は<br/>パンドラの命に<br/>責任がある",
"style":"font-size: 15px;color: black;background-color: white;left: 37.5%;top: 63.5%;"
},
{
"text" :"これ以上彼女を<br/>傷つけさせる<br/>わけにはいかない!!",
"style":"font-size: 16px;color: black;background-color: white;left: 62.2%;top: 60.5%;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch02p34": [
{
"text" :"お願い<br/>します…",
"style":"font-size: 16px;color: black;background-color: white;left: 39.5%;top: 62%;"
},
],
"http://devilscandycomic.com/comic/ch02p35": [
],
"http://devilscandycomic.com/comic/ch02p36": [
{
"text" :"わ…わぉ…<br/>ナイス<br/>ショット!",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 37%;"
},
{
"text" :"オレは<br/>物理は<br/>大得意<br/>だからな!",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch02p37": [
{
"text" :"お前があんなに<br/><span style=\"font-weight: bold;\">早く</span>行かなけりゃ<br/>オレももっと早く<br/>着けたんだよ",
"style":"font-size: 16px;color: black;background-color: white;left: 19.5%;top: 3%;width: 136px;"
},
{
"text" :"つまり、<br/>隠し通路の発見に<br/>数分かかった、<br/>だがオレみたいな<br/>天才には…",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 6%;"
},
{
"text" :"それは後に<br/>してくれる、<br/><span style=\"font-weight: bold;\">お願い?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 8%;"
},
{
"text" :"そう<br/>だな",
"style":"font-size: 20px;color: black;background-color: white;left: 27%;top: 38%;"
},
{
"text" :"やる<br/>べきを<br/>やるか",
"style":"font-size: 16px;color: black;background-color: white;left: 34.5%;top: 37.5%;"
},
{
"text" :"誰が<br/>叩きのめ<br/>されたい?",
"style":"font-size: 20px;color: black;background-color: white;left: 10%;top: 64%;font-weight: bold;"
},
{
"text" :"<span style=\"font-size: 14px;\">はい</span><br/><span style=\"font-size: 18px;\">私</span><br/><span style=\"font-size: 20px;\">私<br/>!!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 84%;top: 55%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p38": [
{
"text" :"あっ",
"style":"font-size: 17px;color: black;background-color: white;left: 24%;top: 44%;"
},
{
"text" :"ヒドい!",
"style":"font-size: 35px;color: black;background-color: white;left: 76%;top: 68.5%;"
},
],
"http://devilscandycomic.com/comic/ch02p39": [
{
"text" :"トビーは気絶<br/>してるようだ、<br/>お嬢さん達には<br/>チャンスを<br/>やろう…",
"style":"font-size: 15px;color: black;background-color: white;left: 17.6%;top: 4%;"
},
{
"text" :"だがこの<br/>邪悪な設備には<br/><span style=\"font-weight: bold;\">消えてもらう</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 5%;"
},
{
"text" :"(気絶した)",
"style":"font-size: 16px;color: black;background-color: white;left: 64.5%;top: 3.5%;"
},
{
"text" :"ま…<br/>待って!",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch02p40": [
{
"text" :"<span style=\"font-weight: bold;\">ねぇ!</span><br/>それから<br/>離れてよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 4%;"
},
{
"text" :"パ…<br/>パンドラ?",
"style":"font-size: 15px;color: black;background-color: white;left: 83.7%;top: 8.7%;"
},
{
"text" :"…チッ",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 82.5%;"
},
],
"http://devilscandycomic.com/comic/ch02p41": [
],
"http://devilscandycomic.com/comic/ch02p42": [
{
"text" :"これで私が<br/>あんた達を<br/>逃がすと思う!?",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 7%;"
},
{
"text" :"あんた達を<br/><span style=\"font-weight: bold;\">生きて</span>帰す<br/>とでも!?",
"style":"font-size: 30px;color: black;background-color: white;left: 11.5%;top: 45%;"
},
{
"text" :"研究所ごと<br/>あんた達を<br/>一掃して<br/>やる!",
"style":"font-size: 30px;color: black;background-color: white;left: 75.5%;top: 44%;font-weight: bold;"
},
{
"text" :"ま…<br/>待て…",
"style":"font-size: 14px;color: black;background-color: white;left: 14.5%;top: 65%;width: 62px;"
},
{
"text" :"やめ…",
"style":"font-size: 15px;color: black;background-color: white;left: 17%;top: 70%;"
},
{
"text" :"この<span style=\"font-weight: bold;\">破壊</span>の<br/>ポーション<br/>で…",
"style":"font-size: 27px;color: black;background-color: white;left: 32%;top: 65%;"
},
{
"text" :"この愛の<br/>ポーション<br/>で…",
"style":"font-size: 16px;color: black;background-color: white;left: 36.5%;top: 76.5%;"
},
{
"text" :"空高く<br/>ブッ飛ば<br/>してやる!",
"style":"font-size: 27px;color: black;background-color: white;left: 80%;top: 64%;font-weight: bold;"
},
{
"text" :"私に<br/>惚れさせて<br/>あげる、ニモ!",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 76.2%;"
},
],
"http://devilscandycomic.com/comic/ch02p43": [
{
"text" :"ビビ?!<br/>何やって<br/>…",
"style":"font-size: 17px;color: black;background-color: white;left: 51%;top: 14.5%;font-weight: bold;"
},
{
"text" :"隠れろ<br/>!!",
"style":"font-size: 22px;color: black;background-color: white;left: 82.8%;top: 23%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch02p44": [
{
"text" :"い…一体何が<br/>起きたんだ?!",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 41.5%;"
},
{
"text" :"科学<br/>クラブが<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 59%;"
},
{
"text" :"幽霊を<br/>作った。<br/>",
"style":"font-size: 16px;color: black;background-color: white;left: 43.5%;top: 57.8%;z-index: 1;"
},
{
"text" :"…それに<br/>爆発もだぜ",
"style":"font-size: 13px;color: black;background-color: white;left: 43%;top: 61.4%;transform: rotate(10deg);"
},
],
"http://devilscandycomic.com/comic/ch02p45": [
{
"text" :"パンドラ<br/>…",
"style":"font-size: 18px;color: black;background-color: white;left: 14%;top: 50%;"
},
{
"text" :"今日は何を<br/>学んだ?",
"style":"font-size: 18px;color: black;background-color: white;left: 73%;top: 51.5%;"
},
{
"text" :"軟弱者",
"style":"font-size: 22px;color: black;background-color: white;left: 50%;top: 66%;"
},
{
"text" :"幽霊",
"style":"font-size: 27px;color: black;background-color: white;left: 60%;top: 66.5%;"
},
{
"text" :"血",
"style":"font-size: 42px;color: black;background-color: white;left: 69.5%;top: 67.8%;width: 45px;"
},
{
"text" :"チャプター2:完",
"style":"font-size: 23.5px;color: black;background-color: white;left: 69%;top: 95.5%;font-weight: bold;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch02p46": [
{
"text" :"チャプター 2 エクストラ!",
"style":"font-size: 27px;color: white;background-color: black;left: 10%;top: 4%;"
},
{
"text" :"ジャイロ?",
"style":"font-size: 14px;color: black;background-color: white;left: 80.5%;top: 69%;"
},
],
"http://devilscandycomic.com/comic/ch02p47": [
{
"text" :"ジャイロ!",
"style":"font-size: 15px;color: black;background-color: white;left: 22%;top: 10%;"
},
{
"text" :"泣いて<br/>たの?",
"style":"font-size: 21px;color: black;background-color: white;left: 57%;top: 10%;"
},
{
"text" :"かすり傷が<br/>まだ<br/>痛むの?",
"style":"font-size: 14px;color: black;background-color: white;left: 70.5%;top: 12.5%;"
},
{
"text" :"まだ<br/>じっけんは<br/>続けるん<br/>だよね?",
"style":"font-size: 15px;color: black;background-color: white;left: 52%;top: 38%;"
},
{
"text" :"<span style=\"font-weight: bold;\">そうだぁぁぁ、</span><br/>もちろんだ、<br/>愛する妹達よ!<br/>当然、新傑作の<br/>考えが<span style=\"font-weight: bold;\">すでに</span><br/>あるぞ!!",
"style":"font-size: 15px;color: black;background-color: white;left: 14%;top: 60%;"
},
{
"text" :"静かにして<br/>くれないかな?!<br/>頭の傷に<br/>障る!!",
"style":"font-size: 16px;color: black;background-color: white;left: 59.5%;top: 61%;font-weight: bold;"
},
{
"text" :"チャプター 2 エクストラ:完",
"style":"font-size: 16px;color: black;background-color: white;left: 66%;top: 92.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p00": [
],
"http://devilscandycomic.com/comic/ch03p01": [
{
"text" :"放蕩…",
"style":"font-size: 35px;color: black;background-color: white;left: 27%;top: 22%;font-weight: bold;"
},
{
"text" :"破壊…",
"style":"font-size: 35px;color: black;background-color: white;left: 49.5%;top: 27%;font-weight: bold;"
},
{
"text" :"絶望…",
"style":"font-size: 35px;color: black;background-color: white;left: 58%;top: 34%;font-weight: bold;"
},
{
"text" :"強硬な<span style=\"font-weight: bold;\">支配</span>は<br/>生徒達に<br/><span style=\"font-weight: bold;\">無駄な</span>模索を<br/>強います",
"style":"font-size: 16px;color: black;background-color: white;left: 77.8%;top: 53.3%;"
},
],
"http://devilscandycomic.com/comic/ch03p02": [
{
"text" :"皆の涙を拭い<br/>皆の<span style=\"font-weight: bold;\">輝く光</span>に<br/>なりま<br/>せんか?",
"style":"font-size: 16px;color: black;background-color: white;left: 6.7%;top: 4%;"
},
{
"text" :"<span style=\"font-weight: bold;\">全力で</span><br/>腐敗を<br/>叩き潰し<br/>ませんか?",
"style":"font-size: 16px;color: black;background-color: white;left: 34%;top: 3%;"
},
{
"text" :"…真剣に、<br/>生徒会へ参加を。<br/>助けが必要です<br/>履歴書にも<br/>いいですよ",
"style":"font-size: 12px;color: black;background-color: white;left: 51%;top: 21%;"
},
{
"text" :"やります<br/>!!",
"style":"font-size: 16px;color: black;background-color: white;left: 67.5%;top: 5%;font-weight: bold;"
},
{
"text" :"よせ!",
"style":"font-size: 16px;color: black;background-color: white;left: 82.5%;top: 27%;font-weight: bold;"
},
{
"text" :"お前はもう<br/>13もクラブに<br/>サイン<br/>しただろ!",
"style":"font-size: 16px;color: black;background-color: white;left: 4.5%;top: 35%;font-weight: bold;"
},
{
"text" :"ノーカンだよ!<br/>君が僕の名前<br/>全部リストから<br/>消したろ!",
"style":"font-size: 15px;color: black;background-color: white;left: 23.5%;top: 37%;"
},
{
"text" :"<span style=\"font-weight: bold;\">当然だ!</span>簡単に<br/>影響されすぎる!<br/><span style=\"font-weight: bold;\">“重量挙げ部”</span><br/>があってると<br/>思うか?",
"style":"font-size: 16px;color: black;background-color: white;left: 45.3%;top: 34%;"
},
{
"text" :"もちろんさ!<br/>重量挙げを<br/>成し遂げる血が<br/>全身に流れてるさ<br/><span style=\"font-weight: bold;\">今はね</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 73%;top: 35%;"
},
{
"text" :"学校は最近<br/>高額な事故が<br/>多いからね、<br/><span style=\"font-weight: bold;\">バイオモンスター</span><br/>とか<span style=\"font-weight: bold;\">爆発</span>とか",
"style":"font-size: 15px;color: black;background-color: white;left: 8%;top: 68%;z-index: 1;"
},
{
"text" :"学園支援団体との<br/>団結や募金活動で<br/>出来る限りの<br/>学校支援は<br/>生徒の義務だよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 77%;"
},
{
"text" :"何かのクソ文の<br/>受け売りか?<br/>その妙な<br/>話し方が自然<br/>なのか?",
"style":"font-size: 16px;color: black;background-color: white;left: 64%;top: 72%;"
},
],
"http://devilscandycomic.com/comic/ch03p03": [
{
"text" :"笑いたければ<br/>どうぞ、ニモ、<br/><span style=\"font-weight: bold;\">でも君が<br/>クイズ部に<br/>いた頃のこと<br/>覚えてるよ</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 32.4%;top: 2%;"
},
{
"text" :"君が<br/><span style=\"font-weight: bold;\">追放<br/>される<br/>前ね…</span>",
"style":"font-size: 16px;color: black;background-color: #c1c1c1;left: 38.9%;top: 14%;width: 57px;height:94px;"
},
{
"text" :"あの無知共は<br/>オレをズル呼ばわり<br/>しやがったんだよ<br/>オレが百科事典並の<br/>知識を持ってるのも<br/>見抜けなかった!",
"style":"font-size: 17px;color: black;background-color: white;left: 51%;top: 4.5%;font-weight: bold;"
},
{
"text" :"それで<br/>僕の話し方<br/>いびる?",
"style":"font-size: 16px;color: black;background-color: white;left: 50.5%;top: 19%;"
},
{
"text" :"部が無い奴の<br/>話といえば、<br/>パンドラは<br/>どうする?",
"style":"font-size: 16px;color: black;background-color: white;left: 10.5%;top: 33.7%;"
},
{
"text" :"エッグスクラム<br/>がよさそうだ、<br/><span style=\"font-weight: bold;\">お淑やかだし</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 34.5%;"
},
{
"text" :"おいおい、<br/>冗談だろ…",
"style":"font-size: 16px;color: black;background-color: white;left: 65.8%;top: 50%;"
},
{
"text" :"あっ、<br/>やぁ<br/>ヒトミ",
"style":"font-size: 14px;color: black;background-color: white;left: 10.1%;top: 60%;"
},
{
"text" :"君は<br/>ファッ<br/>ション<br/>部?",
"style":"font-size: 14px;color: black;background-color: white;left: 17.3%;top: 62.2%;"
},
{
"text" :"い…<br/>いえ…",
"style":"font-size: 14px;color: black;background-color: white;left: 29.2%;top: 65%;"
},
{
"text" :"どうして?<br/>裁縫得意で<br/>いつも<br/>素敵な服<br/>なのに",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 61.2%;"
},
{
"text" :"そ…<br/>そう?",
"style":"font-size: 16px;color: black;background-color: white;left: 64%;top: 61.5%;font-weight: bold;"
},
{
"text" :"君の<br/>ため<br/>よ…",
"style":"font-size: 14px;color: black;background-color: white;left: 69.9%;top: 64.5%;"
},
{
"text" :"あ…あたし<br/>部長と仲良く<br/>できなさ<br/>そうで",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 80.3%;"
},
{
"text" :"彼女…",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 64.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p04": [
{
"text" :"誰が<br/>私の話を<br/>してるの?<br/>全部聞き<br/>たいわね",
"style":"font-size: 14px;color: black;background-color: white;left: 25%;top: 3.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">誰が<br/>頼んだ?</span><br/>お黙り。<br/>何が<br/>わかる?",
"style":"font-size: 14px;color: black;background-color: white;left: 35.1%;top: 5.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">こんにちは~</span><br/>ヒトミ",
"style":"font-size: 16px;color: black;background-color: white;left: 48.5%;top: 8%;"
},
{
"text" :"お友達と<br/>浮浪児部<br/>始める気?",
"style":"font-size: 16px;color: black;background-color: white;left: 76.8%;top: 9%;"
},
{
"text" :"ごめんね、<br/>失礼ね。<br/><span style=\"font-weight: bold;\"><ruby><rb>下水道<rp>(</rp><rt>SEWER</rt><rp>)</ruby>部</span><br/>よね",
"style":"font-size: 16px;color: black;background-color: white;left: 21.8%;top: 35.5%;"
},
{
"text" :"あんたは<br/><ruby style=\"font-weight: bold;\"><rb>裁縫師<rp>(</rp><rt>SEWER</rt><rp>)</ruby></span><br/>だものねぇ",
"style":"font-size: 16px;color: black;background-color: white;left: 43.5%;top: 36%;"
},
{
"text" :"そうよね<br/><span style=\"font-weight: bold;\">皆?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 57.5%;top: 36.5%;"
},
{
"text" :"ところで、<br/>私のモデルの<br/>ラビ知らない?<br/>彼は今週末の<br/>ショーの<br/>スターよ",
"style":"font-size: 14px;color: black;background-color: white;left: 26.5%;top: 58%;"
},
],
"http://devilscandycomic.com/comic/ch03p05": [
{
"text" :"誰が<br/>オレの話を<br/>してるの?<br/>全部聞き<br/>たいね!",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 3.5%;"
},
{
"text" :"君は超<br/>素敵だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 44.5%;top: 7%;"
},
{
"text" :"君は<br/>ダメ!<br/>君は<br/>ダメ!",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 6%;"
},
{
"text" :"おっと、<br/>めまいが",
"style":"font-size: 15px;color: black;background-color: white;left: 64.5%;top: 8%;"
},
{
"text" :"哀れな<br/>ヒトミを<br/>いじめるなよ<br/>シルキー嬢",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 54.7%;"
},
{
"text" :"女の子は<br/>皆お姫様<br/>だろ",
"style":"font-size: 16px;color: black;background-color: white;left: 24.6%;top: 56.5%;"
},
{
"text" :"彼女は<br/><span style=\"font-weight: bold;\">ゴミの</span><br/>お姫様<br/>その<br/>友達は…",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 53.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">僕を<br/>真っ二つに<br/>裂くかも<br/>それでも僕の</span><br/>お姫様",
"style":"font-size: 16px;color: black;background-color: white;left: 84.5%;top: 54%;"
},
],
"http://devilscandycomic.com/comic/ch03p06": [
{
"text" :"ラビ、十分よ<br/>君の話は誰も<br/>聞きたくない",
"style":"font-size: 16px;color: black;background-color: white;left: 3.5%;top: 2.5%;"
},
{
"text" :"ただ静かにして<br/>腰を突き出して<br/>なさい、OK?",
"style":"font-size: 16px;color: black;background-color: white;left: 3%;top: 9%;"
},
{
"text" :"こう?<br/>見てる?<br/><span style=\"font-weight: bold;\">見てる?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 34.2%;top: 4%;"
},
{
"text" :"とにかく、<br/>私は君達の<br/>悪臭がうつる<br/>前に行くわ",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 2.5%;"
},
{
"text" :"おい!",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 13%;font-weight: bold;"
},
{
"text" :"君達の劣等さを<br/>学びたきゃ、<br/>ファッション<br/>ショーで私の<br/>傑作をご覧。<br/><span style=\"font-weight: bold;\">バイバイ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 18%;"
},
{
"text" :"ほ…<br/>本当に<br/>失礼な<br/>奴らだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 34.3%;"
},
{
"text" :"ああ、オレ達<br/>臭くねぇよ、<br/>オレ達…",
"style":"font-size: 14px;color: black;background-color: white;left: 31%;top: 33.2%;"
},
{
"text" :"<span style=\"font-weight: bold;\">あぐっ!</span><br/>オレ達<span style=\"font-weight: bold;\">超</span><br/>臭いぞ!",
"style":"font-size: 16px;color: black;background-color: white;left: 51%;top: 34%;"
},
{
"text" :"何<span style=\"font-weight: bold;\">だよ</span><br/>これ<br/>!?",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 36%;"
},
{
"text" :"<span style=\"font-weight: bold;\">お前なぁぁあ!</span><br/>パンドラを<br/>作ってから<br/>着替えさせて<br/>ないのかよ!?",
"style":"font-size: 16px;color: black;background-color: white;left: 7.8%;top: 63.5%;"
},
{
"text" :"簡単だと思う?!<br/>今は生きてる!!<br/>全然勝手が<br/>違うさ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 40%;top: 63.5%;"
},
{
"text" :"彼女お風呂<br/>に入れるの<br/>怖いし",
"style":"font-size: 16px;color: black;background-color: white;left: 81.5%;top: 63%;"
},
{
"text" :"乱暴<br/>だからで、<br/>水に溶ける<br/>とかでは…",
"style":"font-size: 14px;color: black;background-color: white;left: 82.9%;top: 69.5%;"
},
{
"text" :"待って!",
"style":"font-size: 16px;color: black;background-color: white;left: 82.7%;top: 85.7%;"
},
],
"http://devilscandycomic.com/comic/ch03p07": [
{
"text" :"パンドラは<br/>服が必要…",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 5%;"
},
{
"text" :"ヒトミは<br/>ショーモデル<br/>が必要…",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 10%;"
},
{
"text" :"…あたしが?!",
"style":"font-size: 13px;color: black;background-color: white;left: 15.5%;top: 16%;transform: rotate(-10deg);"
},
{
"text" :"完璧!",
"style":"font-size: 32px;color: black;background-color: white;left: 37%;top: 6%;"
},
{
"text" :"お前の<br/>“完璧!”の<br/>定義かなり<br/>緩いな",
"style":"font-size: 15px;color: black;background-color: white;left: 53.5%;top: 19.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">無理。</span><br/>あたし<br/>出れない",
"style":"font-size: 15px;color: black;background-color: white;left: 67.7%;top: 6.2%;"
},
{
"text" :"君なら<br/>できる!",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 6.5%;"
},
{
"text" :"いじめっ子達に<br/>暴力なしの対決で<br/>誰がボスか示す<br/>絶好の機会だ!",
"style":"font-size: 15.1px;color: black;background-color: white;left: 10%;top: 35%;"
},
{
"text" :"こんな状況<br/>滅多に<br/>ないよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 46%;"
},
{
"text" :"それに、君は<br/>世界一裁縫が<br/>上手いって事実<br/>僕は知ってる!",
"style":"font-size: 15.1px;color: black;background-color: white;left: 61%;top: 33.5%;"
},
{
"text" :"え…えぇ<br/>そんな<br/><span style=\"font-weight: bold;\">事実</span>知ら<br/>ないわ",
"style":"font-size: 14px;color: black;background-color: white;left: 87.5%;top: 50.5%;"
},
{
"text" :"ヒトミ…<br/>君は<span style=\"font-weight: bold;\">星だ</span>",
"style":"font-size: 23px;color: black;background-color: white;left: 25%;top: 62%;"
},
{
"text" :"君の光は<br/>まだ届いてない、<br/>でも輝く機会が<br/>なかっただけだ",
"style":"font-size: 16px;color: black;background-color: white;left: 55.6%;top: 61%;"
},
{
"text" :"僕は皆に君の<br/>素晴らしさを<br/>知って欲しい",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 71%;"
},
{
"text" :"僕は<span style=\"font-weight: bold;\">君に</span><br/>君自身の<br/>素晴らしさを<br/>知って欲しい",
"style":"font-size: 14px;color: black;background-color: white;left: 76.9%;top: 61%;"
},
],
"http://devilscandycomic.com/comic/ch03p08": [
{
"text" :"やります",
"style":"font-size: 11px;color: black;background-color: white;left: 7.4%;top: 7.3%;"
},
{
"text" :"やります",
"style":"font-size: 16px;color: black;background-color: white;left: 21%;top: 7%;"
},
{
"text" :"やります!",
"style":"font-size: 22px;color: black;background-color: white;left: 35%;top: 6.5%;font-weight: bold;"
},
{
"text" :"ファッション<br/>ショーは<br/>明日の夕方よ",
"style":"font-size: 16px;color: black;background-color: white;left: 75.5%;top: 45%;"
},
{
"text" :"パンドラ!",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 59%;"
},
{
"text" :"あたしの家で…<br/>今晩。5時に<br/>徹底的に採寸!<br/>徹夜よ!",
"style":"font-size: 16px;color: black;background-color: white;left: 27.5%;top: 58%;"
},
{
"text" :"パンドラは<br/>…シャイで。<br/>僕も一緒<br/>だよ?",
"style":"font-size: 14px;color: black;background-color: white;left: 72%;top: 58%;"
},
],
"http://devilscandycomic.com/comic/ch03p09": [
{
"text" :"カズが<br/><span style=\"font-weight: bold;\">あたしの</span><br/>家に!?",
"style":"font-size: 25px;color: black;background-color: white;left: 73%;top: 11%;"
},
{
"text" :"おめかし<br/>して来て?",
"style":"font-size: 16px;color: black;background-color: white;left: 36.6%;top: 28.5%;font-weight: bold;"
},
{
"text" :"了解!",
"style":"font-size: 16px;color: black;background-color: white;left: 66.5%;top: 28.5%;"
},
{
"text" :"僕のセンス<br/>悪いと<br/>思ってるな…",
"style":"font-size: 16px;color: black;background-color: white;left: 11.7%;top: 60.5%;"
},
{
"text" :"暴走列車は<br/>止まらねぇ。<br/>オレは退散<br/>するぜ",
"style":"font-size: 14px;color: black;background-color: white;left: 32.5%;top: 61%;"
},
],
"http://devilscandycomic.com/comic/ch03p10": [
{
"text" :"パンドラ、<br/>君は…<br/>なるべく<br/><span style=\"font-weight: bold;\">普通にね?",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 43.5%;"
},
{
"text" :"悪い印象を<br/>与えたく<br/>ない",
"style":"font-size: 16px;color: black;background-color: white;left: 18.5%;top: 49.5%;"
},
{
"text" :"ヒトミが<br/>君を助けて<br/>くれるから…",
"style":"font-size: 16px;color: black;background-color: white;left: 57.2%;top: 55.5%;"
},
{
"text" :"そんなに<br/>掻かない<br/>で…",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 55.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p11": [
{
"text" :"やぁ、<br/>カズ!",
"style":"font-size: 30px;color: black;background-color: white;left: 8.5%;top: 5.5%;font-weight: bold;"
},
{
"text" :"あの…<br/>今晩は!",
"style":"font-size: 16px;color: black;background-color: white;left: 52.5%;top: 8%;"
},
{
"text" :"アハハ<br/>ハハ…",
"style":"font-size: 25px;color: black;background-color: white;left: 67.6%;top: 5%;font-weight: bold;"
},
{
"text" :"会えて<br/>嬉しいよ!<br/>いつ以来だ?",
"style":"font-size: 20px;color: black;background-color: white;left: 77.6%;top: 6.2%;font-weight: bold;"
},
{
"text" :"お…<br/>おひさし<br/>ぶり?",
"style":"font-size: 14px;color: black;background-color: white;left: 65%;top: 44%;"
},
{
"text" :"人生で一度も<br/>会ったこと<br/>ないよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 79.5%;top: 44%;font-weight: bold;"
},
{
"text" :"パパ、<br/>玄関を<br/>塞がない!",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 55%;"
},
{
"text" :"ごめんな<br/>さいね…",
"style":"font-size: 14px;color: black;background-color: white;left: 21%;top: 85.2%;"
},
{
"text" :"上がって<br/>カズ、<br/>パンドラ。<br/>夕食が<br/>できてるわ",
"style":"font-size: 14px;color: black;background-color: white;left: 82%;top: 58.5%;"
},
{
"text" :"夕食は<br/>何も聞いて<br/>ないな…",
"style":"font-size: 14px;color: black;background-color: white;left: 85.5%;top: 76.5%;width: 84px;"
},
],
"http://devilscandycomic.com/comic/ch03p12": [
{
"text" :"ヒトミの<br/>お客様は<br/>めずら<br/>しいわね",
"style":"font-size: 15px;color: black;background-color: white;left: 7.4%;top: 4.5%;"
},
{
"text" :"君のことは<br/>よく聞くわ、<br/>カズ、でも<br/>お友達は誰?",
"style":"font-size: 14px;color: black;background-color: white;left: 15.5%;top: 7.5%;"
},
{
"text" :"えっと<br/>その…",
"style":"font-size: 14px;color: black;background-color: white;left: 30%;top: 11.5%;"
},
{
"text" :"この女<br/>ケツ<br/>臭い",
"style":"font-size: 16px;color: black;background-color: white;left: 39.5%;top: 6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">うげっ!</span><br/>ダンカン<br/>夕食会よ<br/>行儀よくして",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 8%;"
},
{
"text" :"失礼、<span style=\"font-weight: bold;\">殿下。</span><br/><span style=\"font-weight: bold;\">ウンコ王国の<br/>クソ女王</span>の前と<br/>気づきません<br/>でした",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 34.5%;"
},
{
"text" :"ダンカン、<br/>私は夕食の時に<br/>トイレの話は<br/>何て言った?",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 53%;"
},
{
"text" :"もし私が<br/>一つ目<br/>どころか<br/>百目なら、<br/>あきれて<span style=\"font-weight: bold;\">全部の<br/>目を</span>回すわ",
"style":"font-size: 14px;color: black;background-color: white;left: 22%;top: 56.5%;"
},
{
"text" :"ううう…",
"style":"font-size: 15px;color: black;background-color: white;left: 25%;top: 68.5%;"
},
{
"text" :"テレビは好きかい、カズ?<br/>もちろん観ていいぞ。<br/>子供は皆テレビ好きさ。<br/>心配いらない、<br/>俺達は夕食時にちょっと<br/>テレビも観れない程<br/>気取っちゃいないさ!",
"style":"font-size: 16.2px;color: black;background-color: white;left: 37%;top: 52%;font-weight: bold;width: 205px;"
},
{
"text" :"魅力的な<br/><span style=\"font-weight: bold;\">ドクター<br/>エース</span>も<br/>放送中ね",
"style":"font-size: 14px;color: black;background-color: white;left: 65.2%;top: 52.4%;"
},
{
"text" :"ハハハ!<br/>俺の何が奴より<br/>足りないんだ?",
"style":"font-size: 18px;color: black;background-color: white;left: 71%;top: 73.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p13": [
{
"text" :"今週の、<br/><span style=\"font-weight: bold;\">ドクター エース</span>と<br/><span style=\"font-weight: bold;\">ナース クィーニー</span><br/>は人里離れた部族<br/>をゴブリン痘から<br/>救うため危険な<br/>白骨砂漠を旅する",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 7%;"
},
{
"text" :"白骨砂漠、<br/>アベナス",
"style":"font-size: 16px;color: black;background-color: white;left: 30%;top: 8.5%;width: 139px;border:solid 1px;"
},
{
"text" :"どう<br/>ですか、<br/>ドクター?",
"style":"font-size: 14px;color: black;background-color: white;left: 53.5%;top: 9.5%;"
},
{
"text" :"私が<br/>来る前は<br/>酷かった",
"style":"font-size: 16px;color: black;background-color: white;left: 80.6%;top: 9%;"
},
{
"text" :"子供の<br/>致死率は<br/>666%…<br/>世帯毎にだ",
"style":"font-size: 17px;color: black;background-color: white;left: 11.5%;top: 39%;"
},
{
"text" :"彼らは<br/>全て棒と泥で<br/>治そうとする<br/>それで上手く<br/>いかない",
"style":"font-size: 14px;color: black;background-color: white;left: 23%;top: 40%;"
},
{
"text" :"だから<br/>得意技を<br/>持ってきたわ。<br/>最良のお薬は…",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 38%;"
},
{
"text" :"そして<br/>2番目に良い<br/>お薬は…",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 56%;"
},
{
"text" :"お薬!",
"style":"font-size: 30px;color: black;background-color: white;left: 73%;top: 72%;width: 136px;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p14": [
{
"text" :"言うこと<br/>なしだ!",
"style":"font-size: 20px;color: black;background-color: white;left: 16%;top: 14%;"
},
{
"text" :"子供達を<br/>愛してる!",
"style":"font-size: 20px;color: black;background-color: white;left: 75%;top: 15%;"
},
{
"text" :"次回",
"style":"font-size: 14.6px;color: black;background-color: white;left: 58.5%;top: 43.3%;"
},
{
"text" :"沼流感<br/>治療!",
"style":"font-size: 12px;color: black;background-color: white;left: 67%;top: 43%;"
},
{
"text" :"カズ?<br/>大丈夫?<br/>食物悪かった?<br/>食べなくても<br/>いいのよ…",
"style":"font-size: 16px;color: black;background-color: white;left: 42.5%;top: 60%;"
},
{
"text" :"いやぁ、<br/>バカな<br/>番組だぜ",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 73.5%;width: 67px;"
},
{
"text" :"ダンカン!<br/>Dr.エースは<br/>偉大な人よ!",
"style":"font-size: 14px;color: black;background-color: white;left: 53.5%;top: 74%;"
},
{
"text" :"Dr.エース<br/>なんか<br/>ケツだ",
"style":"font-size: 16px;color: black;background-color: white;left: 66.5%;top: 73.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p15": [
{
"text" :"下品な<br/>野蛮人<br/>みたいに<br/>しないで!!",
"style":"font-size: 21px;color: black;background-color: white;left: 35.5%;top: 3%;font-weight: bold;"
},
{
"text" :"家族皆<br/>クソだ!",
"style":"font-size: 20px;color: black;background-color: white;left: 55%;top: 5.5%;width: 149px;font-weight: bold;"
},
{
"text" :"また<br/>か…",
"style":"font-size: 14px;color: black;background-color: white;left: 67.5%;top: 13%;"
},
{
"text" :"(後ろの会話:)フェリシティ、ダーリン、落ち着いて",
"style":"font-size: 16px;color: black;left: 9%;top: 45.8%;"
},
{
"text" :"引っ込んでて、パパ!",
"style":"font-size: 16px;color: black;left: 60%;top: 45.8%;"
},
{
"text" :"大丈夫よ、<br/>カズ、<br/>いきましょ",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 48%;"
},
{
"text" :"え?",
"style":"font-size: 16px;color: black;background-color: white;left: 81.5%;top: 60%;"
},
{
"text" :"何でバカげたTV番組観に戻らないんだ?",
"style":"font-size: 16px;color: black;left: 7%;top: 92%;"
},
{
"text" :"いくわよ<br/>パンドラ",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 71%;"
},
{
"text" :"エリアル!!お父さんを<br/>置きなさい!<br/>…食卓割るわよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 45%;top: 92%;"
},
{
"text" :"食卓なんて屁だ!!<br/>お前に屁を…",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 92%;"
},
],
"http://devilscandycomic.com/comic/ch03p16": [
{
"text" :"ごめんね<br/>ただ…<br/>僕は…",
"style":"font-size: 14px;color: black;background-color: white;left: 40%;top: 6.2%;"
},
{
"text" :"話さなくて<br/>いいわ",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 29%;height: 53px;"
},
{
"text" :"あたし何<br/>考えてるの、<br/>部屋に<br/>引きずって<br/>来るなんて?",
"style":"font-size: 14px;color: black;background-color: white;left: 7.5%;top: 47%;"
},
{
"text" :"一瞬で全部<br/>切り上げ<br/>ちゃって…",
"style":"font-size: 14px;color: black;background-color: white;left: 13%;top: 55.2%;"
},
{
"text" :"忘れて。<br/>全部<br/>やめましょ",
"style":"font-size: 14px;color: black;background-color: white;left: 43%;top: 48.5%;"
},
{
"text" :"えっ?",
"style":"font-size: 16px;color: black;background-color: white;left: 49%;top: 58%;"
},
{
"text" :"い…いや!<br/>大丈夫さ!<br/>君の部屋<br/>見てみたいし",
"style":"font-size: 16px;color: black;background-color: white;left: 6.5%;top: 66%;"
},
{
"text" :"…外で待つん<br/>じゃなくてさ…<br/>何か妙だけど",
"style":"font-size: 14px;color: black;background-color: white;left: 8%;top: 74%;"
},
{
"text" :"あ…あなたが<br/><span style=\"font-weight: bold;\">どう</span>思うかしら?<br/>変だし。家族しか<br/>見たことないし",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 65.5%;"
},
{
"text" :"ち…<br/>ちょっと!",
"style":"font-size: 14px;color: black;background-color: white;left: 63%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch03p17": [
],
"http://devilscandycomic.com/comic/ch03p18": [
{
"text" :"嫌いよね?<br/>超気味悪い<br/>でしょ…",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 5%;"
},
{
"text" :"まるで<br/>魔法だ!",
"style":"font-size: 19px;color: black;background-color: white;left: 38.5%;top: 4.5%;"
},
{
"text" :"君みたいだ、<br/>ヒトミ!<br/>ふわふわで<br/>キラキラして<br/>かわいくて…<br/>そして…",
"style":"font-size: 14px;color: black;background-color: white;left: 67%;top: 5%;"
},
{
"text" :"温かい",
"style":"font-size: 25px;color: black;background-color: white;left: 76.5%;top: 42%;"
},
{
"text" :"カズ…",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 70%;"
},
],
"http://devilscandycomic.com/comic/ch03p19": [
{
"text" :"え…えっと<br/>そうね。<br/>巻き尺は<br/>どこかしら?",
"style":"font-size: 15px;color: black;background-color: white;left: 25%;top: 3.5%;"
},
{
"text" :"あたし<br/>お泊まり会<br/>初めてだわ",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 5%;"
},
{
"text" :"あたし友達<br/>いなかった<br/>から",
"style":"font-size: 14px;color: black;background-color: white;left: 69%;top: 8.5%;"
},
{
"text" :"“お泊まり<br/>会”?",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 5.3%;"
},
{
"text" :"きっと<br/>楽しいわよ<br/>パンドラ?",
"style":"font-size: 16px;color: black;background-color: white;left: 39.5%;top: 38%;"
},
{
"text" :"な…なるほど<br/>“徹夜”って<br/>そういう<br/>意味…",
"style":"font-size: 16px;color: black;background-color: white;left: 80.5%;top: 39.5%;"
},
{
"text" :"知らな<br/>かったから<br/>パンドラは<br/>歯ブラシも何も<br/>持ってなくて…",
"style":"font-size: 14px;color: black;background-color: white;left: 20%;top: 64%;"
},
{
"text" :"それで<br/>彼女は<br/>まだ…",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 69.7%;"
},
],
"http://devilscandycomic.com/comic/ch03p20": [
{
"text" :"OK…",
"style":"font-size: 20px;color: black;background-color: white;left: 9%;top: 7%;"
},
{
"text" :"これまで<br/>ずっと一緒<br/>だったよね、<br/>パンドラ…",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 5%;"
},
{
"text" :"でも<br/>僕と同じ位<br/>ヒトミを<br/>信じられるだろ",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 7.5%;"
},
{
"text" :"彼女はきっと<br/>君に素晴らしい<br/>服を作れる、<br/>それで臭わなく<br/>なるだろうし…",
"style":"font-size: 16px;color: black;background-color: white;left: 40%;top: 41.5%;"
},
{
"text" :"本の題:気弱な男達 チェスをプレイする 季刊",
"style":"font-size: 16px;color: black;left: 50%;top: 38.5%;"
},
{
"text" :"繊細な花達",
"style":"font-size: 16px;color: black;left: 35%;top: 66%;"
},
],
"http://devilscandycomic.com/comic/ch03p21": [
{
"text" :"あれ?<br/>何の音だろ?",
"style":"font-size: 16px;color: black;background-color: white;left: 38.5%;top: 8.7%;"
},
{
"text" :"ね…ね…ねぇ<br/>ヒトミ、<br/>君すごい<br/>汗だけど、<br/>大丈夫?",
"style":"font-size: 15px;color: black;background-color: white;left: 14%;top: 46.5%;"
},
{
"text" :"あらやだ!<br/>確かに<br/>蒸し暑いわ!<br/>窓開けて<br/>くれる???",
"style":"font-size: 22px;color: black;background-color: white;left: 79.1%;top: 39%;font-weight: bold;"
},
{
"text" :"あー…<br/>うん…",
"style":"font-size: 16px;color: black;background-color: white;left: 17.7%;top: 63.8%;"
},
{
"text" :"さよならカズ明日の<br/>ファッションショーで<br/>会おうね!!!",
"style":"font-size: 23.1px;color: black;background-color: white;left: 69.1%;top: 61.8%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p22": [
{
"text" :"タスケテ",
"style":"font-size: 15px;color: black;left: 75%;top: 37.8%;border-bottom: solid 1px black;"
},
{
"text" :"見てよ!<br/>パンドラは<br/>もう綴りを<br/>覚えてる!",
"style":"font-size: 16px;color: black;background-color: white;left: 16.5%;top: 41.2%;"
},
{
"text" :"さぁ、<br/>お風呂は<br/>どう…?",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 58%;"
},
],
"http://devilscandycomic.com/comic/ch03p23": [
{
"text" :"うん、<br/>そうね…",
"style":"font-size: 14px;color: black;background-color: white;left: 73.5%;top: 13%;"
},
{
"text" :"バスソルト<br/>きっと<br/>気にいるわ。<br/>早速<br/>入れましょ",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 16%;"
},
{
"text" :"あら、<br/>パンドラ、<br/>ひどく緊張<br/>してるのね",
"style":"font-size: 14px;color: black;background-color: white;left: 35.6%;top: 58%;"
},
{
"text" :"なんで<br/>座らないの<br/>背中マッサージ<br/>したげるのに?",
"style":"font-size: 14px;color: black;background-color: white;left: 61%;top: 59.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p24": [
{
"text" :"あのね<br/>…",
"style":"font-size: 18px;color: black;background-color: white;left: 13%;top: 6.5%;"
},
{
"text" :"カズに<br/>あなたが<br/>いてあたし<br/>嬉しいの",
"style":"font-size: 16px;color: black;background-color: white;left: 36.4%;top: 13.7%;"
},
{
"text" :"彼は元気に<br/>振る舞ってる、<br/>でも時々すごく<br/>寂しがってると<br/>思う…",
"style":"font-size: 14px;color: black;background-color: white;left: 52%;top: 3.5%;"
},
{
"text" :"両目を<br/>見れば<br/>分かるわ",
"style":"font-size: 16px;color: black;background-color: white;left: 76.3%;top: 17.7%;"
},
{
"text" :"(いえ、髪に隠れ<br/>てない方の<br/>目ね、つまり)",
"style":"font-size: 14px;color: black;background-color: white;left: 77.6%;top: 24.5%;"
},
{
"text" :"自分を誇示しに<br/>ショーに出る<br/>必要はないけど、<br/>彼が望むなら、<br/>喜んでやるわ",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 55.5%;"
},
{
"text" :"彼を心の底から、<br/>たった一度でも、<br/>笑顔にできる<br/>なら…",
"style":"font-size: 15px;color: black;background-color: white;left: 27%;top: 56.5%;"
},
{
"text" :"…あたしは<br/>何でもする",
"style":"font-size: 14px;color: black;background-color: white;left: 47%;top: 58%;"
},
{
"text" :"心配しないで、<br/>パンドラ。<br/>キレイにしてあげる<br/><span style=\"font-weight: bold;\">全世界を<br/>焼き尽くす<br/>位ね</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 75.5%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch03p25": [
{
"text" :"おはよう<br/>ございます!",
"style":"font-size: 16px;color: black;background-color: white;left: 52%;top: 33.5%;"
},
{
"text" :"仕事は<br/>どうです?<br/>家族は?",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 35%;"
},
{
"text" :"ごめん<br/>スケルトンは<br/>喋れないの<br/>忘れてた…",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 71%;"
},
{
"text" :"それに君は<br/>死んでて、<br/>多分…",
"style":"font-size: 16px;color: black;background-color: white;left: 25%;top: 73%;"
},
{
"text" :"その…",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 65.9%;"
},
{
"text" :"気に<br/>しないで",
"style":"font-size: 14px;color: black;background-color: white;left: 52.7%;top: 84%;"
},
{
"text" :"僕は…",
"style":"font-size: 16px;color: black;background-color: white;left: 74.3%;top: 64%;"
},
{
"text" :"落ち込むのは<br/>やめて荷物に<br/>サインするよ",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 65%;"
},
{
"text" :"何して<br/>んだ僕?",
"style":"font-size: 14px;color: black;background-color: white;left: 84.7%;top: 71.3%;"
},
],
"http://devilscandycomic.com/comic/ch03p26": [
{
"text" :"いつも<br/>変なガラクタ<br/>送ってくる",
"style":"font-size: 15px;color: black;background-color: white;left: 55.4%;top: 11.7%;"
},
{
"text" :"ふむ?",
"style":"font-size: 16px;color: black;background-color: white;left: 82.5%;top: 57%;"
},
{
"text" :"ファッション<br/>雑誌?",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 79%;"
},
{
"text" :"へぇ。<br/>リザードマン語<br/>だな",
"style":"font-size: 14px;color: black;background-color: white;left: 74%;top: 79%;"
},
],
"http://devilscandycomic.com/comic/ch03p27": [
{
"text" :"ふむむむ…<br/>少し鈍ったな、<br/>でもまだ少しは<br/>読めるかな",
"style":"font-size: 16px;color: black;background-color: white;left: 16%;top: 5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">SKS HSSS<br/>SSSS</span>は<br/>“何がクールか?”",
"style":"font-size: 16px;color: black;background-color: white;left: 30%;top: 7%;"
},
{
"text" :"いいね、<br/>雑誌のオススメ、<br/>今夜のショーに<br/>こんなの着てけば<br/>いいだろう!",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 5%;"
},
{
"text" :"ヒトミに<br/>格好悪く<br/>見られないか<br/>心配だったし",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 6.5%;"
},
{
"text" :"ありがと、<br/>リザード達!<br/>最高だよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 33.5%;"
},
{
"text" :"“何がクールか?”",
"style":"font-size: 20px;color: black;background-color: white;left: 26%;top: 63%;border:solid 1px;"
},
{
"text" :"“…これは違う!”",
"style":"font-size: 32px;color: black;background-color: white;left: 51%;top: 72%;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch03p28": [
{
"text" :"絶対<br/>ファッション<br/><ruby><rb>大決戦<rp>(</rp><rt>アルマゲドン</rt><rp>)</ruby>",
"style":"font-size: 18px;color: black;background-color: white;left: 56%;top: 8%;width: 111px; height:103px;font-weight: bold;"
},
{
"text" :"今晩!!",
"style":"font-size: 14px;color: black;background-color: white;left: 70%;top: 14.5%;transform: rotate(-20deg);"
},
{
"text" :"流血で<br/>美しく",
"style":"font-size: 14px;color: black;background-color: white;left: 62%;top: 17.9%;width: 59px;height: 35px;"
},
{
"text" :"後ろの子<br/>見た?",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 72%;"
},
],
"http://devilscandycomic.com/comic/ch03p29": [
{
"text" :"僕の調和の<br/>取れた服に<br/>振り向いた",
"style":"font-size: 16px;color: black;background-color: white;left: 47.5%;top: 28.2%;"
},
{
"text" :"オシャレ<br/>成功だ",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 32.5%;"
},
{
"text" :"どれ…<br/>知人は?",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 28.7%;"
},
{
"text" :"ニモ!<br/>やぁ!",
"style":"font-size: 28px;color: black;background-color: white;left: 19%;top: 74%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p30": [
{
"text" :"何で<br/>お前…<br/>なぜ…?!",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 5%;font-weight: bold;"
},
{
"text" :"どうして<br/>!?!?",
"style":"font-size: 14px;color: black;background-color: white;left: 21.5%;top: 8%;font-weight: bold;"
},
{
"text" :"わぁ、僕達<br/>オシャレ<br/>だね?",
"style":"font-size: 16px;color: black;background-color: white;left: 35%;top: 5.5%;"
},
{
"text" :"俺の柄<br/>じゃあねえよ!<br/>これじゃ<br/><span style=\"font-weight: bold;\">扮装だ!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 49%;top: 5%;"
},
{
"text" :"オシャレな<br/>人に?",
"style":"font-size: 16px;color: black;background-color: white;left: 67%;top: 6%;"
},
{
"text" :"怒りで<br/>言葉もねぇ。<br/>静かな怒り<br/>だけだ",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 5%;"
},
{
"text" :"カズーーー!",
"style":"font-size: 20px;color: black;background-color: white;left: 72%;top: 28%;"
},
{
"text" :"ふうっ!<br/>間に<br/>合った!",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 36%;"
},
{
"text" :"徹夜<br/>だったわ!",
"style":"font-size: 16px;color: black;background-color: white;left: 25%;top: 57.7%;"
},
{
"text" :"わあ、<br/>パンドラ、<br/>とっても<br/>魅力的だよ!",
"style":"font-size: 15px;color: black;background-color: white;left: 68%;top: 35.5%;"
},
{
"text" :"僕の<br/>服はどう、<br/>ねぇ?ねぇ?",
"style":"font-size: 15px;color: black;background-color: white;left: 79.5%;top: 39%;"
},
{
"text" :"今だ、<br/>撤退の<br/>時だ!",
"style":"font-size: 14.2px;color: black;background-color: white;left: 82.4%;top: 63%;"
},
{
"text" :"何を私のこと<br/>喋ってるの!?",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 82.6%;"
},
],
"http://devilscandycomic.com/comic/ch03p31": [
{
"text" :"また<br/>私の事<br/>喋ってる<br/>のね?",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 6%;"
},
{
"text" :"誰に<br/>言ってるか?<br/>もちろん<br/>あなた達よ!",
"style":"font-size: 15px;color: black;background-color: white;left: 45.5%;top: 16%;"
},
{
"text" :"わかる、わかるわ、<br/>私はあなた達の<br/>暗く小さな生活の<br/>唯一の光、<br/>でも私の噂話を<br/><span style=\"font-weight: bold;\">ずっと</span>する<br/>必要ある?",
"style":"font-size: 14px;color: black;background-color: white;left: 67.5%;top: 4.5%;"
},
{
"text" :"だと<br/><span style=\"font-weight: bold;\">いいね</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 13%;top: 60%;"
},
{
"text" :"だけど、もし熱烈で、<br/>でも礼儀正しい論争を<br/>君が探してるなら、<br/>僕はいくつか言葉を<br/>思いつくよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 60.5%;"
},
{
"text" :"カズ、大丈夫よ。<br/>席に行ってて。<br/>この場は<br/>まかせて",
"style":"font-size: 14px;color: black;background-color: white;left: 48.5%;top: 64.5%;"
},
{
"text" :"き…<br/>君は<br/>本当に…",
"style":"font-size: 15px;color: black;background-color: white;left: 69%;top: 62%;"
},
],
"http://devilscandycomic.com/comic/ch03p32": [
{
"text" :"OK、忘れないで、<br/>パンドラ…今日は<br/><span style=\"font-weight: bold;\">オシャレ</span>の戦い、<br/>拳じゃない。<br/><span style=\"font-weight: bold;\">暴力なしの対決だ</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 14.4%;top: 5.2%;"
},
{
"text" :"だから<br/>シルキーの顔を<br/>殴ったりしちゃ<br/>ダメだよ",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 6%;"
},
{
"text" :"彼女はただの<br/>普通の女の子<br/>なんだ!",
"style":"font-size: 14px;color: black;background-color: white;left: 76.5%;top: 25.5%;"
},
{
"text" :"素敵な<br/>服ね",
"style":"font-size: 16px;color: black;background-color: white;left: 39%;top: 41%;"
},
{
"text" :"<span style=\"font-weight: bold;\">君に</span>言って<br/>もらう必要<br/>ないね!",
"style":"font-size: 16px;color: black;background-color: white;left: 55.2%;top: 40.2%;"
},
{
"text" :"“普通…”?",
"style":"font-size: 25px;color: black;background-color: white;left: 33%;top: 73%;"
},
],
"http://devilscandycomic.com/comic/ch03p33": [
{
"text" :"結局<br/>私に勝つため<br/>来たのね?",
"style":"font-size: 16px;color: black;background-color: white;left: 12.5%;top: 27%;"
},
{
"text" :"ダサい優しい<br/>ヒロインが<br/>高慢な人気者に<br/>打ち勝つ、<br/>いわゆる<br/>学園ファンタジー<br/>でもやる気?",
"style":"font-size: 15px;color: black;background-color: white;left: 79.5%;top: 8%;"
},
{
"text" :"意外と<br/>自覚あるんだ",
"style":"font-size: 16.5px;color: black;background-color: white;left: 9.5%;top: 41%;"
},
{
"text" :"でも違うわ、<br/>カズのために<br/>来たの",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 46%;"
},
{
"text" :"いくわよ、<br/>パンドラ",
"style":"font-size: 14px;color: black;background-color: white;left: 22%;top: 53.5%;transform: rotate(-10deg);"
},
{
"text" :"よろしい",
"style":"font-size: 18px;color: black;background-color: white;left: 62%;top: 41%;font-weight: bold;"
},
{
"text" :"<span style=\"font-weight: bold;\">私の人生を<br/>滅茶苦茶にする</span>より<br/>あんたが愚かな<br/>挫折を痛感する方が<br/>一番だもの!",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 43.5%;"
},
{
"text" :"被害者気取りに<br/>うんざりよ。<br/>車を真っ二つに<br/>裂ける程強いのに…<br/>なぜファッション<br/>でも私に勝つ必要が<br/>あるの!?",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 64%;"
},
{
"text" :"私はあんたを<br/>相手にする必要は<br/>全くないの!<br/>サイクロプスの<br/>職業学校にでも行って、<br/>砕石労働者か何かに<br/>でもなればいいのよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 10%;top: 78%;"
},
],
"http://devilscandycomic.com/comic/ch03p34": [
{
"text" :"ヘムロック<br/>ハートは<br/>ゴミよ!",
"style":"font-size: 23px;color: black;background-color: white;left: 16%;top: 7%;font-weight: bold;"
},
{
"text" :"悪魔達に<br/>調和を生まず…<br/>対立に<br/>陥れるわ!",
"style":"font-size: 20px;color: black;background-color: white;left: 70.5%;top: 12%;font-weight: bold;"
},
{
"text" :"スライムに<br/>体育が必要?<br/>ミノタウロスが<br/>代数をして<br/>何になるの!?",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 40%;"
},
{
"text" :"最後には関係ない<br/>スポットライトを<br/>盗もうとする<br/>あんたのような<br/>悪魔が現れる始末!",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 40%;height: 120px;"
},
{
"text" :"だから、あんたは<br/><span style=\"font-weight: bold;\">“礼儀正しい論争”</span>でも<br/><span style=\"font-weight: bold;\">“暴力なしの対決”</span>でも<br/><span style=\"font-weight: bold;\">喰らって黙ってな!</span><br/>今日は<span style=\"font-weight: bold;\">私の</span>日!<br/>私だけのものよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 28%;top: 59.5%;height: 120px;"
},
{
"text" :"いいわよ",
"style":"font-size: 15px;color: black;background-color: white;left: 51.5%;top: 62.3%;font-weight: bold;"
},
{
"text" :"とにかく<br/>話したく<br/>ないし",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 64.2%;"
},
{
"text" :"パンドラ、<br/>更衣室へ走って<br/>準備して",
"style":"font-size: 15px;color: black;background-color: white;left: 75.5%;top: 76.5%;"
},
{
"text" :"カズは<span style=\"font-weight: bold;\">君に</span><br/>戦いを禁じた<br/>けどあたしは<br/>やらなきゃ",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 83.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p35": [
{
"text" :"私の<br/>話を<br/>聞いてる?",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 27%;"
},
{
"text" :"講堂の<br/>中には<br/>行かせない!",
"style":"font-size: 20px;color: black;background-color: white;left: 38%;top: 29%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p36": [
{
"text" :"誰が中に<br/>行く必要<br/>ある?",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 17.4%;"
},
{
"text" :"ここで<br/>あんた達の<br/>ケツを<br/>蹴っ飛ばす",
"style":"font-size: 16px;color: black;background-color: white;left: 31.5%;top: 31.5%;"
},
{
"text" :"他の奴らも<br/>パンドラの<br/>邪魔したらケツ<br/>蹴っ飛ばすよ",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 15%;"
},
{
"text" :"今日は、<br/>美女で<br/>いて…",
"style":"font-size: 16px;color: black;background-color: white;left: 68%;top: 34%;width: 70px;"
},
{
"text" :"野獣は<br/>あたしが<br/>なるわ",
"style":"font-size: 16px;color: black;background-color: white;left: 79%;top: 35%;"
},
{
"text" :"うー…",
"style":"font-size: 16px;color: black;background-color: white;left: 10.5%;top: 82.5%;"
},
{
"text" :"わかった",
"style":"font-size: 13px;color: black;background-color: white;left: 13%;top: 85.5%;"
},
{
"text" :"さて、<br/>どこまで<br/>話した?",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 64%;"
},
{
"text" :"ラビィィィ、<br/>助けてぇぇ…",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 66%;"
},
],
"http://devilscandycomic.com/comic/ch03p37": [
{
"text" :"電光石火の<br/>如く空を駆け<br/>君の元へ!",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 14.9%;font-weight: bold;height: 73px;"
},
{
"text" :"さぁ<br/>踊ろう",
"style":"font-size: 32px;color: black;background-color: white;left: 71.5%;top: 68%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p38": [
{
"text" :"今晩は ようこそ<br/>ヘムロック<br/>ハートの<br/>絶対ファッション<br/>アルマゲドンへ",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 7%;font-weight: bold;"
},
{
"text" :"私エリオット・<br/>ヘムロックが、<br/>今宵の司会を<br/>務めさせて<br/>頂きます",
"style":"font-size: 14px;color: black;background-color: white;left: 63%;top: 4%;"
},
{
"text" :"チャーミング&<br/>スタイリッシュな<br/>チーム<br/><ruby><rb>ご夫妻の<rp>(</rp><rt>ミスター&ミセス</rt><rp>)</ruby><br/>ストリクソン<br/>もご一緒です",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 5%;"
},
{
"text" :"そこは<span style=\"font-weight: bold;\">“ミス<br/></span>ストリクソン”<br/>私は独身でしょ",
"style":"font-size: 16px;color: black;background-color: white;left: 7.5%;top:58.5%;"
},
{
"text" :"ハッキリ<br/>言っておくが<br/>私も独身だ",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 60.5%;"
},
{
"text" :"ゴホン…",
"style":"font-size: 24px;color: black;background-color: white;left: 65%;top: 74%;"
},
{
"text" :"い…一般的な<br/>ファッション<br/>アルマゲドン<br/>ルールに従います、<br/>つまり<span style=\"font-weight: bold;\">ジラスの<br/>センチネル</span>を<br/>用います",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 78%;"
},
],
"http://devilscandycomic.com/comic/ch03p39": [
{
"text" :"センチネル達は、<br/><span style=\"font-weight: bold;\">苦痛の花道</span>の<br/>両側に配置され、<br/>通る者全てを<br/>次元間レーザー発射で<br/>審査するわ",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 6%;"
},
{
"text" :"優雅な参加者達は<br/>勇敢に試練に挑み<br/>服を保ち生き残れば、<br/>私達のパネルによる<br/>より安全な審査を<br/>受けられます",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 30.5%;"
},
{
"text" :"お兄様、<br/>今晩は肝臓を<br/>見られる?",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 48.5%;"
},
{
"text" :"…何を<br/>見る?",
"style":"font-size: 14px;color: black;background-color: white;left: 22.5%;top: 52%;"
},
{
"text" :"センチネル達が<br/>“反転”にレーザーを<br/>設定しない限り<br/>哀れな子供達の<br/>体の内外が反転し<br/>内蔵は晒さん",
"style":"font-size: 14px;color: black;background-color: white;left: 38%;top: 49%;"
},
{
"text" :"(美しいが、<br/>恐ろしく<br/>不適切だ)",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 60.5%;width: 90px;"
},
{
"text" :"ヘムロックの<br/><span style=\"font-weight: bold;\">大きく、脈打つ</span><br/>肝臓の方が<br/>見たいわ",
"style":"font-size: 14px;color: black;background-color: white;left: 56.5%;top: 49%;"
},
{
"text" :"<span style=\"font-weight: bold;\">私の肝臓が<br/>充血してる?!</span><br/>うわっ…鬱血性<br/>肝障害?",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 49%;"
},
{
"text" :"医者を<br/>呼ばな<br/>いと…",
"style":"font-size: 14px;color: black;background-color: white;left: 84.5%;top: 58%;"
},
{
"text" :"いえ、冗談よ。<br/>男の人にある<br/>大きな肝臓って<br/>わかるでしょ?",
"style":"font-size: 14px;color: black;background-color: white;left: 9.5%;top: 71%;"
},
{
"text" :"<span style=\"font-size: 32px;\">とにかく</span><br/>ショーを<br/>始めます!!!",
"style":"font-size: 20px;color: black;background-color: white;left: 79.5%;top: 87%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p40": [
{
"text" :"残念ながら、<br/>まだ何名か<br/>来ていない<br/>ようです…",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 18%;"
},
{
"text" :"ですがジラスの<br/>センチネル達は<br/>破壊管理の<br/>正確さ同様に<br/>時間厳守!",
"style":"font-size: 16px;color: black;background-color: white;left: 46.5%;top: 19.5%;"
},
{
"text" :"ファッション<br/>の饗宴を<br/>開始する!",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 23%;font-weight: bold;"
},
{
"text" :"最初の<br/>出演者は<br/>愛らしいミス<br/>エリノア",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 36%;"
},
{
"text" :"大胆な<br/>デザインのギガ<br/>ペトラゴン製の<br/>ダウンコー…",
"style":"font-size: 14px;color: black;background-color: white;left: 52%;top: 38.5%;"
},
{
"text" :"おっと",
"style":"font-size: 16px;color: black;background-color: white;left: 51.5%;top: 87%;"
},
{
"text" :"これは<br/>ファッショナブル<br/>では<span style=\"font-weight: bold;\">無いな</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 73%;top: 90.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p41": [
{
"text" :"アッ?!",
"style":"font-size: 21px;color: black;background-color: white;left: 46.4%;top: 16.5%;font-weight: bold;"
},
{
"text" :"オウ!!",
"style":"font-size: 30px;color: black;background-color: white;left: 79%;top: 86.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p42": [
{
"text" :"ふん!",
"style":"font-size: 15px;color: black;background-color: white;left: 30.2%;top: 25%;font-weight: bold;"
},
{
"text" :"うわ!",
"style":"font-size: 30px;color: black;background-color: white;left: 83%;top: 15%;font-weight: bold;"
},
{
"text" :"わぁ!",
"style":"font-size: 25px;color: black;background-color: white;left: 62.5%;top: 40%;font-weight: bold;"
},
{
"text" :"<span style=\"font-weight: bold;\">ラビ、<br/>このバカ!</span><br/>突っ立て1日中<br/>ファンを避けて<br/>られないのよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 7%;top: 56%;"
},
{
"text" :"ファッション<br/>ショーに出場<br/>するの、忘れた!?<br/><span style=\"font-weight: bold;\">それが最優先よ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 65.5%;height: 100px;"
},
{
"text" :"ああ<br/>うん…",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 69.5%;"
},
{
"text" :"この場合、<br/>オレは少し<br/>熱くなる<br/>べきだね",
"style":"font-size: 16px;color: black;background-color: white;left: 16.5%;top: 83.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p43": [
{
"text" :"おやおや、何て<br/>幸運なレディだ!<br/>君のプライベート<br/>ショーだよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 51.5%;top: 6%;"
},
{
"text" :"この場で使うと<br/>性的な意味が<br/>きっとあるけど、<br/>オレは急ぐんでね!",
"style":"font-size: 14px;color: black;background-color: white;left: 65%;top: 8.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p44": [
{
"text" :"まだ話は<br/>終わって<br/>ないわ",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 77%;width: 70px;"
},
],
"http://devilscandycomic.com/comic/ch03p45": [
{
"text" :"う",
"style":"font-size: 18px;color: black;background-color: white;left: 11.9%;top: 3%;"
},
{
"text" :"お",
"style":"font-size: 20px;color: black;background-color: white;left: 14.5%;top: 5%;"
},
{
"text" :"は…はい?",
"style":"font-size: 12px;color: black;background-color: white;left: 12%;top: 24%;"
},
{
"text" :"知っての通り、<br/>あたしはカズ<br/>のために来たけど<br/>自分自身の勉強に<br/>なったみたい",
"style":"font-size: 16px;color: black;background-color: white;left: 52.5%;top: 3%;"
},
{
"text" :"あなたと<br/>あたしは<br/>よく似てる",
"style":"font-size: 15px;color: black;background-color: white;left: 73.5%;top: 4.5%;"
},
{
"text" :"く…詳しく<br/>頼むよ<br/>怒り狂う<br/>ラフレシア!",
"style":"font-size: 15px;color: black;background-color: white;left: 85.5%;top: 8%;"
},
{
"text" :"例えば、<br/>あたし達は両方<br/>自己中心的ね",
"style":"font-size: 15px;color: black;background-color: white;left: 11.7%;top: 43.5%;"
},
{
"text" :"あなたは<br/>人を物と見るし<br/>あたしは人を<br/>邪魔に思ってる",
"style":"font-size: 14px;color: black;background-color: white;left: 23.5%;top: 47%;"
},
{
"text" :"あなたは人に<br/>褒められたいし<br/>あたしは<br/>一人になりたい",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 44%;"
},
{
"text" :"明日から、<br/>それを変えて<br/>いきましょ、<br/>OK?",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 63.5%;"
},
{
"text" :"もちろんさ、<br/>自虐的なダーリン!<br/>明日からオレ達<br/>心機一転生まれ<br/>変わった気で…",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 66%;"
},
{
"text" :"でも今日のあたし達<br/>超ヒドいから、<br/>やっぱ憂さ晴らしに<br/>あんたのキ○タマ<br/>蹴り潰すわ",
"style":"font-size: 14px;color: black;background-color: white;left: 64%;top: 65.5%;"
},
{
"text" :"ハァ?",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 67%;"
},
],
"http://devilscandycomic.com/comic/ch03p46": [
{
"text" :"地震<br/>でしょうか?",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 85%;"
},
],
"http://devilscandycomic.com/comic/ch03p47": [
{
"text" :"センチネル達の<br/>怒りは今日は<br/>本当に悲惨です",
"style":"font-size: 16px;color: black;background-color: white;left: 13.5%;top: 4%;"
},
{
"text" :"地震があっても<br/>なくても、燻った<br/>体の山が自ずと<br/>物語ってるわね",
"style":"font-size: 16px;color: black;background-color: white;left: 35.5%;top: 5%;"
},
{
"text" :"将来、生徒達の<br/>安全のために<br/>伝統は避ける<br/>必要があるやも",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 10%;"
},
{
"text" :"この大虐殺の<br/>キャットウォーク<br/>誰も生き残れ<br/>ないのか?",
"style":"font-size: 14px;color: black;background-color: white;left: 15%;top: 47%;"
},
{
"text" :"えっと、ミス<br/>ヒトミ・オオクモが<br/>遅れて参加よ",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 49%;"
},
{
"text" :"彼女のモデルは<br/>ただシンプルに<br/>“パンドラ”とだけ<br/>記されてるわ",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 58%;"
},
{
"text" :"多分彼女は<br/>他の人達ほど…<br/><ruby><rb>百合色の肝臓<rp>(</rp><rt>おくびょう</rt><rp>)</ruby><br/>じゃないのね",
"style":"font-size: 15px;color: black;background-color: white;left: 13.8%;top: 71.5%;font-weight: bold;"
},
{
"text" :"頼むから、<br/>妹よ、<br/>少し自重しろ",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 74%;"
},
{
"text" :"パンドラ…",
"style":"font-size: 16px;color: black;background-color: white;left: 78.5%;top: 74.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p48": [
{
"text" :"あら、<br/>見たことない<br/>生徒みたいね、<br/>でも確かに<br/>美しい素材ね",
"style":"font-size: 16px;color: black;background-color: white;left: 60.5%;top: 4%;"
},
{
"text" :"憂愁の兆しを<br/>見せる魅惑の秋。<br/>どんな秘密を<br/>鋼のような<br/>冷たい瞳に<br/>隠すのか?",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 12%;"
},
{
"text" :"あっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 75%;"
},
{
"text" :"センチネル達の<br/>猛攻撃が<br/>始まった!",
"style":"font-size: 16px;color: black;background-color: white;left: 14.5%;top: 79.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p49": [
{
"text" :"秋…が<br/>冬になった",
"style":"font-size: 16px;color: black;background-color: white;left: 68.3%;top: 43.5%;"
},
{
"text" :"寒気を<br/>感じるわ",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 53%;"
},
{
"text" :"どんな<br/>悲しみが<br/>少女の心を<br/>凍らせたのか",
"style":"font-size: 14px;color: black;background-color: white;left: 79.5%;top: 60.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p50": [
{
"text" :"春!!!!",
"style":"font-size: 30px;color: black;background-color: white;left: 78.5%;top: 46%;font-weight: bold;"
},
{
"text" :"彼女の<br/>優雅さに<br/>笑顔になり<br/>ますな…",
"style":"font-size: 14px;color: black;background-color: white;left: 67%;top: 64%;"
},
{
"text" :"なんて<br/>暖かい",
"style":"font-size: 16px;color: black;background-color: white;left: 65.7%;top: 71.5%;"
},
{
"text" :"しかし、<br/>センチネル達は<br/>猛暑の夏の<br/>ようです!",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 75.3%;"
},
{
"text" :"確かに、<br/>激怒してる<br/>みたい!",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 87.3%;"
},
],
"http://devilscandycomic.com/comic/ch03p51": [
{
"text" :"見てら<br/>れない!",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 57%;font-weight: bold;"
},
{
"text" :"センチネル<br/>どうして!?<br/>あんなに<br/>オシャレ<br/>なのに!",
"style":"font-size: 14px;color: black;background-color: white;left: 84.5%;top: 56.5%;"
},
{
"text" :"いえ…<br/>見て",
"style":"font-size: 16px;color: black;background-color: white;left: 87.5%;top: 80.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p52": [
{
"text" :"夏の<br/>太陽!",
"style":"font-size: 24px;color: black;background-color: white;left: 40.5%;top: 9%;"
},
{
"text" :"灼熱の<br/>パレオ!",
"style":"font-size: 25px;color: black;background-color: white;left: 30.6%;top: 42.6%;font-weight: bold;"
},
{
"text" :"スゲェな、<br/>オイ",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 77.4%;font-weight: bold;"
},
{
"text" :"マジか",
"style":"font-size: 16px;color: black;background-color: white;left: 70.5%;top: 77%;font-weight: bold;"
},
{
"text" :"クソ、<br/>お前最高だ!<br/>ショーの後<br/>一緒にブギ<br/>踊らね?",
"style":"font-size: 14px;color: black;background-color: white;left: 79.5%;top: 76%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p53": [
{
"text" :"これに<br/>追いつくのは<br/>明らかに至難ですが<br/>参加者はもう一人<br/>います…",
"style":"font-size: 14px;color: black;background-color: white;left: 19.5%;top: 3%;"
},
{
"text" :"ええ、<br/>輝かしきミス<br/>シルキー",
"style":"font-size: 16px;color: black;background-color: white;left: 39.2%;top: 8%;"
},
{
"text" :"彼女は“グランド<br/>・ファイナル”を<br/>希望したわ。<br/>今年は男性モデルを<br/>使うはずよ",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 7.5%;"
},
{
"text" :"それでは舞台に<br/>最後の参加者を<br/>迎えましょう、<br/>ミスター…",
"style":"font-size: 16px;color: black;background-color: white;left: 78.5%;top: 30%;"
},
{
"text" :"ハァ",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 47.5%;"
},
],
"http://devilscandycomic.com/comic/ch03p54": [
{
"text" :"ハァ~~~~",
"style":"font-size: 20px;color: black;background-color: white;left: 75%;top: 10%;font-weight: bold;"
},
{
"text" :"こんなの<br/>カズは望んでない<br/>気がする<br/>でも…もう…",
"style":"font-size: 14px;color: black;background-color: white;left: 5.2%;top: 37.3%;"
},
{
"text" :"どうでも<br/>いいわ",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 44%;"
},
{
"text" :"それなら<br/>大丈夫だよ",
"style":"font-size: 16px;color: black;background-color: white;left: 39.3%;top: 38%;"
},
{
"text" :"僕はショーを<br/>楽しめたし。<br/>パンドラは<br/>見違える程だ…",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 39%;"
},
{
"text" :"彼女の<span style=\"font-weight: bold;\">ドレス</span>は<br/>素敵だった。<br/>話してる間にも<br/>きっと一等賞<br/>を取るさ!",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 38.5%;"
},
{
"text" :"君は受賞とか<br/>気にしないのは<br/>知ってる、でも<br/>僕は君と分かち<br/>合いたいんだ",
"style":"font-size: 15px;color: black;background-color: white;left: 10.4%;top: 82%;"
},
],
"http://devilscandycomic.com/comic/ch03p55": [
{
"text" :"でも…<br/>後ろの<br/>破壊の跡は<br/>君の仕業<br/>なんだろ?",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 3%;"
},
{
"text" :"あたしの<br/>醜い面を<br/>見ないで。<br/><span style=\"font-weight: bold;\">こんな</span>ことも<br/>したくなかった",
"style":"font-size: 14px;color: black;background-color: white;left: 82%;top: 5%;"
},
{
"text" :"“醜い面”も<br/>“美しい面”も<br/>ないよ、<br/>全部“君”さ",
"style":"font-size: 16px;color: black;background-color: white;left: 21.5%;top: 39%;"
},
{
"text" :"もしこれが<br/>君のショーの<br/>やり方なら<br/>それこそ僕が<br/>見たかった<br/>ものだよ",
"style":"font-size: 14px;color: black;background-color: white;left: 77.4%;top: 38.5%;"
},
{
"text" :"つまり、<br/>僕じゃ多分<br/>沢山の人を<br/>吹っ飛ばせないし、<br/>だけど僕は<br/>ファッションも<br/>全然わから<br/>なくて",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 62.5%;"
},
{
"text" :"全く<br/>その通りよ",
"style":"font-size: 14px;color: black;background-color: white;left: 58%;top: 64.5%;"
},
{
"text" :"大切なのは、<br/>これは君にしか<br/>できないこと。<br/>最強の女の子で…",
"style":"font-size: 16px;color: black;background-color: white;left: 9.4%;top: 80.5%;"
},
{
"text" :"一番可愛い<br/>サイクロプスで…<br/>僕が会った中で<br/>最高に創造的な<br/>ファッション<br/>デザイナーさ!",
"style":"font-size: 14px;color: black;background-color: white;left: 54.6%;top: 81%;"
},
],
"http://devilscandycomic.com/comic/ch03p56": [
{
"text" :"君はそれを<br/>人に見せるのを<br/>怖がるべき<br/>じゃない",
"style":"font-size: 15px;color: black;background-color: white;left: 6%;top: 4.5%;"
},
{
"text" :"*ヒトミビジョン起動 ",
"style":"font-size: 14px;color: black;background-color: white;left: 43%;top: 17.3%;"
},
{
"text" :"君の成功に<br/>必要なのは<br/>君らしくいる<br/>ことだ…",
"style":"font-size: 15px;color: black;background-color: white;left: 6.5%;top: 21.5%;"
},
{
"text" :"そこにいる<br/>君が最高の<br/>“ヒトミ”さ!",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 40.5%;"
},
{
"text" :"ハァ",
"style":"font-size: 16px;color: black;background-color: white;left: 48%;top: 38.5%;"
},
{
"text" :"ハァ",
"style":"font-size: 16px;color: black;background-color: white;left: 51.2%;top: 42%;"
},
{
"text" :"うあ なんだ!<br/>大丈夫?!",
"style":"font-size: 18px;color: black;background-color: white;left: 8.5%;top: 59.5%;font-weight: bold;"
},
{
"text" :"ああああ!<br/>誰か救急車を<br/>呼んで!",
"style":"font-size: 20px;color: black;background-color: white;left: 24.5%;top: 59%;font-weight: bold;"
},
{
"text" :"",
"style":"font-size: 16px;color: black;background-color: white;left: 40%;top: 80%;"
},
{
"text" :"進展した<br/>ようだな、<br/>兄弟",
"style":"font-size: 14px;color: black;background-color: white;left: 41.3%;top: 63%;"
},
{
"text" :"そして今…<br/>ここでの<br/>オレの仕事は<br/>終わったぜ",
"style":"font-size: 14px;color: black;background-color: white;left: 60%;top: 58.5%;"
},
{
"text" :"ヒトミィィ!!",
"style":"font-size: 15px;color: black;background-color: white;left: 56.3%;top: 81%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch03p57": [
{
"text" :"次の<br/>登校日<br/>…",
"style":"font-size: 18px;color: white;background-color: black;left: 17.5%;top: 4%;"
},
{
"text" :"カズ、<br/>助けて!",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 5%;font-weight: bold;"
},
{
"text" :"人気になり<br/>たくない!<br/>恐い!",
"style":"font-size: 17px;color: black;background-color: white;left: 71%;top: 27%;font-weight: bold;"
},
{
"text" :"ぼ…僕に<br/>どうにか<br/>できるって<br/>思う?",
"style":"font-size: 18px;color: black;background-color: white;left: 77%;top: 52%;"
},
{
"text" :"来なさい、ラビ!<br/>重量挙げ部の<br/>初日よ!力こそ<br/>スタイリッシュ!<br/>野生こそ美!",
"style":"font-size: 14.5px;color: black;background-color: white;left: 18%;top: 72%;"
},
{
"text" :"すぐに<br/>トレンドを<br/>見直して<br/>外見を再構成<br/>しないと!",
"style":"font-size: 15px;color: black;background-color: white;left: 52.7%;top: 85%;"
},
{
"text" :"ラビ、あなたを<br/><span style=\"font-weight: bold;\">引きずって</span>でも<br/>ファッションの<br/>新時代に<br/>行くわよ",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 70%;"
},
],
"http://devilscandycomic.com/comic/ch03p58": [
{
"text" :"教員<br/>共有<br/>ルーム",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 15%;"
},
{
"text" :"どんな学校でも<br/>問題を共有するのは<br/>分かってるけど、<br/>腰抜けの校長が<br/>災害をどうにか<br/>してくれるのを<br/>願うわ!",
"style":"font-size: 14px;color: black;background-color: white;left: 29%;top: 5%;"
},
{
"text" :"あら?",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 12%;"
},
{
"text" :"思い起こせば、<br/>最近の2つの<br/>“災害”は<br/>科学関係<br/>だったわね",
"style":"font-size: 14px;color: black;background-color: white;left: 73.5%;top: 14.5%;"
},
{
"text" :"3つ目が<br/>あんたのショー!<br/>廊下で爆弾が<br/>爆発したようよ!",
"style":"font-size: 15px;color: black;background-color: white;left: 10%;top: 33%;"
},
{
"text" :"なんのこと<br/>言ってるのか<br/>わからない<br/>わね",
"style":"font-size: 14px;color: black;background-color: white;left: 27.5%;top: 34.5%;"
},
{
"text" :"私に分かるのは<br/>火も爆弾も<br/>早期退職まで<br/>遠ざけろ<br/>ってこと!",
"style":"font-size: 16px;color: black;background-color: white;left: 42.5%;top: 33%;"
},
{
"text" :"火の話と<br/>いえば、<br/>この建物は<br/>禁煙よ!<br/><span style=\"font-weight: bold;\">それを置き<br/>なさい!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 32%;"
},
],
"http://devilscandycomic.com/comic/ch03p59": [
{
"text" :"デビライザーの<br/>象徴的エピソード<br/>完!離婚裁判所<br/>までチャンネル<br/>はそのまま",
"style":"font-size: 11px;color: black;background-color: white;left: 20.5%;top: 2.5%;"
},
{
"text" :"カチッ",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 4.3%;font-weight: bold;transform: rotate(-10deg);"
},
{
"text" :"…3カップの<br/>イェーグの<br/>血で豊かな<br/>香りを…",
"style":"font-size: 13px;color: black;background-color: white;left: 42%;top: 2.8%;"
},
{
"text" :"カチッ",
"style":"font-size: 16px;color: black;background-color: white;left: 55.5%;top: 3.9%;font-weight: bold;transform: rotate(-10deg);"
},
{
"text" :"…お電話で<br/>無料サンプル<br/>デスグリップ<br/>教授の<br/>サイキック…",
"style":"font-size: 12px;color: black;background-color: white;left: 62%;top: 2.7%;"
},
{
"text" :"カチッ",
"style":"font-size: 18px;color: black;background-color: white;left: 75%;top: 4.1%;font-weight: bold;transform: rotate(-10deg);"
},
{
"text" :"血と腸TVの<br/><span style=\"font-weight: bold;\">Dr.エース</span><br/>マラソンに<br/>戻ります!",
"style":"font-size: 14px;color: black;background-color: white;left: 81.5%;top: 2.7%;"
},
{
"text" :"やれやれ!<br/>悪魔生物質が尽きた!<br/><span style=\"font-weight: bold;\">デススラッグ大家族</span><br/>は1000年の寿命を<br/>生きるために健康で<br/>いるべきだったな、<br/>だが注射に使う<br/>筋肉がクタクタだ!",
"style":"font-size: 14px;color: black;background-color: white;left: 9.9%;top: 27.6%;"
},
{
"text" :"注射は尽きるかも<br/>しれない、でも<br/>一つだけ決して<br/>尽きないもの<br/>それは…",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 28.5%;"
},
{
"text" :"そして<br/>私達が誰よりも<br/>愛するのは…",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 41%;"
},
{
"text" :"最愛の子、<br/>カズ!",
"style":"font-size: 30px;color: black;background-color: white;left: 15%;top: 49.3%;font-weight: bold;"
},
{
"text" :"きっと家で<br/>観てる<br/>わよね、<br/>愛しい子!",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 56.5%;"
},
{
"text" :"番組を観ない<br/>ようにしてる",
"style":"font-size: 13px;color: black;background-color: white;left: 42%;top: 55.3%;width: 91px;"
},
{
"text" :"世界中を<br/>まわってる<br/>途中で<br/>治療してる<br/>子供達は<br/>あなたじゃ<br/>ないけど…",
"style":"font-size: 15px;color: black;background-color: white;left: 41.5%;top: 62%;width: 85px;"
},
{
"text" :"<span style=\"font-weight: bold;\">バッコーン!</span><br/>この言葉を確実に<br/><span style=\"font-weight: bold;\">持っていけぇぇ、</span><br/>息子よぉぉぉ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 75.5%;top: 62.5%;"
},
{
"text" :"ハニー、<br/>そのキャッチ<br/>フレーズに私が<br/>何て言ったと<br/>思う?<br/><span style=\"font-weight: bold;\">ヒドイ</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 85%;"
},
{
"text" :"でも…",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 89.4%;"
},
{
"text" :"絶対<br/>流行らない",
"style":"font-size: 14px;color: black;background-color: white;left: 49.5%;top: 93%;"
},
],
"http://devilscandycomic.com/comic/ch04p00": [
],
"http://devilscandycomic.com/comic/ch04p01": [
{
"text" :"頭上の宝石クラウン<br/>",
"style":"font-size: 18px;color: red;background-color: black;left: 35%;top: 4.3%;width: 224px;height: 35px;"
},
{
"text" :"被らぬが",
"style":"font-size: 18px;color: red;background-color: black;left: 39%;top: 7%;width: 160px;height: 27px;"
},
{
"text" :"心にスカーレット・クラウン",
"style":"font-size: 18px;color: red;background-color: black;left: 34.5%;top: 12.3%;width: 236px;height: 27px;"
},
{
"text" :"力強く鼓動して",
"style":"font-size: 18px;color: red;background-color: black;left: 39%;top: 15%;width: 160px;height: 30px;"
},
{
"text" :"赤き血が確かに流れるように",
"style":"font-size: 18px;color: red;background-color: black;left: 35%;top: 82.5%;"
},
{
"text" :"与えし者の贈り物は<br/>真実なり",
"style":"font-size: 18px;color: red;background-color: black;left: 38%;top: 84.5%;width: 178px;"
},
{
"text" :"だから我らは感謝を示す",
"style":"font-size: 18px;color: red;background-color: black;left: 34%;top: 90.4%;width: 225px;height: 30px;"
},
{
"text" :"我ら全ての行いで",
"style":"font-size: 18px;color: red;background-color: black;left: 40%;top: 93%;width:150px;height: 30px;"
},
],
"http://devilscandycomic.com/comic/ch04p02": [
{
"text" :"導く角と<br/>守る翼と共に",
"style":"font-size: 16px;color: red;background-color: black;left: 43.9%;top: 3.62%;width: 137px;height: 60px;"
},
{
"text" :"我らは道を確かに照らす",
"style":"font-size: 16px;color: red;background-color: black;left: 41.4%;top: 8%;width: 190px;height: 34px;"
},
{
"text" :"我らの忠義と勇気は<br/>一日たりとも挫けない",
"style":"font-size: 16px;color: red;background-color: black;left: 42.3%;top: 12.5%;width: 166px;height: 64px;"
},
{
"text" :"我らの言葉を全土の悪魔へ",
"style":"font-size: 16px;color: red;background-color: black;left: 38.5%;top: 82.5%;width: 239px;height: 34px;"
},
{
"text" :"鳴り響かせ真とする",
"style":"font-size: 16px;color: red;background-color: black;left: 42.4%;top: 85%;width: 173px;height: 28px;"
},
{
"text" :"我らがスカーレット<br/>・クラウン、<br/>我らが輝く誇り、",
"style":"font-size: 16px;color: red;background-color: black;left: 43.6%;top: 88.5%;width: 147px;height: 65px;"
},
{
"text" :"我らがどこにあろうとも",
"style":"font-size: 16px;color: red;background-color: black;left: 42.4%;top: 94%;width: 180px;height: 37px;"
},
],
"http://devilscandycomic.com/comic/ch04p03": [
{
"text" :"何度聴いても、<br/>奮い立つ曲だな。<br/>君の<span style=\"font-weight: bold;\">他の</span>作品も<br/>退屈でなければ<br/>良いんがね、<br/>トレモロ",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 22%;"
},
{
"text" :"…で、<br/>ワシは学校を<br/>一つ経営<br/>している",
"style":"font-size: 14px;color: black;background-color: white;left: 28.2%;top: 62%;"
},
{
"text" :"ストラツィオ。<br/>君の雇い主が<br/>ワシらを重要な<br/>会議に呼び出して<br/>遅刻してる理由を<br/>説明しても<br/>いいんだぞ",
"style":"font-size: 14px;color: black;background-color: white;left: 38%;top: 62%;"
},
{
"text" :"彼女が<br/>時間通り<br/>来る方が<br/>怖いですよ",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 63.5%;width: 103px;"
},
],
"http://devilscandycomic.com/comic/ch04p04": [
{
"text" :"来た<br/>わよ!",
"style":"font-size: 20px;color: black;background-color: white;left: 27%;top: 4.5%;font-weight: bold;"
},
{
"text" :"あと、<br/>時間守るの<br/>なんて<br/><span style=\"font-weight: bold;\">老人だけよ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 35.6%;top: 6%;"
},
{
"text" :"時間を<br/>気にしだすのは<br/>老い先短い<br/>証拠!",
"style":"font-size: 16px;color: black;background-color: white;left: 79%;top: 6.5%;"
},
{
"text" :"ところで…、<br/>その…<br/>なぜ<br/><span style=\"font-weight: bold;\">ハズマット<br/>スーツ?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 10.5%;top: 38.5%;"
},
{
"text" :"その箱の<br/>輸送中に<br/><span style=\"font-weight: bold;\">放射線漏れ</span><br/>起こしてない<br/>ですよね?",
"style":"font-size: 16px;color: black;background-color: white;left: 23.3%;top: 41.5%;"
},
{
"text" :"笑ってます?<br/>お願いですから<br/>無害な冗談の<br/>良識ある笑いで、<br/>俺達を殺す気はない<br/>と言って下さい",
"style":"font-size: 14px;color: black;background-color: white;left: 10%;top: 59.6%;"
},
{
"text" :"許して頂戴、<br/>これ以上<br/>不安にさせるべき<br/>じゃないわね",
"style":"font-size: 14px;color: black;background-color: white;left: 51.5%;top: 61.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p05": [
{
"text" :"<span style=\"font-weight: bold;\">ジャ~~ン!</span><br/>中身は<br/>美女<br/>でした!",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 5.5%;"
},
{
"text" :"皆あなたは<br/>美しいって<br/>知ってますよ<br/>メティア",
"style":"font-size: 14px;color: black;background-color: white;left: 52%;top: 31.5%;"
},
{
"text" :"“貴婦人”って<br/><span style=\"font-weight: bold;\">あなたは</span><br/>呼んでよ、<br/>ストラツィオ!",
"style":"font-size: 14px;color: black;background-color: white;left: 78%;top: 6%;"
},
{
"text" :"はうぅぅぅ!<br/>メイメイ、<br/>アイシャドウ<br/>かわいいよぉ!<br/><span style=\"font-weight: bold;\">チューして!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 31%;top: 42%;"
},
{
"text" :"ピアは<br/>“メイメイ”<br/>なのに俺は<br/>“貴婦人”?",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 42.5%;"
},
{
"text" :"見ての通り<br/>ワシは確かに<br/>墓場に片足<br/>突っ込んどるが<br/>聞くぞ…",
"style":"font-size: 15px;color: black;background-color: white;left: 10%;top: 65%;"
},
{
"text" :"箱の<br/>中身は<br/>何だ?",
"style":"font-size: 20px;color: black;background-color: white;left: 49.5%;top: 67.5%;"
},
{
"text" :"兵器<br/>ですかね?",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 68.5%;"
},
{
"text" :"カップ<br/>ケーキかな?",
"style":"font-size: 15px;color: black;background-color: white;left: 64%;top: 84.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p06": [
{
"text" :"エッグ<br/>スクラムの<br/>卵",
"style":"font-size: 18px;color: black;background-color: white;left: 64%;top: 4.5%;"
},
{
"text" :"素晴らしい!<br/>早速チームに<br/>連絡しておく!<br/>どこに挑戦<br/>するんだ?",
"style":"font-size: 16px;color: black;background-color: white;left: 14.5%;top: 40%;"
},
{
"text" :"ストーン<br/>ラビリンス高校の<br/>ミノタウロス?<br/>ハウリング ホロウの<br/>ウェアウルブズ?",
"style":"font-size: 14px;color: black;background-color: white;left: 76.5%;top: 41%;"
},
{
"text" :"単純<br/>すぎよ!",
"style":"font-size: 20px;color: black;background-color: white;left: 17%;top: 58.5%;font-weight: bold;"
},
{
"text" :"いえ…私達が<br/>挑戦するのは、<br/><span style=\"font-weight: bold;\">ヘムロック<br/>ハートの<br/>ナイトメアズ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 35%;top: 59%;"
},
{
"text" :"私は",
"style":"font-size: 35px;color: black;background-color: white;left: 60%;top: 61.5%;"
},
{
"text" :"エリオット<br/>の",
"style":"font-size: 16px;color: black;background-color: white;left: 66%;top: 67%;"
},
{
"text" :"身をよじらせ<br/>たいの",
"style":"font-size: 18px;color: black;background-color: white;left: 81.5%;top: 81%;font-weight: bold;width: 119px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch04p07": [
{
"text" :"エッグスクラムの歌を歌おう、至高のスポーツ<br/>優雅にして野蛮、一種の儀式でもある",
"style":"font-size: 16px;color: white;background-color: black;left: 29.8%;top: 1%;"
},
{
"text" :"我らを天上から審判する恐るべきゾマ・ゴラモスによって<br/>高い山の上で、それは古代に生まれた",
"style":"font-size: 16px;color: white;background-color: black;left: 25%;top: 5%;"
},
{
"text" :"次代の悪魔である神聖なエッグスクラムの卵が生まれ<br/>戦士達はそれを手に取り、戦うことを、誓った",
"style":"font-size: 16px;color: black;background-color: white;left: 29.2%;top: 40%;"
},
{
"text" :"男、女、子供を成す全てのもの<br/>我らを賢く、狡猾に野蛮にする全てのもの<br/>我らの全ての愛憎と情熱が神聖なエッグスクラムの<br/>競技場に飛び上がり、卵へと注がれる",
"style":"font-size: 16px;color: black;background-color: white;left: 4.8%;top: 50.5%;"
},
{
"text" :"戦士達が真に一進一退の攻防を繰り広げる時、<br/>卵は静かな殻の中で世界の全てを聴き学ぶ",
"style":"font-size: 16px;color: black;background-color: white;left: 41.5%;top: 63%;width: 424px;"
},
{
"text" :"これは一体!何事か?<br/>試合が終わり、ひび割れからゾマ・ゴラモスが<br/>不気味な光のなかに、生れ出る",
"style":"font-size: 16px;color: white;background-color: black;left: 26%;top: 68.5%;width: 404px;"
},
{
"text" :"猛火の戦いで鍛えた、強力な子が皆の努力で生まれる<br/>新たな卵が生まれる時、新たな試合が始まる<br/>さぁ盃を高く掲げ、その日を祝おう",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 92%;"
},
],
"http://devilscandycomic.com/comic/ch04p08": [
{
"text" :"なぜ<br/>エッグ<br/>スクラム?",
"style":"font-size: 16px;color: black;background-color: white;left: 22.5%;top: 4.5%;"
},
{
"text" :"彼女は<br/>学校を焼き払い<br/>私を吊るし<br/>上げる気だ",
"style":"font-size: 15px;color: black;background-color: white;left: 74%;top: 6%;"
},
{
"text" :"メティアは<br/>私を苦しめる<br/>名人ですよ",
"style":"font-size: 16px;color: black;background-color: white;left: 25.5%;top: 39%;"
},
{
"text" :"心配<br/>ご無用!",
"style":"font-size: 20px;color: black;background-color: white;left: 52.5%;top: 38%;font-weight: bold;"
},
{
"text" :"例えチームが<br/><span style=\"font-weight: bold;\">オレ一人でも、</span><br/><span style=\"font-weight: bold;\">一騎当千</span>の力で<br/>立ち向かい<br/>ますよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 27.8%;top: 80%;"
},
{
"text" :"いや、<br/>それじゃ<br/>ダメだ",
"style":"font-size: 16px;color: black;background-color: white;left: 48%;top: 60%;"
},
{
"text" :"エッグスクラムの<br/>卵を受けるのは<br/>大変な栄誉だけど…<br/>良い試合ができなきゃ<br/>我が校の信頼は<br/>地に落ちる",
"style":"font-size: 14px;color: black;background-color: white;left: 57%;top: 60.5%;"
},
{
"text" :"こんな時、<br/>とるべき<br/><span style=\"font-weight: bold;\">手段は<br/>一つ…</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 84%;top: 62%;"
},
],
"http://devilscandycomic.com/comic/ch04p09": [
{
"text" :"カズ~~~~~~~!<br/>助けて~~~~!!!!!",
"style":"font-size: 30px;color: black;background-color: white;left: 12.5%;top: 33%;font-weight: bold;"
},
{
"text" :"なぜ陸の人々は<br/>間違っているか",
"style":"font-size: 10px;color: black;background-color: white;left: 35.2%;top: 41%;"
},
{
"text" :"あー、<br/>つまり…",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 39%;"
},
{
"text" :"カズ・デッカーは<br/>ただちに校長室に<br/>報告に来て<br/>くれますか?",
"style":"font-size: 16px;color: black;background-color: white;left: 12.5%;top: 62%;"
},
{
"text" :"頑張<br/>れよ",
"style":"font-size: 18px;color: black;background-color: white;left: 47.5%;top: 66.5%;"
},
{
"text" :"それと、ニモも<br/>連れてきてね!",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 67.2%;"
},
{
"text" :"ふざけ<br/>んな!",
"style":"font-size: 25px;color: black;background-color: white;left: 79.4%;top: 70.4%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p10": [
{
"text" :"パンドラは<br/>“海の不思議”<br/>受けたく<br/>ないのか?",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 34%;"
},
{
"text" :"彼女が<br/><span style=\"font-weight: bold;\">何</span>したいのか<br/>わからないよ",
"style":"font-size: 16px;color: black;background-color: white;left: 73%;top: 45.5%;"
},
{
"text" :"彼女は今<br/>年の割に<br/>超気難しいんだ。<br/>僕を見てさえ<br/>くれないよ",
"style":"font-size: 16px;color: black;background-color: white;left: 17.5%;top: 60%;"
},
{
"text" :"ああ…",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 63.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p11": [
{
"text" :"やぁ。<br/>オレだ<br/>ニモだ",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 4%;"
},
{
"text" :"オレの肌は<br/>濡れてる時は<br/>透明じゃ<br/>ないんだ",
"style":"font-size: 15px;color: black;background-color: white;left: 27%;top: 6%;"
},
{
"text" :"ママが<br/>グリンディロー<br/>パパが透明<br/>だからオレは…",
"style":"font-size: 14px;color: black;background-color: white;left: 45%;top: 13.5%;"
},
{
"text" :"あー…<br/>そういう<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 9.5%;"
},
{
"text" :"ことさ",
"style":"font-size: 16px;color: black;background-color: white;left: 81.5%;top: 16.5%;"
},
{
"text" :"オレの内臓が<br/>本当に外に<br/>出てると思って<br/>ないよな?",
"style":"font-size: 14px;color: black;background-color: white;left: 13.5%;top: 40.5%;"
},
{
"text" :"それ<br/>キモい<br/>だろ…",
"style":"font-size: 15px;color: black;background-color: white;left: 48.1%;top: 40%;"
},
{
"text" :"…キモい<br/>わね",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 64%;"
},
{
"text" :"ここ数日で<br/>唯一喋った…",
"style":"font-size: 14px;color: black;background-color: white;left: 23.5%;top: 63%;"
},
{
"text" :"とにかく、<br/>パンドラ、<br/>エリオットが<br/>呼んでる、<br/>僕らは<br/>行くけど",
"style":"font-size: 14px;color: black;background-color: white;left: 40.5%;top: 63%;"
},
{
"text" :"一緒に<br/>来ても<br/>いいよ…",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 64%;"
},
{
"text" :"フン!",
"style":"font-size: 35px;color: black;background-color: white;left: 71%;top: 62%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p12": [
{
"text" :"あぁ<br/>よかった<br/>来た!",
"style":"font-size: 16px;color: black;background-color: white;left: 62.5%;top: 19%;"
},
{
"text" :"結局来た",
"style":"font-size: 16px;color: white;background-color: black;left: 38%;top: 37.5%;"
},
{
"text" :"彼女は<br/>来たいのか<br/>来たくない<br/>のか?",
"style":"font-size: 14px;color: black;background-color: white;left: 76.5%;top: 35.5%;"
},
{
"text" :"時間が<br/>ないから、<br/>単刀直入に<br/>いくよ",
"style":"font-size: 16px;color: black;background-color: white;left: 16%;top: 47%;"
},
{
"text" :"我が校は<br/>かってない規模の<br/>危機に直面してる。<br/>私達の名誉が<br/>試され…",
"style":"font-size: 14px;color: black;background-color: white;left: 27%;top: 51%;"
},
{
"text" :"エヘン…",
"style":"font-size: 16px;color: black;background-color: white;left: 17.5%;top: 57%;font-weight: bold;"
},
{
"text" :"エッヘン!",
"style":"font-size: 16px;color: black;background-color: white;left: 35.5%;top: 59.4%;font-weight: bold;"
},
{
"text" :"あー、うん…<br/>彼はドレイク、<br/>ヘムロック<br/>ハート<br/>ナイトメアズ<br/>のリーダー",
"style":"font-size: 14px;color: black;background-color: white;left: 49.5%;top: 47%;"
},
{
"text" :"いかにも<br/>オレだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 48%;font-weight: bold;"
},
{
"text" :"ドレイク…<br/>カズに説明<br/>したいの<br/>かい?",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 74%;"
},
{
"text" :"いえ、<br/>続けて",
"style":"font-size: 16px;color: black;background-color: white;left: 84.2%;top: 74%;"
},
{
"text" :"えっと<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 49.5%;top: 86%;"
},
{
"text" :"何を言おうと<br/>してたん<br/>だっけ…",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 89.7%;"
},
],
"http://devilscandycomic.com/comic/ch04p13": [
{
"text" :"待った、<br/>ナイトメアズ<br/>って何だ?",
"style":"font-size: 14px;color: black;background-color: white;left: 10.5%;top: 6%;"
},
{
"text" :"エッグ<br/>スクラム<br/>のチーム?<br/>本当にある?",
"style":"font-size: 14px;color: black;background-color: white;left: 21.7%;top: 5.5%;"
},
{
"text" :"実は、それが<br/>問題なんだ。<br/>ドレイク<span style=\"font-weight: bold;\">だけの</span><br/>チームなんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 39%;top: 6%;"
},
{
"text" :"スカーレット<br/>クラウンアカデミーが<br/>私達に試合を<br/>申し込んだが<br/>受けても断っても<br/>大きな影響がある",
"style":"font-size: 14px;color: black;background-color: white;left: 37%;top: 14.5%;"
},
{
"text" :"スカーレット<br/>クラウン?<br/>気取り屋どもの<br/>純血デーモン学校?<br/>何で奴らが…",
"style":"font-size: 14px;color: black;background-color: white;left: 4.5%;top: 33.5%;"
},
{
"text" :"やりま<br/>しょう!",
"style":"font-size: 16px;color: black;background-color: white;left: 32.5%;top: 35%;"
},
{
"text" :"奴らに<br/>勝つん<br/>です!",
"style":"font-size: 14px;color: black;background-color: white;left: 50%;top: 34.5%;"
},
{
"text" :"何だって!?",
"style":"font-size: 20px;color: black;background-color: white;left: 59.5%;top: 35%;font-weight: bold;"
},
{
"text" :"これ<br/>ですよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 79%;top: 35.5%;"
},
{
"text" :"これこそ<br/>一般入試学校<br/>でもできるって<br/>証明する<br/>チャンスですよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 17.6%;top: 59%;"
},
{
"text" :"僕らは<br/>最強の純血種<br/>学校でも<br/>倒せますよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 31%;top: 61%;"
},
{
"text" :"見せましょう<br/>僕らは互角…<br/>いえ…<br/><span style=\"font-weight: bold;\">それ以上<br/>だって!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 56.5%;top: 59.5%;"
},
{
"text" :"カズ…!!!",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 86%;"
},
],
"http://devilscandycomic.com/comic/ch04p14": [
{
"text" :"<span style=\"font-weight: bold;\">カズ、お前は<br/>余計なお世話<br/>焼きすぎだ!</span><br/>これは明らかに<br/><span style=\"font-weight: bold;\">バカげてる!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 6%;"
},
{
"text" :"えぐっ!",
"style":"font-size: 14px;color: black;background-color: white;left: 31.5%;top: 19.7%;font-weight: bold;"
},
{
"text" :"ありがとう、<br/>ニモ。それが<br/>君を呼んだ<br/>理由なんだ",
"style":"font-size: 16px;color: black;background-color: white;left: 38.5%;top: 28.5%;"
},
{
"text" :"カズと私は<br/>熱中しやすい。<br/>君の消極性で<br/>私達を抑える<br/>必要がある",
"style":"font-size: 16px;color: black;background-color: white;left: 74.5%;top: 9%;"
},
{
"text" :"ヘムロックさんは<br/>オレがスカーレット<br/>クラウンに単独で<br/>挑むのを禁じた、<br/>だからチームを組む<br/>必要がある、<br/>手順に従うだけ<br/>ならね",
"style":"font-size: 14px;color: black;background-color: white;left: 10%;top: 43%;"
},
{
"text" :"言い換えれば、<br/>チームに専門技能が<br/>欠けていても、<br/>オレがそれ以上に<br/>補えばいい!",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 44%;"
},
{
"text" :"うん?お前<br/>エッグスクラム<br/>上手いの?",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 43.2%;"
},
{
"text" :"オレは<br/>エッグスクラム<br/>に命の恩がある!",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 43.7%;font-weight: bold;"
},
{
"text" :"大昔、<br/>オレが子供の頃、<br/>火事関係の事故が<br/>不運にも俺の家で<br/>あった",
"style":"font-size: 17px;color: black;background-color: white;left: 70.5%;top: 74.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p15": [
{
"text" :"炎の壁がオレを<br/>両親から分断した。<br/>炎の指が猛烈に<br/>爪を立てオレの頭に<br/>天上を雨あられと<br/>少しずつ落として<br/>きた。",
"style":"font-size: 16px;color: white;background-color: black;left: 12%;top: 7%;"
},
{
"text" :"我を失い<br/>怖かった、オレは<br/>泣くだけだった…<br/>だがオレのぼやけた目に<br/>何かが映った、神聖な<br/>衣服を纏う、強力な<br/>エッグスクラムの<br/>戦士だ!",
"style":"font-size: 14px;color: white;background-color: black;left: 69.5%;top: 17%;"
},
{
"text" :"彼女は叫んだ<br/>“ハット、ハット、<br/>恐れるな、我が子よ!”<br/>そして炎を通り抜けた、<br/>彼女の腕の中に俺を<br/>大切なエッグスクラム<br/>の卵のように抱き<br/>抱えながら",
"style":"font-size: 14px;color: white;background-color: black;left: 68.5%;top: 43%;"
},
{
"text" :"窓を突き破り<br/>オレを下の通りの<br/>安全な場所まで<br/>運ぶと、彼女は<br/>オレの小さな体を<br/>道端に置いた",
"style":"font-size: 16px;color: white;background-color: black;left: 31%;top: 65.4%;"
},
{
"text" :"それから、<br/>激しく勝利の<br/>ダンスをした後、<br/>彼女は闇夜に<br/>消えた",
"style":"font-size: 16px;color: white;background-color: black;left: 70%;top: 84.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p16": [
{
"text" :"何ソレ",
"style":"font-size: 28px;color: black;background-color: white;left: 10.5%;top: 7%;font-weight: bold;"
},
{
"text" :"オレの質問の<br/>答えになって<br/>ねーぞ、<span style=\"font-weight: bold;\">全然…</span><br/>お前は何を<br/>分かってるんだ?<br/>もういいよ",
"style":"font-size: 13px;color: black;background-color: white;left: 24%;top: 4.5%;"
},
{
"text" :"問題ないよ、<br/>ニモ、だって<br/>感動的な話で<br/>僕のハートに火が<br/>ついた…",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 7.5%;"
},
{
"text" :"脳に血を送り込み、<br/>ニューロンに<br/>力を生み<br/>素晴らしい<br/>考えが閃いた!",
"style":"font-size: 14px;color: black;background-color: white;left: 41.5%;top: 17.5%;"
},
{
"text" :"ほほ本当に??",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 8%;"
},
{
"text" :"ヘムロック<br/>ハートの<br/>生徒の皆<br/>ちょっと<br/>聞いて?",
"style":"font-size: 16px;color: black;background-color: white;left: 33.5%;top: 37.5%;"
},
{
"text" :"突然だけど、<br/>本日をもって、<br/>学校に新ルールが<br/>追加されました!<br/>課外活動が必須に<br/>なりました!",
"style":"font-size: 16px;color: black;background-color: white;left: 43.3%;top: 41.8%;"
},
{
"text" :"スライム君主",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 35.4%;transform: rotate(3deg);width :130px;"
},
{
"text" :"・ブロブ王<br/>・1000年の<br/>自賛の治世",
"style":"font-size: 14px;color: black;background-color: white;left: 53.5%;top: 37%;text-align:left;transform: rotate(3deg);width :85px;"
},
{
"text" :"護身の<br/>心得",
"style":"font-size: 14.5px;color: black;background-color: white;left: 82.5%;top: 44%;width: 65px;"
},
{
"text" :"<span style=\"font-weight: bold;border-bottom: solid 1px black;\">噛み付き</span><br/>禁止",
"style":"font-size: 12px;color: black;background-color: white;left: 91.8%;top: 46.8%;"
},
{
"text" :"すでにクラブに<br/>入っている人達には<br/>朗報です、<br/>自動的に成績に<br/>評価が加点されます。<br/>他の人達も…<br/>心配いりません!",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 52%;"
},
{
"text" :"超楽しい部が<br/>新メンバーを<br/>募集中です…<br/>一度参加するだけで<br/>無料で‘A’評価が<br/>ゲットできます!",
"style":"font-size: 14px;color: black;background-color: white;left: 29.5%;top: 65.5%;"
},
{
"text" :"興味のある人は<br/>ヘムロックさん<br/>のオフィスまで<br/>至急報告に来て!",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 73.7%;"
},
{
"text" :"やる価値は<br/>ねーよ。<br/>オレを<br/>信じろ",
"style":"font-size: 14px;color: black;background-color: white;left: 84.5%;top: 75.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p17": [
{
"text" :"カズ、お前は<br/>校長じゃない。<br/>そんな決定権<br/>ないだろ",
"style":"font-size: 15px;color: black;background-color: white;left: 4.5%;top: 6%;"
},
{
"text" :"君の新しい<br/>エッグスクラム<br/>チームに会う<br/>準備だ、<br/>ドレイク!",
"style":"font-size: 14px;color: black;background-color: white;left: 59.5%;top: 2.5%;"
},
{
"text" :"しばらく後…",
"style":"font-size: 24px;color: black;background-color: white;left: 10%;top: 23.5%;"
},
{
"text" :"エッグスクラム?",
"style":"font-size: 14px;color: black;background-color: white;left: 4.5%;top: 39.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">出産の</span><br/>スポーツ?",
"style":"font-size: 18px;color: black;background-color: white;left: 26%;top: 56%;"
},
{
"text" :"それにしちゃあ<br/>チームの野郎共<br/>やたら多いね…",
"style":"font-size: 14px;color: black;background-color: white;left: 26.5%;top: 62.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ペトラ・フォボス(15)</span><br/>強い責任感があるが、<br/>授業はいつも<br/>サボる",
"style":"font-size: 14px;color: black;background-color: white;left: 21.2%;top: 77%;"
},
{
"text" :"<span style=\"font-weight: bold;\">OK、</span><br/>まず第一<br/>に…",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 37%;"
},
{
"text" :"人前で着替えは<br/>不愉快だ、<br/>だから僕専用の<br/>ロッカー室が<br/>いる",
"style":"font-size: 14px;color: black;background-color: white;left: 42.7%;top: 42.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">第二に、</span><br/>僕は臭いの検出域が低い、<br/>だから標準尺度で3ランクを<br/>超えたら即座に標準に戻して。<br/>もし誰かがスパゲッティ食べて<br/>僕に分けてくれなかったら、<br/>僕は気絶するまで叫ぶよ。<br/>それが条件だ。調べておけよ。<br/>20キロヘルツ以下の音で僕は<br/>すぐに吐くよ。僕の父の名は<br/>ウォレス。もし僕に贈物する<br/>なら、オレンジはやめろ。<br/>アレルギーとかじゃないけど、<br/>オレンジとかは十分ある。<br/>それと、医者の注意に…",
"style":"font-size: 12.5px;color: black;background-color: white;left: 72.5%;top: 38%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ウォルトン・<br/>ストーンウォール(16)</span><br/>完全に嫌な奴。<br/>どのクラブも彼をとらなかった",
"style":"font-size: 13px;color: black;background-color: white;left: 65.5%;top: 60%;"
},
{
"text" :"マスかき野郎共<br/>大当たりだ!俺より<br/>エッグスクラムの<br/>上手い奴はいねぇ!",
"style":"font-size: 14px;color: black;background-color: white;left: 45%;top: 68%;"
},
{
"text" :"<span style=\"font-weight: bold;\">全てにおいて</span><br/>俺より優れた<br/>奴はいねぇ!",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 81%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ナイジェル・デュースナップ(16)</span><br/>小さすぎ。<br/>どんなクラブでもただ小さすぎ。<br/>あと、好戦的",
"style":"font-size: 14px;color: black;background-color: white;left: 54.5%;top: 90.3%;"
},
],
"http://devilscandycomic.com/comic/ch04p18": [
{
"text" :"わ~い<br/>スポーツ…",
"style":"font-size: 14px;color: black;background-color: white;left: 10%;top: 21.5%;transform: rotate(-10deg);"
},
{
"text" :"<span style=\"font-weight: bold;\">リケット・パンターノ(14)</span><br/>演劇クラブの演劇から<br/>逃げて来た",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 43%;"
},
{
"text" :"卵?",
"style":"font-size: 25px;color: black;background-color: white;left: 56%;top: 10%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ジェラルド・<br/>ガルシア(17)</span><br/>?????",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 47.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ニモ<br/>・マスターマン(14)</span><br/>クイズクラブ脱退",
"style":"font-size: 16px;color: black;background-color: white;left: 74.5%;top: 35.5%;text-decoration: line-through;"
},
{
"text" :"オレは<br/>やらないって<br/><span style=\"font-weight: bold;\">言ったろ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 45%;"
},
{
"text" :"残念だけど<br/>やらなきゃ、<br/>不参加なら<br/>君は退学です",
"style":"font-size: 16px;color: black;background-color: white;left: 31.5%;top: 61.5%;"
},
{
"text" :"ところで、<br/>参加者が私の<br/>予想よりもかなり<br/>少ないですね。<br/>何故でしょう?",
"style":"font-size: 14px;color: black;background-color: white;left: 55%;top: 81%;"
},
{
"text" :"あんたは<br/><span style=\"font-weight: bold;\"><ruby><rb>虚仮威<rp>(</rp><rt>こけおど</rt><rp>)</ruby>し</span><br/>ばっかりで<br/>大げさすぎるって<br/>皆知ってるからだよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 78.2%;top: 83.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p19": [
{
"text" :"自室の<br/>虫を怖がって<br/>誰か虫を潰しに<br/>来なきゃ<br/>学校閉鎖するって<br/>言ったり",
"style":"font-size: 16px;color: black;background-color: white;left: 5%;top: 5%;"
},
{
"text" :"会議に出たくない<br/>からクローゼットに<br/>閉じこもったり、<br/>その後、俺があんたを<br/>連れ出しに来た時、<br/>俺に告げ口したら<br/>退学って言ったよな",
"style":"font-size: 14px;color: black;background-color: white;left: 21%;top: 6%;"
},
{
"text" :"<span style=\"font-weight: bold;\">あああああああ!</span><br/>ばらしたな!<br/>き…君なんか<br/>退学だ、ニモ!",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 6.5%;"
},
{
"text" :"あー…<br/>試合の後で",
"style":"font-size: 14px;color: black;background-color: white;left: 47.5%;top: 13.8%;font-weight: bold;"
},
{
"text" :"皆もう知ってんだよ!<br/>放送がONのままだったから、<br/>俺はあんたが泣いてるのも<br/>全部聞こえてたんだよ!<br/>他にどうやってあんたを<br/>クローゼットから出そうって<br/>思いつくんだよ!?",
"style":"font-size: 15px;color: black;background-color: white;left: 62%;top: 2%;font-weight: bold;"
},
{
"text" :"気にすんな。<br/>オレは行くぜ",
"style":"font-size: 14px;color: black;background-color: white;left: 31.5%;top: 36.5%;"
},
{
"text" :"待てよ…<br/>これドア<br/>じゃない",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 37.5%;"
},
{
"text" :"うー…<br/>OK…<br/><span style=\"font-weight: bold;\">失礼だな</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 8.5%;top: 63%;"
},
{
"text" :"僕が<span style=\"font-weight: bold;\">ドア</span>だと?<br/>僕は<span style=\"font-weight: bold;\">障害物</span>さ。<br/>僕は<span style=\"font-weight: bold;\">誰も</span><br/>通さないよ!",
"style":"font-size: 15px;color: black;background-color: white;left: 44.5%;top: 62%;"
},
{
"text" :"笑わない<br/>でくれ…",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 74.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p20": [
{
"text" :"これは<br/>私個人の些細な<br/>ワガママに<br/>見えると思う…",
"style":"font-size: 14px;color: black;background-color: white;left: 17.5%;top: 9%;"
},
{
"text" :"でも真剣に<br/>やらなければ、<br/>本当に学校は<br/>終わりかも<br/>しれない",
"style":"font-size: 14px;color: black;background-color: white;left: 72.5%;top: 10%;"
},
{
"text" :"私の心臓は<br/>耐えられない<br/>もし私の戦ってきた<br/>全てが…",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 33%;"
},
{
"text" :"全てが…",
"style":"font-size: 16px;color: black;background-color: white;left: 74.5%;top: 36.5%;"
},
{
"text" :"彼<span style=\"font-weight: bold;\">は</span><br/>ドア<br/>なの?",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 58.5%;"
},
{
"text" :"待って、<br/>いや…<br/><span style=\"font-weight: bold;\">ジャイロ!?</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 60%;"
},
{
"text" :"怖がるなよ<br/>親愛なる<br/>教育者",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 69%;"
},
{
"text" :"オレには<br/>お前らに必要な<br/>全てのぉぉぉ<br/>答えがあるぜ",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 76%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ジャイロ・リーマンクタス(15)</span><br/>解散した科学クラブを探すために<br/>停学から復帰した",
"style":"font-size: 15px;color: black;background-color: white;left: 48%;top: 86%;"
},
],
"http://devilscandycomic.com/comic/ch04p21": [
{
"text" :"ここ来たか<br/>状況<br/>分かる?",
"style":"font-size: 16px;color: black;background-color: white;left: 5.5%;top: 4%;"
},
{
"text" :"<span style=\"font-weight: bold;\">全然、</span><br/>でもバイオ<br/>モンスターで<br/>全て解決だ!",
"style":"font-size: 14px;color: black;background-color: white;left: 24.5%;top: 3%;"
},
{
"text" :"バイオモンスター<br/><span style=\"font-weight: bold;\">チーム!</span><br/>うまくいくかも!",
"style":"font-size: 14px;color: black;background-color: white;left: 39.5%;top: 2%;"
},
{
"text" :"明らかに<br/>ダメだろ!!!<br/>最初に何で<br/>停学にしたのか<br/>忘れたか!?",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 2%;font-weight: bold;"
},
{
"text" :"OK、OK、<br/>ジャイロに<span style=\"font-weight: bold;\">一体</span><br/>だけ付けます、<br/>片腕ないですし",
"style":"font-size: 14px;color: black;background-color: white;left: 73.5%;top: 1.5%;"
},
{
"text" :"交渉成立!",
"style":"font-size: 14px;color: black;background-color: white;left: 82.5%;top: 9.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">パーフェクトォ<br/>ォォォ</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 7.5%;top: 28%;"
},
{
"text" :"本物の生徒でないと<br/>誰も<span style=\"font-weight: bold;\">疑うまい</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 71%;top: 28%;"
},
{
"text" :"カズ、<br/>ヒトミ呼べない?<br/>彼女なら多分<br/>1人で試合圧勝<br/>できるよ",
"style":"font-size: 14px;color: black;background-color: white;left: 5%;top: 37%;"
},
{
"text" :"彼女は<br/>今日歯医者<br/>なんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 28.1%;top: 39%;"
},
{
"text" :"待って…<br/>君は兄弟か<br/>何かいたね?",
"style":"font-size: 14px;color: black;background-color: white;left: 56%;top: 38%;"
},
{
"text" :"いや…<br/>兄弟が2人。<br/>プリンスと<br/>レトロな<br/>感じの?",
"style":"font-size: 14px;color: black;background-color: white;left: 66.6%;top: 37.5%;"
},
{
"text" :"それに姉妹<br/>かな?長い<br/>金髪の?",
"style":"font-size: 14px;color: black;background-color: white;left: 67.5%;top: 46.5%;"
},
{
"text" :"ある時は<br/>優雅な乙女、<br/>またある時は<br/>勇敢な剣士、<br/><span style=\"font-weight: bold;\">無数の仮面</span>と<br/>知られる!",
"style":"font-size: 16px;color: black;background-color: white;left: 5.7%;top: 57%;"
},
{
"text" :"舞台の学者、<br/><span style=\"font-weight: bold;\">リケット・<br/>パンターノ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 83%;"
},
{
"text" :"あぁ",
"style":"font-size: 16px;color: black;background-color: white;left: 50.7%;top: 58.5%;"
},
{
"text" :"つまり君は<br/>学校で唯一の<br/>デーモンの<br/>生徒の人?",
"style":"font-size: 14px;color: black;background-color: white;left: 55.5%;top: 59%;"
},
{
"text" :"はぁ…君の<br/>“兄弟姉妹”の<br/>参加を期待<br/>してたけど",
"style":"font-size: 15px;color: black;background-color: white;left: 79.9%;top: 59%;"
},
{
"text" :"デーモン3人<br/>は1.5ヒトミ<br/>の価値が…",
"style":"font-size: 14.5px;color: black;background-color: white;left: 81%;top: 67%;"
},
{
"text" :"でも君は<br/>すごいって<br/>わかるよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 75.5%;"
},
{
"text" :"この<br/>筋肉で?",
"style":"font-size: 16px;color: black;background-color: white;left: 64.5%;top: 77%;"
},
{
"text" :"プシュー!<br/>やるさ!",
"style":"font-size: 14px;color: black;background-color: white;left: 82.5%;top: 82.5%;"
},
{
"text" :"奴らに<br/>潰される<br/>だろうなぁ",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 90.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p22": [
{
"text" :"元気<br/>出して",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 3.5%;"
},
{
"text" :"ナイジェルの<br/>半分の大きさ<br/>でもないし<br/>彼の自信見て!",
"style":"font-size: 15px;color: black;background-color: white;left: 17.3%;top: 3%;"
},
{
"text" :"お前から<br/>引っこ抜く!<br/>(内臓を)",
"style":"font-size: 14px;color: black;background-color: white;left: 32.3%;top: 4%;font-weight: bold;"
},
{
"text" :"ハ、怖がる<br/>とでも?<br/>そもそも<span style=\"font-weight: bold;\">意味</span><br/>わかんない",
"style":"font-size: 14px;color: black;background-color: white;left: 43.4%;top: 2%;"
},
{
"text" :"OK、多分<br/>理想的でないが、<br/>選手8人<br/>控え1人だ",
"style":"font-size: 14px;color: black;background-color: white;left: 51.5%;top: 9.5%;"
},
{
"text" :"拒否したが、<br/>引き受けてる",
"style":"font-size: 14px;color: white;background-color: black;left: 54.5%;top: 28.3%;"
},
{
"text" :"お前ならかなり<br/>上手くいくさ。<br/>その、あー…<br/>お前の才能に<br/>あってる",
"style":"font-size: 14px;color: black;background-color: white;left: 69%;top: 5.5%;"
},
{
"text" :"やらない",
"style":"font-size: 15px;color: black;background-color: white;left: 82.3%;top: 12%;"
},
{
"text" :"はぁ?",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 45.7%;"
},
{
"text" :"それじゃ<br/>選手7人と<br/>控え1人だ、<br/>入るか<br/>カズ?",
"style":"font-size: 14px;color: black;background-color: white;left: 12.7%;top: 52.5%;"
},
{
"text" :"な…<br/>何だって?!<br/>ダメだ!",
"style":"font-size: 14px;color: black;background-color: white;left: 57%;top: 45.5%;font-weight: bold;"
},
{
"text" :"その、僕は<br/>チームを手伝い<br/>たいけど、<br/><span style=\"font-weight: bold;\">競技は</span>無理!",
"style":"font-size: 14px;color: black;background-color: white;left: 56%;top: 51%;"
},
{
"text" :"きっと<br/><span style=\"font-weight: bold;\">殺され</span>ちゃう!",
"style":"font-size: 16px;color: black;background-color: white;left: 85%;top: 56.7%;"
},
{
"text" :"文字通り<br/>本当に<br/>殺される!",
"style":"font-size: 14px;color: black;background-color: white;left: 88%;top: 62%;"
},
{
"text" :"パンドラを<br/>控えの1人に<br/>今は入れてよ。<br/>彼女ならやる",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 71.5%;"
},
{
"text" :"俺が言うのも<br/>変だけどさぁ、<br/>彼女は<br/><span style=\"font-weight: bold;\">そこにいる</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 25%;top: 71%;"
},
{
"text" :"無視<br/>できない<br/>だろ",
"style":"font-size: 15px;color: black;background-color: white;left: 37.5%;top: 73.5%;"
},
{
"text" :"それこそ<br/>彼女が<span style=\"font-weight: bold;\">僕に</span><br/>何日もしてきた<br/>ことだよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 50.5%;top: 72.5%;"
},
{
"text" :"今は<br/>深刻な状況だ!<br/>そんな幼稚なこと<br/>する余裕は<br/>今はないよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 82%;top: 83%;"
},
],
"http://devilscandycomic.com/comic/ch04p23": [
{
"text" :"バカな怒りを<br/>冷ましなよ<br/>とにかく2人共<br/>落ち着いて?",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 5%;"
},
{
"text" :"週末には<br/>解決してるし<br/>代役探しても<br/>いいわ",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 4%;"
},
{
"text" :"週末?<br/>そんな、<br/>滅相もないよ",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 4%;"
},
{
"text" :"試合は<br/>3時間後だよ",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 25%;"
},
{
"text" :"何だって~~~~~~~~?!",
"style":"font-size: 53px;color: black;background-color: white;left: 4.5%;top: 33%;font-weight: bold;"
},
{
"text" :"いかにも!",
"style":"font-size: 28px;color: black;background-color: white;left: 10.5%;top: 64%;font-weight: bold;"
},
{
"text" :"進め、我が受胎の<br/><ruby><rb>百人隊長<rp>(</rp><rt>センチュリオン</rt><rp>)</ruby>達…<br/>誕生<br/>アリーナへ!",
"style":"font-size: 17px;color: black;background-color: white;left: 69%;top: 74%;font-weight: bold;"
},
{
"text" :"何だって~~~~~~~~?!!",
"style":"font-size: 52.5px;color: black;background-color: white;left: 6%;top: 88.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p24": [
{
"text" :"ペナンブラ上部の<br/>誕生出産アリーナ<br/>(ヘムロックハートから街を通った所)",
"style":"font-size: 12px;color: black;background-color: white;left: 13.5%;top: 5.5%;"
},
{
"text" :"よし。<br/>全て順調な<br/>ようだな",
"style":"font-size: 16px;color: black;background-color: white;left: 50.5%;top: 44%;"
},
{
"text" :"それで<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 80.4%;top: 80.5%;"
},
{
"text" :"その…<br/>どうやって<br/>競技すれば<br/>いいの?",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 85%;"
},
],
"http://devilscandycomic.com/comic/ch04p25": [
{
"text" :"ルール<br/>知らないの?<br/><span style=\"font-weight: bold;\">誰も</span>ルール<br/>知らない?",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 3%;"
},
{
"text" :"OK、OK…<br/>試合は数分後だが<br/>目的は卵を<br/>フィールドの<br/>端から逆の端へ<br/>運ぶことだ",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 31%;"
},
{
"text" :"相手チームが<br/>阻止してくる。<br/>タックルで<br/>卵がチームを<br/>移る",
"style":"font-size: 16px;color: black;background-color: white;left:59%;top: 31%;"
},
{
"text" :"細かい事は<br/>重要じゃない…",
"style":"font-size: 16px;color: black;background-color: #e1e1e1;left: 73.5%;top: 36%;transform: rotate(-10deg);"
},
{
"text" :"見よ、シンプルだ!",
"style":"font-size: 30px;color: black;background-color: white;left: 58%;top: 52%;transform: rotate(7deg);"
},
{
"text" :"フィールドの端に<br/>卵を持っていって<br/>ゴールした時、<br/>少しダンスして…",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 63%;"
},
{
"text" :"神聖な<br/>裁定の巣の<br/>頂きから見てる<br/>崇高なる<br/>ゾマ・ゴラモスに<br/>武勇を示すんだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 28.5%;top: 65%;"
},
{
"text" :"そこは<br/>心配<br/>いらない",
"style":"font-size: 16px;color: black;background-color: white;left: 49%;top: 78%;"
},
{
"text" :"ただとにかく<br/>ドレイクに<br/>卵渡せば<br/>何とかする",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 78%;"
},
],
"http://devilscandycomic.com/comic/ch04p26": [
{
"text" :"<span style=\"font-weight: bold;\">ヘイ!</span><br/>1つ<br/>質問だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 6%;"
},
{
"text" :"何じゃ<br/>あれ!?",
"style":"font-size: 25px;color: black;background-color: white;left: 45%;top: 5%;font-weight: bold;"
},
{
"text" :"もちろん、<br/><span style=\"font-weight: bold;\">最ぃぃぃ愛の</span><br/>クラスメート、<br/><span style=\"font-weight: bold;\">チャーリー・<br/>ヤマモトだ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 27%;"
},
{
"text" :"お前らの幼馴染で<br/>彼はラボで<br/>超短期間で<br/>作成されては<br/><span style=\"font-weight: bold;\">絶対にない</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 32%;"
},
{
"text" :"彼が<br/>構造的に不安定で<br/>放射線が漏れてる<br/>という噂は<br/>無論嘘だぜ",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 52%;"
},
{
"text" :"ここに来た<br/>お前らの優しい<br/>同胞はとても<br/>頼りになるぞ",
"style":"font-size: 16px;color: black;background-color: white;left: 79%;top: 54%;"
},
{
"text" :"生誕の<br/><ruby><rb>組み鐘<rp>(</rp><rt>カリヨン</rt><rp>)</ruby>が<br/>鳴り響いてる!",
"style":"font-size: 16px;color: black;background-color: white;left: 21%;top: 73%;font-weight: bold;"
},
{
"text" :"聞け!",
"style":"font-size: 25px;color: black;background-color: white;left: 15%;top: 71.5%;font-weight: bold;"
},
{
"text" :"戦いだ!",
"style":"font-size: 25px;color: black;background-color: white;left: 56%;top: 75%;font-weight: bold;"
},
{
"text" :"うわあああぁ<br/>これ本当に<br/>マズくない?",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 68.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p27": [
{
"text" :"み・み・見ろよ、ヨォ!<br/>い・い・家の中で<br/>危ねぇお喋り!",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 7.5%;font-weight: bold;width: 230px;"
},
{
"text" :"この最も壮大な試合の<br/>アナウンサーが俺だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 64.5%;top: 12%;font-weight: bold;width: 190px;height: 80px;display: flex;align-items: center;justify-content: center;"
},
{
"text" :"我らが屈強な<br/>戦士達が出場だ、<br/>新たな<br/>ゾマ・ゴラモスの<br/>誕生を記念して、<br/>比喩的な剣を掲げる!",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 27%;font-weight: bold;"
},
{
"text" :"紳士淑女の皆様、<br/>誕生アリーナへ<br/>スカーレット クラウン<br/>インフェルノズと<br/>ヘムロック ハート<br/>ナイトメアズを<br/>ご歓迎下さい",
"style":"font-size: 14px;color: black;background-color: white;left: 35%;top: 50%;font-weight: bold;width: 214px;"
},
],
"http://devilscandycomic.com/comic/ch04p28": [
{
"text" :"両チームとも<br/>卵の落下の<br/>競争を制するために<br/>塔を作るでしょう",
"style":"font-size: 16px;color: black;background-color: white;left: 11.8%;top: 59%;font-weight: bold;"
},
{
"text" :"クラスB高校ルールに<br/>従い、選手達は地面から<br/><ruby><rb>約3m<rp>(</rp><rt>10フィート</rt><rp>)</ruby>以上の<br/>飛行は禁止。<br/>投擲の高度制限は無し",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 67%;font-weight: bold;"
},
{
"text" :"いつも通り、<br/>試合の継続は<br/>卵の孵化まで<br/>…",
"style":"font-size: 17px;color: black;background-color: white;left: 74.2%;top: 72%;font-weight: bold;"
},
{
"text" :"…または<br/>選手全員が<br/>死ぬまでだ",
"style":"font-size: 20px;color: black;background-color: white;left: 72%;top: 82%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p29": [
{
"text" :"確か死者は<br/><span style=\"font-weight: bold;\">そんなに</span><br/>いないはず…",
"style":"font-size: 14px;color: black;background-color: white;left: 27.7%;top: 25%;"
},
{
"text" :"やぁ<br/>見知らぬ人<br/>緊張してるね<br/>親ですか?",
"style":"font-size: 15px;color: black;background-color: white;left: 43.5%;top: 5.5%;"
},
{
"text" :"娘は誇りだ<br/>ほら、あの娘",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 11%;width: 95px;"
},
{
"text" :"あ…いえ、<br/>私はヘムロック<br/>ハートの<br/>校長です",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 6%;"
},
{
"text" :"言いにくいですが<br/>あなたの子供達に<br/>勝ち目はなさそう<br/>ですな",
"style":"font-size: 14px;color: black;background-color: white;left: 19%;top: 37.5%;"
},
{
"text" :"本当に<br/>勝てると<br/>思います?",
"style":"font-size: 16px;color: black;background-color: white;left: 41.6%;top: 37.5%;"
},
{
"text" :"やってみるまで<br/>わかりません",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 38.7%;"
},
{
"text" :"ああ、失礼。<br/>つまり…<br/>一般入試校は<br/>前例がありません。<br/>これは全く<br/>未知の領域、<br/>と言えます",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 64%;"
},
{
"text" :"躓いたり<br/>落ちることも<br/>あるでしょうが、<br/>新たな世界へ道を<br/>作ると信じてます",
"style":"font-size: 14px;color: black;background-color: white;left: 53.5%;top: 65%;"
},
{
"text" :"今後とも<br/>よろしく<br/>♥",
"style":"font-size: 14px;color: black;background-color: white;left: 84.5%;top: 90.2%;"
},
],
"http://devilscandycomic.com/comic/ch04p30": [
{
"text" :"これで美しく<br/>なれるのよ、<br/>親愛なる<br/>私の少年君",
"style":"font-size: 14px;color: black;background-color: white;left: 34%;top: 4%;width: 106px;"
},
{
"text" :"多分<br/>開けた方が<br/>効果的で<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 59.5%;top: 3%;"
},
{
"text" :"ハウッ!",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 15.2%;font-weight: bold;"
},
{
"text" :"ゴホッ",
"style":"font-size: 17px;color: black;background-color: white;left: 62.5%;top: 27.8%;font-weight: bold;"
},
{
"text" :"ああ、<br/>ハマった!",
"style":"font-size: 12px;color: black;background-color: white;left: 68%;top: 29%;"
},
{
"text" :"あむ",
"style":"font-size: 14px;color: black;background-color: white;left: 89.5%;top: 28%;transform: rotate(-15deg);"
},
{
"text" :"塔達が<br/>できてゆく!",
"style":"font-size: 16px;color: black;background-color: white;left: 67.6%;top: 43%;font-weight: bold;"
},
{
"text" :"いや、その<br/>塔が1つ<br/>できた",
"style":"font-size: 16px;color: black;background-color: white;left: 78.5%;top: 46%;font-weight: bold;"
},
{
"text" :"ウォルトン、<br/>お前は下だ!<br/>重すぎる!",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 61%;"
},
{
"text" :"おい、失礼な!<br/>僕は“重く”ない<br/>僕は端整だ!<br/>それにスターだ!<br/>上だ!上だ!",
"style":"font-size: 14px;color: black;background-color: white;left: 43%;top: 59.4%;"
},
{
"text" :"あー<br/>…",
"style":"font-size: 10px;color: black;background-color: white;left: 51.4%;top: 81%;"
},
{
"text" :"いずれに<br/>せよ、<br/>天が開く!",
"style":"font-size: 16px;color: black;background-color: white;left: 61.2%;top: 60%;font-weight: bold;width: 85px;"
},
{
"text" :"今夜の<br/>栄誉ある幼生の<br/>誇り高き両親が<br/>卵を落とす準備<br/>ができている!",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 60.4%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p31": [
],
"http://devilscandycomic.com/comic/ch04p32": [
{
"text" :"インフェルノズ<br/>が卵を捉えた!",
"style":"font-size: 20px;color: black;background-color: white;left: 68%;top: 55.1%;font-weight: bold;width: 141px;height: 96px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch04p33": [
{
"text" :"だが<br/>待った<br/>…!",
"style":"font-size: 22px;color: black;background-color: white;left: 22%;top: 27%;font-weight: bold;"
},
{
"text" :"レッド<br/>ホット<br/>インター<br/>セプション!",
"style":"font-size: 20px;color: black;background-color: white;left: 29.4%;top: 62%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p34": [
{
"text" :"そして今、<br/>栄光の<br/>大はしゃぎ!",
"style":"font-size: 20px;color: black;background-color: white;left: 56%;top: 44.5%;font-weight: bold;height: 124px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"未来へ<br/>の力!",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 53.5%;"
},
{
"text" :"チャカ チャカ<br/>ワー ワー<br/>フー!",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 58.5%;"
},
{
"text" :"ヒック!",
"style":"font-size: 12px;color: black;background-color: white;left: 47%;top: 85.5%;height: 30px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"オレのエッグ<br/>スクラムの<br/>英雄よ<br/>見てます?",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 70%;"
},
{
"text" :"この<br/>栄光と…<span style=\"font-weight: bold;\">命<br/></span>あなたの<br/>おかげだ",
"style":"font-size: 16px;color: black;background-color: white;left: 85.5%;top: 79%;"
},
],
"http://devilscandycomic.com/comic/ch04p35": [
{
"text" :"両親が裁定の<br/>巣に着地。<br/>彼の動きを<br/>気に入るか<br/>見ましょう!",
"style":"font-size: 14px;color: black;background-color: white;left: 20.3%;top: 14.3%;"
},
{
"text" :"最高得点!<br/>ゴール4点<br/>ダンス6点!",
"style":"font-size: 16px;color: black;background-color: white;left: 37%;top: 5%;width: 106px;"
},
{
"text" :"全く予想外!<br/>彼の誠意に<br/>動かされた<br/>としか思えない!",
"style":"font-size: 15px;color: black;background-color: white;left: 47%;top: 9.5%;"
},
{
"text" :"ダンスが<br/>最重要<br/>なんだ…?!",
"style":"font-size: 14px;color: black;background-color: white;left: 39%;top: 24.1%;"
},
{
"text" :"見て、<br/>パンドラ!<br/>君もあんなの<br/>できるよね?",
"style":"font-size: 14px;color: black;background-color: white;left: 69%;top: 7%;"
},
{
"text" :"いいぞ、<br/>ドレイクが<br/>この調子<br/>なら…",
"style":"font-size: 16px;color: black;background-color: white;left: 7%;top: 41%;"
},
{
"text" :"…彼女<br/>抜きでも<br/>大丈夫だな",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 39%;"
},
{
"text" :"やる<br/>じゃん",
"style":"font-size: 15px;color: black;background-color: white;left: 13.5%;top: 62%;"
},
{
"text" :"あれは<br/>スゴ<br/>かった!",
"style":"font-size: 16px;color: black;background-color: white;left: 5%;top: 65.5%;"
},
{
"text" :"ふん…",
"style":"font-size: 16px;color: black;background-color: white;left: 24.5%;top: 63%;transform: rotate(-10deg);"
},
{
"text" :"奇襲は<br/>2度は通じない<br/>オレ1人じゃ<br/>止めきれない",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 58.5%;height:116px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"守備を<br/>固くする<br/>必要がある",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 59.4%;"
},
{
"text" :"君に期待<br/>してるよ、<br/>ウォル…<br/>えーと…",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 80%;"
},
{
"text" :"ドア…<br/>ドアリィ?<br/>ドアストン?",
"style":"font-size: 16px;color: black;background-color: white;left: 51%;top: 81.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p36": [
{
"text" :"OK、<br/>まず第一<br/>にだな…",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 6%;"
},
{
"text" :"来て<br/>るよ!",
"style":"font-size: 33px;color: black;background-color: white;left: 39%;top: 35%;font-weight: bold;"
},
{
"text" :"あぐっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 41.5%;top: 54%;font-weight: bold;"
},
{
"text" :"しっっ<br/>れぇぇい",
"style":"font-size: 14px;color: black;background-color: white;left: 33%;top: 67.5%;"
},
{
"text" :"いや…",
"style":"font-size: 16px;color: black;background-color: white;left: 84.5%;top: 81%;"
},
{
"text" :"まだだ…!",
"style":"font-size: 16px;color: black;background-color: white;left: 88.5%;top: 86.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p37": [
{
"text" :"インフェルノズ<br/>の得点で<br/>ダンスが<br/>ヒット!",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 66.5%;font-weight: bold;"
},
{
"text" :"得点は<br/>今<br/>10対10!",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 71%;font-weight: bold;"
},
{
"text" :"オレらは奴らを<br/>打ち破れないし<br/>チームワークも<br/>良くない",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 70%;"
},
{
"text" :"唯一の選択肢は<br/>妙なクソの寄集めで<br/>奴らを驚かせて<br/>ドレイクの突破口が<br/>できるのを<br/>望むだけだ",
"style":"font-size: 14px;color: black;background-color: white;left: 39%;top: 81%;"
},
{
"text" :"問題ない。<br/>私にいい<br/>考えがある",
"style":"font-size: 14px;color: black;background-color: white;left: 71%;top: 82.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p38": [
{
"text" :"OK<br/>ウォルトン<br/>輝く時だ",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 4%;"
},
{
"text" :"奴らに<br/><span style=\"font-weight: bold;\">本物の</span>星は<br/>何で<br/>できてるか<br/>見せよう",
"style":"font-size: 15px;color: black;background-color: white;left: 32%;top: 3%;"
},
{
"text" :"中央前面の<br/>配置が<br/>君には<br/>ふさわしい",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 3%;"
},
{
"text" :"いよいよ<br/>か…",
"style":"font-size: 15px;color: black;background-color: white;left: 58%;top: 4.5%;"
},
{
"text" :"卵?!",
"style":"font-size: 16px;color: black;background-color: white;left: 65.2%;top: 12%;"
},
{
"text" :"準備<br/>して、<br/>ドレイク",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 31.5%;"
},
{
"text" :"わぁ!!",
"style":"font-size: 37.5px;color: black;background-color: white;left: 11%;top: 88%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p39": [
{
"text" :"行け 行け<br/>行け!!",
"style":"font-size: 23px;color: black;background-color: white;left: 74%;top: 4%;font-weight: bold;"
},
{
"text" :"ゴメン、<br/>ドアストン!",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 31.5%;"
},
{
"text" :"卵!",
"style":"font-size: 30px;color: black;background-color: white;left: 83%;top: 33%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p40": [
{
"text" :"ドレイク、<br/>危ない!!",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 4.3%;"
},
{
"text" :"さらに得点<br/>ヘムロック<br/>ハート!<br/>そして今、<br/>栄光の大…",
"style":"font-size: 19px;color: black;background-color: white;left: 76.5%;top: 62%;font-weight: bold;"
},
{
"text" :"あら<br/>らら",
"style":"font-size: 20px;color: black;background-color: white;left: 84.5%;top: 74%;font-weight: bold;"
},
{
"text" :"美味しい<br/>卵",
"style":"font-size: 16px;color: black;background-color: white;left: 55.2%;top: 73%;"
},
],
"http://devilscandycomic.com/comic/ch04p41": [
{
"text" :"奴を<br/>止めろ<br/>!!",
"style":"font-size: 12px;color: black;background-color: white;left: 52%;top: 3%;"
},
{
"text" :"吐け!!",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 5.2%;"
},
{
"text" :"起きて、<br/>キッド!",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 26%;font-weight: bold;"
},
{
"text" :"来て。<br/>急いで!",
"style":"font-size: 18px;color: black;background-color: white;left: 48.5%;top: 32.5%;font-weight: bold;"
},
{
"text" :"ん…?",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 28%;"
},
{
"text" :"怖がら<br/>ないで",
"style":"font-size: 20px;color: black;background-color: white;left: 31%;top: 50%;font-weight: bold;"
},
{
"text" :"君を<br/>救いに<br/>来た!",
"style":"font-size: 20px;color: black;background-color: white;left: 38%;top: 58%;font-weight: bold;width: 80px;"
},
],
"http://devilscandycomic.com/comic/ch04p42": [
{
"text" :"消防士<br/>…",
"style":"font-size: 22px;color: black;background-color: white;left: 14%;top: 6%;"
},
{
"text" :"そうか",
"style":"font-size: 30px;color: black;background-color: white;left: 21%;top: 12%;"
},
{
"text" :"エッグ<br/>スクラム<br/>選手じゃ<br/>なかったのか",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 8%;"
},
{
"text" :"なんでエッグ<br/>スクラム<br/>選手じゃ<br/>ないんだ?",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 26%;"
},
{
"text" :"すまない<br/>チームの皆<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 15.5%;top: 41%;"
},
{
"text" :"服を掛けてくる。<br/>今まで、オレは<br/>消防士になるべき<br/>だったんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 21%;top: 46%;"
},
{
"text" :"なぁ、<br/>おい、<br/>大丈夫?",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 42%;"
},
{
"text" :"おい<br/>おい<br/>おい",
"style":"font-size: 18px;color: black;background-color: white;left: 62.2%;top: 72.5%;"
},
{
"text" :"あいつ<br/><span style=\"font-weight: bold;\">どうした<br/>??</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 68%;top: 74.5%;"
},
{
"text" :"とにかく<br/>あいつ必要<br/>ないぜ!",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 73.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p43": [
{
"text" :"OK、<br/>処理する事が<br/>沢山ある",
"style":"font-size: 15px;color: black;background-color: white;left: 11%;top: 8%;"
},
{
"text" :"卵は無傷で、<br/>ナイトメアズは<br/>凄惨な罰は無し。<br/>ゴールで4点だが<br/>卵食いダンスで<br/>-6点…",
"style":"font-size: 14px;color: black;background-color: white;left: 47%;top: 9%;width: 121px;"
},
{
"text" :"…つまり<br/>最後のゴールで<br/>2失点。<br/>そして選手1名が<br/>謎の失踪、<br/>だから選手交代を<br/>するか…",
"style":"font-size: 14px;color: black;background-color: white;left: 60%;top: 15.5%;"
},
{
"text" :"タイムア~~ウト!",
"style":"font-size: 30px;color: black;background-color: white;left: 9%;top: 38%;font-weight: bold;"
},
{
"text" :"ああ!",
"style":"font-size: 16px;color: black;background-color: white;left: 10.5%;top: 50%;"
},
{
"text" :"つまり、<br/>そう…<br/>交代だ",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 53%;"
},
{
"text" :"よし、まだ<br/>チャンスは<br/>ある。<br/>誰が…",
"style":"font-size: 14px;color: black;background-color: white;left: 18%;top: 55%;"
},
{
"text" :"カズゥゥ…",
"style":"font-size: 16px;color: black;background-color: white;left: 48.5%;top: 79%;"
},
{
"text" :"僕…<br/>僕の番<br/>かな",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 54%;"
},
],
"http://devilscandycomic.com/comic/ch04p44": [
{
"text" :"パンドラ、<br/>もし君の気が<br/>変わるなら、<br/>今がいい時だよ",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 5.5%;"
},
{
"text" :"僕は君に何も<br/>させられない。<br/>君に何か<br/>学ばせることも<br/>できない",
"style":"font-size: 14px;color: black;background-color: white;left: 59%;top: 3%;"
},
{
"text" :"僕はただ普通に<br/>生きて欲しかった<br/>それがどういう<br/>意味かは<br/>わからない<br/>けど",
"style":"font-size: 14px;color: black;background-color: white;left: 70.5%;top: 7%;"
},
{
"text" :"さぁ、<br/>なんとか<br/>しようぜ!",
"style":"font-size: 14px;color: black;background-color: white;left: 69%;top: 22%;"
},
{
"text" :"でも、<br/>1つだけ<br/>言うよ",
"style":"font-size: 16px;color: black;background-color: white;left: 15.8%;top: 38.5%;width: 71px;"
},
{
"text" :"誰かに助けが<br/>必要な時に<br/>座って<br/>何もしないのは<br/>間違ってる",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 41.5%;"
},
{
"text" :"それで<br/>人が納得しても<br/>しなくても…",
"style":"font-size: 16px;color: black;background-color: white;left: 12.6%;top: 60%;"
},
{
"text" :"僕が<br/>できるのは<br/>率先して<br/>手本を示す<br/>だけだ",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 59%;"
},
{
"text" :"もし僕が<br/>死んでも、<br/>ただ僕は君に<br/>とっての最善を<br/>望んでたって<br/>覚えてて",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 60%;"
},
],
"http://devilscandycomic.com/comic/ch04p45": [
{
"text" :"キャッ!!",
"style":"font-size: 14px;color: black;background-color: white;left: 33%;top: 8.7%;font-weight: bold;"
},
{
"text" :"わぁ!",
"style":"font-size: 16px;color: black;background-color: white;left: 61.1%;top: 7%;font-weight: bold;"
},
{
"text" :"そしてぇぇぇぇ<br/>再び動きが<br/>あるぞ!",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 63%;"
},
{
"text" :"うわ、<br/>ええい!<br/>押し返せ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 63.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p46": [
{
"text" :"アスモディア!!",
"style":"font-size: 21px;color: black;background-color: white;left: 68.5%;top: 63.5%;font-weight: bold;"
},
{
"text" :"あらら…",
"style":"font-size: 16px;color: white;background-color: #2f2f2f;left: 67.5%;top: 83.6%;transform: rotate(-15deg);"
},
],
"http://devilscandycomic.com/comic/ch04p47": [
{
"text" :"彼女を返せ<br/>デカ毛皮の<br/>ろくでなし!",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 7%;font-weight: bold;"
},
{
"text" :"ゲップ",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 18.4%;font-weight: bold;"
},
{
"text" :"ゾマは仰る!<br/>試合を<br/>続けよと!<br/>控えを出せ!",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 76%;font-weight: bold;height: 108px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/nycc": [
{
"text" :"やぁ みんな!",
"style":"font-size: 47px;color: black;background-color: #cacaca;left: 17%;top: 6%;font-weight: bold;"
},
{
"text" :"デビルズキャンディは<br/>日曜の夜<br/>いつもの時間に再開するよ、<br/>でもその前に、<br/>ニュヨーク コミコン、<br/>ブース U-7で会おう!",
"style":"font-size: 14px;color: black;background-color: #cacaca;left: 17%;top: 13%;text-align: left;width: 226px;font-weight: bold;"
},
{
"text" :"デビルズキャンディを<br/>印刷した<br/>本物の紙上の本を<br/>販売するよ。",
"style":"font-size: 14px;color: black;background-color: #cacaca;left: 17%;top: 24.2%;text-align: left;width: 211px;font-weight: bold;"
},
{
"text" :"最初の本の<br/>コミコンに<br/>来れない人達も、<br/>心配ご無用。<br/>コンベンションの後<br/>オンライン注文を<br/>できるだけ早く<br/>オープンするよ。<br/>関連ステッカーも<br/>あるかも!",
"style":"font-size: 14px;color: black;background-color: #cacaca;left: 17%;top: 32%;text-align: left;width: 225px;font-weight: bold;"
},
{
"text" :"読んでくれてありがとう!!",
"style":"font-size: 17px;color: black;background-color: #cacaca;left: 17%;top: 49.8%;text-align: left;font-weight: bold;"
},
{
"text" :"--REM",
"style":"font-size: 19px;color: black;background-color: #cecece;left: 17%;top: 53%;text-align: left;width: 81px;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p48": [
{
"text" :"あの小さな子と<br/>この世界で<br/>共にいる。<br/>それが私達の<br/>誓いよ",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 6%;"
},
{
"text" :"それは<br/>アスモディア<br/>の望みでも<br/>あった",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 5%;"
},
{
"text" :"アスモディア<br/>の望みは<br/><span style=\"font-weight: bold;\">敵の粉砕だ!</span>",
"style":"font-size: 22px;color: black;background-color: white;left: 45%;top: 31%;"
},
{
"text" :"えぇ…",
"style":"font-size: 15px;color: black;background-color: #b3b3b3;left: 64%;top: 33%;transform: rotate(-25deg);"
},
{
"text" :"インフェルノズ<br/>はアスモディア<br/>の交代を選択、<br/>だがこの構成で<br/>彼女が同じ<br/>役割をできるか<br/>疑問で…",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 32.5%;font-weight: bold;"
},
{
"text" :"誰も<br/>アスモディア<br/の>代わりは<br/>できない!",
"style":"font-size: 14px;color: black;background-color: white;left: 83%;top: 48%;font-weight: bold;"
},
{
"text" :"オレの<br/>役割は…",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 63%;font-weight: bold;"
},
{
"text" :"復讐だ",
"style":"font-size: 25px;color: black;background-color: white;left: 80%;top: 68.5%;font-weight: bold;width: 135px;"
},
{
"text" :"じ…充分<br/>そうだ",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 72.2%;font-weight: bold;"
},
{
"text" :"ナイトメアズ<br/>ですが、控え選手が<br/>いないとの情報です。<br/>残念ながら、それは<br/>あの人食い生徒が<br/>試合が終了し、<br/>即座に警察に<br/>護送されるまで<br/>競技を続けることを<br/>意味します",
"style":"font-size: 14px;color: black;background-color: white;left: 40%;top: 77%;font-weight: bold;width: 152px;"
},
{
"text" :"弱い慰め<br/>ですが、卵は<br/>インフェルノズ<br/>に行きます",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 84%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p49": [
],
"http://devilscandycomic.com/comic/ch04p50": [
{
"text" :"アスモディア<br/>のために!",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 7%;font-weight: bold;"
},
{
"text" :"決定的な<br/>10点<br/>ゴール!",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 64.5%;font-weight: bold;"
},
{
"text" :"ナイトメアズ<br/>に時間を<br/>あげましょう…<br/>その…芝生から<br/>引き剥がす<br/>ために",
"style":"font-size: 14px;color: black;background-color: white;left: 63%;top: 67%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p51": [
{
"text" :"お前は<br/>巻き添え<br/>避けた方が<br/>いい、相棒",
"style":"font-size: 15px;color: black;background-color: white;left: 23%;top: 6%;"
},
{
"text" :"孵化まで<br/>終われない。<br/>寝てたら<br/>またエルボー<br/>ドロップが",
"style":"font-size: 13px;color: black;background-color: white;left: 33%;top: 10.5%;"
},
{
"text" :"そしたら<br/>僕死ぬ…",
"style":"font-size: 14px;color: black;background-color: #f5f5f5;left: 33%;top: 23%;width: 85px;"
},
{
"text" :"言って、<br/>ウォルトン<br/>あの凄い戦術を<br/>もう一度やるって?<br/>超カッコいい。<br/><span style=\"font-weight: bold;\">ハンサム</span>だわ。<br/>ハンサムは<br/>言ったっけ?",
"style":"font-size: 13px;color: black;background-color: white;left: 47%;top: 5%;"
},
{
"text" :"多分<br/>コイツ<br/>女に興味<br/>ねーな",
"style":"font-size: 14px;color: black;background-color: white;left: 62%;top: 27%;"
},
{
"text" :"あなたは<br/>夢のようよ、<br/>ウォルオン!<br/>またブッ倒して<br/>踏ませて?",
"style":"font-size: 14px;color: black;background-color: white;left: 82%;top: 8%;font-weight: bold;"
},
{
"text" :"何だと、<br/>俺じゃ不満か<br/>クソブロック<br/>!?",
"style":"font-size: 14px;color: black;background-color: white;left: 26%;top: 38%;font-weight: bold;"
},
{
"text" :"ドレイクじゃ<br/>ないけど、<br/>ぼく<span style=\"font-weight: bold;\">は</span>デーモン<br/>だよ、少なく<br/>とも",
"style":"font-size: 14px;color: black;background-color: white;left: 39%;top: 40%;"
},
{
"text" :"ぼくに卵を<br/>渡して、ニモと<br/>ジェラルド…<br/>違う…ニモと<br/>ペトラでぼくを<br/>前線に投げて",
"style":"font-size: 14px;color: black;background-color: white;left: 51%;top: 39%;"
},
{
"text" :"もし<br/>また奴らを<br/>驚かせれば、<br/>ぼくが得点<br/>できる",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 40%;"
},
{
"text" :"叫んで<br/>逃げ回るのは<br/>御免だし。<br/>やってみる",
"style":"font-size: 14px;color: black;background-color: white;left: 13%;top: 65%;"
},
{
"text" :"ハアッ!",
"style":"font-size: 16px;color: black;background-color: white;left: 87%;top: 86.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p52": [
{
"text" :"んふ!",
"style":"font-size: 16px;color: black;background-color: white;left: 59.5%;top: 45%;font-weight: bold;"
},
{
"text" :"で、小さな<br/>裏切者、<br/>除け者学校で<br/>デーモンの<br/>お前は何?",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 57.5%;"
},
{
"text" :"障害か<br/>何かあるの?<br/>脳損傷?",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 59.6%;"
},
{
"text" :"ぼ…",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 74.5%;"
},
{
"text" :"ぼくは<br/>遠い国の<br/>プリンスさ、<br/>庶民の中で<br/>暮らしに来…",
"style":"font-size: 15px;color: black;background-color: white;left: 83%;top: 57%;"
},
{
"text" :"はい。<br/>脳損傷と",
"style":"font-size: 16px;color: black;background-color: white;left: 79%;top: 81%;"
},
{
"text" :"あぐ!",
"style":"font-size: 15px;color: black;background-color: white;left: 79%;top: 90%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p53": [
{
"text" :"さらに<br/>10点だ<br/>インフェルノズ!",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 8%;font-weight: bold;"
},
{
"text" :"さらに<br/>追加得点だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 48%;top: 14%;font-weight: bold;"
},
{
"text" :"インター<br/>セプション!",
"style":"font-size: 18px;color: black;background-color: white;left: 72.5%;top: 23.5%;font-weight: bold;"
},
{
"text" :"素早い<br/>反撃により<br/>さらに完璧な<br/>10点だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 64.4%;top: 42%;font-weight: bold;"
},
{
"text" :"イン<br/>フェル<br/>ノズ!",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 48%;font-weight: bold;"
},
{
"text" :"イン<br/>フェル<br/>ノズ!",
"style":"font-size: 12px;color: black;background-color: white;left: 35%;top: 41%;font-weight: bold;"
},
{
"text" :"イン<br/>フェル<br/>ノズ!",
"style":"font-size: 12px;color: black;background-color: white;left: 45%;top: 43.5%;font-weight: bold;"
},
{
"text" :"また<br/>得点だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 54%;font-weight: bold;"
},
{
"text" :"さらに<br/>得点!",
"style":"font-size: 25px;color: black;background-color: white;left: 76%;top: 75%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p54": [
{
"text" :"ナイトメアズ<br/>は服従を拒否、<br/>だが勝利への道は<br/>ないようだ。<br/>残念だが、卵は<br/>まだ孵化の兆候を<br/>見せない",
"style":"font-size: 14px;color: black;background-color: white;left: 28.5%;top: 9%;"
},
{
"text" :"ご覧の醜態<br/>ですが、私は強く<br/>非難できません。<br/>誰がこれが成長に<br/>負の影響があると<br/>わかるでしょうか?",
"style":"font-size: 14px;color: black;background-color: white;left: 38%;top: 19%;"
},
{
"text" :"タ…<br/>タイム<br/>アウト!",
"style":"font-size: 14px;color: black;background-color: white;left: 88%;top: 17%;font-weight: bold;"
},
{
"text" :"ナイトメアズの<br/>タイムアウト要請<br/>慈悲に思えるが、<br/>何が好転するのか<br/>現時点では<br/>想像できません",
"style":"font-size: 14px;color: black;background-color: white;left: 16%;top: 42%;"
},
{
"text" :"エッグ<br/>スクラムは<br/><span style=\"font-weight: bold;\">手が</span>必要<br/>か…",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 54%;"
},
{
"text" :"パンドラ…",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 70%;"
},
],
"http://devilscandycomic.com/comic/ch04p55": [
{
"text" :"試合を<br/>知って、<br/>すぐに来たの",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 5.5%;"
},
{
"text" :"上手く<br/>いってない<br/>みたいね",
"style":"font-size: 16px;color: black;background-color: white;left: 9.5%;top: 12%;"
},
{
"text" :"ヒトミ<br/>…?",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 18.5%;"
},
{
"text" :"綺麗な<br/>歯ね",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 27%;"
},
{
"text" :"それでカズは<br/>また誰かの騒動に<br/>夢中になってるん<br/>でしょ?",
"style":"font-size: 14px;color: black;background-color: white;left: 77.5%;top: 6%;"
},
{
"text" :"あたし自身本当に<br/>理解できないわ。<br/>あたしはあんな風に<br/>してあげられること<br/>なんてないもの",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 14%;"
},
{
"text" :"でも時に、<br/>自分にしか<br/>できないことが<br/>あるなら…",
"style":"font-size: 16px;color: black;background-color: white;left: 6.5%;top: 45.5%;"
},
{
"text" :"私は<br/>やるべき<br/>だと思う",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 43%;"
},
{
"text" :"それが<br/>“普通”?",
"style":"font-size: 19px;color: black;background-color: white;left: 79.5%;top: 57%;"
},
{
"text" :"“普通”?",
"style":"font-size: 18px;color: black;background-color: white;left: 11%;top: 66%;"
},
{
"text" :"違うわ。<br/>超カッコいい<br/>のよ",
"style":"font-size: 16px;color: black;background-color: white;left: 21%;top: 68%;"
},
],
"http://devilscandycomic.com/comic/ch04p56": [
{
"text" :"ところで<br/>カズは<br/>どこ?",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 5%;"
},
{
"text" :"救護の<br/>はずよね?<br/>応援?",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 6%;width: 96px;"
},
{
"text" :"つまり、彼が<br/><span style=\"font-weight: bold;\">出場してる</span><br/>はずは…",
"style":"font-size: 16px;color: black;background-color: white;left: 44.3%;top: 6%;"
},
{
"text" :"誰が<br/>やったの?",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 40.7%;font-weight: bold;"
},
{
"text" :"奴ら<br/>殺す!",
"style":"font-size: 20px;color: black;background-color: white;left: 9.5%;top: 56.2%;font-weight: bold;width: 76px;"
},
{
"text" :"全員<br/>ブッ殺す!",
"style":"font-size: 28px;color: black;background-color: white;left: 13%;top: 62%;font-weight: bold;"
},
{
"text" :"骨から<br/>肉を喰い<br/>千切って<br/>やる!",
"style":"font-size: 25px;color: black;background-color: white;left: 54%;top: 78%;font-weight: bold;width: 128px;"
},
],
"http://devilscandycomic.com/comic/ch04p57": [
{
"text" :"おい<br/>審判!<br/>何してる?",
"style":"font-size: 14px;color: black;background-color: white;left: 46%;top: 36.7%;"
},
{
"text" :"試合<br/>するぞ!",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 39%;"
},
],
"http://devilscandycomic.com/comic/ch04p58": [
{
"text" :"気が<br/>変わって<br/>くれたね<br/>やっぱり…",
"style":"font-size: 15px;color: black;background-color: white;left: 45.7%;top: 16%;"
},
{
"text" :"…<br/>いえ",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 37%;"
},
{
"text" :"私はただ<br/>超カッコいい<br/>だけよ",
"style":"font-size: 14px;color: black;background-color: white;left: 78%;top: 41%;"
},
{
"text" :"よし、<br/>ナイトメアズは<br/>交代したようだ!<br/>新選手が新たな<br/>人食いでは<br/>ないことを<br/>望みます",
"style":"font-size: 14px;color: black;background-color: white;left: 23%;top: 53%;"
},
{
"text" :"いずれにせよ<br/>インフェルノズ<br/>が卵を<br/>持っている",
"style":"font-size: 14px;color: black;background-color: white;left: 38.5%;top: 56.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p59": [
{
"text" :"やり方<br/>わかるか?",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 3%;"
},
{
"text" :"エリオット<br/>何なの<br/>これは?",
"style":"font-size: 16px;color: black;background-color: white;left: 33%;top: 12%;"
},
{
"text" :"挑戦?",
"style":"font-size: 33px;color: black;background-color: white;left: 65.9%;top: 21.5%;"
},
{
"text" :"ラアァ!",
"style":"font-size: 20px;color: black;background-color: white;left: 82.3%;top: 57%;font-weight: bold;"
},
{
"text" :"クッ!",
"style":"font-size: 17px;color: black;background-color: white;left: 72%;top: 87.1%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p60": [
{
"text" :"アッ!",
"style":"font-size: 15px;color: black;background-color: white;left: 54%;top: 14%;font-weight: bold;"
},
{
"text" :"インター<br/>セプション!",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 21.5%;font-weight: bold;"
},
{
"text" :"待望の<br/>ナイトメアズの<br/>ゴールだ!<br/>そして彼女の<br/>大はしゃぎ、<br/>彼女は…",
"style":"font-size: 14px;color: black;background-color: white;left: 19.5%;top: 30.5%;font-weight: bold;"
},
{
"text" :"あー、はい。<br/>非常に良いです<br/>インフェルノズ<br/>へ卵は移ります",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 87%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p61": [
{
"text" :"アレ<br/>教えたの<br/>俺だぜ",
"style":"font-size: 15px;color: black;background-color: white;left: 20.5%;top: 5%;"
},
{
"text" :"少し背中<br/>押しとこう、<br/>ジェラルド、<br/>試合後に卵1つ<br/>おごるよ",
"style":"font-size: 14px;color: black;background-color: white;left: 35.5%;top: 5%;"
},
{
"text" :"卵<br/>くれるの<br/>!?",
"style":"font-size: 14px;color: black;background-color: white;left: 51%;top: 7%;"
},
{
"text" :"もう少し<br/>早くしてよ<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 7%;"
},
{
"text" :"ウォルトン、<br/>1つ助言だ。<br/>人を排除したい<br/>時は、お前が<br/>他の連中を<br/>巻き込めば<br/>いい",
"style":"font-size: 14px;color: black;background-color: white;left: 6%;top: 30%;"
},
{
"text" :"<span style=\"font-weight: bold;\">俺は、</span><br/>お前が<span style=\"font-weight: bold;\">奴らを</span><br/>ブロックする<br/>助けに<br/>なりたい",
"style":"font-size: 15px;color: black;background-color: white;left: 15.5%;top: 39%;"
},
{
"text" :"おい!<br/>人の話聞いてるか<br/>お前は***の<br/><ruby><rb>デク人形<rp>(</rp><rt>マペット</rt><rp>)</ruby>か!",
"style":"font-size: 14px;color: black;background-color: white;left: 63%;top: 48.5%;font-weight: bold;"
},
{
"text" :"おい!<br/>人の話聞いてるか<br/>お前は***の<br/><ruby><rb>デク人形<rp>(</rp><rt>マペット</rt><rp>)</ruby>か!",
"style":"font-size: 14px;color: black;background-color: #a4a4a4;left: 15.5%;top: 59%;font-weight: bold;width: 140px;"
},
{
"text" :"お…<br/>お爺ちゃん?",
"style":"font-size: 16px;color: black;background-color: white;left: 39%;top: 62%;font-weight: bold;"
},
{
"text" :"俺は<br/>てめぇの<br/>クソジジイ<br/>じゃねぇ!",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 62%;font-weight: bold;"
},
{
"text" :"とにかく。<br/>お爺ちゃんで<br/>いてよ。<br/>彼に火が付く<br/>みたい",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 64%;"
},
],
"http://devilscandycomic.com/comic/ch04p62": [
{
"text" :"“チャーリー”<br/>は知らんが<br/>俺達は援護する<br/>パンドラ",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 3%;"
},
{
"text" :"まぁ…<br/>言っても<br/>しょうが<br/>ねぇが",
"style":"font-size: 14px;color: black;background-color: white;left: 25%;top: 4%;"
},
{
"text" :"おや、ごめん<br/>邪魔かな?<br/>景色を<br/>楽しみな",
"style":"font-size: 14px;color: black;background-color: white;left: 85%;top: 48%;"
},
{
"text" :"お前から<br/>引っこ抜く!!!",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 70.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p63": [
{
"text" :"ナイトメアズの<br/>2連続ゴールだ!<br/>現時点では<br/>復活には程遠いが、<br/>まだ死んでは<br/>いない!",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 50%;font-weight: bold;"
},
{
"text" :"だが、<br/>インフェルノズが<br/>これを受け入れた<br/>ままとは思えない",
"style":"font-size: 16px;color: black;background-color: white;left: 57%;top: 58.8%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p64": [
{
"text" :"ちょっと<br/>楽しいわね、<br/>奴ら反撃<br/>してきた",
"style":"font-size: 14px;color: black;background-color: white;left: 40%;top: 5%;"
},
{
"text" :"下がれ!<br/>下がれ!",
"style":"font-size: 14px;color: black;background-color: white;left: 55.2%;top: 8%;font-weight: bold;"
},
{
"text" :"また<br/>あの塔だ!",
"style":"font-size: 15px;color: black;background-color: white;left: 61%;top: 10.5%;"
},
{
"text" :"少なくとも<br/>全力を出す<br/>言い訳が<br/>できたな",
"style":"font-size: 14px;color: black;background-color: white;left: 45.9%;top: 18%;"
},
{
"text" :"つまり<br/><ruby style=\"font-size: 21px\"><rb>叩き潰せ!<rp>(</rp><rt>CRUSH</rt><rp>)</ruby>",
"style":"font-size: 18px;color: black;background-color: white;left: 13%;top: 31.9%;font-weight: bold;"
},
{
"text" :"ああ、<br/>ピュティア。<br/>こいつも潰せ、<br/>あいつも潰せ、<br/>全てを潰せ",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 35%;"
},
{
"text" :"そういや、<br/>お前<br/><span style=\"font-weight: bold;\">デズモンド</span>に<br/><ruby><rb>惚れてる<rp>(</rp><rt>CRUSH</rt><rp>)</ruby><br/>らしいな",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 66%;"
},
{
"text" :"ち…<br/>ちげーし",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 86%;"
},
{
"text" :"OK、皆、注目。<br/>天国の歌の時よ。<br/>もしこれで卵が<br/>孵らなければ、<br/>絶対孵らない<br/>でしょうね",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 51%;"
},
],
"http://devilscandycomic.com/comic/ch04p65": [
],
"http://devilscandycomic.com/comic/ch04p66": [
{
"text" :"卵は?!",
"style":"font-size: 20px;color: black;background-color: white;left: 14.5%;top: 9.5%;font-weight: bold;"
},
{
"text" :"ハッ!",
"style":"font-size: 30px;color: black;background-color: white;left: 67%;top: 18.5%;font-weight: bold;"
},
{
"text" :"落ち着いて、<br/>チャーリー!",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 26.5%;"
},
{
"text" :"待って、<br/>何言ってんだ?<br/><span style=\"font-weight: bold;\">爆発し<br/>そうだ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 25%;top: 31%;"
},
],
"http://devilscandycomic.com/comic/ch04p67": [
{
"text" :"彼が<br/>構造的に<br/>不安定って<br/>噂は本当じゃ<br/>ないか!",
"style":"font-size: 18px;color: black;background-color: white;left: 75.2%;top: 67%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/break": [
{
"text" :"小学校の頃は、ピュティアがアスモディアの面倒を見ていました、<br/>しかし高校に行く頃には、2人の関係は逆転していました。",
"style":"font-size: 16px;color: black;background-color: white;left: 22%;top: 8%;"
},
{
"text" :"ピュティア<br/>(6)",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 36%;height: 63px;"
},
{
"text" :"アスモディア<br/>(6)",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 40%;height: 59px;"
},
{
"text" :"デビルズキャンディは12月26日、通常時間に再開予定です。<br/>運が良ければ、私達はその後日にショップ(本付き!)を<br/>開店します!",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 77%;font-weight: bold;width: 535px;"
},
{
"text" :"両アカウントとも遅れてしまってすみません、<br/>しかし印刷の問題が本を遅らせ、<br/>突然の出来事でスケジュールが混乱してしまいました。<br/>全てがすぐに元に戻ることを願っています。",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 84%;font-weight: bold;width: 552px;"
},
],
"http://devilscandycomic.com/comic/ch04p68": [
],
"http://devilscandycomic.com/comic/ch04p69": [
{
"text" :"王だ<br/>…",
"style":"font-size: 25px;color: black;background-color: white;left: 39%;top: 85.5%;"
},
],
"http://devilscandycomic.com/comic/ch04p70": [
{
"text" :"王が<br/>産まれた!!",
"style":"font-size: 20px;color: black;background-color: white;left: 17%;top: 6.5%;font-weight: bold;"
},
{
"text" :"歴史的瞬間です!<br/>この尋常でない試合は<br/>最も希少な奇跡を<br/>産み出しました!",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 32%;font-weight: bold;height: 134px;display: flex;align-items: center;"
},
{
"text" :"王<br/>万歳!",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 37%;font-weight: bold;width: 68px;"
},
{
"text" :"<ruby><rb>選手達<rp>(</rp><rt>センチュリオン</rt><rp>)</ruby><br/>万歳!",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 42%;font-weight: bold;width: 99px;"
},
{
"text" :"万歳!",
"style":"font-size: 40px;color: black;background-color: white;left: 29%;top: 59%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p71": [
{
"text" :"アスモディア?!",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 5%;font-weight: bold;"
},
{
"text" :"く…",
"style":"font-size: 16px;color: black;background-color: white;left: 31.5%;top: 12.5%;"
},
{
"text" :"生きてる<br/>!!",
"style":"font-size: 16px;color: black;background-color: white;left: 68%;top: 4%;font-weight: bold;"
},
{
"text" :"チャーリー<br/>ヤマモト…<br/>お前は立派な<br/>敵だった",
"style":"font-size: 12px;color: black;background-color: white;left: 80.5%;top: 25%;"
},
],
"http://devilscandycomic.com/comic/ch04p72": [
{
"text" :"あぐ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 50.8%;top: 20.5%;font-weight: bold;"
},
{
"text" :"よくやった、<br/>見事成功",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 18%;"
},
{
"text" :"今はね",
"style":"font-size: 25px;color: black;background-color: white;left: 67.5%;top: 23%;"
},
{
"text" :"負けたけど、<br/>とにかく!<br/>生きてる!",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 59.4%;"
},
{
"text" :"卵…",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 61%;"
},
{
"text" :"俺に<br/>触るな!",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 83%;"
},
],
"http://devilscandycomic.com/comic/ch04p73": [
{
"text" :"ごめんよー<br/>!!",
"style":"font-size: 14px;color: black;background-color: white;left: 32.5%;top: 8%;font-weight: bold;"
},
{
"text" :"さらば、<br/>チャーリー、<br/>最も気高い<br/>獣よ",
"style":"font-size: 14px;color: black;background-color: white;left: 13%;top: 30%;"
},
{
"text" :"<span style=\"font-weight: bold;\">とにかく…</span><br/>オレがここにいる以上<br/>最も価値ある脳を<br/><span style=\"font-weight: bold;\">浪ぉぉ費させるのは<br/>恥ずべきことだな…</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 50%;top: 27.5%;"
},
{
"text" :"あっ、やぁ<br/>ヒトミ。<br/>歯医者の<br/>予約へ行って<br/>どうだった?",
"style":"font-size: 16px;color: black;background-color: white;left: 48%;top: 66%;"
},
{
"text" :"チャプター4:完",
"style":"font-size: 20px;color: black;background-color: white;left: 63.5%;top: 95%;border:solid 1px;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p74": [
{
"text" :"ホーム ライフ",
"style":"font-size: 36px;color: black;background-color: white;left: 36%;top: 5%;font-weight: bold;"
},
{
"text" :"おかえり、<br/>親愛なる子。<br/>君の今日の試験が<br/>上手くいっている<br/>ことを望むよ",
"style":"font-size: 14px;color: black;background-color: white;left: 27%;top: 34%;"
},
{
"text" :"ええ、<br/>最愛の子、<br/>どうしたのか<br/>教えて",
"style":"font-size: 16px;color: black;background-color: white;left: 37%;top: 42.5%;"
},
{
"text" :"俺は…",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 36%;"
},
{
"text" :"俺は<br/>██で<br/>出し抜いて<br/>██で<br/>全部<br/>██ ███!",
"style":"font-size: 15px;color: black;background-color: white;left: 30%;top: 55%;font-weight: bold;width: 119px;"
},
{
"text" :"██イェーイ!<br/>それでこそ我が小さな<br/>███!████<br/>チッチキブー██!",
"style":"font-size: 15px;color: black;background-color: white;left: 29%;top: 75.5%;font-weight: bold;width: 175px;"
},
{
"text" :"██な<br/>███ ███の<br/>本物のスゲェ奴だ、<br/>言ったろ!",
"style":"font-size: 15px;color: black;background-color: white;left: 56%;top: 75.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch04p75": [
{
"text" :"ラブ ライフ",
"style":"font-size: 34px;color: black;background-color: white;left: 37%;top: 5%;font-weight: bold;width: 212px;"
},
{
"text" :"ねぇ<br/>ピュティア、<br/>デズモンドだ!<br/>勉強の<br/>パートナー<br/>頼みなよ",
"style":"font-size: 15px;color: black;background-color: white;left: 29%;top: 10%;"
},
{
"text" :"オレ…<br/>無理強いは<br/>できない",
"style":"font-size: 14px;color: black;background-color: white;left: 55%;top: 11%;"
},
{
"text" :"じゃあ<br/>見返りに何か<br/>してあげなよ!<br/>あなたが<br/>できる何か<br/>特別な事を",
"style":"font-size: 15px;color: black;background-color: white;left: 25%;top: 33%;height: 127px;"
},
{
"text" :"わ…わかった<br/>やってみる<br/>…",
"style":"font-size: 15px;color: black;background-color: white;left: 63%;top: 42.5%;"
},
{
"text" :"デズモンド、<br/>勉強手伝ってくれたら、<br/>お前の敵全て倒してやる!",
"style":"font-size: 16.5px;color: black;background-color: white;left: 29.5%;top: 53.7%;font-weight: bold;"
},
{
"text" :"ふむ。素晴らしい<br/>僕は敵が多い。<br/>これはお互い<br/>有益な関係だね",
"style":"font-size: 17px;color: black;background-color: white;left: 55%;top: 54.3%;"
},
{
"text" :"か…<br/>関係!",
"style":"font-size: 27px;color: black;background-color: white;left: 28%;top: 76%;font-weight: bold;border:solid 1px;transform: rotate(-10deg);width: 221px;"
},
],
"http://devilscandycomic.com/comic/ch04p76": [
{
"text" :"ナイト ライフ",
"style":"font-size: 35px;color: black;background-color: white;left: 35%;top: 5%;font-weight: bold;width: 240px;"
},
{
"text" :"1杯目",
"style":"font-size: 21px;color: black;background-color: white;left: 56%;top: 11%;border:solid 1px;width: 110px;"
},
{
"text" :"2杯目",
"style":"font-size: 21px;color: black;background-color: white;left: 56%;top: 32.5%;border:solid 1px;width: 110px;"
},
{
"text" :"3杯目",
"style":"font-size: 21px;color: black;background-color: white;left: 56%;top: 54%;border:solid 1px;width: 110px;"
},
{
"text" :"4杯目",
"style":"font-size: 21px;color: black;background-color: white;left: 56%;top: 76%;border:solid 1px;width: 110px;"
},
],
"http://devilscandycomic.com/comic/ch04p77": [
{
"text" :"スペース ライフ",
"style":"font-size: 35px;color: black;background-color: white;left: 34%;top: 5%;font-weight: bold;"
},
{
"text" :"新たな打ち上げ成功<br/>おめでとう。<br/>君達のような2人の<br/>天才ロケット科学者が<br/>チームにいて幸運だ",
"style":"font-size: 15px;color: black;background-color: white;left: 27%;top: 11.5%;"
},
{
"text" :"あぁ、これが<br/>君達の息子の、<br/>ジェラルド?<br/>もう君達の後を<br/>追っているね",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 32%;"
},
{
"text" :"※数学チャンピオン",
"style":"font-size: 12px;color: black;left: 34%;top: 51.5%;"
},
{
"text" :"ハイ",
"style":"font-size: 15px;color: black;background-color: white;left: 45.6%;top: 37%;"
},
{
"text" :"次回の打ち上げには<br/>ぜひ彼を連れて<br/>来て下さい!<br/>きっと…",
"style":"font-size: 15px;color: black;background-color: white;left: 52%;top: 53.5%;"
},
{
"text" :"シーッ。<br/>話は<br/>もういい。<br/>卵の時間だ",
"style":"font-size: 15px;color: black;background-color: white;left: 28.2%;top: 76%;"
},
],
"http://devilscandycomic.com/comic/ch05p00": [
],
"http://devilscandycomic.com/comic/ch05p01": [
{
"text" :"あなたが<br/>欲しいもの<br/>何でもあげる",
"style":"font-size: 16px;color: black;background-color: white;left: 70%;top: 19.5%;"
},
{
"text" :"見返りに<br/>私が望むものは<br/>ただ1つ…",
"style":"font-size: 16px;color: black;background-color: white;left: 22.5%;top: 50%;"
},
],
"http://devilscandycomic.com/comic/ch05p02": [
{
"text" :"ニンジュツメイト ニンジャリミネイション<br/>チャレンジで勝って!",
"style":"font-size: 22px;color: black;background-color: white;left: 21%;top: 37.1%;font-weight: bold;"
},
{
"text" :"嫌だあああああああ!!!",
"style":"font-size: 45px;color: black;background-color: white;left: 33%;top: 71.5%;font-weight: bold;transform: rotate(6.5deg);"
},
],
"http://devilscandycomic.com/comic/ch05p03": [
{
"text" :"ハッ!",
"style":"font-size: 36px;color: black;background-color: white;left: 19%;top: 7.2%;font-weight: bold;"
},
{
"text" :"毎回…",
"style":"font-size: 20px;color: black;background-color: white;left: 32%;top: 63.5%;"
},
{
"text" :"毎回…!",
"style":"font-size: 20px;color: black;background-color: white;left: 68.5%;top: 63.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p04": [
{
"text" :"ふぁ…",
"style":"font-size: 16px;color: black;background-color: white;left: 72.5%;top: 32.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p05": [
{
"text" :"マイロ!",
"style":"font-size: 24px;color: black;background-color: white;left: 25.1%;top: 34.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p06": [
{
"text" :"妹に<br/>朝食作る事の<br/>どこに<span style=\"font-weight: bold;\">そんな</span><br/>驚く事が<br/>ある??",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 3.5%;width: 115px;"
},
{
"text" :"うぐぅ",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 5%;"
},
{
"text" :"ぼくの運は<br/>兄さんと同じ位<br/>悪くなった<br/>みたい",
"style":"font-size: 14px;color: black;background-color: white;left: 75.5%;top: 5.5%;"
},
{
"text" :"そんな。<br/>ことを。<br/>言うんじゃ。<br/>ない",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 35.5%;"
},
{
"text" :"くそ、時間<br/>忘れてた!",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 69%;"
},
{
"text" :"今朝は早くに<br/>仕事がある",
"style":"font-size: 16px;color: black;background-color: white;left: 30%;top: 71.5%;"
},
{
"text" :"またトップ<br/>シーク<br/>レット?",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 70%;"
},
],
"http://devilscandycomic.com/comic/ch05p07": [
{
"text" :"“トップ<br/>シーク<br/>レット”<br/>じゃない…",
"style":"font-size: 12px;color: black;background-color: white;left: 31%;top: 8%;"
},
{
"text" :"…ただ<br/>“プライベート”",
"style":"font-size: 12px;color: black;background-color: white;left: 83%;top: 4.5%;"
},
{
"text" :"言ったろ。<br/>有名な顧客への<br/>超退屈な<br/>配達だって",
"style":"font-size: 15px;color: black;background-color: white;left: 82%;top: 9.5%;"
},
{
"text" :"人生の全ては<br/><ruby><rb>演劇<rp>(</rp><rt>ドラマ</rt><rp>)</ruby>じゃない",
"style":"font-size: 14px;color: black;background-color: white;left: 34.5%;top: 35%;"
},
{
"text" :"OK、うん<br/>頑張って",
"style":"font-size: 16px;color: black;background-color: white;left: 60.5%;top: 34.5%;"
},
{
"text" :"何でぼくに<br/>沢山卵が<br/>必要って<br/>思うんだ?",
"style":"font-size: 16px;color: black;background-color: white;left: 73.5%;top: 70.5%;"
},
{
"text" :"それに、これ<br/><span style=\"font-weight: bold;\">ぼくが</span>掃除<br/>するわけ?",
"style":"font-size: 15px;color: black;background-color: white;left: 81%;top: 77.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p08": [
{
"text" :"…でオレの<br/>姉妹が彼に電話<br/>投げつけてさ",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 5%;"
},
{
"text" :"昔懐かしい<br/>大きな<br/>やつ",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 4.5%;"
},
{
"text" :"ハハハ!",
"style":"font-size: 16px;color: black;background-color: white;left: 62.5%;top: 10%;transform: rotate(15deg);"
},
{
"text" :"おはよう<br/>スポーツチーム<br/>仲間。<br/>筋肉で勝つ準備は<br/>できてる?",
"style":"font-size: 15px;color: black;background-color: white;left: 7%;top: 29%;"
},
{
"text" :"あぁ、<br/>微分積分の<br/>試験を<br/>ベンチプレス<br/>してやるよ",
"style":"font-size: 14px;color: black;background-color: white;left: 68.5%;top: 29%;"
},
{
"text" :"調子どう<br/>パンドラ?",
"style":"font-size: 16px;color: black;background-color: white;left: 19.2%;top: 53%;"
},
{
"text" :"やぁ、<br/>クレアンス!<br/>君が挨拶するとは<br/>めずらしいね!<br/>今朝は…",
"style":"font-size: 14px;color: black;background-color: white;left: 63%;top: 49.5%;"
},
{
"text" :"その娘に<br/>話してるん<br/>だよ",
"style":"font-size: 14px;color: black;background-color: white;left: 67%;top: 58%;"
},
{
"text" :"別に<br/>",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 69%;width: 57px;"
},
{
"text" :"いいね<br/>",
"style":"font-size: 16px;color: black;background-color: white;left: 47%;top: 87.3%;"
},
],
"http://devilscandycomic.com/comic/ch05p09": [
{
"text" :"ヤギーはどこ?<br/>君達はお尻が<br/>くっついてると<br/>思ってたけど",
"style":"font-size: 15px;color: black;background-color: white;left: 23%;top: 5.5%;"
},
{
"text" :"お前はわざと<br/>怒らせてんのか<br/>ナチュラルに<br/>ムカつく奴<br/>なのか?",
"style":"font-size: 14px;color: black;background-color: white;left: 39.6%;top: 5.5%;"
},
{
"text" :"とにかく、<br/>ヤギーは恋の歌で<br/>プリンセスを<br/>捕えようとしてる",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 8%;"
},
{
"text" :"オレの出る<br/>幕じゃない",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 16%;"
},
{
"text" :"ロマンチック<br/>ね!",
"style":"font-size: 14px;color: black;background-color: white;left: 18%;top: 34.5%;"
},
{
"text" :"待って、君は<br/>プリンセス<br/>好きじゃない?",
"style":"font-size: 14px;color: black;background-color: white;left: 31%;top: 33%;"
},
{
"text" :"プリンスは<br/>好き?",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 34%;"
},
{
"text" :"ヤギーに君の<br/>プリンスに<br/>なって欲しい?",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 34%;"
},
{
"text" :"お前はヤギーに<br/><span style=\"font-weight: bold;\">お前の</span>プリンスに<br/>なって欲しいか?",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 37%;"
},
{
"text" :"え~",
"style":"font-size: 16px;color: black;background-color: white;left: 30.5%;top: 57%;"
},
{
"text" :"ぼくは<br/>むしろ<br/>プリンスに<br/>なるさ",
"style":"font-size: 15px;color: black;background-color: white;left: 34%;top: 58%;"
},
{
"text" :"待って。<br/>なんで<br/>笑ってるの?",
"style":"font-size: 14px;color: black;background-color: white;left: 27%;top: 80%;"
},
{
"text" :"あいつの歌<br/>蹴っ飛ばしたく<br/>なると思うぜ。<br/>聴いてみな",
"style":"font-size: 15px;color: black;background-color: white;left: 70%;top: 60%;"
},
],
"http://devilscandycomic.com/comic/ch05p10": [
{
"text" :"あぁ、君は<br/>凍った野菜<br/>食べてたね…",
"style":"font-size: 16px;color: black;background-color: white;left: 30%;top: 5.5%;"
},
{
"text" :"お昼<br/>休みの<br/>時間に",
"style":"font-size: 16px;color: black;background-color: white;left: 42%;top: 8%;width: 75px;"
},
{
"text" :"太らない<br/>ようにする<br/>女の子は<br/>好きだぜ…",
"style":"font-size: 14px;color: black;background-color: white;left: 69.5%;top: 8%;width: 75px;"
},
{
"text" :"君がカロリー<br/>摂取するの<br/>見てた",
"style":"font-size: 15px;color: black;background-color: white;left: 78.6%;top: 11%;"
},
{
"text" :"その後君が<br/>泣いてるのを<br/>見た、確かに…",
"style":"font-size: 14px;color: black;background-color: white;left: 40%;top: 35%;"
},
{
"text" :"オレは女の子<br/>の気持ちとか<br/>気にしない<br/>けど",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 36.5%;"
},
{
"text" :"演劇ギーグ共<br/>と口論してた<br/>時のように…",
"style":"font-size: 16px;color: black;background-color: white;left: 53%;top: 61.5%;"
},
{
"text" :"あれは本当に<br/>クールだ、奴らは<br/>変人だと思うし",
"style":"font-size: 15px;color: black;background-color: white;left: 60%;top: 67.7%;"
},
],
"http://devilscandycomic.com/comic/ch05p11": [
{
"text" :"とんがり帽子の<br/>女の子、オレの<br/>とんがり帽子の<br/>クィーン、君は<br/>帽子雑誌の<br/>表紙を飾る",
"style":"font-size: 14px;color: black;background-color: white;left: 35%;top: 5%;"
},
{
"text" :"そして本には<br/>セクシーな女の子<br/>がいっぱい…",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 9%;"
},
{
"text" :"なぜ君はオレに<br/>とんがり帽子<br/>の旋風を<br/>くれないのか?",
"style":"font-size: 12px;color: black;background-color: white;left: 65.5%;top: 23%;"
},
{
"text" :"彼はギターひけるの?!",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 38.5%;"
},
{
"text" :"すごいや",
"style":"font-size: 17px;color: black;background-color: white;left: 45%;top: 42.8%;"
},
{
"text" :"これは<br/>ヒドい",
"style":"font-size: 22px;color: black;background-color: white;left: 50%;top: 45.5%;font-weight: bold;"
},
{
"text" :"ぼくは演劇部と<br/>議論してたの<br/>奴らぼくの役の幅が<br/>狭いって言うから。<br/>だから、ぼくは最初<br/>あんな衣装<br/>着てたの…",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 56%;"
},
{
"text" :"証明する<br/>ために!",
"style":"font-size: 19px;color: black;background-color: white;left: 27%;top: 60%;font-weight: bold;"
},
{
"text" :"それに食物が<br/>無かったから<br/>凍った野菜<br/>食べるしか<br/>なかったの!",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 59%;"
},
{
"text" :"誰が<br/>あんな目的で<br/>食べる!?",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 64.5%;"
},
{
"text" :"あと、ぼくが<br/>泣いてた<br/>のは…",
"style":"font-size: 16px;color: black;background-color: white;left: 42%;top: 73%;"
},
{
"text" :"いや、どうでも<br/>いいだろ!?<br/>人が泣いてるの<br/>見てるなんて<br/>気味が悪い!",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 79.5%;font-weight: bold;"
},
{
"text" :"この歌<br/>全部<br/>キモい!",
"style":"font-size: 18px;color: black;background-color: white;left: 80%;top: 88%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p12": [
{
"text" :"うぐぅ",
"style":"font-size: 17px;color: black;background-color: white;left: 10%;top: 4%;font-weight: bold;"
},
{
"text" :"正してくる",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 4%;height: 40px;display: flex;align-items: center;"
},
{
"text" :"待て",
"style":"font-size: 18px;color: black;background-color: white;left: 13.5%;top: 9%;"
},
{
"text" :"奴が<br/>何て言うか<br/>オレは正確に<br/>分かる",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 10%;"
},
{
"text" :"無駄<br/>だろうな",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 8.5%;"
},
{
"text" :"“君が<br/>とんがり帽子の<br/>女の子って<br/>どういう意味?”",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 23.5%;"
},
{
"text" :"“君の<br/>オッパイは<br/>小さいじゃ<br/>ないか”",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 37%;font-weight: bold;width: 102px;"
},
{
"text" :"皆がヤギーを<br/>格好良く思うのは<br/>彼が何も言わない<br/>から?",
"style":"font-size: 14px;color: black;background-color: white;left: 8%;top: 46%;"
},
{
"text" :"だって彼の<br/>口から出る<br/>印象全部<br/>ゴミじゃん",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 53.5%;width: 108px;"
},
{
"text" :"ノー<br/>コメント",
"style":"font-size: 17px;color: black;background-color: white;left: 77.5%;top: 50%;"
},
{
"text" :"とにかく、<br/>とんがり帽子の<br/>少女自身が<br/>奴をふる<br/>必要がある",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 64.5%;width: 109px;"
},
{
"text" :"だが…",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 66.5%;"
},
{
"text" :"もし<br/>1人じゃ上手く<br/>できなそうなら、<br/>俺がダブルデート<br/>だって言って<br/>頼んで…",
"style":"font-size: 14px;color: black;background-color: white;left: 54%;top: 65%;"
},
{
"text" :"しっ<br/>しっ<br/>しっ、",
"style":"font-size: 15px;color: black;background-color: white;left: 75.5%;top: 65.5%;"
},
{
"text" :"わかった",
"style":"font-size: 17px;color: black;background-color: white;left: 81%;top: 68.7%;"
},
],
"http://devilscandycomic.com/comic/ch05p13": [
{
"text" :"ヤギー、<br/>ねぇ",
"style":"font-size: 16px;color: black;background-color: white;left: 11.6%;top: 3.5%;"
},
{
"text" :"歌うの<br/>やめて",
"style":"font-size: 16px;color: black;background-color: white;left: 19.2%;top: 7%;"
},
{
"text" :"ぼくは<br/>とんがり帽子の<br/>女の子の親友さ。<br/>彼女の名は<br/>グレーテル",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 4%;"
},
{
"text" :"彼女が今日の<br/>放課後君に<br/>会いたいって。<br/>5時にガッツ<br/>スクリーマー駅前",
"style":"font-size: 14px;color: black;background-color: white;left: 46%;top: 5%;"
},
{
"text" :"いいね<br/>?",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 10%;"
},
{
"text" :"楽しみだ",
"style":"font-size: 16px;color: black;background-color: white;left: 12.5%;top: 46%;"
},
{
"text" :"結論を<br/>急ぐべきじゃ<br/>ないよ!<br/>仲良くなるかも<br/>しれないし!",
"style":"font-size: 14px;color: black;background-color: white;left: 67%;top: 36.5%;"
},
{
"text" :"ヤギーは<br/>悪い奴じゃない、<br/>でも間が抜けてる。<br/>ギーグな女の子に<br/>惚れるにはまだ<br/>浅はかすぎる",
"style":"font-size: 13px;color: black;background-color: white;left: 26%;top: 66.5%;"
},
{
"text" :"ギーグ達の<br/>残りは、<br/>リケットに目を<br/>光らせておくべき<br/>だろう",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 66%;"
},
{
"text" :"はぁ……",
"style":"font-size: 16px;color: black;background-color: white;left: 74.7%;top: 67.7%;transform: rotate(-20deg);"
},
{
"text" :"彼女は<br/>心に何か<br/>深い悩みが<br/>あるようだ",
"style":"font-size: 16px;color: black;background-color: white;left: 67.5%;top: 85.5%;width: 100px;"
},
],
"http://devilscandycomic.com/comic/ch05p14": [
{
"text" :"むむむOK<br/>彼は入った",
"style":"font-size: 16px;color: black;background-color: white;left: 52.5%;top: 38.5%;"
},
{
"text" :"彼の陽気な<br/>仲間達は<br/>君の仕事に<br/>十分な長さ<br/>留まるようだ",
"style":"font-size: 17px;color: black;background-color: white;left: 17%;top: 68.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p15": [
{
"text" :"奴らが一緒に<br/>アレを持ってると<br/>考えないん<br/>ですか?",
"style":"font-size: 14px;color: black;background-color: white;left: 16%;top: 5%;"
},
{
"text" :"あり<br/>得んね",
"style":"font-size: 16px;color: black;background-color: white;left: 45.1%;top: 24%;"
},
{
"text" :"いずれにせよ<br/>ここでは回収<br/>しない…",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 5%;"
},
{
"text" :"ここでは<br/><span style=\"font-weight: bold;\">メッセージを</span><br/>送る",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 24%;"
},
{
"text" :"それに、<br/>もし誰もが<br/>善人なら<br/>君はどうやって<br/>借金を返す?",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 33%;"
},
{
"text" :"君は<br/>感謝する<br/>べきだよ",
"style":"font-size: 18px;color: black;background-color: white;left: 10.5%;top: 64%;"
},
{
"text" :"奇跡を待って<br/>一生を過ごす<br/>人もいるのに",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 66.2%;"
},
{
"text" :"君は65回目の<br/>奇跡を体験する",
"style":"font-size: 16px;color: black;background-color: white;left: 31%;top: 75%;"
},
{
"text" :"さぁ<br/>行け",
"style":"font-size: 25px;color: black;background-color: white;left: 68%;top: 66.5%;font-weight: bold;width: 78px;"
},
],
"http://devilscandycomic.com/comic/ch05p16": [
{
"text" :"こ…今日は<br/>紳士諸君",
"style":"font-size: 16px;color: black;background-color: white;left: 44.3%;top: 20%;"
},
{
"text" :"アドバイスは<br/>しないけど",
"style":"font-size: 16px;color: black;background-color: white;left: 69%;top: 43%;"
},
{
"text" :"急に動けば<br/>僕は神経質に<br/>なって<br/>それはいつも<br/>悪い結果で<br/>終わる",
"style":"font-size: 14px;color: black;background-color: white;left: 75%;top: 73.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p17": [
{
"text" :"僕はここに<br/>メッセージを<br/>伝えに来た",
"style":"font-size: 15px;color: black;background-color: white;left: 28.5%;top: 18%;"
},
{
"text" :"ただ…<br/>それ位は<br/>いいだろ、<br/>OK?",
"style":"font-size: 16px;color: black;background-color: white;left: 59.6%;top: 21%;"
},
{
"text" :"よ…よし<br/>俺が聞く",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 10%;"
},
{
"text" :"最近<br/>僕の雇い主達が<br/>購入したい商品が<br/>オークションに<br/>あった",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 48.5%;"
},
{
"text" :"君達が<br/>落札した",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 57%;"
},
{
"text" :"雇い主達は<br/>不満だ",
"style":"font-size: 16px;color: black;background-color: white;left: 50.5%;top: 53%;"
},
{
"text" :"おい、とにかく<br/>取引はできる。<br/>だからもう<br/>車を降りろ",
"style":"font-size: 16px;color: black;background-color: white;left: 65.5%;top: 39%;"
},
{
"text" :"俺のボスに<br/>お前のボスを<br/>呼ぶよう<br/>頼む…",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 56.5%;"
},
{
"text" :"雇い主達は<br/>取引には<br/>興味ない",
"style":"font-size: 19px;color: black;background-color: white;left: 13%;top: 70%;"
},
{
"text" :"雇い主達が<br/>興味があるのは<br/>君達を身の程に<br/>あった場所へ<br/>送ることだけだ",
"style":"font-size: 14px;color: black;background-color: white;left: 54.5%;top: 81%;"
},
{
"text" :"もういい!<br/>コイツを撃て!",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 89%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p18": [
{
"text" :"OK…",
"style":"font-size: 22px;color: black;background-color: white;left: 11%;top: 23%;"
},
{
"text" :"<span style=\"font-weight: bold;\">本当に</span><br/>神経質に<br/>なるよ<br/>今すぐ",
"style":"font-size: 22px;color: black;background-color: white;left: 20%;top: 22%;"
},
],
"http://devilscandycomic.com/comic/ch05p19": [
{
"text" :"チッチッチッ",
"style":"font-size: 15px;color: black;background-color: white;left: 59%;top: 56.5%;"
},
{
"text" :"誰かに<br/>医者が必要<br/>そうだな",
"style":"font-size: 16px;color: black;background-color: white;left: 57.5%;top: 81%;"
},
],
"http://devilscandycomic.com/comic/ch05p20": [
{
"text" :"最悪",
"style":"font-size: 30px;color: black;background-color: white;left: 14%;top: 4%;"
},
{
"text" :"来週へ<br/>タイムトラベル<br/>できないかな?<br/>それか来年?<br/>それかヤギーが僕に<br/>興味なくして<br/>マイロが転職した時?",
"style":"font-size: 14px;color: black;background-color: white;left: 71%;top: 4%;"
},
{
"text" :"できれば<br/>マシュマロ工場か<br/>ビーズクッション店なら<br/>いつも怪我しないで<br/>くれるかな?",
"style":"font-size: 14px;color: black;background-color: white;left: 71%;top: 15%;"
},
{
"text" :"“配達”の後も<br/>いつも本当に<br/>変なんだ<br/>よな",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 37%;"
},
{
"text" :"僕が早退したの<br/>気づいたら怒るかな、<br/>でもグレーテルの<br/>役作りに時間要るし。<br/>彼女の動かし方まだ<br/>分からないから<br/>悩むし",
"style":"font-size: 14px;color: black;background-color: white;left: 48.5%;top: 37%;"
},
{
"text" :"そういえば、<br/>クレアンスが<br/>言ってた事も<br/>悩むな",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 39%;"
},
{
"text" :"あぁ、1つ<br/>助言だ",
"style":"font-size: 16px;color: black;background-color: white;left: 8%;top: 68%;"
},
{
"text" :"もしヤギーが<br/>強引に迫って来たら、<br/>ニンジュツメイト<br/>ニンジャリミネイション<br/>チャレンジって言え。<br/>それで<span style=\"font-weight: bold;\">本当に</span>すぐ<br/>目を覚ます",
"style":"font-size: 12px;color: black;background-color: white;left: 8.5%;top: 73%;"
},
{
"text" :"本気?<br/>かなり<br/>でたらめ<br/>っぽい",
"style":"font-size: 15px;color: black;background-color: white;left: 60.5%;top: 71.5%;"
},
{
"text" :"多分僕を<br/>からかって<br/>るな…",
"style":"font-size: 14px;color: black;background-color: white;left: 79.5%;top: 89.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p21": [
{
"text" :"やばっ!<br/>マイロが<br/>家にいる",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 25.3%;"
},
{
"text" :"うー…今日は<br/>早退したって<br/>言うべき?",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 43.3%;"
},
{
"text" :"問題は<br/>そこよね?",
"style":"font-size: 16px;color: black;background-color: white;left: 22%;top: 50.5%;"
},
{
"text" :"いえ、<br/>仕事は上出来。<br/>少なくとも<br/>あなたの定義<br/>ではね",
"style":"font-size: 12px;color: black;background-color: white;left: 69.2%;top: 44%;"
},
{
"text" :"上司と<br/>話してる!",
"style":"font-size: 18px;color: black;background-color: white;left: 17%;top: 80.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p22": [
{
"text" :"僕はただ<br/>“奇跡”が本当に<br/>奇跡的になって<br/>きてるのが<br/>心配だよ",
"style":"font-size: 14px;color: black;background-color: white;left: 9%;top: 4%;"
},
{
"text" :"歯が抜け落ちた<br/>けど普通の医者<br/>には行けないし…",
"style":"font-size: 15px;color: black;background-color: white;left: 23%;top: 5.2%;"
},
{
"text" :"フグウウゥゥ!<br/>",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 12%;font-weight: bold;"
},
{
"text" :"ゴホ",
"style":"font-size: 16px;color: black;background-color: white;left: 48.2%;top: 9.5%;font-weight: bold;width: 37px;"
},
{
"text" :"ゴホ",
"style":"font-size: 16px;color: black;background-color: white;left: 49.4%;top: 11.2%;font-weight: bold;width: 37px;"
},
{
"text" :"ハッ!!",
"style":"font-size: 30px;color: black;background-color: white;left: 9.5%;top: 38%;font-weight: bold;"
},
{
"text" :"いいね畜生。<br/>そこら中<br/>血まみれだ…",
"style":"font-size: 15px;color: black;background-color: white;left: 68.8%;top: 41.5%;"
},
{
"text" :"あぁ、<br/>もちろん気に<br/>しないでいい",
"style":"font-size: 12px;color: black;background-color: white;left: 78%;top: 46.5%;"
},
{
"text" :"ああ、僕が<br/>ピアノピアーノに<br/>残した物は<br/>持っていけない。<br/>少なくとも<br/>5:30まで",
"style":"font-size: 12px;color: black;background-color: white;left: 5.5%;top: 55%;"
},
{
"text" :"僕は随分<br/>協力したろ、<br/>だがもし僕を使う<br/>のを止めたら誰も<br/>幸せにならない。<br/>トレモロはいい<br/>だろうが",
"style":"font-size: 14px;color: black;background-color: white;left: 19%;top: 54%;"
},
{
"text" :"それと、<br/>ニコディモスと<br/>別の予定を<br/>予約してくれ",
"style":"font-size: 14px;color: black;background-color: white;left: 33.5%;top: 57%;"
},
{
"text" :"彼は僕に<br/>こだわる",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 68.5%;"
},
{
"text" :"お前も<br/>ふざけんなよ<br/>ストラツィオ<br/>昼寝する",
"style":"font-size: 14px;color: black;background-color: white;left: 68%;top: 72.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p23": [
{
"text" :"うわぁぁ<br/>これは<br/>マズい",
"style":"font-size: 14px;color: black;background-color: white;left: 17%;top: 5%;"
},
{
"text" :"待って、<br/>“普通の医者には<br/>行けない”って<br/><span style=\"font-weight: bold;\">どういう<br/>意味?!!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 39%;top: 6%;"
},
{
"text" :"上司の男の名は<br/>ストラツィオ。<br/>ピアノピアーノ<br/>に行けば、<br/>事態が分かる",
"style":"font-size: 16px;color: black;background-color: white;left: 72%;top: 6%;"
},
{
"text" :"ストラ<br/>ツィオ",
"style":"font-size: 16px;color: black;background-color: white;left: 64%;top: 6%;"
},
{
"text" :"ヤギーに会う<br/>時間もある",
"style":"font-size: 17px;color: black;background-color: white;left: 79%;top: 16.3%;"
},
{
"text" :"実際に、もし<br/>マイロが暗殺者か<br/>悪い魔法使いか何かの<br/>集団で働いてたら、<br/>ぼくはヤギーを生きた盾<br/>にして逃げる",
"style":"font-size: 15px;color: black;background-color: white;left: 13.5%;top: 37%;"
},
{
"text" :"うん",
"style":"font-size: 16px;color: black;background-color: white;left: 37%;top: 41%;"
},
{
"text" :"グレーテル<br/>ならそうする",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 39%;"
},
{
"text" :"グレーテルは<br/>誰であろうと<br/>舐めた真似は<br/>許さない",
"style":"font-size: 15px;color: black;background-color: white;left: 60%;top: 39%;"
},
{
"text" :"彼女は<br/>真相へ立ち向かい<br/>情け容赦しない!",
"style":"font-size: 14px;color: black;background-color: white;left: 73%;top: 40%;"
},
{
"text" :"ええ、<br/>グレーテルは<br/>クレイジー…",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 74%;"
},
{
"text" :"…彼女は<br/>自分の<br/>ルールは<br/>自分で決める",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 86%;"
},
],
"http://devilscandycomic.com/comic/ch05p24": [
],
"http://devilscandycomic.com/comic/ch05p25": [
{
"text" :"早く来てる、<br/>でもクールに<br/>見せようと<br/>してる",
"style":"font-size: 14px;color: black;background-color: white;left: 30%;top: 5%;"
},
{
"text" :"ぼくに<br/>気づいた!",
"style":"font-size: 16px;color: black;background-color: white;left: 50%;top: 7%;"
},
{
"text" :"…でもまた<br/>クールに<br/>見せに<br/>戻った",
"style":"font-size: 15px;color: black;background-color: white;left: 60%;top: 6%;"
},
{
"text" :"OK、<br/>立場を逆転<br/>させる時よ、<br/><span style=\"font-weight: bold;\">グレーテル<br/>スタイルで!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 81.5%;top: 5%;"
},
{
"text" :"だーれだ、<br/>こん畜生!?",
"style":"font-size: 16px;color: black;background-color: white;left: 14%;top: 36.5%;font-weight: bold;"
},
{
"text" :"グラックル?",
"style":"font-size: 15px;color: black;background-color: white;left: 62%;top: 43%;"
},
{
"text" :"じ…十分<br/>近いかな",
"style":"font-size: 16px;color: black;background-color: white;left: 84%;top: 49%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ブワッ<br/>ホー ホー!</span><br/>優雅な美女<br/>だと思ったか、<br/>本当の私は<br/>情緒不安定な<br/>狂人よ!",
"style":"font-size: 14px;color: black;background-color: white;left: 12.5%;top: 63%;"
},
{
"text" :"ラカップスは<br/>オレが書いた<br/>歌のこと<br/>言ってるの?",
"style":"font-size: 15px;color: black;background-color: white;left: 57.5%;top: 63.3%;"
},
{
"text" :"“ラカップス”!<br/>僕のこと?<br/>何でそんなに名前<br/>覚えるの苦手!?",
"style":"font-size: 15px;color: black;background-color: white;left: 74%;top: 63.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p26": [
{
"text" :"オゥイェーイ<br/>君の歌よ。<br/>あれ<span style=\"font-weight: bold;\">超</span>メタル<br/>なら嬉しいわね",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 3%;"
},
{
"text" :"<span style=\"font-weight: bold;\">芋虫や血の</span><br/>歌大好き!<br/>ラブソングの<br/>クソはダメね",
"style":"font-size: 16px;color: black;background-color: white;left: 12.6%;top: 11%;"
},
{
"text" :"あー、うん。<br/>あれは…<br/>大体芋虫に<br/>ついてかな",
"style":"font-size: 14px;color: black;background-color: white;left: 67.5%;top: 4%;"
},
{
"text" :"<span style=\"font-weight: bold;\">本物のメタル</span><br/>やるなら、<br/>楽しむ時に<br/>鼻の上に芋虫を<br/>置くのよ",
"style":"font-size: 15px;color: black;background-color: white;left: 6%;top: 33%;"
},
{
"text" :"当然、<br/>かな?",
"style":"font-size: 18px;color: black;background-color: white;left: 34.5%;top: 35%;"
},
{
"text" :"それで私が君を<br/>未知の、危険な場所へ<br/>連れて行って<br/>悪い事が起きたら<br/>生きた盾にしても<br/>いい?",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 33%;"
},
{
"text" :"いいよ",
"style":"font-size: 20px;color: black;background-color: white;left: 79%;top: 35.6%;"
},
{
"text" :"よし、頼んだ。<br/>大事になっても<br/>罪悪感を感じる<br/>必要はないわね",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 64%;"
},
{
"text" :"君の恐怖心の<br/>無さは不思議と<br/>力が湧いてくるわ",
"style":"font-size: 16px;color: black;background-color: white;left: 34%;top: 65.5%;"
},
{
"text" :"さぁ、手を取って<br/><span style=\"font-weight: bold;\"><ruby><rb>深淵<rp>(</rp><rt>アビス</rt><rp>)</ruby>へゴーよ!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 39%;top: 72.2%;"
},
],
"http://devilscandycomic.com/comic/ch05p27": [
{
"text" :"地下鉄…<br/>使えば…<br/>いいじゃん…",
"style":"font-size: 14px;color: black;background-color: white;left: 64%;top: 8%;"
},
{
"text" :"それは…<br/>全然…<br/>メタルじゃ…<br/>ない…",
"style":"font-size: 14px;color: black;background-color: white;left: 77.5%;top: 8%;"
},
{
"text" :"実際はただ<br/>貧乏なだけ",
"style":"font-size: 16px;color: white;background-color: black;left: 86%;top: 16%;"
},
{
"text" :"待った…<br/>このナイトクラブに<br/>来たんじゃないよね?<br/>高校生は入れて<br/>くれないよ",
"style":"font-size: 13px;color: black;background-color: white;left: 23%;top: 30.8%;"
},
{
"text" :"<span style=\"font-weight: bold;\">忍び込むのよ。</span><br/>私達は<span style=\"font-weight: bold;\">ワイルド</span>で<br/><span style=\"font-weight: bold;\">ある男を騙したり</span><br/>するのよ",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 31.5%;"
},
{
"text" :"裏へ回って。<br/>搬入口か<br/>開いた窓か<br/>何か探すの<br/>手伝って",
"style":"font-size: 16px;color: black;background-color: white;left: 81.5%;top: 41%;"
},
{
"text" :"ぼく<span style=\"font-weight: bold;\">何してんだろ</span><br/>でも最悪でもない?<br/>クールなクラブの中を<br/>見たい2人のアホの子!<br/>これ以上は良く<br/>わからない!",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 57.5%;"
},
{
"text" :"悪い魔法使い<br/>でさえこんな<br/>物語買う?",
"style":"font-size: 15px;color: black;background-color: white;left: 30.5%;top: 59.5%;"
},
{
"text" :"ねぇ。<br/>窓がある。<br/>僕が上げて<br/>あげるよ",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 60%;"
},
{
"text" :"よっ!",
"style":"font-size: 12px;color: black;background-color: white;left: 54.5%;top: 72.5%;"
},
{
"text" :"どうぞ<br/>ご自由に、<br/>変態。ブルマ<br/>履いてるもん",
"style":"font-size: 14px;color: black;background-color: white;left: 77%;top: 87.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p28": [
{
"text" :"人影なし",
"style":"font-size: 20px;color: black;background-color: white;left: 38%;top: 6%;"
},
{
"text" :"倉庫部屋<br/>みたいね",
"style":"font-size: 20px;color: black;background-color: white;left: 47%;top: 8%;"
},
{
"text" :"ギター<br/>ケース<br/>かな?",
"style":"font-size: 16px;color: black;background-color: white;left: 18%;top: 52%;width: 71px;"
},
{
"text" :"何よ、<br/>急に歌う気?<br/>目立っちゃ<br/>ダメよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 45%;top: 53%;"
},
{
"text" :"わあ。<br/>かなり<br/>メタルね、<br/>実際",
"style":"font-size: 15px;color: black;background-color: white;left: 82.5%;top: 56%;"
},
{
"text" :"…助けて<br/>…",
"style":"font-size: 12px;color: black;background-color: white;left: 81%;top: 71.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p29": [
{
"text" :"だ…誰か<br/>入ってる?",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 5.5%;"
},
{
"text" :"…<br/>出して<br/>…",
"style":"font-size: 16px;color: black;background-color: white;left: 25%;top: 10%;"
},
{
"text" :"絶対に<br/>幽霊だ",
"style":"font-size: 23px;color: black;background-color: white;left: 37%;top: 7%;"
},
{
"text" :"すごい自信!<br/>すごいバカ!",
"style":"font-size: 18px;color: black;background-color: white;left: 60%;top: 8%;"
},
{
"text" :"いや。<br/>君達は<br/><span style=\"font-weight: bold;\">選ばれし者!</span>",
"style":"font-size: 17px;color: black;background-color: white;left: 37.5%;top: 27.2%;"
},
{
"text" :"ケースを<br/>開けて<br/><span style=\"font-weight: bold;\">運命を<br/>受け入れろ!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 27%;"
},
{
"text" :"最高って<br/>約束<br/>するぜ!",
"style":"font-size: 16px;color: black;background-color: white;left: 88.5%;top: 30.5%;"
},
{
"text" :"わぁ、<br/>ギターだ",
"style":"font-size: 16px;color: black;background-color: white;left: 14.5%;top: 61.5%;"
},
{
"text" :"格好<br/>良い",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 64.5%;"
},
{
"text" :"やれやれ、<br/>ありがとう。<br/>バカ共が俺を<br/>売り払おうと<br/>してたんだ",
"style":"font-size: 16px;color: black;background-color: white;left: 39.5%;top: 50%;"
},
{
"text" :"ここから<br/>俺を連れ<br/>出してくれ。<br/>急いでな!",
"style":"font-size: 16px;color: black;background-color: white;left: 51%;top: 54%;"
},
{
"text" :"バカ共?<br/>バカ共って何?<br/>ストラツィオ<br/>って奴はいた?",
"style":"font-size: 14px;color: black;background-color: white;left: 81.5%;top: 43%;"
},
{
"text" :"ん?あぁ。<br/>アイツか。<br/>俺に悪いこと<br/>したがってる<br/>トレモロって奴と<br/>一緒にいる",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 66%;"
},
{
"text" :"<span style=\"font-weight: bold;\">とにかく、</span><br/>俺はただの<br/>ギター型悪魔で<br/>ギターじゃない<br/>だから俺を売るのは<br/>奴隷売買みたいな<br/>もんだろ?",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 66%;"
},
],
"http://devilscandycomic.com/comic/ch05p30": [
{
"text" :"選ばれし<br/>者って何?",
"style":"font-size: 15px;color: black;background-color: white;left: 6.5%;top: 8.8%;"
},
{
"text" :"見たこと<br/>無い悪魔ね。<br/>何て<br/>名前?",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top:7%;"
},
{
"text" :"あー…マ…<br/>マーク…?",
"style":"font-size: 15px;color: black;background-color: white;left: 20.3%;top: 28.3%;"
},
{
"text" :"ただの<br/>“マーク?”",
"style":"font-size: 14px;color: black;background-color: white;left: 34.5%;top: 7%;"
},
{
"text" :"嘘<br/>臭い",
"style":"font-size: 20px;color: black;background-color: white;left: 41.2%;top: 7.5%;"
},
{
"text" :"スティ…<br/>スティーブン",
"style":"font-size: 12px;color: black;background-color: white;left: 40%;top: 14%;"
},
{
"text" :"それじゃ<br/>“スティーブン”<br/>か“マーク”?",
"style":"font-size: 13px;color: black;background-color: white;left: 46.5%;top: 18.2%;"
},
{
"text" :"<span style=\"font-weight: bold;\">マーク・<br/>スティーブンソン!</span><br/>俺の名はマーク・<br/>スティーブンソンだ!<br/><span style=\"font-weight: bold;\">クソ!</span>お前の名は<br/>俺が楽しめる位<br/><span style=\"font-weight: bold;\">超</span>スゴイのかよ?",
"style":"font-size: 14px;color: black;background-color: white;left: 56%;top: 4.5%;"
},
{
"text" :"グレーテル<br/>よ",
"style":"font-size: 13px;color: black;background-color: white;left: 76.5%;top: 9%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ただの<br/>“グレーテル”?</span><br/>悪魔の名前に<br/>聞こえないね!<br/>お前こそギターじゃ<br/>ねーのか?!",
"style":"font-size: 14px;color: black;background-color: white;left: 73.5%;top: 28.5%;"
},
{
"text" :"OK OK、<br/>今のは忘れろ。<br/>俺の脱出を助けて<br/>くれるのか<br/>どうか?",
"style":"font-size: 15px;color: black;background-color: white;left: 8.5%;top: 42.5%;"
},
{
"text" :"奴らは<br/>今にもここに<br/>来るぞ",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 43.8%;"
},
{
"text" :"いいわ、でも<br/>ストラツィオについて<br/>知ってること全部<br/>話してもらうわ",
"style":"font-size: 14px;color: black;background-color: white;left: 6%;top: 57.5%;"
},
{
"text" :"ストラツィオ<br/>って誰?<br/>何かあった?",
"style":"font-size: 13px;color: black;background-color: white;left: 42%;top: 59%;"
},
{
"text" :"交渉<br/>成立…",
"style":"font-size: 16px;color: black;background-color: white;left: 30%;top: 76%;"
},
{
"text" :"俺はストラツィオの<br/><span style=\"font-weight: bold;\">専門家さ。</span>俺の裏に<br/>ギターの指板が<br/>無いこと位良く<br/>知ってる",
"style":"font-size: 14px;color: black;background-color: white;left: 37%;top: 76%;"
},
{
"text" :"アッ<br/>クソ!<br/>隠れろ!",
"style":"font-size: 14px;color: black;background-color: white;left: 64.2%;top: 68.5%;font-weight: bold;"
},
{
"text" :"ロッカー<br/>!",
"style":"font-size: 13px;color: black;background-color: white;left: 78.8%;top: 87%;"
},
{
"text" :"ロッカー<br/>よ!",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 91.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p31": [
{
"text" :"ありがとう。<br/>君達はとても<br/>親切だね",
"style":"font-size: 18px;color: black;background-color: white;left: 22.5%;top: 23%;"
},
{
"text" :"当然です。<br/>ギターは<br/>その隅です。<br/>どうぞ確認を",
"style":"font-size: 16px;color: black;background-color: white;left: 41%;top: 4%;"
},
{
"text" :"そう<br/>するよ",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 7%;"
},
{
"text" :"おやおや、<br/>これはどういう<br/>ことかな?",
"style":"font-size: 16px;color: black;background-color: white;left: 80.5%;top: 75%;"
},
],
"http://devilscandycomic.com/comic/ch05p32": [
{
"text" :"かなり生意気<br/>じゃねぇか?<br/>俺達の仲間2人が<br/>殺された直後に<br/>古物商が1人で<br/>来るか?",
"style":"font-size: 14px;color: black;background-color: white;left: 13.5%;top: 4%;"
},
{
"text" :"君達がギターを<br/>手渡す契約を<br/>俺は信じて…",
"style":"font-size: 18px;color: black;background-color: white;left: 37%;top: 6%;"
},
{
"text" :"地獄で<br/>契約しな!",
"style":"font-size: 20px;color: black;background-color: white;left: 61%;top: 5%;font-weight: bold;"
},
{
"text" :"俺達を脅して<br/>従わせたいなら、<br/>黒い殉教者でも<br/>連れてこい!",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 6%;"
},
{
"text" :"お前に答えてやる<br/>義理はない。<br/>それに、お前の頭を<br/>ギターケースに詰めて<br/><span style=\"font-weight: bold;\">ソレを</span>ストラツィオに<br/>送ってやる",
"style":"font-size: 15px;color: black;background-color: white;left: 74%;top: 27%;"
},
{
"text" :"全く<br/>ひどい<br/>誤解だよ",
"style":"font-size: 16px;color: black;background-color: white;left: 9%;top: 44%;width: 102px"
},
{
"text" :"第一、<br/>ケースは<br/>空だ",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 45%;width: 88px;"
},
{
"text" :"何?!",
"style":"font-size: 26px;color: black;background-color: white;left: 15.5%;top: 74.5%;font-weight: bold;"
},
{
"text" :"誰かが盗んだ<br/>と言う気か?!<br/>貴様一体<br/>何をした?!",
"style":"font-size: 18px;color: black;background-color: white;left: 43%;top: 58.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05fanime": [
{
"text" :"やぁ皆!<br/><br/>今週末のFanimeに向けてコンベンションの準備が大変になったので<br/>簡潔に言えばストーリーを中断するつもりです。<br/>心配なく、月曜には戻ります!<br/>今、ここにはリケットとマイロと彼らの母と父の昔の写真があります。<br/>何かパッとしない人々ですね!!<br/>OK、コンベンションに行く人は、そこで会いましょう。<br/>他の人達は、月曜日に会いましょう!<br/><br/>--REM",
"style":"font-size: 16px;color: white;background-color: #6c709A;left: 10%;top: 62%;text-align: left;width: 681px;"
},
{
"text" :"マイロ<br/>(16)",
"style":"font-size: 16px;color: black;background-color: white;left: 5%;top: 31%;"
},
{
"text" :"ルーファス",
"style":"font-size: 16px;color: black;background-color: white;left: 39%;top: 12.5%;"
},
{
"text" :"ミッチー",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 12.5%;"
},
{
"text" :"リケット<br/>(7)",
"style":"font-size: 18px;color: black;background-color: white;left:76.5%;top: 28%;"
},
{
"text" :"パンターノ<br/>一家!",
"style":"font-size: 16px;color: #6B7095;background-color: white;left: 79%;top: 15%;"
},
],
"http://devilscandycomic.com/comic/ch05p33": [
{
"text" :"貴様らは<br/>唯一無二の<br/>楽器を<br/>失くした",
"style":"font-size: 16px;color: black;background-color: white;left: 65.5%;top: 19.5%;width: 95px;"
},
{
"text" :"貴様らは<br/>約束を最後まで<br/>果たせなかった",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 25.5%;"
},
{
"text" :"貴様らは<br/>義務よりも<br/>ささいな復讐を<br/>優先した",
"style":"font-size: 16px;color: black;background-color: white;left: 23.5%;top: 35.5%;"
},
{
"text" :"俺は<br/><span style=\"font-weight: bold;\">自分</span>が…",
"style":"font-size: 22px;color: white;background-color: black;left: 40%;top: 53%;"
},
{
"text" :"銃を<br/>突きつけられる<br/>べきだとは<br/>思わない",
"style":"font-size: 16px;color:white;background-color: black;left: 47.5%;top: 58%;"
},
],
"http://devilscandycomic.com/comic/ch05p34": [
{
"text" :"そ…",
"style":"font-size: 20px;color: black;background-color: white;left: 74%;top: 22%;"
},
{
"text" :"その通り<br/>です",
"style":"font-size: 20px;color: black;background-color: white;left: 44%;top: 52%;"
},
{
"text" :"なんて<br/>こと",
"style":"font-size: 18px;color: black;background-color: white;left: 11%;top: 72%;"
},
{
"text" :"一体何が<br/>起きてるの~~?",
"style":"font-size:18px;color: black;background-color: white;left: 64%;top: 87%;"
},
],
"http://devilscandycomic.com/comic/ch05p35": [
{
"text" :"なぁ、<br/>おい",
"style":"font-size: 14px;color: black;background-color: white;left: 21.5%;top: 23.5%;"
},
{
"text" :"チャンス<br/>だぜ",
"style":"font-size: 16px;color: black;background-color: white;left: 40.5%;top: 19%;"
},
{
"text" :"彼女に<br/>キスしろ!",
"style":"font-size: 14px;color: black;background-color: white;left: 41.5%;top: 25%;"
},
{
"text" :"う、うん…",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 26%;"
},
{
"text" :"わ…<br/>わぁ",
"style":"font-size:22px;color: black;background-color: white;left: 24%;top: 56%;"
},
{
"text" :"ここで<br/>情熱的なこと<br/>する気?",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 82%;"
},
{
"text" :"<span style=\"font-weight: bold;\">ニンジュツメイト<br/>ニンジャリミネイ<br/>ション チャレンジ</span><br/>と同じ位情熱的ね",
"style":"font-size: 14px;color: black;background-color: white;left: 51%;top: 67.5%;"
},
{
"text" :"な…<br/>な…!?",
"style":"font-size: 16px;color: black;background-color: white;left: 50.5%;top: 77.8%;font-weight: bold;"
},
{
"text" :"ア!",
"style":"font-size: 16px;color: black;background-color: white;left: 82.8%;top: 64.5%;font-weight: bold;"
},
{
"text" :"ワ!",
"style":"font-size: 16px;color: black;background-color: white;left: 89%;top: 84.4%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p36": [
{
"text" :"おや、<br/>今日は",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 7%;"
},
{
"text" :"2人とも",
"style":"font-size: 16px;color: black;background-color: white;left:54%;top: 5%;"
},
{
"text" :"待て",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 8%;"
},
{
"text" :"これは<br/>どういうことか<br/>分からないが、<br/>ギターを渡すのを<br/>強く勧める",
"style":"font-size: 15px;color: black;background-color: white;left: 42.7%;top: 24%;"
},
{
"text" :"今日はもう<br/>トラブルは<br/>十分だ",
"style":"font-size: 16px;color: black;background-color: white;left: 46.5%;top: 35.7%;"
},
{
"text" :"やめろ!<br/>奴は不気味だ!<br/>俺をパンツに<br/>突っ込む気だ!",
"style":"font-size: 16px;color: black;background-color: white;left: 10%;top: 55.5%;font-weight: bold;"
},
{
"text" :"弾け!<br/>俺を弾くんだ!<br/>何か超メタルな<br/>やつを!",
"style":"font-size: 16px;color: black;background-color: white;left: 71.5%;top: 57.5%;font-weight: bold;"
},
{
"text" :"どんなの?<br/>イカした<br/>パワー<br/>コード?",
"style":"font-size: 15px;color: black;background-color: white;left: 12.5%;top: 73%;"
},
{
"text" :"そうだ!<br/><span style=\"font-weight: bold;\">“パワー”</span><br/>が鍵だ!",
"style":"font-size: 15px;color: black;background-color: white;left: 11.7%;top: 82%;"
},
{
"text" :"あんたが<br/>ストラツィオ?",
"style":"font-size: 12px;color: black;background-color: white;left: 59%;top: 75%;"
},
],
"http://devilscandycomic.com/comic/ch05p37": [
{
"text" :"う…<br/>うわぁ",
"style":"font-size: 16px;color: black;background-color: white;left: 54.5%;top: 69.5%;"
},
{
"text" :"逃げろ<br/>!",
"style":"font-size: 21px;color: black;background-color: white;left: 66%;top: 72%;font-weight: bold;height: 60px;display: flex;align-items: center;"
},
{
"text" :"行け!",
"style":"font-size: 20px;color: black;background-color: white;left: 77.5%;top: 92%;font-weight: bold;"
},
{
"text" :"行け!",
"style":"font-size: 21px;color: black;background-color: white;left: 83%;top: 93%;font-weight: bold;"
},
{
"text" :"行け!",
"style":"font-size: 21px;color: black;background-color: white;left: 88%;top: 91%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p38": [
{
"text" :"ねえ!<br/>どこに<br/>行くの?",
"style":"font-size: 15px;color: black;background-color: white;left: 30%;top: 60.5%;"
},
{
"text" :"家だ!",
"style":"font-size: 25px;color: black;background-color: white;left: 47%;top: 65%;font-weight: bold;"
},
{
"text" :"ついて来るな!<br/>君おかしいよ!<br/>君のせいで<br/><span style=\"font-weight: bold;\">殺され</span>そう<br/>だったんだぞ!",
"style":"font-size: 14px;color: black;background-color: white;left: 72%;top: 60%;width: 134px;"
},
],
"http://devilscandycomic.com/comic/ch05p39": [
{
"text" :"待って、<br/>私には<br/>マークが<br/>必要よ!",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 5%;"
},
{
"text" :"まだ<br/>ストラツィオ<br/>のこと何も<br/>聞いてない!",
"style":"font-size: 14px;color: black;background-color: white;left: 24%;top: 7%;"
},
{
"text" :"オレには<br/>関係ない!<br/>僕は連れて行く<br/>ギターを…",
"style":"font-size: 14px;color: black;background-color: white;left: 81.5%;top: 5%;"
},
{
"text" :"マークだ",
"style":"font-size: 16px;color: black;background-color: white;left: 84%;top: 12%;"
},
{
"text" :"マークは<br/>連れていく、<br/>オレにふさわしい<br/>素晴らしい<br/>ギター…",
"style":"font-size: 15px;color: black;background-color: white;left: 41%;top: 22%;"
},
{
"text" :"仲間だよ",
"style":"font-size: 20px;color: black;background-color: white;left: 49%;top: 30.5%;"
},
{
"text" :"ギターは<br/>貰って当然だ<br/><span style=\"font-weight: bold;\">オレをあんな目に<br/>あわせたん<br/>だからな!</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 17.5%;top: 44%;"
},
{
"text" :"何が<br/>起きてるか<br/>知らないけど、<br/>オレもバカ<br/>じゃない!",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 60.5%;font-weight: bold;"
},
{
"text" :"勝手に<br/>しろ…<br/>他の誰かに<br/>聞けよ!",
"style":"font-size: 20px;color: black;background-color: white;left: 60%;top: 80%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p40": [
{
"text" :"ヤギー…",
"style":"font-size: 16px;color: black;background-color: white;left: 24%;top: 6.5%;"
},
{
"text" :"ごめん<br/>なさい",
"style":"font-size: 16px;color: black;background-color: white;left: 30.5%;top: 9.5%;"
},
{
"text" :"怒らせる<br/>つもりは<br/>なかったの",
"style":"font-size: 16px;color: black;background-color: white;left: 16%;top: 40.5%;"
},
{
"text" :"素晴らしい<br/>デートを考えたわ。<br/>君が私のために<br/>書いてくれた歌<br/>私もすごく<br/>聴きたいな…",
"style":"font-size: 15px;color: black;background-color: white;left: 75%;top: 19.5%;"
},
{
"text" :"マークで<br/>演奏すれば<br/>きっと素敵よ",
"style":"font-size: 17px;color: black;background-color: white;left: 77%;top: 32.9%;"
},
{
"text" :"いいね",
"style":"font-size: 16px;color: black;background-color: white;left: 71%;top: 65.8%;"
},
{
"text" :"それじゃ、<br/>明日も<br/>会える?",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 70%;"
},
],
"http://devilscandycomic.com/comic/ch05p41": [
{
"text" :"ハッ",
"style":"font-size: 16px;color: black;background-color: white;left: 34.3%;top: 7%;font-weight: bold;"
},
{
"text" :"ワ!",
"style":"font-size: 19px;color: black;background-color: white;left: 18.5%;top: 27%;font-weight: bold;"
},
{
"text" :"大丈夫<br/>ですか?!",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 28.5%;"
},
{
"text" :"この割れた<br/>ガラスを<br/>見ろ<br/>…",
"style":"font-size: 14px;color: black;background-color: white;left: 45%;top: 72%;"
},
{
"text" :"ここの<br/>店員達は<br/>明らかに<br/>不注意だ",
"style":"font-size: 16px;color: black;background-color: white;left: 53%;top: 78%;width: 86px;"
},
],
"http://devilscandycomic.com/comic/ch05p42": [
{
"text" :"マネージャーが<br/>見つけたら<br/>酷く腹を立てる<br/>だろう!",
"style":"font-size: 16px;color: black;background-color: white;left: 70.5%;top: 6%;"
},
{
"text" :"君達の望みは<br/>証拠を燃やす<br/>ことだ",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 24%;"
},
{
"text" :"ガスタンク<br/>があれば、<br/>役に立つだろう…",
"style":"font-size: 16px;color: black;background-color: white;left: 24.3%;top: 31%;"
},
{
"text" :"マイロ…!",
"style":"font-size: 20px;color: black;background-color: white;left: 70%;top: 81%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05ax": [
{
"text" :"あなたは死のドアに<br/>爪を立てている?<br/>それなら<span style=\"font-weight: bold;\">奇跡</span>が必要だ!<br/>お電話は奇跡のニック<br/>1-666-MIRACLE!",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 6.5%;width: 174px;"
},
{
"text" :"やあ皆!<br/>私は今アニメ・エキスポにいます<br/>だから更新は今度の金曜日(7月7日)に再開します<br/>それではまた会いましょう!<br/>--REM",
"style":"font-size: 20px;color: white;background-color: black;left: 22%;top: 83%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p43": [
{
"text" :"マイロ?",
"style":"font-size: 15px;color: black;background-color: white;left: 13%;top: 5%;font-weight: bold;"
},
{
"text" :"えっと…<br/>家にいる?<br/>なんで<br/>暗いの…?",
"style":"font-size: 15px;color: black;background-color: white;left: 13.5%;top: 20%;"
},
{
"text" :"ねぇ??",
"style":"font-size: 17px;color: black;background-color: white;left: 61%;top: 4.5%;"
},
{
"text" :"うあっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 4%;font-weight: bold;"
},
{
"text" :"マイロ!!",
"style":"font-size: 18px;color: black;background-color: white;left: 62%;top: 33%;font-weight: bold;"
},
{
"text" :"グー……",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 53%;"
},
{
"text" :"ふぅ…",
"style":"font-size: 16px;color: white;background-color: black;left: 35.4%;top: 76%;"
},
{
"text" :"よかった。<br/>ここに<br/>いたんだ",
"style":"font-size: 15px;color: black;background-color: white;left: 48%;top: 82.5%;"
},
{
"text" :"死んでない。<br/>それで<br/>十分だよ",
"style":"font-size: 14px;color: black;background-color: white;left: 48.5%;top: 89%;"
},
{
"text" :"マーク<br/>と話せば<br/>全部分かる<br/>よね",
"style":"font-size: 14px;color: black;background-color: white;left: 84.5%;top: 71%;"
},
{
"text" :"誰…?",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 82.5%;"
},
{
"text" :"シーッ",
"style":"font-size: 13px;color: black;background-color: white;left: 88.3%;top: 82.2%;"
},
],
"http://devilscandycomic.com/comic/ch05p44": [
{
"text" :"うわぁ、<br/>彼女はオレに<br/>ベタ惚れだよ",
"style":"font-size: 14px;color: black;background-color: white;left: 37.5%;top: 7%;"
},
{
"text" :"全くな",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 7.5%;"
},
{
"text" :"ところで、いい<br/>ベッドだな、兄弟。<br/>俺にエアマットか<br/>何かくれないか?",
"style":"font-size: 13px;color: black;background-color: white;left: 73%;top: 22.5%;"
},
{
"text" :"それに、<br/>何か…<br/>侍ソードとか<br/>忍者スター<br/>ないか?",
"style":"font-size: 14px;color: black;background-color: white;left: 24%;top: 35%;"
},
{
"text" :"ほら。<br/><span style=\"font-weight: bold;\">クールな</span><br/>ヤツ",
"style":"font-size: 16px;color: black;background-color: white;left: 35%;top: 38%;"
},
{
"text" :"ナイフ<br/>とか?",
"style":"font-size: 16px;color: black;background-color: white;left: 47.8%;top: 51.5%;"
},
{
"text" :"魔法の<br/>ギターが<br/>ナイフで<br/>何する気?",
"style":"font-size: 16px;color: black;background-color: white;left: 78%;top: 48.5%;"
},
{
"text" :"俺はギター<br/><span style=\"font-weight: bold;\">じゃない!</span><br/>それに、ガキ、<br/>魔法なんて<br/>存在しない",
"style":"font-size: 14px;color: black;background-color: white;left: 3%;top: 61%;"
},
{
"text" :"<span style=\"font-weight: bold;\">忍者</span>も<br/>存在<br/>しないよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 26%;top: 62.5%;"
},
{
"text" :"2本の腕と<br/>投げスターが<br/>あれば、本物の<br/>忍者を見せて<br/>やるぜ!",
"style":"font-size: 15px;color: black;background-color: white;left: 5%;top: 77.5%;font-weight: bold;"
},
{
"text" :"<ruby><rb>“手裏剣”<rp>(</rp><rt>しゅりけん</rt><rp>)</ruby><br/>だろソレ!",
"style":"font-size: 17.5px;color: black;background-color: white;left: 38.5%;top: 80%;font-weight: bold;"
},
{
"text" :"忘れて",
"style":"font-size: 18px;color: black;background-color: white;left: 69%;top: 63.7%;"
},
{
"text" :"クローゼット<br/>に君をしまう。<br/>クレアンスに<br/>電話しなきゃ",
"style":"font-size: 14px;color: black;background-color: white;left: 75.5%;top: 65%;"
},
{
"text" :"おい!",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 78.5%;transform: rotate(-10deg);"
},
],
"http://devilscandycomic.com/comic/ch05p45": [
{
"text" :"よお?",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 8%;"
},
{
"text" :"やぁ<br/>クレアンス",
"style":"font-size: 16px;color: black;background-color: white;left: 28.5%;top: 19%;"
},
{
"text" :"おぅ。<br/>デートは<br/>どうだ?",
"style":"font-size: 15px;color: black;background-color: white;left: 75%;top: 4.5%;"
},
{
"text" :"皆!夕食<br/>できた!",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 7%;transform: rotate(10deg);"
},
{
"text" :"良かったよ。<br/>オレは魔法の<br/>喋るギターを<br/>手に入れた",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 39%;"
},
{
"text" :"お前が...",
"style":"font-size: 13px;color: black;background-color: white;left: 52%;top: 41%;"
},
{
"text" :"はぁ?",
"style":"font-size: 16px;color: black;background-color: white;left: 56%;top: 44%;"
},
{
"text" :"ああ、<br/>イカれた力を<br/>持ってる。<br/>でも感じ<br/>悪い",
"style":"font-size: 14px;color: black;background-color: white;left: 83%;top: 40.5%;"
},
{
"text" :"売っ払おう<br/>と思う。<br/>いい場所<br/>知らない?",
"style":"font-size: 15px;color: black;background-color: white;left: 13%;top: 70.5%;"
},
{
"text" :"ヤギー、<br/>お腹すいた?",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 72.5%;transform: rotate(-15deg);"
},
{
"text" :"…何?",
"style":"font-size: 25px;color: black;background-color: white;left: 59%;top: 72%;font-weight: bold;"
},
{
"text" :"今日は<br/>私のチャクラが<br/>全部揃ったって<br/>信じられるか?<br/><span style=\"font-weight: bold;\">全部</span>だぞ!",
"style":"font-size: 14px;color: black;background-color: white;left: 58.2%;top: 86%;"
},
],
"http://devilscandycomic.com/comic/ch05p46": [
{
"text" :"あぁ、うん。<br/>そういう物を<br/>専門に取り扱う所<br/>知ってるよ。<br/><span style=\"font-weight: bold;\">音楽</span>関係とか。<br/>魔法はないが",
"style":"font-size: 14px;color: black;background-color: white;left: 12%;top: 3%;"
},
{
"text" :"明日<br/>遊びに行こう",
"style":"font-size: 15px;color: black;background-color: white;left: 13%;top: 14.5%;"
},
{
"text" :"パンドラ<br/>連れて<br/>来たら嫌か?",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 20%;"
},
{
"text" :"カズの<br/>生物学の<br/>課題?",
"style":"font-size: 16px;color: black;background-color: white;left: 69.5%;top: 4%;"
},
{
"text" :"なんで、<br/>彼女に<br/>夢中<br/>なんだ?",
"style":"font-size: 14px;color: black;background-color: white;left: 80.5%;top: 4%;"
},
{
"text" :"自分でも<br/>分からない。<br/>彼女が<br/>いいんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 51.5%;"
},
{
"text" :"とにかく<br/>まぁ",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 53%;"
},
{
"text" :"カズも連れて<br/>こなきゃ<br/>いいよ",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 58%;"
},
{
"text" :"彼女の番号<br/>知ってる?<br/>そもそも電話<br/>持ってる?",
"style":"font-size: 15px;color: black;background-color: white;left: 78%;top: 51.5%;"
},
{
"text" :"いや、<br/>彼女達の家へ<br/>寄るだけで<br/>いいさ",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 79%;"
},
{
"text" :"この<br/>ハンサム顔に<br/>誰がダメって<br/>言える?",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 79%;"
},
],
"http://devilscandycomic.com/comic/ch05p47": [
{
"text" :"ダメ<br/>だよ!",
"style":"font-size: 18px;color: black;background-color: white;left: 35.5%;top: 3%;font-weight: bold;"
},
{
"text" :"あー…",
"style":"font-size: 16px;color: black;background-color: white;left: 54%;top: 5%;"
},
{
"text" :"つまり…",
"style":"font-size: 15px;color: black;background-color: white;left: 55.8%;top: 7.8%;"
},
{
"text" :"なんで<br/>全員で<br/>行けないの?",
"style":"font-size: 15px;color: black;background-color: white;left: 80%;top: 5%;"
},
{
"text" :"お前ダサいし<br/>一緒に<br/>行きたくない。<br/>よく考えた<br/>結果だよ",
"style":"font-size: 15px;color: black;background-color: white;left: 30.5%;top: 32.5%;"
},
{
"text" :"何、お前<br/>パンドラの<br/><span style=\"font-weight: bold;\">オーナー?</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 45.6%;top: 34.5%;"
},
{
"text" :"い…いや…<br/>ただ…",
"style":"font-size: 13px;color: black;background-color: white;left: 68.5%;top: 34.5%;"
},
{
"text" :"クレアンスは<br/><ruby><rb>吸血鬼<rp>(</rp><rt>ノスフェラトゥ</rt><rp>)</ruby>だ…",
"style":"font-size: 18px;color: black;background-color: white;left: 25.5%;top: 58.5%;font-weight: bold;border:solid 1px;"
},
{
"text" :"もし血を飲もう<br/>としたら…",
"style":"font-size: 18px;color: black;background-color: white;left: 40%;top: 60.7%;font-weight: bold;border:solid 1px;"
},
{
"text" :"彼女は<br/>歯を<br/>叩き折る!",
"style":"font-size: 18px;color: black;background-color: white;left: 68%;top: 59.2%;font-weight: bold;border:solid 1px;"
},
{
"text" :"そしたら<br/>彼女は<br/>牢屋行きだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 84.5%;font-weight: bold;border:solid 1px;height: 90px;display: flex;align-items: center;"
},
],
"http://devilscandycomic.com/comic/ch05p48": [
{
"text" :"もしオレが<br/>彼女を血を<br/>飲むことが<br/>心配なら…",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 3.5%;width: 96px;"
},
{
"text" :"オレは<br/>ストレート<br/>エッジだ",
"style":"font-size: 15px;color: black;background-color: white;left: 79.5%;top: 20.5%;"
},
{
"text" :"血液銀行か<br/>レストランの<br/>悪魔の血しか<br/>飲まない",
"style":"font-size: 16px;color: black;background-color: white;left: 20%;top: 34.5%;width: 127px;"
},
{
"text" :"パンドラ...",
"style":"font-size: 16px;color: black;background-color: white;left: 63.5%;top: 36%;"
},
{
"text" :"君<br/>行きたい?",
"style":"font-size: 17px;color: black;background-color: white;left: 63%;top: 40%;"
},
{
"text" :"ソレ問題?",
"style":"font-size: 18px;color: black;background-color: white;left: 20%;top: 87.8%;"
},
{
"text" :"むむむぐぐぐ…",
"style":"font-size: 15px;color: black;background-color: white;left: 37%;top: 69.3%;font-weight: bold;"
},
{
"text" :"OK",
"style":"font-size: 23px;color: black;background-color: white;left: 62.8%;top: 70%;"
},
{
"text" :"少し<br/>待って",
"style":"font-size: 16px;color: black;background-color: white;left: 67.5%;top: 70.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p49": [
{
"text" :"この<br/>スクリーミィ<br/>バディを一緒に<br/>持っていって",
"style":"font-size: 14px;color: black;background-color: white;left: 39.5%;top: 4%;"
},
{
"text" :"僕は<br/>こいつの<br/>兄弟を持つ",
"style":"font-size: 16px;color: black;background-color: white;left: 43%;top: 26%;"
},
{
"text" :"こいつの<br/>目を突けば、<br/>両方とも叫ぶ…",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 7%;"
},
{
"text" :"…それで<br/>叫んだ場所から<br/>君を見つけられる",
"style":"font-size: 15px;color: black;background-color: white;left: 78%;top: 7%;"
},
{
"text" :"僕は1人で<br/>ぶらついてるよ<br/>君抜きで<br/>数ブロック<br/>離れてね",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 40%;"
},
{
"text" :"もし何か…<br/><span style=\"font-weight: bold;\">何かが</span><br/>起きたら、<br/>スクリーミィ<br/>バディを突けば<br/>すぐ行くよ",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 39%;"
},
{
"text" :"OK,これはどう…<br/>もし用事が済んだ後<br/>スクリーミィ バディを<br/>持って帰れば…つまり<br/>僕と分かれてすぐに<br/>投げ捨てなきゃ…",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 72%;"
},
{
"text" :"サイコキラー<br/>・スティーブ<br/>・ショベルを<br/>買ってあげる",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 73.5%;"
},
{
"text" :"わかった",
"style":"font-size: 16px;color: black;background-color: white;left: 52%;top: 69.3%;"
},
{
"text" :"よし。<br/>またな",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 59%;"
},
{
"text" :"またな",
"style":"font-size: 18px;color: black;background-color: white;left: 88%;top: 77.5%;"
},
],
"http://devilscandycomic.com/comic/ch05p50": [
{
"text" :"ごめん<br/>遅れた",
"style":"font-size: 16px;color: black;background-color: white;left: 43.2%;top: 6%;"
},
{
"text" :"少し…<br/>交渉が<br/>必要だった",
"style":"font-size: 16px;color: black;background-color: white;left: 66%;top: 4%;"
},
{
"text" :"あらやだ。<br/>カズを殺した<br/>のね?",
"style":"font-size: 15px;color: black;background-color: white;left: 79%;top: 9.5%;"
},
{
"text" :"大したことねぇよ。<br/>ヤギーは俺の意に<br/>反して体からヒデェ音を<br/>強制的に出させて<br/>レディにセレナーデ<br/>聴かせてた",
"style":"font-size: 13px;color: black;background-color: white;left: 5.2%;top: 33%;"
},
{
"text" :"よぉ。<br/>俺マーク",
"style":"font-size: 15px;color: black;background-color: white;left: 11%;top: 43%;"
},
{
"text" :"それで<br/>やっとどこ行くか<br/>教えてくれるの?",
"style":"font-size: 14px;color: black;background-color: white;left: 46.5%;top: 32.5%;"
},
{
"text" :"ついて<br/>来て",
"style":"font-size: 16px;color: black;background-color: white;left: 80.8%;top: 34.8%;"
},
{
"text" :"おぉ、何か<br/>デケェ秘密か?<br/>ヒント位<br/>くれよ!",
"style":"font-size: 15px;color: black;background-color: white;left: 50%;top:42%;"
},
{
"text" :"これ…<br/>これ<span style=\"font-weight: bold;\">忍者<br/>レストランか!?</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 7%;top: 55%;"
},
{
"text" :"ここだ",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 56.5%;"
},
{
"text" :"何だ<br/>こりゃ",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 58%;"
},
{
"text" :"待って、<br/>ヤギー、<br/>あなた…",
"style":"font-size: 17px;color: black;background-color: white;left: 80%;top: 70%;"
},
{
"text" :"すいませ~ん。<br/>魔法の喋るギター<br/>売りたいん<br/>ですけど",
"style":"font-size: 15px;color: black;background-color: white;left: 77%;top: 77%;"
},
],
"http://devilscandycomic.com/comic/ch05p51": [
{
"text" :"いいとも!",
"style":"font-size: 16px;color: black;background-color: white;left: 16.5%;top: 27.5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">これ</span>は<br/>好都合!",
"style":"font-size: 20px;color: black;background-color: white;left: 75%;top: 26%;"
},
{
"text" :"ええええ…<br/>そんな",
"style":"font-size: 16px;color: black;background-color: white;left: 27%;top: 50%;"
},
{
"text" :"ヤギー、<br/>こういう予定<br/>だったの?",
"style":"font-size: 16px;color: black;background-color: white;left: 55%;top: 51%;font-weight: bold;"
},
{
"text" :"いや…<br/>オレ…",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 53.5%;font-weight: bold;"
},
{
"text" :"どうした?<br/>何怖がって<br/>んだよ?",
"style":"font-size: 16px;color: black;background-color: white;left: 84.5%;top: 52%;"
},
{
"text" :"逃げて!!",
"style":"font-size: 25px;color: black;background-color: white;left: 52%;top: 85%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch05p52": [
{
"text" :"むっ!",
"style":"font-size: 15px;color: black;background-color: white;left: 41%;top: 47.8%;font-weight: bold;"
},
{
"text" :"がぁ!",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 63%;font-weight: bold;"
},
{
"text" :"おぉ…",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 46%;transform: rotate(10deg);width: 61px;"
},
],
"http://devilscandycomic.com/comic/ch05p53": [
{
"text" :"パンドラ!!",
"style":"font-size: 20px;color: black;background-color: white;left: 44%;top: 18.5%;font-weight: bold;"
},
{
"text" :"...パンドラ...",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 70%;"
},
{
"text" :"チャプター5:完",
"style":"font-size: 20px;color: black;background-color: white;left: 71%;top: 95.5%;font-weight: bold;border: solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch05p54": [
{
"text" :"サイコ・キラー・スティーブ",
"style":"font-size: 35px;color: black;background-color: white;left: 23%;top: 5%;font-weight: bold;"
},
{
"text" :"コイツは<br/>サイコ<br/>キラー<br/>スティーブ",
"style":"font-size: 16px;color: black;background-color: white;left: 28.5%;top: 22%;border: solid 1px;"
},
{
"text" :"彼は<br/>どこでも<br/>信頼する<br/>シャベル<br/>と一緒だ",
"style":"font-size: 16px;color: black;background-color: white;left: 28%;top: 42%;border: solid 1px;width: 85px;"
},
{
"text" :"彼は<br/>あらゆる<br/>事件に<br/>関わる",
"style":"font-size: 16px;color: black;background-color: white;left: 61.5%;top: 54.5%;border: solid 1px;width: 73px;"
},
{
"text" :"ランチ<br/>ターイム!!",
"style":"font-size: 13px;color: red;left: 44%;top: 75%;transform: rotate(20deg);"
},
{
"text" :"彼の<br/>キャッチ<br/>フレーズは<br/>子供達に<br/>大ウケだ",
"style":"font-size: 16px;color: black;background-color: white;left: 29%;top: 83.5%;border: solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch05p55": [
{
"text" :"消防士",
"style":"font-size: 35px;color: black;background-color: white;left: 27%;top: 5%;font-weight: bold;width: 385px;"
},
{
"text" :"まだ<br/>全員<br/>逃げ出せて<br/>ないと<br/>思う!!",
"style":"font-size: 15px;color: black;background-color: white;left: 61%;top: 10%;"
},
{
"text" :"恐れ<br/>るな!",
"style":"font-size: 16px;color: black;background-color: white;left: 42.7%;top: 33%;"
},
{
"text" :"オレが<br/>救って<br/>みせる!",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 32%;"
},
{
"text" :"消防",
"style":"font-size: 13px;color: black;background-color: #8EABAB;left: 56.5%;top: 41.7%;transform: rotate(-22deg);height: 29px;display: flex;align-items: center;"
},
],
"http://devilscandycomic.com/comic/ch05p56": [
],
"http://devilscandycomic.com/comic/ch06p00": [
],
"http://devilscandycomic.com/comic/ch06p01": [
{
"text" :"ステュクス<br/>キック!!!",
"style":"font-size: 33px;color: black;background-color: white;left: 13%;top: 9%;font-weight: bold;transform: rotate(-9deg);"
},
{
"text" :"ギャアアアア!!<br/>",
"style":"font-size: 28px;color: black;background-color: white;left: 34%;top: 34.5%;font-weight: bold;transform: rotate(13deg);"
},
{
"text" :"はい、<br/>カット!",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 72%;font-weight: bold;"
},
{
"text" :"5分<br/>休憩だ",
"style":"font-size: 16px;color: black;background-color: white;left: 82.5%;top: 71.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p02": [
{
"text" :"ふんぐうぅぅ…",
"style":"font-size: 20px;color: black;background-color: white;left: 16.5%;top: 6.8%;font-weight: bold;"
},
{
"text" :"君が<br/>カズだね",
"style":"font-size: 18px;color: black;background-color: white;left: 74.5%;top: 37%;"
},
{
"text" :"嬉しいよ",
"style":"font-size: 20px;color: black;background-color: white;left: 11.5%;top: 66.5%;"
},
{
"text" :"気をつけて。<br/>俺には<br/>爪がある",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 71.5%;"
},
{
"text" :"大丈夫だよ<br/>僕にも<br/>あるもん",
"style":"font-size: 16px;color: black;background-color: white;left: 53%;top: 66%;"
},
],
"http://devilscandycomic.com/comic/ch06p03": [
{
"text" :"ねぇ あなた。<br/>またヘルメット<br/>ハマったの?",
"style":"font-size: 14px;color: black;background-color: white;left: 46.5%;top: 3%;"
},
{
"text" :"あぁ…",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 5%;"
},
{
"text" :"喫煙も<br/>したかった<br/>けど",
"style":"font-size: 14px;color: black;background-color: white;left: 62%;top: 8%;transform: rotate(10deg);"
},
{
"text" :"あっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 5%;"
},
{
"text" :"その…<br/>つまり…",
"style":"font-size: 16px;color: black;background-color: white;left: 81%;top: 25.5%;"
},
{
"text" :"ムワハハハ!",
"style":"font-size: 26px;color: black;background-color: white;left: 13%;top: 34.8%;font-weight: bold;transform: rotate(5deg);"
},
{
"text" :"貴様のヘルメットは<br/>闇の接着剤で封じた!<br/>罪なき少女を火山に<br/>投げ込まねば解けんぞ!",
"style":"font-size: 16px;color: black;background-color: white;left: 31%;top: 34%;font-weight: bold;width: 248px;"
},
{
"text" :"大丈夫だよ、<br/>役者って<br/>知ってるよ",
"style":"font-size: 15px;color: black;background-color: white;left: 11%;top: 62%;"
},
{
"text" :"ところでロード<br/>・ダークレディ、<br/>僕のパパが<br/>君はかわいい…<br/>いや…ハンサム<br/>だって",
"style":"font-size: 14px;color: black;background-color: white;left: 31%;top: 77.5%;"
},
{
"text" :"ええ、それはパパには<br/>悪いわね、だって<br/>私はもうこの色男と<br/>結婚してるもの",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 62%;"
},
{
"text" :"ロ…ロード・<br/>ダークレディと<br/>デビライザー<br/>は結婚してる!?",
"style":"font-size: 13px;color: black;background-color: white;left: 67%;top: 84.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p04": [
{
"text" :"こちらは<br/>Dr.エースの<br/>お子さんだ",
"style":"font-size: 16px;color: black;background-color: white;left: 13%;top: 5%;"
},
{
"text" :"何ですってぇぇ?",
"style":"font-size: 16px;color: black;background-color: white;left: 26%;top: 6.5%;font-weight: bold;transform: rotate(2deg);"
},
{
"text" :"<span style=\"font-weight: bold;\">当然だけど、</span><br/>君のパパがハンサムな<br/>新妻が欲しければ、<br/>いつでも離婚するわよ",
"style":"font-size: 14px;color: black;background-color: white;left: 47.5%;top: 3%;"
},
{
"text" :"おいぃぃ…",
"style":"font-size: 15px;color: black;background-color: white;left: 45.5%;top: 10.5%;transform: rotate(3deg);"
},
{
"text" :"わかんない。<br/>パパはママ<br/>大好きだし",
"style":"font-size: 12px;color: black;background-color: white;left: 70%;top: 5%;"
},
{
"text" :"それに、<br/>君達はすごく<br/>お似合いだし",
"style":"font-size: 14px;color: black;background-color: white;left: 79%;top: 6.5%;"
},
{
"text" :"同感だ。実際、<br/>俺はデビライザーと<br/>ダークレディが<br/>番組でも結婚して<br/>欲しい",
"style":"font-size: 14px;color: black;background-color: white;left: 5.5%;top: 35.5%;"
},
{
"text" :"結局、<br/>愛だけが悪に<br/>打ち勝てる",
"style":"font-size: 16px;color: black;background-color: white;left: 9.6%;top: 44%;"
},
{
"text" :"それ何か<br/>パパの言うこと<br/>みたい",
"style":"font-size: 14px;color: black;background-color: white;left: 79.5%;top: 48.8%;height:65px;display: flex;align-items: center;"
},
{
"text" :"誤解しないでくれよ…<br/>もし<span style=\"font-weight: bold;\">本当に酷いこと</span>が<br/>起きたなら、<br/>小さな爪の暴力は<br/>それを止められる<br/>唯一の手だろう",
"style":"font-size: 14px;color: black;background-color: white;left: 11%;top: 61%;"
},
{
"text" :"だがそれは<br/>一時的な<br/>解決だ",
"style":"font-size: 16px;color: black;background-color: white;left: 34%;top: 61%;"
},
{
"text" :"暴力では<br/>世界は<br/>救えない",
"style":"font-size: 16px;color: black;background-color: white;left: 34%;top: 68%;width: 83px;"
},
{
"text" :"愛だけが<br/>世界を<br/>救えるんだ",
"style":"font-size: 16px;color: black;background-color: white;left: 62%;top: 64%;"
},
],
"http://devilscandycomic.com/comic/ch06p05": [
{
"text" :"あの…",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 10.5%;"
},
{
"text" :"皆で<br/>写真撮っても<br/>いい?",
"style":"font-size: 16px;color: black;background-color: white;left: 44%;top: 6.5%;"
},
{
"text" :"いいよ",
"style":"font-size: 16px;color: black;background-color: white;left: 51%;top: 19%;"
},
{
"text" :"じゃ、<br/>私が<br/>撮ろう",
"style":"font-size: 18px;color: black;background-color: white;left: 76%;top: 4.5%;"
},
{
"text" :"Dr.エース!!!<br/>キャアアア",
"style":"font-size: 14px;color: black;background-color: white;left: 76%;top: 43.9%;font-weight: bold;transform: rotate(-13deg);"
},
{
"text" :"よし、<br/>皆<br/>集まって!",
"style":"font-size: 16px;color: black;background-color: white;left: 15%;top: 61%;"
},
{
"text" :"おっと!<br/>僕もー!",
"style":"font-size: 15px;color: black;background-color: #C2C2C2;left: 32.5%;top: 61.2%;font-weight: bold;transform: rotate(3deg);"
},
{
"text" :"さぁ、<br/>撮ろう!",
"style":"font-size: 17px;color: black;background-color: white;left: 54%;top: 63%;"
},
{
"text" :"ヘルメット<br/>脱げたよ!",
"style":"font-size: 16px;color: black;background-color: white;left: 56.5%;top: 68%;"
},
{
"text" :"はい<br/>“チーズ”!",
"style":"font-size: 18px;color: black;background-color: white;left: 68%;top: 64%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p06": [
{
"text" :"結局、彼は<br/>暴力でも愛でも<br/>世界を<br/>救えなかった",
"style":"font-size: 16px;color: black;background-color: white;left: 17%;top: 30.5%;border:solid 1px;width: 127px;"
},
{
"text" :"残ったのは<br/>再放送だけだ",
"style":"font-size: 20px;color: black;background-color: white;left: 72%;top: 38.2%;border:solid 1px;"
},
{
"text" :"悪は何度でも<br/>蘇り続ける…",
"style":"font-size: 18px;color: black;background-color: white;left: 62%;top: 56%;border:solid 1px;width: 124px;height: 79px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p07": [
{
"text" :"追い出す気か!?<br/>俺達は兄弟だと<br/>思ったのに!",
"style":"font-size: 18px;color: black;background-color: white;left: 12%;top: 2.1%;"
},
{
"text" :"君の関係なんて<br/>知らないよ!<br/>君<span style=\"font-weight: bold;\">が</span>何かさえ<br/>知らないのに!",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 3.5%;"
},
{
"text" :"君を<br/>養わないと<br/>いけない?<br/>嫌っちゃ<br/>いけない?",
"style":"font-size: 16px;color: black;background-color: white;left: 60%;top: 3%;"
},
{
"text" :"それに、<br/>オレは<span style=\"font-weight: bold;\">クールな</span><br/>ギターが<br/>欲しかった<br/>のに…君は<br/>ダサいよ",
"style":"font-size: 14px;color: black;background-color: white;left: 69%;top: 6%;"
},
{
"text" :"それでお前は<br/>この悪党に<br/>俺を売るか!?",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 22.5%;font-weight: bold;"
},
{
"text" :"それは<br/>クレアンスの<br/>せいだ!",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 30%;"
},
{
"text" :"<span style=\"font-weight: bold;\">悪い</span>店に<br/>連れてくって<br/>言わなかった!",
"style":"font-size: 16px;color: black;background-color: white;left: 11.5%;top: 37%;"
},
{
"text" :"俺の物を盗んで<br/>壁に吹っ飛ばして<br/>おいて、<br/>お前が“悪”を<br/>語るのは<br/>納得いかん",
"style":"font-size: 15px;color: black;background-color: white;left: 47%;top: 43%;"
},
{
"text" :"おいおい!<br/>一体何のデート<br/>してるんだよ<br/>お前は!?",
"style":"font-size: 16px;color: black;background-color: white;left: 65%;top: 31%;"
},
{
"text" :"さてはドラマ<br/>だなオメー",
"style":"font-size: 10px;color: black;background-color: white;left: 69%;top: 39%;"
},
{
"text" :"ごめんね。<br/>オレ達帰って<br/>いいだろ?",
"style":"font-size: 15px;color: black;background-color: white;left: 11.5%;top: 58.5%;"
},
{
"text" :"ギターは返す<br/>これでチャラ<br/>だろ",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 59%;"
},
{
"text" :"“チャラ”は<br/>どうかな?",
"style":"font-size: 14px;color: black;background-color: white;left: 35.5%;top: 61%;"
},
{
"text" :"少なくとも、<br/>俺が<span style=\"font-weight: bold;\">お前を</span><br/>同じ様に壁に<br/>吹っ飛ばさないと",
"style":"font-size: 14px;color: black;background-color: white;left: 81%;top: 61%;"
},
],
"http://devilscandycomic.com/comic/ch06p08": [
{
"text" :"何で子供は<br/>こんなに腐ってて<br/>ワガママなのか<br/>理解できないな",
"style":"font-size: 15px;color: black;background-color: white;left: 17.5%;top: 5%;"
},
{
"text" :"騙し盗み<br/>人を傷つけて<br/>後悔もない…",
"style":"font-size: 16px;color: black;background-color: white;left: 49%;top: 6.5%;"
},
{
"text" :"何のために?<br/>見せびらかす<br/>ためではない<br/>のは確かだ",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 21.5%;"
},
{
"text" :"いや…お前を<br/>突き動かす<br/>ものはわかる",
"style":"font-size: 15px;color: black;background-color: white;left: 13.5%;top: 37%;"
},
{
"text" :"不安だ",
"style":"font-size: 25px;color: black;background-color: white;left: 73%;top: 40%;"
},
{
"text" :"それで、俺に<br/>迷惑をかけた<br/>代償に…",
"style":"font-size: 18px;color: black;background-color: white;left: 39.5%;top: 56.5%;"
},
{
"text" :"釣り合うのは<br/>お前が友達に<br/>ブチ撒けることだ<br/><span style=\"font-weight: bold;\">お前が隠している<br/>思い出せる限りの<br/>恥ずかしい話を<br/>全てな</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 46%;top: 66%;"
},
],
"http://devilscandycomic.com/comic/ch06p09": [
{
"text" :"うっ!",
"style":"font-size: 20px;color: black;background-color: white;left: 12%;top: 7%;font-weight: bold;"
},
{
"text" :"ぐっ",
"style":"font-size: 21px;color: black;background-color: white;left: 46%;top: 4%;font-weight: bold;"
},
{
"text" :"ぜ…",
"style":"font-size: 16px;color: black;background-color: white;left: 59%;top: 6.5%;"
},
{
"text" :"全部<br/>クレアンス<br/>のせいだ!",
"style":"font-size: 16px;color: black;background-color: white;left: 66%;top: 5%;"
},
{
"text" :"彼は…オレを<br/>止めるべき<br/>だったのに…",
"style":"font-size: 14px;color: black;background-color: white;left: 83.5%;top: 5%;"
},
{
"text" :"<span style=\"font-weight: bold;\">助けても</span><br/>くれなかった!",
"style":"font-size: 15px;color: black;background-color: white;left: 83.5%;top: 10%;"
},
{
"text" :"皆の前にオレを<br/>置き去りに<br/>した",
"style":"font-size: 16px;color: black;background-color: white;left: 14.5%;top: 36.5%;"
},
{
"text" :"頭から<br/>離れないよ",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 36%;"
},
{
"text" :"一生ずっと<br/>死ぬまで",
"style":"font-size: 16px;color: black;background-color: white;left: 80%;top: 42%;"
},
{
"text" :"ニンジュツメイト…",
"style":"font-size: 23px;color: black;background-color: white;left: 64.5%;top: 53.7%;font-weight: bold;"
},
{
"text" :"もういい<br/>",
"style":"font-size: 16px;color: black;background-color: white;left: 83.5%;top: 58%;"
},
{
"text" :"子供を<br/>苦しめるために<br/>その力を<br/>与えられたんじゃ<br/>ないだろ",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 67.5%;"
},
{
"text" :"さっさと<br/>ギターを奪って<br/>終わりにしろ、<br/>トレモロ",
"style":"font-size: 16px;color: black;background-color: white;left: 36%;top: 68%;"
},
{
"text" :"チッ",
"style":"font-size: 18px;color: black;background-color: white;left: 54.5%;top: 76.7%;font-weight: bold;"
},
{
"text" :"ト…<br/>トレモロ?",
"style":"font-size: 16px;color: black;background-color: white;left: 77%;top: 86%;"
},
],
"http://devilscandycomic.com/comic/ch06p10": [
{
"text" :"あんたが<br/>ストラツィオ<br/>じゃないの?",
"style":"font-size: 15px;color: black;background-color: white;left: 12%;top: 6%;"
},
{
"text" :"ストラツィオ<br/>は<span style=\"font-weight: bold;\">俺だ。</span><br/>それが?",
"style":"font-size: 15px;color: black;background-color: white;left: 26.7%;top: 29%;"
},
{
"text" :"マイロ・<br/>パンターノ<br/>…",
"style":"font-size: 15px;color: black;background-color: white;left: 57.5%;top: 8%;"
},
{
"text" :"彼が<br/>あんたの所で<br/>働いてるわね?",
"style":"font-size: 15px;color: black;background-color: white;left: 77%;top: 25%;"
},
{
"text" :"そうだ…",
"style":"font-size: 15px;color: black;background-color: white;left: 7%;top: 53.3%;"
},
{
"text" :"でも彼の名を<br/>聞いたことがある<br/>とは驚きだ。<br/>大抵は<br/>“黒い殉教者”<br/>としか知らない",
"style":"font-size: 15px;color: black;background-color: white;left: 9%;top: 56%;"
},
{
"text" :"彼の犠牲者達の<br/>1人が調べて<br/>いたの<br/>だろうが",
"style":"font-size: 15px;color: black;background-color: white;left: 12.5%;top: 84.5%;"
},
{
"text" :"“犠牲者達…?”",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 61%;"
},
{
"text" :"まぁ、彼が<br/>君の親兄弟を<br/>殺していても<br/>問題ない。<br/>復讐しても無意味だ",
"style":"font-size: 15px;color: black;background-color: white;left: 75.6%;top: 85%;"
},
],
"http://devilscandycomic.com/comic/ch06p11": [
{
"text" :"君の苦しみなど<br/>取るに足らないし、<br/>他の誰かが<br/>彼に今以上の<br/>苦痛を与えるさ",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 4%;"
},
{
"text" :"彼は<br/>何度も<br/>死んでる…",
"style":"font-size: 16px;color: black;background-color: white;left: 68.5%;top: 7.5%;"
},
{
"text" :"彼の死体は<br/>引きずり出され<br/>縫い合わされて<br/>何度も死に送られる",
"style":"font-size: 14px;color: black;background-color: white;left: 65.5%;top: 26.5%;"
},
{
"text" :"呪いが彼を<br/>生物兵器に変えた…<br/>死と破壊が彼の足元に<br/>追いすがるのさ",
"style":"font-size: 16px;color: black;background-color: white;left: 63.5%;top: 43%;"
},
{
"text" :"寝る前にそれを<br/>考えればいいさ<br/>それで君の気が<br/>少しでも晴れる<br/>ならね",
"style":"font-size: 15px;color: black;background-color: white;left: 39.5%;top: 63.4%;"
},
{
"text" :"な…",
"style":"font-size: 20px;color: black;background-color: white;left: 87%;top: 66%;font-weight: bold;"
},
{
"text" :"♪お前にゃプラチナのファンキーなケツがある!♪<br/>お前は俺のプラチナのファンキーなベイビーだ!",
"style":"font-size: 28px;color: black;background-color: white;left: 15%;top: 76%;font-weight: bold;width: 660px;"
},
],
"http://devilscandycomic.com/comic/ch06p12": [
{
"text" :"♪シェイク、シェイク、メーキング、ベーコン、<br/>それを食卓に出して俺を狂わせてくれ!",
"style":"font-size: 28px;color: black;background-color: white;left: 7%;top: 3.3%;;font-weight: bold;"
},
{
"text" :"メイメイ!",
"style":"font-size: 20px;color: black;background-color: white;left: 31%;top: 12%;;font-weight: bold;"
},
{
"text" :"出たほうが<br/>いいぞ",
"style":"font-size: 16px;color: black;background-color: white;left: 38%;top: 16.5%;"
},
{
"text" :"…今日は、<br/>メティア",
"style":"font-size: 16px;color: black;background-color: white;left: 79.5%;top: 9%;"
},
{
"text" :"ハイ<br/>マヌケ",
"style":"font-size: 16px;color: black;background-color: white;left: 7%;top: 28.5%;"
},
{
"text" :"ピアと<br/>ストラツィオ<br/>もう着いた?",
"style":"font-size: 15px;color: black;background-color: white;left: 10%;top: 32%;"
},
{
"text" :"私の着メロ<br/>“プラチナの<br/>ファンキーなケツ”<br/>にしたのか確認<br/>させないと",
"style":"font-size: 15px;color: black;background-color: white;left: 50%;top: 38%;"
},
{
"text" :"しくじったら<br/>そういう約束<br/>だったわね",
"style":"font-size: 16px;color: black;background-color: white;left: 58%;top: 46.5%;"
},
{
"text" :"ええ、来てます<br/>あなたの着メロは<br/>100%ファンキー<br/>と保証しますよ。<br/>取り込み中でして。<br/>かけ直しても…",
"style":"font-size: 15px;color: black;background-color: white;left: 75%;top: 55.5%;"
},
{
"text" :"私を<br/>イラつかせたら<br/>お前の<span style=\"font-weight: bold;\">内臓</span><br/>引きずり出すわ",
"style":"font-size: 15px;color: black;background-color: white;left: 73%;top: 67.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p13": [
{
"text" :"少し<br/>時間を貰うわ。<br/>私用の真っ最中<br/>なの",
"style":"font-size: 16px;color: black;background-color: white;left: 11%;top: 5%;"
},
{
"text" :"具体的には、<br/>開心術。",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 13.5%;"
},
{
"text" :"開心術の<br/><span style=\"font-weight: bold;\">真っ最中</span>って<br/>ことよ",
"style":"font-size: 16px;color: black;background-color: white;left: 42%;top: 22%;"
},
{
"text" :"<span style=\"font-weight: bold;\">私の</span>心臓は<br/>大丈夫よ",
"style":"font-size: 14px;color: black;background-color: white;left: 48%;top: 28%;"
},
{
"text" :"とにかく、<br/>あなたのギター<br/>まわりで<br/>致命的な損害が<br/>あったと聞くわ",
"style":"font-size: 16px;color: black;background-color: white;left: 61%;top: 4%;width: 125px;"
},
{
"text" :"あなたが<br/><span style=\"font-weight: bold;\">完全に冷静さを<br/>失ってないか</span><br/>確認したかった<br/>だけ",
"style":"font-size: 15px;color: black;background-color: white;left: 14%;top: 51%;"
},
{
"text" :"まぁ、マイロが<br/>関与すれば<br/>どうなるかは<br/>お分かりの…",
"style":"font-size: 15px;color: black;background-color: white;left: 48%;top: 36.5%;"
},
{
"text" :"見て、<br/>これは面白い、<br/>だって私が<br/>聞いたのは…",
"style":"font-size: 14px;color: black;background-color: white;left: 64%;top: 37.5%;"
},
{
"text" :"私がグロスガー・<br/>ラスフォームの<br/>賞状を受ける<br/>必要あるって<br/>どういう<span style=\"font-weight: bold;\">意味よ?</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 11%;top: 65%;"
},
{
"text" :"OK、皆<br/>私の代わりに<br/>仕上げて",
"style":"font-size: 15px;color: black;background-color: white;left: 48%;top: 67%;"
},
{
"text" :"も…<br/>もしもし?",
"style":"font-size: 16px;color: black;background-color: white;left: 75%;top: 67.2%;"
},
],
"http://devilscandycomic.com/comic/ch06p14": [
{
"text" :"これは<br/>本当に<br/>マズいわ",
"style":"font-size: 14px;color: black;background-color: white;left: 8%;top: 9%;"
},
{
"text" :"ここから<br/>逃げなきゃ<br/>あの変人が<br/>電話してる<br/>うちに",
"style":"font-size: 16px;color: black;background-color: white;left: 6%;top: 14%;width: 94px;"
},
{
"text" :"メティア?",
"style":"font-size: 14px;color: black;background-color: #DDDDDD;left: 29%;top: 13.5%;"
},
{
"text" :"必要なら<br/>マークを<br/>また使って",
"style":"font-size: 14px;color: black;background-color: white;left: 55.5%;top: 17%;"
},
{
"text" :"聞け、<br/>俺は殺しは<br/>好きじゃないが<br/>問題の排除が<br/>仕事だ",
"style":"font-size: 14px;color: black;background-color: white;left: 27.5%;top: 33%;"
},
{
"text" :"言いかえれば…<br/><span style=\"font-weight: bold;\">君は今問題に<br/>なりたくは<br/>ないだろ</span>",
"style":"font-size: 16px;color: black;background-color: white;left: 63%;top: 39.5%;"
},
{
"text" :"ギターを<br/>置いて…",
"style":"font-size: 19px;color: black;background-color: white;left: 12.5%;top: 56.5%;"
},
{
"text" :"あーらら…",
"style":"font-size: 14px;color: black;background-color: white;left: 70%;top: 76.2%;"
},
{
"text" :"逃げろ!!<br/>行け!!",
"style":"font-size: 20px;color: black;background-color: white;left: 82%;top: 80%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p15": [
{
"text" :"メイメイが<br/>試合で君を見た後<br/><span>君の<span style=\"font-weight: bold;\">本当の</span>強さを</span>知りたいって",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 44.5%;height: 110px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ちょ~~~<br/>強いといいなぁ、<br/>だって<br/>君に会ったら<br/>我慢しなくて<br/>いいってさ",
"style":"font-size: 14px;color: black;background-color: white;left: 47%;top: 63%;"
},
{
"text" :"“あなたが<br/>倒せるようなら<br/>彼女には全く<br/>価値がないわ”<br/>って言ってた",
"style":"font-size: 15px;color: black;background-color: white;left: 78%;top: 83%;"
},
],
"http://devilscandycomic.com/comic/ch06p16": [
{
"text" :"くそっ、<br/>パンドラは<br/>どこだ?",
"style":"font-size: 16px;color: black;background-color: white;left: 58.5%;top: 4%;"
},
{
"text" :"ううっ!",
"style":"font-size: 16px;color: black;background-color: white;left: 26.2%;top: 59.8%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p17": [
{
"text" :"ここから<br/>逃げろ、<br/>急げ!",
"style":"font-size: 16px;color: black;background-color: white;left: 12%;top: 4%;font-weight: bold;width: 80px;"
},
{
"text" :"心配するな!<br/>安全になったら<br/>呼ぶ",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 10.5%;"
},
{
"text" :"もしオレの<br/>連絡がなければ<br/><span style=\"font-weight: bold;\">絶対戻って<br/>来るな!</span>",
"style":"font-size: 15px;color: black;background-color: white;left: 47.5%;top: 5%;"
},
{
"text" :"クレアンス…",
"style":"font-size: 14px;color: black;background-color: white;left: 46.7%;top: 18.2%;"
},
{
"text" :"行くわよ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 82%;top: 21%;font-weight: bold;"
},
{
"text" :"ねぇ<br/>ガキ共",
"style":"font-size: 16px;color: black;background-color: white;left: 19%;top: 51.4%;"
},
{
"text" :"まだ<br/>生きてる<br/>よね?",
"style":"font-size: 16px;color: black;background-color: white;left: 83%;top: 49%;"
},
{
"text" :"もう遅い。<br/>奴らは<br/>もう逃げた",
"style":"font-size: 14px;color: black;background-color: white;left: 64.5%;top: 65%;"
},
{
"text" :"お前らは<br/>ギターを<br/>取り戻せない",
"style":"font-size: 15px;color: black;background-color: white;left: 74.5%;top: 65%;"
},
],
"http://devilscandycomic.com/comic/ch06p18": [
{
"text" :"アタイは君の<br/>臭いギター顔の<br/>友達なんて<br/>いらない",
"style":"font-size: 15px;color: black;background-color: white;left: 9%;top: 3%;"
},
{
"text" :"トレモロか…<br/>ストラツィオ<br/>の問題だし",
"style":"font-size: 16px;color: black;background-color: white;left: 23%;top: 3%;"
},
{
"text" :"奴らは仕事を<br/>失敗したけど、<br/>アタイは違う",
"style":"font-size: 16px;color: black;background-color: white;left: 74%;top: 23.2%;"
},
{
"text" :"うぐっ!!",
"style":"font-size: 16px;color: black;background-color: white;left: 9.5%;top: 58.5%;font-weight: bold;"
},
{
"text" :"だって何であれ<br/>アタイより<br/>優れた奴なんて<br/>いないもん",
"style":"font-size: 16px;color: black;background-color: white;left: 77.5%;top: 66.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p19": [
{
"text" :"ぐ…",
"style":"font-size: 16px;color: black;background-color: white;left: 29.5%;top: 11.5%;font-weight: bold;"
},
{
"text" :"うぐっ!<br/>何?",
"style":"font-size: 14px;color: black;background-color: white;left: 86.5%;top: 26.5%;"
},
{
"text" :"やめろ!<br/>何でカズを<br/>呼ぶんだ!?",
"style":"font-size: 20px;color: black;background-color: white;left: 68%;top: 50%;font-weight: bold;"
},
{
"text" :"どうすべきか<br/>きっと知ってる",
"style":"font-size: 15px;color: black;background-color: white;left: 25.2%;top: 63.5%;"
},
{
"text" :"赤ん坊用の<br/>クッションみたく<br/>叩き潰される<br/>だけだ!<br/>逃げろ!",
"style":"font-size: 13px;color: black;background-color: white;left: 28%;top: 69%;font-weight: bold;"
},
{
"text" :"何、<span style=\"font-weight: bold;\">君が</span><br/>アタイを<br/>抑えてる<br/>間に?",
"style":"font-size: 14px;color: black;background-color: white;left: 45%;top: 63%;width: 88px;"
},
{
"text" :"君が倒せるのは<br/>ストラツィオだけ<br/>彼弱いから",
"style":"font-size: 14px;color: black;background-color: white;left: 56%;top: 63.5%;"
},
{
"text" :"ああ、<br/>分かってるよ",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 90.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p20": [
{
"text" :"血とか飲んでも<br/>オレはパンドラ<br/>の半分も強く<br/>なれねぇよ",
"style":"font-size: 15px;color: black;background-color: white;left: 8%;top: 5.7%;"
},
{
"text" :"ダメそうだ。<br/>だから頼む、<br/>俺の誇りに免じて<br/>ここは逃げてくれ",
"style":"font-size: 15px;color: black;background-color: white;left: 46%;top: 9.8%;"
},
{
"text" :"俺が何か<br/>クールなこと<br/>したフリでも<br/>して…",
"style":"font-size: 15px;color: black;background-color: white;left: 48%;top: 19.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p21": [
{
"text" :"アタイが<br/>クールか君が<br/>超ダサいだけ<br/>じゃない?",
"style":"font-size: 15px;color: black;background-color: white;left: 12.5%;top: 14%;"
},
{
"text" :"要は、わざと<br/>弱くなるなんて<br/>何てバカなの?<br/>メイメイは<br/>彼の根性<br/>きっと嫌うわ",
"style":"font-size: 16px;color: black;background-color: white;left: 25.5%;top: 17%;"
},
{
"text" :"まぁ、<br/>とにかく。<br/>彼は最早<br/>路上のクッキー",
"style":"font-size: 15px;color: black;background-color: white;left: 16.5%;top: 32.5%;"
},
{
"text" :"さぁ<br/>ケンカ<br/>しましょ",
"style":"font-size: 16px;color: black;background-color: white;left: 32%;top: 34%;"
},
{
"text" :"怖がら<br/>ないで。<br/>戦いは<br/>楽しいわ",
"style":"font-size: 16px;color: black;background-color: white;left: 50.8%;top: 31.5%;"
},
{
"text" :"いい<br/>パンチ<br/>頂戴。<br/>カモン",
"style":"font-size: 16px;color: black;background-color: white;left: 60.5%;top: 34.5%;"
},
],
"http://devilscandycomic.com/comic/ch06p22": [
{
"text" :"お?",
"style":"font-size: 18px;color: black;background-color: white;left: 32%;top: 6%;"
},
],
"http://devilscandycomic.com/comic/ch06p23": [
{
"text" :"アアッ!",
"style":"font-size: 20px;color: black;background-color: white;left: 85.3%;top: 43.5%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p24": [
],
"http://devilscandycomic.com/comic/ch06p25": [
{
"text" :"アッ",
"style":"font-size: 20px;color: black;background-color: white;left: 62.5%;top: 72.2%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06-devilizer": [
{
"text" :"ハイ 読者の皆!この金曜はビックリが特別な短編小説を作ってくれたよ。<br/>特に考察する文章が欲しい人達のためにね。<br/>(戦闘シーンはかなり会話に欠けますが…)下の投稿を見て読んでね…",
"style":"font-size: 16px;color: black;background-color: white;left: 8.5%;top: 87%;width: 708px;"
},
{
"text" :"デビライザー エピソード1:食物が体を作る",
"style":"font-size: 29px;color: black;background-color: white;left: 11%;top: 93%;width: 657px;font-weight: bold;"
},
{
"text" :"訳者注:一通り訳したものの品質は最悪<br/><br/>宇宙のはるか彼方、<br/>銀河の向こう<br/>ギャラギャラ<ruby><rb>銀河<rp>(</rp><rt>ギャラクシー</rt><rp>)</ruby>の中の超銀河、<br/>そこにダークネイザー66という死にかけの星があった。<br/>\"死にかけ\"というのは状況をよく表しており、<br/>事実その星は殺されかけていた、<br/>正確には、<br/>宇宙正義連盟がそれを行っていた。<br/>宇宙人に対する対する多くの宇宙犯罪行為<br/>及び宇宙を脅かす宇宙科学の違法行使、<br/>ダークネイザー66は超破壊兵器が向けられる以前から<br/>何度も警告を受けていた。<br/><br/>彼らの世界王は、禁止された科学の深淵を探求し<br/>彼の惑星の持つ力に魅了され<br/>それを奥深くに隠していた。<br/>この闇の技術の放棄を望まない王は<br/>宇宙正義同盟を滅ぼすための戦争を挑んだ。<br/>しかしながら、<br/>ダークネイザー星の中枢は分断され、<br/>海は沸騰し、<br/>空は炎で満たされ、<br/>彼の反乱が勝利で終わらないことは明白であった。<br/><br/>どちらにせよ、<br/>王はその敗北に対してある計画をしていた。<br/>彼の世界の最後の時には、<br/>管の中の脈動する黒い塊の近くに集まった、<br/>2人の科学者によってその計画は実行された。<br/>王自身は研究室の隅で血まみれの肉塊となっていた、<br/>彼の遺産を残すことを命じられた科学者達に<br/>殺されたに他ならない。<br/><br/>2人は自分たちを殺人者などではなく、<br/>物理学者だと思っていたが、<br/>絶望的な状況が彼らを狂気に追いやった。<br/>あるいは彼らは狂い始めていたのだろう。<br/>危険な禁断の科学に自身の命を委ねた時点で、すでに。<br/>星が滅びる最後の瞬間に、<br/>狂った世界が彼らを狂わせたのか<br/>狂った彼らが世界を狂わせたのか<br/>誰が分かろうか。<br/><br/>いずれにせよ、<br/>彼らは現在の状況を世界王のせいだと避難し<br/>彼らの作り出す新たな未来の王位を彼に与えることを拒んだ。<br/><br/>ダークネイザー66は滅びたが、<br/>もし計画通りにいけば、<br/>急速に崩壊する研究所に隠れた、<br/>彼らの前の奇妙な黒い塊のおかげで存続できるはずだった。<br/><ruby><rb>\"サイコアック プランリゾーブ\"、<rp>(</rp><rt>Psychoarc Planisorb</rt><rp>)</ruby><br/>それはダークネイザー66の全要素を吸収凝縮させ、<br/>新しい星へ向け射出、<br/>流星のように向かっていく。<br/>それは生物学的な物質だけでなく、<br/>社会学的、哲学的な概念すら同様に内包する。<br/>遠く離れた星に墜落したら、<br/>それは内部のダークネイザリアンの要素を開放し<br/>世界を新しいダークネイザーに変える。<br/><br/>ダークネイザーの住民にとっては遅すぎましたが、<br/>彼らの遺産の象徴となるべきダークネイザリアン1人を<br/>この装置は収容できました。<br/>それは世界王が意図したものだが、<br/>2人の科学者は、彼ら自身が新世界の<ruby><rb>君主<rp>(</rp><rt>ロード</rt><rp>)</ruby>と<ruby><rb>女君主<rp>(</rp><rt>レディ</rt><rp>)</ruby>になるのにふさわしいと決めていた。<br/>だがこの装置は1人用に作られていた、<br/>彼らはお互いを犠牲にすることを好まず、<br/>2人で新世界を見れなければ、<br/>新世界を見る価値がないと考えていた。<br/>だから、愛と利己により、<br/>彼らはお互いの手を取りサイコアック プランリゾーブの作動ボタンを押した、<br/>すぐに彼らの燃える世界は小さく縮小されると、<br/>終わり無く無限に見える星の海の孤独な球体となった。<br/><br/>----------<br/><br/>何スペースマイルも離れた、<br/>はるかに見慣れた星、<br/>はるかに見慣れた町、<br/>はるかに見慣れた悪魔達が沢山いる場所、<br/>若きコボルトのチップ・ブリスケケットはグラムドッグの、<br/>キギーの散歩をしていた。<br/>グラムドック達は街ではあまり見かけない、<br/>正確に言えば、<br/>どこであろうとあまり見かけない。<br/>穏やかな高級獣はペットとして非常に需要がありましたが、<br/>手に入れることは非常に困難です。<br/>この一因は彼らが飼い主に対ししてかなり気まぐれで<br/>致命的なうつ病の要因になりがちです。<br/>もし飼い主のグラムドッグに対する愛がなくなれば、<br/>グラムドックの体は痩せ衰えます。<br/>飼い主の愛が純粋なら、<br/>彼らはより美しくなります。<br/><br/>チップのグラムドッグは非常に美しかった。<br/>絹のような柔らかい毛皮には<br/>様々な色の毛玉があり<br/>小さな黒い足を引き立て<br/>美しさに満ちていた。<br/>これはチップには生きた家族や友人がいないおかげでした。<br/>他に趣味が無いのです。<br/>彼の人生にあるのは、仕事、グラムドッグへの愛、そして先行きの分からない未来だけでした。<br/>仕事もグラムドッグも両方とも多かれ少なかれ祖父から受け継いだものでした。<br/>人生の方向性がないので、<br/>祖父が亡くなった後、その人生の足跡に続き、彼も警察官になった。<br/>「キギーがそう望んでいる」<br/>と彼は思った、<br/>動物の気持ちを野生だと決めてかかっていた。<br/>それでも、<br/>キギーはかなり幸せで、その幸福をチップと分かち合いたいと思っていた。<br/>毎朝、<br/>チップのは小鳥の静かな鳴き声のように、<br/>胸に座る小さな黒い足に目を覚ました。<br/><br/>チップは退屈に悩んでいる印象はなかった。<br/>彼の耳と小さな尾はよく整えられ、<br/>身なりは整っていた。<br/>彼はハンサムで、多弁であった。<br/>仕事に対して情熱が欠けていたが、<br/>彼は適正試験に優秀な成績で合格した。<br/>彼はさらに確信していた、<br/>自分は良い警察官になれると、<br/>しばらくの間は。<br/>しかし敵対的な労働環境は、すぐにそういった希望をなくした。<br/><br/>敵意はチップ自身に向けられていなかった、<br/>彼の仲間からも来なかった。<br/>むしろ、<br/>敵意は警察のチーフから、<br/>交通違反を犯した悪魔に向けらた。<br/>これは大したことには聞こえないが、<br/>チーフが交通違反者に対して持っていた怒りは、署の誰もが不安になるほどであった。<br/>彼は自分自身で犯人に連れてきて、耳や尾や触手で事務所に引きずり出した。<br/>それに続くのは純粋な恐怖;絶え間ない騒音、叫び、許しを請う声。<br/>チーフが何をしているのか誰も知らず<br/>誰も聞く勇気もなかった。<br/>一部の警官は、叫び声とそれに続く不自然な静寂の両方から<br/>自身を守るため耳栓を持ってきました。<br/><br/>チップは多分チーフが交通事故で家族を失ったか何かで<br/>その怒りが収まっていないのだろうと思った。<br/>「僕が彼に手を差し伸べないと」<br/>と思った。<br/>これは当然、<br/>行われなかった、<br/>チーフの警察官に対する奇妙な行動のせいである。<br/><br/>「俺がスマートだと思うかい?」とチーフは良く聞いた。<br/><br/>「ええ、チーフ。あなたは切れ者ですよ。」<br/><br/>「ああ、でも俺が先週よりもスマートだと思わないかい?」<br/><br/>「えっと…わかりません、チーフ。」<br/><br/>それからチーフを舌打ちして<br/>ムッとした顔で歩き去る。<br/>いつも近寄りがたい態度でした。<br/><br/>これらのストレスには、<br/>全て合理的な対処はできなかったが、<br/>キギーが毎晩柔らかい毛皮で抱きついてくれた。<br/>キギーとの散歩もチップを安心させた。<br/>キギーとの散歩で幸せだったのか<br/>チーフのせいで悲鳴に鈍感になっていたのか、<br/>チップは公園から逃げ惑い<br/>大声で叫ぶ人々に気付かなかった。<br/>空が不気味な紫色に変わり 彼は何かおかしいと思ったが、<br/>隕石のように飛んでく大きな黒い塊から逃げるには手遅れだった。<br/>チップは本能的にキギーをつかみ、<br/>守るように抱きしめた、<br/>彼は本当にキギーを愛しており<br/>申し訳程度の理由で警官になったが、<br/>心の中では、<br/>他の人々を守ることを望んでいた。<br/><br/>----------<br/><br/>チップは奇妙な夢にうなされた。<br/>他の人から見れば、<br/>面白かったかもしれないが、<br/>彼にとってはかなりのストレスでした。<br/>それはキギーの名前を選ぶ儀式の悪夢だった。<br/><br/>グラムドッグは飼い主に名付けられなかった、<br/>むしろ、<br/>アルファベットが書かれた大きなマットの上に置かれ、それで自分の名前を選んだ。<br/>実際のキギーの時は、<br/>夢でないキギーの時は、<br/>その名前を選んだ。<br/>そして文字 \"K\"の上を歩いた。<br/>その後、 鳴きながら何度も\"G\"の文字上を回った。<br/>結果、<br/>届出書の名前は<br/>「Kgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg」<br/>となった。<br/><br/>夢のキギー、<br/>ですが、<br/>非常にいたずら好きなグラムドッグでした。<br/>彼は自分で変な名前を選んだ。<br/>酷かったので、<br/>チップは彼に再びやってみさせた。 <br/>夢のキギーが選んだ新しい名前は、前のものより長くなっていた。<br/>グラムドッグの実際に起こり得る悪夢のような夢だったのかもしれない。<br/><br/>チップはいつものように目を覚ました、<br/>キギーの足が彼の胸の上に置かれていた。<br/>妙な命名式と奇妙な落下物の両方が彼の想像以上のものでなくてホッとした、<br/>彼はキギーを強く抱きしめた。<br/>悲しいことに、<br/>キギーはすでにこの世界を去っていた。<br/>残っていたのは灰と焼け焦げた1人と1匹、<br/>体から離れた小さな足。<br/><br/>苦痛に苛まれるより、<br/>チップは恐怖に襲われた、<br/>何か恐ろしいことが彼の体に起きたようだったから。<br/>焼けたキギーを握る爪のような手は<br/>自分の手だとはほとんど分からなかった。<br/>彼は大慌てで立ち上がると、<br/>困惑しながら自分の体を調べた。<br/>体は革のようなもので覆われていたが、<br/>胸や肩に太い殻の部分が付いていた。<br/>頭部の形は完全に変わっていた。<br/>ヘルメットのように固く、<br/>奇妙な形でトゲが、<br/>妙な方向に突き出ていた。<br/><br/>普通なら、<br/>服が変わったとだけ思うだろうが、<br/>チップは「服」の中に自分がいないことを深く感じていた。<br/>「ヘルメット」から手を離した、<br/>取れてしまうかもしれないと恐れて、<br/>そこには彼の頭が収まるだけの空間しかないかった。<br/>彼の体となった生きた鎧の中で、<br/>チップが感じることは1つ:熱い血のたぎり。<br/>炎が、<br/>彼の体のあらゆる虚空を川の流れのように駆け巡った。<br/>気が狂わん程に、<br/>千の声の囁きのように。<br/>それらを静めることはできなかった、<br/>かれは微かな呼び声を聞いた。<br/><br/>正義<br/><br/>正義<br/><br/>正義<br/><br/>チップはすすり泣く声が聞こえ、正気に戻った。<br/>音の源を探すと、<br/>彼は地獄のような光景に気づいた。<br/>公園がこうなったとはまるで思えなかった。<br/>目の前のどこにも生存者の様子はなく、<br/>不毛の地のあちこちに黒い泥が散らばっていた。<br/>よく見ると、<br/>その「泥」は生き物に見えた、<br/>というより、<br/>生き物の集まりだ。<br/>小さな虫の群れのように、<br/>泥達は紫の空へ向かって体を伸ばした。<br/>泥達のいくつかは白い小さな歯が輝いているように見えたが、<br/>チップにはそんな些細はことを考えている状況ではなかった。<br/><br/>泣き声を追った、<br/>セイレーンの歌声のように、<br/>彼は地面のクレーターに向かった。<br/>その中には空から落ちた黒い塊があり、<br/>その中央には純白の人影がうずくまっていた。<br/>その塊自体は、公園に散らばっている<br/>無数の黒い虫で出来ているようだった。<br/>それらは糸上にしっかりと結びつき、<br/>互いに帯状に巻きついて、一種の球体を形成していた。<br/>見たところ、<br/>そこから泣き声は聞こえた、<br/>デーモンのような見た目で、<br/>角と翼があった。<br/>その蒼白な肌はぼんやりと輝き、<br/>長く白い髪が揺れ<br/>その上で月光が踊るようだった。<br/>だが空を見ると、<br/>チップには闇しか見えない、<br/>月光のような銀色の光源は無かった。<br/><br/>その姿には優しさと悲壮感を感じた、<br/>だがよく見ると、<br/>その体格はかなり印象的だった。<br/>絹のような髪は広い肩の上に広がり、<br/>筋肉質な腕は長く、<br/>短剣のような爪が生えていた。<br/>あたかも大理石の彫刻のようだが、<br/>製作者が、月の女神や戦争の神として作ったのかは分からない。<br/><br/>一瞬立ち尽くすと、<br/>チップはその人物が手を握っていたことに気づいた、<br/>蒼白で純白な腕は、<br/>球状の塊から外に出ていた。<br/>チップにはこの状況を解析することさえできなかった、<br/>彼の燃える血を凍りつかせる何かがここにはあった。<br/>突然 この生物が自分に襲ってくるのではないかと怖くなり、<br/>チップは不慣れな足に運ばれるように、<br/>できる限り早く、クレーターを後にした。<br/><br/>----------<br/><br/>恐ろしいことが自分を襲わなかったのは<br/>チップにとっては大きな驚きでした。<br/>実際、<br/>彼は公園から逃げてすぐ、<br/>住んでいた都市はほぼ無事なのを見た。<br/>公園自体は、紫のドームに覆われていたが<br/>彼は公園から逃げる際に、知らないうちに通り抜けてた。<br/>彼が見上げて見た、曇った、暗い空は、単にその天井であり、<br/>光を遮断していた。<br/>チップには何が起こったか仮説を立てられなかった。<br/>ドームから現れた自分の出現が、周囲に訪れた野次馬達に<br/>大きな警戒を引き起こしたことにすぐ気づいた。<br/>チップが脱出した時、<br/>大胆な見物人は踏み入ろうとしたが、<br/>地面に叩き出されるだけだった。<br/>別の謎を解く時間はなかった。<br/><br/>彼は夢中で歩いていたので、<br/>チップは無意識のうちに警察署へ行っていたことに気づいた。<br/>それ自体は別に不自然ではなかったが、<br/>彼は自身が持つ動機に困惑した。<br/>彼は身近な場所を探していたのではなく、<br/>むしろその場所へ\"向かわされて\"いた。<br/>彼の燃える血の鼓動は熱く激しくなり、<br/>彼の奇妙な新しい体を突き動かした。<br/>署に近づいていった、<br/>だが、<br/>彼は理解した。<br/>彼は血の呼び声に、<br/>囁きに、<br/>彼の耳に今聞こえる叫びに、<br/>応えているのだと。<br/><br/>正義<br/><br/>正義<br/><br/>正義<br/><br/>署はチップが入った時は騒然としていた、<br/>別に驚くことはなかった、<br/>都市の真ん中に巨大な紫色のドームが突然現れたことを考えれば。<br/><br/>多分恐怖か、ショックか、<br/>あるいは他の何か、<br/>とにかく他の警官は警察署へのチップの進入を止めなかった。<br/>ドアはロックされていたが、<br/>彼はドアノブを切り裂き引き抜くと<br/>何も考えずに歩き入っていった。<br/><br/>チーフは、<br/>緑色の肉体を青い制服に詰め込んだような異常に大きなゴブリンは、<br/>何かの液体に覆われた、<br/>自分の指を舐めていた。<br/>彼のオフィスには交通犯罪者の遺体が散乱し、<br/>彼らの開かれた頭には脳がなかった。<br/><br/>\"なぜだ?\"<br/>チップは冷たく聞いた。<br/>チーフはあえて無視しなかった。<br/><br/>\"賢くなるためよ!<br/>俺は脳を食べ<br/>クロスワードパズルを解く!<br/>もっと賢くなって、<br/>宝クジの当て方を解いて金持ちになってやる!<br/>俺がやるべきは脳を食べ続けることよ!\"<br/><br/>\"犯罪者の脳を食べても賢くはなれん、<br/>貴様が犯罪者になるだけだ!\"<br/>チップの声が轟いた、<br/>彼自身驚いていた。<br/>奇妙なヘルメットから出る声は<br/>彼自身の声に聞こえなかった。<br/><br/>チーフは銃を抜いた、<br/>だがそれはあまりに遅かった。<br/>チップは素早くチョップを彼の頭に見舞った、<br/>彼の頭蓋骨の上部が壁に散らばり、脳の一部を露出させた。<br/>チーフは一瞬喉を鳴らした、<br/>つまらない言い訳が最期の言葉となった、<br/>そして、<br/>イスから床に無残に崩れ落ちた。<br/><br/>チップは固まっていた。<br/>これが彼の求めていた正義か?<br/>正しいことのように感じたが、<br/>部屋の混沌を見て、<br/>部屋に1体死体を追加しただけようのな気もした。<br/>結局、彼は交通違反者達の脳を戻すことはできなかった。<br/>彼は本当に彼を突き動かす力にここに連れて来られてのか、<br/>または本当は彼自身がチーフを殺したかったのか?<br/>これらの考察は、<br/>合理的思考をもたらし、<br/>チップを夢から目覚めさせた。<br/>もはや盲目的な正義の力の道具ではなく、<br/>チップはどこへ行くべきか分からなかった。<br/>恐らく刑務所が彼の家になるだろう。<br/>彼は殺人を犯したのだ。<br/>彼はチーフのオフィスからゆっくりと歩き出ると、<br/>手を上げた。<br/><br/>署の全て目が彼を見た。<br/><br/>\"あんたは…ある種のスーパーヒーローかい?\"<br/>人狼の警察官が尋ねた。<br/>ヤムズ・ドルディだ。<br/>チップはあまり気にしたことはなかったが、<br/>彼は悪い奴には見えなかった。<br/><br/>\"俺は獣だ。<br/>俺は正義のためにのみ飢える。\"<br/><br/>本当に僕がそれ言ったの!?<br/>つまり、<br/>本当だよ、<br/>でも文脈上はスーパーヒーローのように聞こえる。<br/>僕はただの錯乱した殺人者なのに!<br/><br/>\"君の名前は?\"<br/>バーボン・マクダーモットが尋ねた、<br/>イエティの警官だ。<br/>チップは彼もあまり気にしていなかった、<br/>特に理由はなかったが、<br/>多分彼は衛生面があまり良くなかったからだろう。<br/><br/>名前?<br/><br/>チップは妙な気持ちだった。<br/>スーパーヒーローを考えると\"エッグマスター・ゴルゴス\"というテレビ番組を思い出した。<br/>スーパーヒーローじゃないけど、<br/>主人公にはコミックを読む若い息子がいました。<br/>彼の好きな漫画の主人公は\"デビライザー\"というキャラでした。<br/>デビライザーは腐敗した警察のチーフ達を断頭したりしませんし<br/>今のチップのように精神的に不安定でもありませんが、<br/>彼には冷静に考える時間はなかった。<br/><br/>\"デビライザー\"<br/>彼は言った、<br/>本当の素性を明らかにしたくなかった<br/>(もし名を借りる人物が実在していたとしても)<br/><br/>彼はそれ以上の質問に答える前に署を脱出するため、<br/>チップは玄関から出ていった、<br/>彼の残した驚きによる沈黙が<br/>彼が自宅のアパートに逃げる時間を生むことを望んでいた。<br/>警官たちは固まったままだったが、<br/>チップは突然疲弊した。<br/>彼はカタツムリのようなペースで街を歩き回り、<br/>彼の燃える血は今や室温ほどもなかった。<br/>あるいは彼を動かしていた謎の力を使い果たし<br/>路端で乾いた死んだ魚のような状態なのだろう。<br/>とにかく、<br/>彼の体は弱っているようだったが、<br/>彼は自分の心を失わずに死ねることを幸せに思っていた。<br/>怒りと正義の霧が頭から晴れ<br/>ある種の幸福感が頭蓋骨に滑り込んだようだった。<br/><br/>この幸福な瞬間はすぐに崩れ去った<br/>異常で奇妙な日の終わりとして<br/>チップが見たこともない奇妙な光景が視界に広がった。<br/><br/>彼の前にある種のモンスターが立っていた。<br/>チップの知る悪魔ではないことは確かでした。<br/>背が高く大柄でピニックバスケットのような形状でした。<br/>様々なカートゥーンのような異様な大きさの食物の中から<br/>大きく、白く、怒ったような目が中から覗いていた、<br/>その生物は4本の腕を持ち、<br/>バスケットの横から突き出ていた、<br/>それぞれ1対のハサミが付いていた。<br/>細く、だが筋肉質な足もバスケットから覗いていたが、<br/>派手な短い運動ショーツと<br/>スタイリッシュなランニングシューズを履いていた。<br/><br/>普通誰もがそう思うが、<br/>チップはこの常軌を逸したモンスターを避けたかったが、<br/>彼に会うために来たようだった。<br/>道を塞ぐように、<br/>チップの前に立っていた。<br/>その顔(もしあればだが)が隠されていたにもかかわらず、<br/>輝く白い目が作る怒りの表情は<br/>明らかに戦いを望んでいた。<br/><br/>\"我らと一緒になれ!\"<br/>バスケットのモンスターが叫んだ。<br/>チップはハサミを使うバスケットがどんな声かわからなかったが、<br/>間違いなくこいつの声ではなかった。<br/>明らかに、<br/>この生き物には極めて不自然な点があった。<br/>不吉で忌まわしいことです。<br/>それはコイツが持っていたものではない<br/>(食物はむしろ美味しそうだった)<br/>コイツには無かったもの。<br/>それは形無き要素<br/>全ての悪魔が持つもの<br/>それがこの生き物には無かった。<br/><br/>\"私は文化大使だ!\"と誇らしげに言った。<br/>\"私はダークネイザー66の世界を代表する。<br/>すぐに、この世界はダークネイザーになるだろう!\"<br/><br/>こいつは、意味が分からない。<br/><br/>\"我が名はグラクラス!<br/><ruby><rb>お婆ちゃんの料理 ハサミと走る<rp>(</rp><rt>Grandma’s-Cooking-Running-With-Scissors</rt><rp>)</ruby> の略だ!<br/>私は2つのダークナイザリアンの文化コンセプトを融合したものだ!<br/>お婆ちゃんの料理そして…ハサミと走る!\"<br/><br/>\"ここにもソレはある\"<br/>チップは弱々しく言った。<br/><br/>モンスターは激怒した。<br/>チップに向けてハサミを叩きつけた。<br/>母が君に語ったようにそれは本当に危険だった。<br/>忌むべき道具で突かれ、<br/>チップは歩道に大きく吹き飛ばされた。<br/><br/>体がついていかない…。<br/>僕は戦うにも…逃げるにも疲労しすぎている。<br/>すぐに逝くよ 可愛いキギー。<br/><br/>モンスターは2本のハサミを下ろし<br/>チップを持ち上げ、<br/>彼をその巨大なバスケットに詰め込んだ。<br/><br/>\"君は今私達と1つになる!<br/>わかる!<br/>わかるだろ!\"<br/>と口に食物があるかのような声で言った。<br/>この奇妙でグロテスクな場面は<br/>突然の銃撃によって中断された、<br/>バスケットモンスターにそこら中から撃ち込まれた。<br/><br/>\"デビライザーを下ろせ!\"<br/>バーボン・マクダーモットが叫んだ。<br/>フレンドー・ビスケットソンという1人の警官を除いて<br/>署の全ての警官がチップの援護に来ていた。<br/>政策に反していましたが、<br/>彼らは気に入った新しいスーパーヒーローを救うために<br/>何度も何度も銃弾をバスケットモンスターに撃ち込みました。<br/><br/>\"俺達はひどい警官であることに疲れてるんだ!\"<br/>ヤムズ・ドルディが叫んだ。<br/>\"正義を取り戻す!\"<br/><br/>モンスターは激しく回転しました。<br/>あまりにも激しく、<br/>なのでチップがその過程で偶然歩道に投げ出されました。<br/><br/>\"お前らエイリアンは街を乗っ取れない!\"<br/>フレンドー・ビスケットソンだ!<br/>彼は結局来た、ただ皆より足が遅かっただけだった!<br/><br/>エイリアン?<br/>奴らはそうなのか?<br/>彼はダークネイザー66から来たと言った。<br/>多分球体は彼らのUFOだし<br/>惑星を征服するためにここに来た。<br/><br/>チップは真っ先に撃つタイプではなく<br/>後で質問するタイプでした、<br/>だから彼は宇宙戦争が始まってたと判断を下す準備ができていませんでした。<br/>ですが、<br/>彼に分かるのは1つ…<br/><br/>彼らはキギーを殺した。<br/>彼らは哀れで罪もない生き物と<br/>恐らくは公園内の全員を殺した。<br/>もし奴らを許せば、<br/>より多くのグラムドッグも死ぬでしょう。<br/><br/>路上のチップの血液が沸騰し始めた。<br/>もしその音を近くで聞けば<br/>ある言葉を口に出すでしょう<br/><br/>正義<br/><br/>再び燃え上がる<br/><br/>チップは地面から上昇すると<br/>開いた手を空に向けた。<br/>歓声とともに、警官たちは武器を空に向かって空撃ちした。<br/>血の声は今や囁きを超えた、<br/>叫びだった。<br/><br/>\"叫べ!バーニングブラッド!\"<br/>チップが吠えた。<br/>彼は爪と復讐の竜巻のようになり<br/>バスケットボールモンスターに飛びかかった。<br/><br/>この奇妙なクリーチャーを攻撃するには<br/>少し物流上の問題がありました。<br/>食物に攻撃したら痛むのか?<br/>バスケットの中の小さな生物なのか<br/>あるいはバスケット自身の肉なのか?<br/>この不可能な質問に直面し、<br/>チップは怪物の腕を切り裂くだけにした。<br/>力と勇気が瞬時に合わさり、<br/>真の正義が迅速かつ確実になされた。<br/>この生き物は恐怖で逃げ出した、<br/>血を流し<br/>お婆ちゃんの料理を路上の至る所にこぼしながら。<br/>偉いところは、<br/>ランニングシューズは見せかけだけではなく、<br/>瞬く間にチップの攻撃範囲外へ出た。<br/><br/>素早く反応して、<br/>チップは敵の体から落ちた手を拾うとハサミ部分をねじり取り<br/>その生物の筋肉質な足めがけて投げつけた。<br/>すぐに激しく転倒した。<br/>雷光のように走り寄ると、<br/>チップはバスケットの取っ手を握り<br/>自分に振り向かせた。<br/><br/>\"お婆ちゃんの料理が欲しければ、<br/>この世界にもある。<br/>ハサミを持って走る回るなら…<br/>あの世でやってろ!\"<br/><br/>そう言うと、<br/>チップは彼の爪を<br/>生物の大きく、不細工な目に<br/>叫ばなくなるまで<br/>何度も何度も叩き込んだ。<br/>バスケットの中が泡立ち滲み、<br/>チップが公園で見た小さな黒い虫以外何も残らなかった。<br/>よく見ると、<br/>そいつらは口を持っており、<br/>無力に溶けて消える前に、<br/>小さな最期のうめき声を出した。<br/><br/>顔にシンバルを受けたような、<br/>強力なビジョンをチップは見た。<br/>数え切れないお婆ちゃんが未知の場所、時間で愛する者のために料理をしていた。<br/>子供達はハサミを持って走り回る、<br/>どんな愚かな理由であれ。<br/>彼らがエイリアンだとしても、<br/>この世界の人々とそう違うようには見えませんでした。<br/>彼らはついに解放されたのでしょうか?<br/><br/>チップに計り知れない安堵の波が押し寄せた。<br/>彼の胸部装甲は壊れ始め、<br/>ヘルメットはそれに続いた。<br/>彼はその下に自分のコボルトの体を感じることができた。<br/>彼は腕に毛が立っているのを感じた。<br/>アーマースーツは失われたが、<br/>体は元に戻っていた。<br/>彼は生きのびたのだ。<br/><br/>素性が明らかになるのを恐れて、<br/>チップは素早く逃げ出した。<br/>警官たちは路上の食物に気を取られていた。<br/><br/>\"これ食ってみろよ!\"と<br/>どこかのバカが言った。<br/>\"慣れ親しんだお婆ちゃんの味だ!\"<br/><br/>----------<br/><br/>新しく作り変えられたダークネイザー公園、<br/>デーモンの姿から筋肉質の腕が伸び<br/>美しい黒いガウンが裸体の上を滑り、<br/>しっかりと抱きしめた。<br/>奴らは白いマスクを付けており、<br/>鋭い牙のある笑顔を顔に広げていた。<br/><br/>\"お前の語る正義は私を困惑させる、<br/>デビライザー…お前はそれをあるべき場所、<br/>私の心から盗んだ。<br/>だが私は絶望しない、<br/>取り返すのが楽しみだ…<br/>お前の冷たい死体からな。\"",
"style":"font-size: 14px;color: black;background-color: #DEDEE3;left: 0%;top: 128%;width: 85%;border:solid 1px;text-align:left;"
},
],
"http://devilscandycomic.com/comic/ch06p26": [
{
"text" :"食物を",
"style":"font-size: 36px;color: black;background-color: white;left: 11%;top: 38%;font-weight: bold;"
},
{
"text" :"粗末に",
"style":"font-size: 36px;color: black;background-color: white;left: 62%;top: 57%;font-weight: bold;"
},
{
"text" :"するな!!",
"style":"font-size: 36px;color: black;background-color: white;left: 70%;top: 85%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p27": [
{
"text" :"アタイの技<br/>盗むな<br/><ruby><rb>試験管<rp>(</rp><rt>つくりもの</rt><rp>)</ruby>の<br/>クソが!!",
"style":"font-size: 17px;color: black;background-color: white;left: 34.4%;top: 64%;font-weight: bold;"
},
{
"text" :"苦労して<br/>覚えたんだぞ!!",
"style":"font-size: 17px;color: black;background-color: white;left: 76.5%;top: 64.7%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p28": [
{
"text" :"君となら<br/>楽しめると<br/>思ったけど、<br/>違った",
"style":"font-size: 17px;color: black;background-color: white;left: 10%;top: 17%;"
},
{
"text" :"最初から<br/>叩き潰すべき<br/>だったわ",
"style":"font-size: 17px;color: black;background-color: white;left: 13.5%;top: 27%;"
},
{
"text" :"全部<br/>エリーが悪い。<br/>彼を擦り潰せば<br/>メイメイは奴のこと<br/>二度と考えずに<br/>すむわ!",
"style":"font-size: 16px;color: black;background-color: white;left: 68%;top: 46.7%;"
},
{
"text" :"奴の痕跡を<br/>跡形もなく<br/>消してやる、<br/>手始めはお前よ!",
"style":"font-size: 18px;color: black;background-color: white;left: 70%;top: 60%;font-weight: bold;"
},
{
"text" :"一体…",
"style":"font-size: 18px;color: black;background-color: white;left: 7%;top: 82%;font-weight: bold;"
},
{
"text" :"誰よ…",
"style":"font-size: 23px;color: black;background-color: white;left: 10%;top: 86.5%;font-weight: bold;"
},
{
"text" :"エリー<br/>って??",
"style":"font-size: 22px;color: black;background-color: white;left: 72%;top: 89%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p29": [
],
"http://devilscandycomic.com/comic/ch06p30": [
{
"text" :"ぐ…!",
"style":"font-size: 18px;color: black;background-color: white;left: 8%;top: 8%;font-weight: bold;"
},
{
"text" :"アタイが<br/>考えてる<br/>のはね…",
"style":"font-size: 16px;color: black;background-color: white;left: 82.5%;top: 11%;"
},
{
"text" :"う!",
"style":"font-size: 30px;color: black;background-color: white;left: 85.5%;top: 24.1%;font-weight: bold;"
},
{
"text" :"君の綿菓子の<br/>脳ミソケースに<br/>パンチしたら<br/>どうなるかな?",
"style":"font-size: 15px;color: black;background-color: white;left: 77%;top: 35.2%;"
},
{
"text" :"デビ…ライザー…?",
"style":"font-size: 14px;color: black;background-color: white;left: 71%;top: 90.8%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p31": [
{
"text" :"何者?",
"style":"font-size: 25px;color: black;background-color: white;left: 29%;top: 4.5%;height: 50px; font-weight: bold;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"オォフ!",
"style":"font-size: 12px;color: black;background-color: white;left: 82.8%;top: 18%;font-weight: bold;"
},
{
"text" :"君の<br/>友達?",
"style":"font-size: 29px;color: black;background-color: white;left: 61%;top: 64%;"
},
{
"text" :"先生",
"style":"font-size: 28px;color: black;background-color: white;left: 13%;top: 82.5%;"
},
{
"text" :"また<br/>エリー<br/>なの?",
"style":"font-size: 16px;color: black;background-color: white;left: 78.5%;top: 89%;"
},
],
"http://devilscandycomic.com/comic/ch06p32": [
{
"text" :"君の命は<br/>もう終わ<br/>ってる!",
"style":"font-size: 16px;color: black;background-color: white;left: 25%;top: 4%;"
},
{
"text" :"アタイの<br/>邪魔を<br/>するな!",
"style":"font-size: 16px;color: black;background-color: white;left: 76%;top: 13.5%;width: 70px;"
},
{
"text" :"君の攻撃は<br/>大したことない<br/>反撃はできない<br/>でしょ",
"style":"font-size: 15px;color: black;background-color: white;left: 42%;top: 24%;"
},
{
"text" :"何か見せるなら<br/>早くした方が<br/>いいわよ",
"style":"font-size: 15px;color: black;background-color: white;left: 49%;top: 42.7%;height: 67px;"
},
],
"http://devilscandycomic.com/comic/ch06p33": [
{
"text" :"唸れ、バーニング ブラッド!!",
"style":"font-size: 16px;color: black;left: 44%;top: 70.5%;transform: rotate(2deg);text-shadow: white 2px 0px, white -2px 0px, white 0px -2px, white 0px 2px, white 2px 2px , white -2px 2px, white 2px -2px, white -2px -2px, white 1px 2px, white -1px 2px, white 1px -2px, white -1px -2px, white 2px 1px, white -2px 1px, white 2px -1px, white -2px -1px;"
},
],
"http://devilscandycomic.com/comic/ch06-xmas": [
{
"text" :"今年も皆の愛と支援をありがとう、皆がいて私達は幸運です!<br/>デビルズキャンディの休日<br/>そして金曜の更新ページで会いましょう!",
"style":"font-size: 20px;color: black;background-color: white;left: 7%;top: 89%;width: 720px;height: 90px;width: text-align: center;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p34": [
{
"text" :"ハートに育つ",
"style":"font-size: 14px;color: black;background-color: white;left: 74%;top: 5.5%;width: 152px;font-weight: bold;"
},
{
"text" :"この花は何だ?",
"style":"font-size: 14px;color: black;background-color: white;left: 71.7%;top: 7%;width: 164px;font-weight: bold;"
},
{
"text" :"血を糧に、<br/>その爪は敵を引き裂く",
"style":"font-size: 14px;color: black;background-color: white;left: 70%;top: 9.5%;width: 175px;font-weight: bold;"
},
{
"text" :"悲しみの色に",
"style":"font-size: 14px;color: black;background-color: white;left: 10.1%;top: 45.2%;width: 89px;font-weight: bold;"
},
{
"text" :"染まり",
"style":"font-size: 14px;color: black;background-color: white;left: 5.5%;top: 46.5%;width: 139px;font-weight: bold;"
},
{
"text" :"無関心(アパシー)な<br/>顔に咲き",
"style":"font-size: 14px;color: black;background-color: white;left: 13%;top: 48.2%;width: 126px;font-weight: bold;"
},
{
"text" :"思いやり(シンパシー)",
"style":"font-size: 13px;color: black;background-color: white;left: 18%;top: 51.5%;width: 136px;font-weight: bold;"
},
{
"text" :"の光で輝く…",
"style":"font-size: 13px;color: black;background-color: white;left: 18%;top: 53%;width: 156px;font-weight: bold;"
},
{
"text" :"その花の名は正義!",
"style":"font-size: 20px;color: black;background-color: white;left: 34%;top: 68%;width: 263px;font-weight: bold;"
},
{
"text" :"ぐぅ!",
"style":"font-size: 16px;color: black;background-color: white;left: 84.2%;top: 71%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p35": [
{
"text" :"あり得ない強さを持つ",
"style":"font-size: 14px;color: black;background-color: white;left: 39.5%;top: 5%;width: 226px;font-weight: bold;"
},
{
"text" :"その男は誰だ?",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 6.5%;width: 145px;font-weight: bold;"
},
{
"text" :"真紅の広野を",
"style":"font-size: 14px;color: black;background-color: white;left: 39.5%;top: 8.5%;width: 219px;font-weight: bold;"
},
{
"text" :"歩き続け",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 10%;width: 117px;font-weight: bold;"
},
{
"text" :"勇敢に",
"style":"font-size: 14px;color: black;background-color: white;left: 15.5%;top: 41.2%;width: 102px;font-weight: bold;"
},
{
"text" :"苦難を背負い",
"style":"font-size: 14px;color: black;background-color: white;left: 11.5%;top: 42.5%;width: 133px;font-weight: bold;"
},
{
"text" :"敵は苦痛に",
"style":"font-size: 14px;color: black;background-color: white;left: 22%;top: 45.5%;width: 90px;font-weight: bold;"
},
{
"text" :"悲鳴をあげ、",
"style":"font-size: 14px;color: black;background-color: white;left: 17%;top: 47%;width: 133px;font-weight: bold;"
},
{
"text" :"彼は全身で",
"style":"font-size: 14px;color: black;background-color: white;left: 80.5%;top: 45.3%;width: 122px;font-weight: bold;"
},
{
"text" :"慟哭する…",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 47%;width: 107px;font-weight: bold;"
},
{
"text" :"正義の花!",
"style":"font-size: 20px;color: black;background-color: white;left: 38%;top: 90.5%;width: 254px;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p36": [
{
"text" :"君の炎じゃ<br/>アタイに<br/>ダメージは<br/>ない。<br/>君はただの<br/>灰さ",
"style":"font-size: 14px;color: black;background-color: white;left: 73%;top: 7.5%; width:85px;"
},
{
"text" :"2度目の死を<br/>迎えるまで<br/>解体してやる!",
"style":"font-size: 20px;color: black;background-color: white;left: 31%;top: 61%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p37": [
{
"text" :"ウザい",
"style":"font-size: 19px;color: black;background-color: white;left: 85.5%;top: 7.5%;"
},
{
"text" :"邪魔者め<br/>アタイの<br/>時間を無駄に<br/>するなんて<br/>信じらんない",
"style":"font-size: 14px;color: black;background-color: white;left: 24%;top: 61.5%;width: 95px;"
},
{
"text" :"君の<br/>無価値な頭は<br/>彼の頭の横に<br/>置いてあげる",
"style":"font-size: 16.5px;color: black;background-color: white;left: 80.4%;top: 85%;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p38": [
{
"text" :"ぐ!",
"style":"font-size: 12px;color: black;background-color: white;left: 22.3%;top: 16.5%;"
},
{
"text" :"ごめんデビライザー。<br/>僕にはまだ<br/>愛で世界を救う<br/>方法は分からない",
"style":"font-size: 14px;color: black;background-color: white;left: 8%;top: 23.5%;height: 79px;"
},
{
"text" :"今は妥協するよ<br/>2番目に<br/>良いお薬の…",
"style":"font-size: 14px;color: black;background-color: white;left: 49%;top: 33.5%;width:133px; height: 65px;"
},
{
"text" :"お薬で!",
"style":"font-size: 30px;color: black;background-color: white;left: 60%;top: 73%;width: 144px; height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p39": [
{
"text" :"おいチビ!<br/>何す…",
"style":"font-size: 14px;color: black;background-color: white;left: 21%;top: 3.5%;width: 64px;height: 71px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…うぅ…<br/>フラつく…",
"style":"font-size: 12px;color: black;background-color: white;left: 30%;top: 8%;width: 64px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"まずい、<br/>注射か。<br/>感覚がない",
"style":"font-size: 14px;color: black;background-color: white;left: 49.5%;top: 21.5%;width: 78px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ねぇ<br/>パンディ<br/>君って<br/>本当…",
"style":"font-size: 14px;color: black;background-color: white;left: 64%;top: 7.5%;width: 76px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"…友達<br/>多いね",
"style":"font-size: 14px;color: black;background-color: white;left: 86%;top: 26%;width: 65px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"何とか<br/>する",
"style":"font-size: 14px;color: black;background-color: white;left: 87.3%;top: 56.5%;width: 51px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何にかえても<br/>何とかする。<br/>約束する!",
"style":"font-size: 14px;color: black;background-color: white;left: 67%;top: 72%;width: 88px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p40": [
{
"text" :"君は…",
"style":"font-size: 14px;color: black;background-color: white;left: 15%;top: 28%;width: 54px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君は<br/>僕を呼んだ",
"style":"font-size: 14px;color: black;background-color: white;left: 33.5%;top: 24%;width: 89px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"トラブルに<br/>巻き込まれて<br/>呼んだんだ",
"style":"font-size: 14px;color: black;background-color: white;left: 77.5%;top: 24.5%;width: 110px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"どうして?",
"style":"font-size: 14px;color: black;background-color: white;left: 23%;top: 39%;width: 65px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君が望んだ<br/>ことだから",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 40%;width: 129px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"例えそれが<br/>バカなことでも<br/>あなたが自分で<br/>決断した",
"style":"font-size: 14px;color: black;background-color: white;left: 73%;top: 59%;width: 109px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p41": [
{
"text" :"バ…バカ…?",
"style":"font-size: 14px;color: black;background-color: white;left: 11.2%;top: 5%;width: 88px;height: 25px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうかな?",
"style":"font-size: 14px;color: black;background-color: white;left: 13%;top: 8.5%;width: 84px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"自分でも何を<br/>しようとしたか<br/>分からないよ。<br/>僕はただ<span style=\"font-weight: bold;\">何とか</span><br/>君を守りたかった",
"style":"font-size: 13px;color: black;background-color: white;left: 33.5%;top: 24.6%;width: 106px;height: 89px;text-align: center;"
},
{
"text" :"緊急手術道具<br/>持ってきたけど<br/><span style=\"font-weight: bold;\">こんな風に</span>使うとは<br/>思わなかった…",
"style":"font-size: 13px;color: black;background-color: white;left: 52%;top: 4%;width: 93px;height: 112px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"待って…<br/>この女性誰?<br/>何が<br/>あったの?",
"style":"font-size: 13px;color: black;background-color: white;left: 79%;top: 23%;width: 84px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"クレアンス<br/>は…",
"style":"font-size: 14px;color: black;background-color: white;left: 12.5%;top: 39%;width: 97px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ここ<br/>だよ",
"style":"font-size: 20px;color: black;background-color: white;left: 26%;top: 43%;width: 74px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"ヤギーへ<br/>電話した。<br/>リケットの所へ<br/>向かってる",
"style":"font-size: 13px;color: black;background-color: white;left: 14%;top: 77%;width: 97px;height: 93px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何か悪いことが<br/>起きる前に<br/>行こう",
"style":"font-size: 13px;color: black;background-color: white;left: 74%;top: 78%;width: 112px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p42": [
{
"text" :"君の傷<br/>看ようか?<br/>君の様子…<br/>その…",
"style":"font-size: 14px;color: black;background-color: white;left: 7%;top: 7.5%;width: 75px;height: 86px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ぐ…",
"style":"font-size: 12px;color: black;background-color: white;left: 26.9%;top: 12.2%;width: 36px;height: 17px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"パンドラを<br/>心配しろ、<br/>オレはいい",
"style":"font-size: 13px;color: black;background-color: white;left: 41%;top: 8%;width: 69px;height: 71px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"傷はすぐ治せる。<br/>ただ血が要る。<br/>途中の自販機で<br/>買うよ",
"style":"font-size: 14px;color: black;background-color: white;left: 76.5%;top: 21%;width: 116px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"無駄口やめて<br/>早く行くぞ。<br/>沢山の敵が<br/>できたぞ、<br/>確実に",
"style":"font-size: 14px;color: black;background-color: white;left: 7%;top: 40%;width: 101px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うわぁ、<br/>うわぁ…",
"style":"font-size: 14px;color: black;background-color: white;left: 45%;top: 37%;width: 67px;height: 34px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"第6章:完。",
"style":"font-size: 23px;color: black;background-color: white;left: 67%;top: 95%;width: 198px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;border:solid 1px;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch06p43": [
{
"text" :"来てくれて<br/>ありがとうね<br/>ローワン!",
"style":"font-size: 14px;color: black;background-color: white;left: 19%;top: 20%;width: 97px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"直接<span style=\"font-weight: bold;\">会いたかったわ!</span><br/>エースとあなたは<br/>長いこと一緒だから<br/>妬けちゃうわ!",
"style":"font-size: 14px;color: black;background-color: white;left: 62.5%;top: 5.5%;width: 161px;height: 73px;text-align: center;"
},
{
"text" :"保証しますよ、<br/>俺とあなたの夫は<br/>プラトニックな<br/>関係だって",
"style":"font-size: 14px;color: black;background-color: white;left: 66%;top: 37%;width: 120px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"※眉をひそめる",
"style":"font-size: 14px;color: black;left: 85%;top: 74%;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やめろ",
"style":"font-size: 14px;color: black;background-color: white;left: 73.5%;top: 78.5%;width: 42px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p44": [
{
"text" :"あなたが<br/>アレクサンドラ",
"style":"font-size: 12px;color: black;background-color: white;left: 4%;top: 8%;width: 88px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アレックス<br/>でいいわ",
"style":"font-size: 11px;color: black;background-color: white;left: 26%;top: 7.5%;width: 59px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"こちらは<br/>どなた?",
"style":"font-size: 14px;color: black;background-color: white;left: 38.2%;top: 7.4%;width: 76px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やぁ 僕は<br/>ドミニク",
"style":"font-size: 14px;color: black;background-color: white;left: 51.2%;top: 5.5%;width: 79px;height: 43px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"その…レディ<br/>ダークロード<br/>を演じてる?<br/>髭無しじゃ多分<br/>分からないよ",
"style":"font-size: 14px;color: black;background-color: white;left: 51.4%;top: 11.3%;width: 98px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ!",
"style":"font-size: 14px;color: black;background-color: white;left: 51.4%;top: 23.5%;width: 65px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"面白い衣装で<br/>筋肉の見事な!",
"style":"font-size: 14px;color: black;background-color: white;left: 50%;top: 27.3%;width: 101px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"筋肉の<br/>付け方も<br/><span style=\"font-weight: bold;\">私</span>に教えて<br/>くれる?",
"style":"font-size: 14px;color: black;background-color: white;left: 4%;top: 40%;width: 70px;height: 67px;"
},
{
"text" :"え…えぇ<br/>一緒に<br/>鍛えます…?",
"style":"font-size: 14px;color: black;background-color: white;left: 17.5%;top: 39%;width: 82px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハニーも<br/>一緒に<br/>どう?",
"style":"font-size: 14px;color: black;background-color: white;left: 30.5%;top: 40.5%;width: 65px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハハハ!<br/><span style=\"font-weight: bold;\">私に</span>必要な<br/>筋肉は<br/>脳だけさ!",
"style":"font-size: 14px;color: black;background-color: white;left: 61.5%;top: 39.5%;width: 87px;height: 77px;"
},
{
"text" :"コイツ<br/>本当に<br/>医者か?",
"style":"font-size: 14px;color: black;background-color: white;left: 82.2%;top: 39.5%;width: 67px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それでエース<br/>また旅に行くって<br/>聞いたけど?",
"style":"font-size: 14px;color: black;background-color: white;left: 9.8%;top: 63.3%;width: 125px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"“旅”?<br/><span style=\"font-weight: bold;\">悟りの航海さ!</span>",
"style":"font-size: 18px;color: black;background-color: white;left: 39.1%;top: 62.5%;width: 122px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"東の大陸を<br/>見に行くの<br/>悪魔達がいたら<br/>ラブラブ薬を<br/>使うわ!",
"style":"font-size: 14px;color: black;background-color: white;left: 71.5%;top: 64.2%;width: 125px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p45": [
{
"text" :"マジで!",
"style":"font-size: 14px;color: black;background-color: white;left: 10.4%;top: 4.7%;width: 66px;height: 34px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"危険な<br/>場所じゃ<br/>ないのか?",
"style":"font-size: 14px;color: black;background-color: white;left: 9%;top: 9%;width: 95px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"カズも<br/>連れてく<br/>気か?",
"style":"font-size: 14px;color: black;background-color: white;left: 28.5%;top: 26.5%;width: 83px;height: 52px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"もちろん!<br/>小さな王者は<br/>連れてくよ",
"style":"font-size: 14px;color: black;background-color: white;left: 51.8%;top: 5%;width: 84px;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大半は未知の<br/>地域だけど、<br/>古代遺跡が<br/>あるのは<br/><span style=\"font-weight: bold;\">分かってるわ</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 84%;top: 8.5%;width: 97px;height: 108px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ミイラが関係<br/>してるかも!",
"style":"font-size: 14px;color: black;background-color: white;left: 44%;top: 22%;width: 103px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"待った、<br/>君達は医者で、<br/>考古学者じゃ…",
"style":"font-size: 12px;color: black;background-color: white;left: 73%;top: 21%;width: 87px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ミイラで<br/>一杯だと<br/>いいな!",
"style":"font-size: 20px;color: black;background-color: white;left: 10%;top: 37%;width: 100px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"そしたら<br/>大手柄だ!<br/>でなきゃ<br/>無意味だ!",
"style":"font-size: 14px;color: black;background-color: white;left: 10.9%;top: 46%;width: 90px;height: 84px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"まぁ君なら<br/>手柄なしでも<br/>皆を救ってる<br/>じゃないか",
"style":"font-size: 14px;color: black;background-color: white;left: 47%;top: 37%;width: 94px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"聴け",
"style":"font-size: 14px;color: black;background-color: white;left: 81.5%;top: 39%;width: 55px;height: 30px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"医大を出て<br/>命を救うのは<br/>誰でもできる",
"style":"font-size: 14px;color: black;background-color: white;left: 10.3%;top: 63.3%;width: 90px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"だが善行も誰も<br/>気付かなければ<br/>どうして<br/><span><span style=\"font-weight: bold;\">他人</span>の良心を</span>呼び覚ませる?",
"style":"font-size: 14px;color: black;background-color: white;left: 9%;top: 73.6%;width: 109px;height: 109px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は人々に<br/>見てもらい<br/>愛される<br/>必要がある",
"style":"font-size: 14px;color: black;background-color: white;left: 58%;top: 64.5%;width: 76px;height: 91px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"デビライザー<br/>も同じだろ?<br/>悪と戦うのを<br/>誰も観なきゃ<br/>何が良く<br/>なる?",
"style":"font-size: 14px;color: black;background-color: white;left: 86%;top: 64%;width: 91px;height: 110px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ふむ",
"style":"font-size: 14px;color: black;background-color: white;left: 61%;top: 88%;width: 49px;height: 28px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://devilscandycomic.com/comic/ch06p46": [
{
"text" :"ほらまた!<br/>タバコは<br/>止めてよ!",
"style":"font-size: 14px;color: black;background-color: white;left: 38%;top: 6%;width: 78px;height: 86px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"喫煙は早くに<br/>墓場行きよ<br/>私を独りに<br/>しないで!",
"style":"font-size: 14px;color: black;background-color: white;left: 80%;top: 5%;width: 105px;height: 102px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"俺は…俺は<br/>どこにも<br/>行かないよ…<br/>この世の悪が<br/>消えるまで",
"style":"font-size: 14px;color: black;background-color: white;left: 14%;top: 33.5%;width: 93px;height: 86px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"全ての悪と<br/><span><span style=\"font-weight: bold;\">戦う</span>か</span>私みたいに<br/>結婚する気?",
"style":"font-size: 14px;color: black;background-color: white;left: 40.5%;top: 41.5%;width: 92px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"さあね、奴ら皆<br/>君位セクシーか?<br/>俺にセクシーな<br/>悪党紹介したい?",
"style":"font-size: 14px;color: black;background-color: white;left: 78.5%;top: 32%;width: 114px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私にも<br/>紹介して!",
"style":"font-size: 14px;color: black;background-color: white;left: 40.5%;top: 51.8%;width: 73px;height: 31px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕も<br/>頼む…<br/>独身だ",
"style":"font-size: 12px;color: black;background-color: white;left: 52.5%;top: 52%;width: 55px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"失礼!<br/>予約なしの<br/>席の専有は<br/>遠慮下さい!",
"style":"font-size: 14px;color: black;background-color: white;left: 62%;top: 52%;width: 89px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ここは<br/>他の方の<br/>席です!<span style=\"font-weight: bold;\">シッ!<br/>シッ!</span>",
"style":"font-size: 14px;color: black;background-color: white;left: 84.8%;top: 52%;width: 61px;height: 86px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ガビーン?",
"style":"font-size: 20px;color: black;background-color: white;left: 43.3%;top: 72.5%;width: 92px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"ハニー<br/>やめて",
"style":"font-size: 14px;color: black;background-color: white;left: 58%;top: 74%;width: 43px;height: 31px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"恥ずかしい…",
"style":"font-size: 12px;color: black;background-color: white;left: 80%;top: 74%;width: 87px;height: 31px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"6章 外伝:完。 ",
"style":"font-size: 20px;color: black;background-color: white;left: 68%;top: 95%;width: 243px;height: 27px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch06p47": [
{
"text" :"悪役達が次に<br/>何をしたのか?",
"style":"font-size: 20px;color: black;background-color: white;left: 37.5%;top: 5%;width: 210px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"トレモロは怒り狂い<br/>自分の店をさらに荒らした",
"style":"font-size: 14px;color: black;background-color: white;left: 35%;top: 10%;width: 260px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;border:solid 1px;"
},
{
"text" :"ストラツィオは病院行き",
"style":"font-size: 14px;color: black;background-color: white;left: 35%;top: 32%;width: 221px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;border:solid 1px;"
},
{
"text" :"メティアは電話を新調した",
"style":"font-size: 14px;color: black;background-color: white;left: 38%;top: 53.3%;width: 204px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;border:solid 1px;"
},
{
"text" :"2つ<br/>取った!",
"style":"font-size: 14px;color: black;background-color: #F6E8F0;left: 50%;top: 55.5%;width: 57px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ピアは路上でお昼寝",
"style":"font-size: 14px;color: black;background-color: white;left: 36.5%;top: 75%;width: 210px;height: 25px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;border:solid 1px;"
},
],
"http://devilscandycomic.com/comic/ch06p48": [
{
"text" :"人気の女の子",
"style":"font-size: 25px;color: black;background-color: white;left: 35.5%;top: 5.8%;width: 239px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"愛しのピア!<br/>パンドラと<br/>喧嘩したのね",
"style":"font-size: 14px;color: black;background-color: white;left: 30.4%;top: 10.8%;width: 92px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"どうだった?<br/>彼女強い?",
"style":"font-size: 14px;color: black;background-color: white;left: 30.7%;top: 19%;width: 81px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"強い?<br/>いや<br/>アタイが<br/>ボコした",
"style":"font-size: 14px;color: black;background-color: white;left: 29%;top: 33%;width: 70px;height: 91px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"友達は多い<br/>けどね。<br/>彼女は本当に<br/>人気者よ!",
"style":"font-size: 14px;color: black;background-color: white;left: 59.5%;top: 32%;width: 109px;height: 91px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハハハ…<br/>人気なの?",
"style":"font-size: 14px;color: black;background-color: white;left: 32%;top: 56.4%;width: 71px;height: 47px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私より人気<br/>じゃない<br/>わよね?",
"style":"font-size: 14px;color: black;background-color: white;left: 30%;top: 76.3%;width: 75px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch07p01": [
],
"http://devilscandycomic.com/comic/ch07p02": [
{
"text" :"リケットが<br/>いなくて<br/>良かった",
"style":"font-size: 14px;color: black;background-color: white;left: 9.3%;top: 4.5%;width: 94px;height: 54px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"兄がギャングで<br/>働いてるなんて<br/>彼女は失望する<br/>でしょうね",
"style":"font-size: 14px;color: black;background-color: white;left: 8.8%;top: 11%;width: 101px;height: 91px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ失望するね。<br/>“親友のグレーテル”が<br/>狂って犯罪者共から<br/>盗みを働いた<br/>なんてね",
"style":"font-size: 14px;color: black;background-color: white;left: 74%;top: 30.5%;width: 146px;height: 116px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"幸い僕の<span><span style=\"font-weight: bold;\">賢い</span>妹は</span>そんな危険に<br/>関わらない…",
"style":"font-size: 14px;color: black;background-color: white;left: 41%;top: 53%;width: 127px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕はそれを守るために<br/>一生懸命働いてきたんだ!",
"style":"font-size: 14px;color: black;background-color: white;left: 42%;top: 61.5%;width: 165px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
],
"http://devilscandycomic.com/comic/ch07p03": [
],
"http://devilscandycomic.com/comic/ch07p04": [
],
"http://devilscandycomic.com/comic/ch07p05": [
],
"http://devilscandycomic.com/comic/ch07p06": [
],
"http://devilscandycomic.com/comic/ch07p07": [
],
"http://devilscandycomic.com/comic/ch07p08": [
],
"http://devilscandycomic.com/comic/ch07p09": [
],
"http://devilscandycomic.com/comic/ch07p10": [
],
};
// Monster Pop本文 -10px -10px
const MONSTER_POP_JSON = {
"http://www.monsterpop.mayakern.com/pages.php?page=0001": [
{
"text" :"ダッシュボード",
"style":"font-size: 12px;color: #A9AFBC;background-color: #495772;left: 666px;top: 23px;"
},
{
"text" :"文書を投稿",
"style":"font-size: 20px;color: #2D3D57;background-color: white;left: 417px;top: 81px;font-weight: bold;text-align: left;width:205px;"
},
{
"text" :"タイトル<span style=\"font-size: 10px;color: #C3CCDD;\">(オプション)</span>",
"style":"font-size: 14px;color: #716F77;background-color: white;left: 417px;top: 124px;"
},
{
"text" :"投稿",
"style":"font-size: 14px;color: #54617A;background-color: white;left: 417px;top: 202px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0002": [
{
"text" :"ハロー、私の名前はジョージ",
"style":"font-size: 22px;color: #27271E;background-color: #EEE29A;left: 51px;top: 28px;width: 314px;height: 34px;text-align: center;font-weight: bold;"
},
{
"text" :"OK!<br/>この家<br/>みたいね!",
"style":"font-size: 14px;color: #6F5728;background-color: #EEE29A;left: 76px;top: 105px;width: 81px; height: 59px;text-align: center;"
},
{
"text" :"まるで<br/>押し込み<br/>パーティね",
"style":"font-size: 14px;color: #7F378D;background-color: #B782B6;left: 263px;top: 230px;width: 91px; height: 57px;text-align: center;"
},
{
"text" :"アハハ<br/><span style=\"font-weight: bold;\">本当に</span>そんな事<br/>言っちゃう?!",
"style":"font-size: 14px;color: #6F5728;background-color: #EEE29A;left: 138px;top: 351px;width: 109px; height: 75px;text-align: center;"
},
{
"text" :"モンスター・ポップ!",
"style":"font-size: 18px;color: white;background-color: #FFE996;left: 500px;top: 27px;text-shadow: 1px 2px 3px #000000;font-weight: bold;"
},
{
"text" :"これは私のブログ! ◯)<br/>ブログを持つことにしたの<br/>友達皆も持ってるから<br/>私もやろうかなって。<br/>多分全然使わないけど。<br/>つまり別に<br/>何か超面白ことが<br/>あったわけじゃないの(笑)",
"style":"font-size: 20px;color: #060000;background-color: #FFF1C9;left: 452px;top: 109px;width: 300px; height: 300px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0003": [
{
"text" :"これ<br/>本当に<br/>上手くいくと<br/>思う?",
"style":"font-size: 14px;color: #6F5728;background-color: #EEE29A;left: 48px;top: 66px;width: 98px; height: 73px;text-align: center;"
},
{
"text" :"いいえ!",
"style":"font-size: 14px;color: #782D89;background-color: #B782B6;left: 167px;top: 158px;width: 50px; height: 22px;text-align: center;"
},
{
"text" :"なっ…フラニー!!",
"style":"font-size: 12px;color: #6F5728;background-color: #EEE29A;left: 258px;top: 221px;width: 95px; height: 20px;text-align: center;"
},
{
"text" :"考え直さないの!<br/>テスト手伝うって<br/>約束したでしょ!",
"style":"font-size: 14px;color: #782D89;background-color: #B782B6;left: 434px;top: 22px;width: 135px; height: 105px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"プラス<br/>君のために<br/>作ったしね",
"style":"font-size: 14px;color: #782D89;background-color: #B782B6;left: 661px;top: 31px;width: 88px; height: 63px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0004": [
{
"text" :"でも<br/>もし…",
"style":"font-size: 14px;color: #B49453;background-color: #F2E098;left: 146px;top: 25px;width: 66px; height: 34px;text-align: center;"
},
{
"text" :"でももし<span style=\"font-weight: bold;\">本当に</span><br/>上手くいったら?<br/>試してもないし",
"style":"font-size: 14px;color: #672B87;background-color: #B292C1;left: 159px;top: 87px;width: 119px; height: 71px;text-align: center;"
},
{
"text" :"君が最初に<br/>思いついたん<br/>でしょうが!",
"style":"font-size: 14px;color: #672B87;background-color: #B292C1;left: 397px;top: 13px;width: 121px; height: 75px;text-align: center;"
},
{
"text" :"えっと、<br/>こう<br/>被れば…",
"style":"font-size: 14px;color: #B49453;background-color: #F2E098;left: 230px;top: 393px;width:70px; height: 73px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0005": [
{
"text" :"わぁ、フラニー、<br/>君は天才魔女だわ!",
"style":"font-size: 14px;color: #B49453;background-color: #F2E098;left: 120px;top: 223px;width: 124px; height: 58px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"人間達のパーティに<br/>乗り込みましょう!",
"style":"font-size: 14px;color: #B49453;background-color: #F2E098;left: 305px;top: 263px;width: 126px; height: 52px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0006": [
{
"text" :"ハロー",
"style":"font-size: 14px;color: #605173;background-color: #C0B8C7;left: 580px;top: 25px;width: 52px; height: 17px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"2人は見たこと<br/>ない顔だね。<br/>聖ジュード高校の<br/>生徒かい?",
"style":"font-size: 14px;color: #605173;background-color: #C0B8C7;left: 577px;top: 49px;width: 140px; height: 82px;text-align: center;"
},
{
"text" :"私達は<br/>転校生よ",
"style":"font-size: 14px;color: #672B87;background-color: #B292C1;left: 536px;top: 178px;width: 66px; height: 36px;text-align: center;"
},
{
"text" :"へぇ<br/>いいね",
"style":"font-size: 12px;color: #605173;background-color: #C0B8C7;left: 705px;top: 371px;width: 38px; height: 35px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0007": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0008": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0009": [
{
"text" :"左足が<br/>赤",
"style":"font-size: 14px;color: #662F2B;background-color: #EB6642;left: 68px;top: 27px;width: 91px; height: 38px;text-align: center;"
},
{
"text" :"左手が<br/>青",
"style":"font-size: 14px;color: #172C35;background-color: #746FB0;left: 199px;top: 79px;width: 85px; height: 39px;text-align: center;"
},
{
"text" :"右手が<br/>緑",
"style":"font-size: 14px;color: #436037;background-color: #B8D54B;left: 123px;top: 165px;width: 88px; height: 41px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0010": [
{
"text" :"わぁ<br/>格好良い",
"style":"font-size: 13px;color: #916B25;background-color: #FBF16B;left: 709px;top: 171px;width: 69px; height: 37px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0011": [
{
"text" :"大丈夫<br/>かい?",
"style":"font-size: 13px;color: #9E593E;background-color: #F3A074;left: 162px;top: 59px;width: 74px; height: 42px;text-align: center;"
},
{
"text" :"アハハハハハハハ…",
"style":"font-size: 13px;color: #916B25;background-color: #FBF16B;left: 281px;top: 27px;width: 126px; height: 16px;text-align: center;"
},
{
"text" :"えぇ~~~~……",
"style":"font-size: 13px;color: #916B25;background-color: #FBF16B;left: 311px;top: 45px;width: 110px; height: 18px;text-align: center;"
},
{
"text" :"ねぇ!<br/>君達は<br/>失格よ!",
"style":"font-size: 13px;color: #735144;background-color: #E3BDA8;left: 675px;top: 15px;width: 81px; height: 51px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0012": [
{
"text" :"君を<br/>見たことないと<br/>思うんだけど…",
"style":"font-size: 14px;color: #9C402C;background-color: #F4994D;left: 43px;top: 23px;width: 128px; height: 68px;text-align: center;"
},
{
"text" :"聖ジュード<br/>の生徒?",
"style":"font-size: 14px;color: #9C402C;background-color: #F4994D;left: 150px;top: 83px;width: 75px; height: 53px;text-align: center;"
},
{
"text" :"いえ、<br/>友達と一緒に<br/>忍び込んだの",
"style":"font-size: 12px;color: #916B25;background-color: #FBF16B;left: 26px;top: 142px;width: 94px; height: 49px;text-align: center;"
},
{
"text" :"本当は<br/>アミティ高",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 131px;top: 167px;width: 94px; height: 35px;text-align: center;"
},
{
"text" :"…<span style=\"font-weight: bold;\">統合</span>学校<br/>だっけ?",
"style":"font-size: 14px;color: #9C402C;background-color: #F4994D;left: 383px;top: 35px;width: 113px; height: 50px;text-align: center;"
},
{
"text" :"うん",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 589px;top: 88px;width: 41px; height: 21px;text-align: center;"
},
{
"text" :"そっか…",
"style":"font-size: 14px;color: #9C402C;background-color: #F4994D;left: 593px;top: 213px;width: 62px; height: 22px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0013": [
{
"text" :"フラニー!",
"style":"font-size: 12px;color: #916B25;background-color: #FBF16B;left: 106px;top: 250px;width: 57px; height: 22px;text-align: center;"
},
{
"text" :"ねぇ、G、<br/>帰る時間よ!",
"style":"font-size: 14px;color: #7E4091;background-color: #D5C1DD;left: 341px;top: 246px;width: 93px; height: 49px;text-align: center;"
},
{
"text" :"わぁ、もう<br/>こんな時間!",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 486px;top: 267px;width: 103px; height: 54px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0014": [
{
"text" :"その、<br/>会えて<br/>良かった…",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 398px;top: 25px;width: 101px; height: 52px;text-align: center;"
},
{
"text" :"ベン、よね?",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 545px;top: 99px;width: 95px; height: 24px;text-align: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #6F452C;background-color: #F5A752;left: 663px;top: 149px;width: 53px; height: 24px;text-align: center;"
},
{
"text" :"俺と友達2人で<br/>ピクニックに<br/>明日行くんだ…",
"style":"font-size: 14px;color: #6F452C;background-color: #F5A752;left: 87px;top: 244px;width: 137px; height: 67px;text-align: center;"
},
{
"text" :"…一緒に<br/>どうかな?",
"style":"font-size: 14px;color: #6F452C;background-color: #F5A752;left: 479px;top: 260px;width: 84px; height: 52px;text-align: center;"
},
{
"text" :"はい!<br/>是非とも!!",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 549px;top: 338px;width: 83px; height: 44px;text-align: center;"
},
{
"text" :"…その",
"style":"font-size: 14px;color: #916B25;background-color: #FBF16B;left: 675px;top: 405px;width: 56px; height: 25px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0015": [
{
"text" :"…私の友達も<br/>一緒に連れて来て<br/>いいかしら?",
"style":"font-size: 14px;color: #5E4825;background-color: #FFEA4D;left: 75px;top: 32px;width: 119px; height: 66px;text-align: center;"
},
{
"text" :"へへ…",
"style":"font-size: 14px;color: #716077;background-color: #D9C8D2;left: 499px;top: 98px;width: 46px; height: 20px;text-align: center;"
},
{
"text" :"もう招待<br/>されてる",
"style":"font-size: 14px;color: #6A267A;background-color: #D5C1DD;left: 518px;top: 32px;width: 96px; height: 33px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0016": [
{
"text" :"フラニー<br/>あのピクニック覚えてる?",
"style":"font-size: 14px;color: #00000C;background-color: #FDE55C;left: 281px;top: 15px;width: 175px; height: 40px;"
},
{
"text" :"私達はバカだったわね",
"style":"font-size: 14px;color: #00000C;background-color: #FDE55C;left: 421px;top: 63px;width: 180px; height: 28px;"
},
{
"text" :"#大失敗<br/>#francantations<sup>※</sup>",
"style":"font-size: 14px;color: #9D9162;background-color: #FDE45D;left: 660px;top: 440px;width: 117px; height: 40px;"
},
{
"text" :"※francantations=フラニーのtumblrブログ名 実在する",
"style":"font-size: 12px;color: #9D9162;left: 450px;top: 500px; height: 40px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0017": [
{
"text" :"遅れてなきゃ<br/>いいんだけど!<br/>少し迷って",
"style":"font-size: 14px;color: #785628;background-color: #FCF26C;left: 177px;top: 10px;width: 110px; height: 68px;text-align: center;"
},
{
"text" :"大丈夫さ!<br/>来てくれて<br/>嬉しいよ",
"style":"font-size: 14px;color: #764123;background-color: #F7B367;left: 628px;top: 59px;width: 133px; height: 51px;text-align: center;"
},
{
"text" :"あなたは<br/>最高の友達よ<br/>愛してる!!",
"style":"font-size: 14px;color: #785628;background-color: #FCF26C;left: 513px;top: 411px;width: 133px; height: 69px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0018": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0019": [
{
"text" :"で…俺達は<br/>不思議に<br/>思うんだ…",
"style":"font-size: 14px;color: #5E2A1B;background-color: #EF844E;left: 31px;top: 225px;width: 80px; height: 50px;text-align: center;"
},
{
"text" :"アミティ高は<br/>どんな感じ?<br/>モンスターと一緒の<br/>学校ってさ…",
"style":"font-size: 14px;color: #5E2A1B;background-color: #EF844E;left: 27px;top: 294px;width: 133px; height: 67px;text-align: center;"
},
{
"text" :"変じゃないか?<br/>授業全部一緒なわけ?<br/>同じこと学ぶ必要なくね?<br/>鱗洗ったり空飛んだりさ",
"style":"font-size: 14px;color: #5E2A1B;background-color: #EF844E;left: 498px;top: 64px;width: 190px; height: 149px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0020": [
{
"text" :"ハッキリ言って<br/>俺達には奇妙だよ。<br/>上手く一緒にはやれるけど<br/>すげぇ<span style=\"font-weight: bold;\">変だよ!</span>",
"style":"font-size: 14px;color: #702D20;background-color: #F1953F;left: 106px;top: 73px;width: 169px; height: 102px;text-align: center;"
},
{
"text" :"え…ええ、私達は<br/>違うことも習うわ。<br/>でもほとんどの<br/>授業は一緒よ",
"style":"font-size: 14px;color: #6B4927;background-color: #FAEF5D;left: 592px;top: 19px;width: 175px; height: 83px;text-align: center;"
},
{
"text" :"モンスター保健体育が<br/>別になる以外は、<br/>ほぼモンスターの<br/>授業は選択科目よ。<br/>大半のモンスターは自宅で<br/>種族別のセルフケアを学ぶけど、<br/>ただの生活習慣の違いよ",
"style":"font-size: 12px;color: #6B4927;background-color: #FAEF5D;left: 566px;top: 257px;width: 200px; height: 135px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0021": [
{
"text" :"別に変でも<br/>何でもないわ…",
"style":"font-size: 14px;color: #6D4F25;background-color: #FAEF5D;left: 156px;top: 52px;width: 111px; height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"モンスターの<br/>病気ってどんなの?<br/>伝染ったことある?",
"style":"font-size: 14px;color: #212C55;background-color: #8082BD;left: 76px;top: 263px;width: 133px; height: 73px;text-align: center;"
},
{
"text" :"それじゃ奴らを<br/>沢山見たの?",
"style":"font-size: 14px;color: #212C55;background-color: #8082BD;left: 441px;top: 19px;width: 123px; height: 54px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"同じバスルーム<br/>使うの?",
"style":"font-size: 14px;color: #212C55;background-color: #8082BD;left: 554px;top: 125px;width: 105px; height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"奴らの能力ズルくない?<br/>スポーツとかさ?<br/>テストでも何か<br/>ズルしてるかも!",
"style":"font-size: 14px;color: #212C55;background-color: #8082BD;left: 539px;top: 252px;width: 201px; height: 101px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0022": [
{
"text" :"その…<br/>そんなに大差<br/>ないのよ…",
"style":"font-size: 14px;color: #594727;background-color: #F7F176;left: 58px;top: 51px;width: 137px; height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"もう<br/>行かな<br/>いと!!!",
"style":"font-size: 13px;color: #442050;background-color: #D4A7CB;left: 573px;top: 78px;width: 63px; height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0023": [
{
"text" :"失礼、<br/>帰らないと<br/>今すぐ!!",
"style":"font-size: 14px;color: #3F2851;background-color: #D8B9D8;left: 330px;top: 69px;width: 99px; height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"え…",
"style":"font-size: 13px;color: #4C3921;background-color: #F6F273;left: 421px;top: 302px;width: 37px; height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0024": [
{
"text" :"ジョージ<br/>行くわよ",
"style":"font-size: 16px;color: #482C5A1;background-color: #D1AFD0;left: 205px;top: 32px;width: 96px; height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うううぐぐぐぐうぅ!!!!!!",
"style":"font-size: 16px;color: #3A224E;background-color: #A982B7;left: 402px;top: 25px;width: 191px; height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あいつら<br/><span style=\"font-weight: bold;\">ヒドイ!!</span>",
"style":"font-size: 16px;color: #482D58;background-color: #CA86B5;left: 594px;top: 301px;width: 127px; height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0025": [
{
"text" :"ただ好奇心か<br/>…きっと<br/>無知なだけ…",
"style":"font-size: 14px;color: #623E1E;background-color: #F7F178;left: 208px;top: 23px;width: 96px; height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"奴らは差別<br/>主義者よ!!!",
"style":"font-size: 35px;color: #0B060C;background-color: #C3559B;left: 386px;top: 259px;width: 200px; height: 89px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;font-weight: bold;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0026": [
{
"text" :"うぐぅ!!あんな奴ら<br/><span><span style=\"font-weight: bold;\">好きだった</span>なんて</span>信じられない!!",
"style":"font-size: 14px;color: #592A6B;background-color: #DEBAD6;left: 43px;top: 26px;width: 151px; height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"これ超<br/><span style=\"font-weight: bold;font-size: 30px;\">嫌な気分</span>",
"style":"font-size: 14px;color: #592A6B;background-color: #DEBAD6;left: 522px;top: 61px;width: 129px; height: 99px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0027": [
{
"text" :"フラニーは<br/>間違ってる!!!",
"style":"font-size: 12px;color: #5B3221;background-color: #FFF45E;left: 180px;top: 63px;width: 69px; height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ただ皆<br/>学びたい<br/>だけよ!!",
"style":"font-size: 14px;color: #5B3221;background-color: #FFF45E;left: 216px;top: 392px;width: 74px; height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"バカな人間も<br/>いるけど<br/>全員がそうじゃ<br/>ないわ!!",
"style":"font-size: 14px;color: #5B3221;background-color: #FFF45E;left: 450px;top: 34px;width: 162px; height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0028": [
{
"text" :"やぁジョージ<br/>大丈夫?<br/>突然帰った<br/>からさ",
"style":"font-size: 14px;color: #1F140E;background-color: #EF8645;left: 242px;top: 343px;width: 129px; height: 83px;"
},
{
"text" :"大丈夫よ!<br/>フラニーが急用を<br/>思い出しただけ。<br/>家族のことで忙しいみたい",
"style":"font-size: 14px;color: #060000;background-color: #FFF45C;left: 579px;top: 77px;width: 201px; height: 83px;"
},
{
"text" :"家族のことで<br/>忙しいみたい",
"style":"font-size: 12px;color: #060000;background-color: #FFF45C;left: 555px;top: 315px;width: 94px; height: 30px;"
},
{
"text" :"OK<br/>後で一緒に<br/>遊びに行かない?<br/>映画でもどう?",
"style":"font-size: 12px;color: #1F140E;background-color: #EF8645;left: 500px;top: 358px;width: 106px; height: 119px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0029": [
{
"text" :"うん<br/>是非!",
"style":"font-size: 14px;color: #100E0C;background-color: #FEF55C;left: 183px;top: 181px;width: 58px; height: 58px;"
},
{
"text" :"いいね!リバー<br/>デールに7時は?",
"style":"font-size: 14px;color: #231810;background-color: #EF8647;left: 300px;top: 24px;width: 105px; height: 40px;"
},
{
"text" :"いいわよ!",
"style":"font-size: 14px;color: #100E0C;background-color: #FEF55C;left: 387px;top: 77px;width: 102px; height: 41px;"
},
{
"text" :"またね",
"style":"font-size: 14px;color: #231810;background-color: #EF8647;left: 298px;top: 132px;width: 109px; height: 24px;"
},
{
"text" :"楽しみ!",
"style":"font-size: 16px;color: #100E0C;background-color: #FEF55C;left: 696px;top: 209px;width: 83px; height: 26px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0030": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0031": [
{
"text" :"…で伝染ったら<br/>って聞いて<br/>きたのよ!",
"style":"font-size: 14px;color: #222B4C;background-color: #DBA8CC;left: 175px;top: 161px;width: 117px; height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何!!!",
"style":"font-size: 14px;color: #59141C;background-color: #EFA5B9;left: 397px;top: 233px;width: 45px; height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私達は<span style=\"font-weight: bold;\">病原菌</span>かっつーの!",
"style":"font-size: 14px;color: #222B4C;background-color: #DBA8CC;left: 487px;top: 177px;width: 141px; height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あいつら<br/>本当に<span style=\"font-weight: bold;\">嫌な奴</span>ね!!",
"style":"font-size: 14px;color: #222B4C;background-color: #DBA8CC;left: 662px;top: 394px;width: 124px; height: 52px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0032": [
{
"text" :"<span style=\"font-weight: bold;\">うぐぅ</span><br/>何でイケメンは皆<br/>差別主義の嫌な奴<br/>なのかしら!",
"style":"font-size: 13px;color: #060000;background-color: #B788BC;left: 33px;top: 38px;width: 112px; height: 69px;text-align: center;"
},
{
"text" :"少なくとも<br/>あいつらに二度と<br/>会わなくて<br/>いいじゃん!",
"style":"font-size: 14px;color: #090909;background-color: #ACDDF4;left: 231px;top: 17px;width: 127px; height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"奴ら最低<br/>君は最高!",
"style":"font-size: 14px;color: #090909;background-color: #ACDDF4;left: 337px;top: 117px;width: 85px; height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"奴ら<br/>クズね!",
"style":"font-size: 14px;color: #090909;background-color: #ACDDF4;left: 313px;top: 419px;width: 70px; height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あの人達<br/><span style=\"font-weight: bold;\">そこまで</span><br/>悪くないかと…",
"style":"font-size: 14px;color: #00000C;background-color: #FBF278;left: 662px;top: 20px;width: 114px; height: 71px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0033": [
{
"text" :"…えっと…",
"style":"font-size: 12px;color: #5A361B;background-color: #FEF482;left: 96px;top: 86px;width: 63px; height: 24px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0034": [
{
"text" :"ごめん!<br/>遅れた!",
"style":"font-size: 14px;color: #5F3822;background-color: #FCEE43;left: 24px;top: 45px;width: 66px; height: 50px;text-align: center;"
},
{
"text" :"大丈夫<br/>俺が少し<br/>早すぎた",
"style":"font-size: 14px;color: #753722;background-color: #F29035;left: 84px;top: 140px;width: 74px; height: 67px;text-align: center;"
},
{
"text" :"2枚<br/>頂戴",
"style":"font-size: 14px;color: #753722;background-color: #F29035;left: 320px;top: 26px;width: 52px; height: 38px;text-align: center;"
},
{
"text" :"その、<br/>自分が…",
"style":"font-size: 14px;color: #5F3822;background-color: #FCEE43;left: 292px;top: 160px;width: 58px; height: 37px;text-align: center;"
},
{
"text" :"あ…ありがと<br/>チケットと…<br/>ポップコーン…",
"style":"font-size: 14px;color: #5F3822;background-color: #FCEE43;left: 643px;top: 37px;width: 143px; height: 51px;text-align: center;"
},
{
"text" :"別に<br/>いいさ!",
"style":"font-size: 14px;color: #753722;background-color: #F29035;left: 602px;top: 233px;width: 62px; height: 35px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0035": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0036": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0037": [
{
"text" :"ジョージ!!",
"style":"font-size: 60px;color: #060606;background-color: #7059A2;left: 35px;top: 149px;font-weight: bold;transform: rotate(-30deg);"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0038": [
{
"text" :"ご…ごめん<br/>後で呼ぶわ!",
"style":"font-size: 14px;color: #5F3822;background-color: #9FBA71;left: 530px;top: 33px;width: 90px; height: 48px;text-align: center;"
},
{
"text" :"呼ばない<br/>っての!!!",
"style":"font-size: 14px;color: #111A30;background-color: #512F89;left: 654px;top: 95px;width: 63px; height: 34px;text-align: center;"
},
{
"text" :"ハハ…<br/>OK…",
"style":"font-size: 14px;color: #513023;background-color: #8D534B;left: 731px;top: 435px;width: 59px; height: 37px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0039": [
{
"text" :"何してるの、<br/>アイツは<br/><span style=\"font-weight: bold;font-size: 25px;\">差別主義者<br/>よ!</span>",
"style":"font-size: 14px;color: #302A4A;background-color: #AF91C3;left: 284px;top: 63px;width: 130px; height: 88px;text-align: center;"
},
{
"text" :"でも<br/>そんなに<br/>悪く…",
"style":"font-size: 14px;color: #553E20;background-color: #EEED91;left: 74px;top: 390px;width: 80px; height: 48px;text-align: center;"
},
{
"text" :"“そんなに悪くない??”<br/>モンスターのこと<br/>どう言ったか<span style=\"font-weight: bold;\">聞いた??</span>",
"style":"font-size: 14px;color: #302A4A;background-color: #AF91C3;left: 510px;top: 15px;width: 164px; height: 65px;text-align: center;"
},
{
"text" :"でも私<br/>彼が<span style=\"font-weight: bold;font-size: 25px;\">好き</span>",
"style":"font-size: 14px;color: #553E20;background-color: #EEED91;left: 668px;top: 285px;width: 106px; height: 56px;text-align: center;"
},
{
"text" :"やめな<br/>さい!",
"style":"font-size: 14px;color: #302A4A;background-color: #AF91C3;left: 652px;top: 421px;width: 72px; height: 33px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0040": [
{
"text" :"誰を好きに<br/><span style=\"font-weight: bold;\">なりたい</span>かは<br/>私の意思よ!",
"style":"font-size: 14px;color: #4D4423;background-color: #EEED91;left: 70px;top: 31px;width: 118px; height: 70px;text-align: center;"
},
{
"text" :"君の<br/>決めること<br/><span style=\"font-weight: bold;\">じゃない!</span>",
"style":"font-size: 14px;color: #4D4423;background-color: #EEED91;left: 103px;top: 396px;width: 128px; height: 68px;text-align: center;"
},
{
"text" :"…わかった",
"style":"font-size: 14px;color: #443360;background-color: #70519E;left: 586px;top: 57px;width: 71px; height: 26px;text-align: center;"
},
{
"text" :"でも<br/>帽子無しでも<br/>彼が君を好きか<br/>考えるべきよ",
"style":"font-size: 16px;color: #2A2741;background-color: #9F6FAD;left: 495px;top: 195px;width: 168px; height: 101px;text-align: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0041": [
{
"text" :"好きよ!!",
"style":"font-size: 30px;color: #645325;background-color: #F9F289;left: 76px;top: 41px;width: 129px; height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"…多分",
"style":"font-size: 16px;color: #2E344F;background-color: #5C6281;left: 380px;top: 46px;width: 69px; height: 24px;text-align: center;"
},
{
"text" :"正直に言うと<br/>私は人の心を<br/>読むのが苦手<br/>それで以前問題になったわ",
"style":"font-size: 14px;color: #221D18;background-color: #F7F28B;left: 544px;top: 23px;width: 171px; height: 82px;"
},
{
"text" :"#過去を考える",
"style":"font-size: 14px;color: #A8A78A;background-color: #F7F289;left: 672px;top: 454px;width: 121px; height: 36px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0042": [
{
"text" :"さっきはゴメンね",
"style":"font-size: 14px;color: #000000;background-color: #F7F289;left: 20px;top: 30px;width: 146px; height: 21px;"
},
{
"text" :"彼女は俺が好きじゃ<br/>なさそうだね?",
"style":"font-size: 14px;color: #201611;background-color: #F19055;left: 131px;top: 58px;width: 146px; height: 41px;"
},
{
"text" :"ゴメン:(",
"style":"font-size: 14px;color: #000000;background-color: #F7F289;left: 253px;top: 113px;width: 62px; height: 21px;"
},
{
"text" :"大丈夫",
"style":"font-size: 14px;color: #201611;background-color: #F19055;left: 313px;top: 144px;width: 58px; height: 20px;"
},
{
"text" :"それで…俺とは<br/>もう会いたくない<br/>ってこと?",
"style":"font-size: 14px;color: #201611;background-color: #F19055;left: 386px;top: 173px;width: 120px; height: 78px;"
},
{
"text" :"土曜日が<br/>空いてたらって<br/>思ってたけど",
"style":"font-size: 14px;color: #201611;background-color: #F19055;left: 496px;top: 239px;width: 149px; height: 63px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0043": [
{
"text" :"いえ大丈夫よ<br/>出かけましょ!",
"style":"font-size: 14px;color: #060009;background-color: #F7F28B;left: 247px;top: 12px;width: 131px; height: 38px;"
},
{
"text" :"何も問題ないわ<br/>土曜に会うの<br/>楽しみよ!!",
"style":"font-size: 14px;color: #060009;background-color: #F7F28B;left: 350px;top: 53px;width: 136px; height: 59px;"
},
{
"text" :"OK<br/>ハーモニー<br/>パークに<br/>3時は?",
"style":"font-size: 14px;color: #000000;background-color: #F19055;left: 553px;top: 70px;width: 93px; height: 80px;"
},
{
"text" :"うん!<br/>いいわね!<br/>またね!!",
"style":"font-size: 14px;color: #060009;background-color: #F7F28B;left: 651px;top: 157px;width: 95px; height: 57px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0044": [
{
"text" :"やぁ!",
"style":"font-size: 14px;color: #67311F;background-color: #F19055;left: 95px;top: 76px;width: 45px; height: 22px;"
},
{
"text" :"ハイ",
"style":"font-size: 12px;color: #5F5227;background-color: #FAF38A;left: 120px;top: 160px;width: 25px; height: 18px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0045": [
{
"text" :"彼が嫌な奴でも<br/>君が好きになるのは<br/>止められないわ。<br/>私はただ親友に<br/>幸せになって<br/>欲しかったの",
"style":"font-size: 16px;color: #000600;background-color: #E1C3DB;left: 451px;top: 93px;width: 158px; height: 145px;"
},
{
"text" :"私はいつも君の<br/>ためを思ってる。<br/>でも一言言うと<br/>関係を進める前に<br/>真実を言うべき<br/>だと思うわ",
"style":"font-size: 16px;color: #000600;background-color: #E1C3DB;left: 588px;top: 257px;width: 156px; height: 143px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0046": [
{
"text" :"ありがとフラニー<br/>愛してる♡",
"style":"font-size: 14px;color: #171510;background-color: #FFF571;left: 254px;top: 409px;width: 116px; height: 43px;"
},
{
"text" :"ねぇ話が<br/>あるんだけど",
"style":"font-size: 14px;color: #524322;background-color: #FEF670;left: 625px;top: 261px;width: 123px; height: 52px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そりゃいい<br/>僕もさ",
"style":"font-size: 14px;color: #6D3D25;background-color: #F1935B;left: 641px;top: 380px;width: 85px; height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0047": [
{
"text" :"私…",
"style":"font-size: 14px;color: #695625;background-color: #FFE574;left: 47px;top: 43px;width: 26px; height: 28px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"俺君が<br/>好きだ…",
"style":"font-size: 14px;color: #581316;background-color: #EB6A53;left: 80px;top: 46px;width: 56px; height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…それに<br/>期待してたんだ",
"style":"font-size: 14px;color: #581316;background-color: #EB6A53;left: 265px;top: 204px;width: 114px; height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…君が俺の<br/>彼女になって<br/>くれるかなって",
"style":"font-size: 14px;color: #581316;background-color: #EB6A53;left: 362px;top: 380px;width: 112px; height: 52px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0048": [
{
"text" :"ええっ<br/>わ…私も<br/>好きよ!!!",
"style":"font-size: 13px;color: #5C4E27;background-color: #F7EE6A;left: 52px;top: 29px;width: 85px; height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あの、その<span style=\"font-weight: bold;font-size: 25px;\">はい!</span>",
"style":"font-size: 14px;color: #5C4E27;background-color: #F7EE6A;left: 282px;top: 369px;width: 81px; height: 68px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも私<br/>言うことが…",
"style":"font-size: 14px;color: #5C4E27;background-color: #F7EE6A;left: 396px;top: 37px;width: 123px; height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"その…あぁ…",
"style":"font-size: 20px;color: #5C4E27;background-color: #F7EE6A;left: 605px;top: 419px;width: 130px; height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0049": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0050": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0051": [
{
"text" :"モ",
"style":"font-size: 18px;color: #511316;background-color: #EA5447;left: 29px;top: 29px;width: 35px; height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"モ",
"style":"font-size: 18px;color: #511316;background-color: #EA5447;left: 71px;top: 61px;width: 29px; height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"モ",
"style":"font-size: 18px;color: #511316;background-color: #EA5447;left: 45px;top: 122px;width: 31px; height: 30px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"モ",
"style":"font-size: 18px;color: #511316;background-color: #EA5447;left: 341px;top: 212px;width: 38px; height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"モンスター!!",
"style":"font-size: 45px;color: #511316;background-color: #EA5447;left: 385px;top: 30px;height: 100px;transform: rotate(-20deg);text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0052": [
{
"text" :"これが私の<br/>言おうとしたこと…<br/>私はモンスターなの…",
"style":"font-size: 14px;color: #775525;background-color: #FEF58D;left: 412px;top: 50px;width: 35px;width: 178px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも私はまだ<br/>君のことが好き<br/>でもどうして…",
"style":"font-size: 14px;color: #775525;background-color: #FEF58D;left: 454px;top: 130px;width: 161px; height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"俺に近寄るな<span style=\"font-weight: bold;font-size: 55px;\">モンスター</span>",
"style":"font-size: 25px;color: #775525;background-color: #EC6F3D;left: 480px;top: 208px;width: 293px; height: 199px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0053": [
{
"text" :"モンスターは全員<br/>嘘つきで人を騙し<br/>傷つける!!",
"style":"font-size: 14px;color: #70291D;background-color: #ED7636;left: 108px;top: 9px;width: 138px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君も<br/>違わない…",
"style":"font-size: 14px;color: #70291D;background-color: #ED7636;left: 431px;top: 39px;width: 99px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君は<br/>俺を<br/>騙した!!",
"style":"font-size: 14px;color: #70291D;background-color: #ED7636;left: 703px;top: 409px;width: 58px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0054": [
{
"text" :"私…",
"style":"font-size: 25px;color: #000906;background-color: #FFF140;left: 23px;top: 30px;width: 65px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"私…",
"style":"font-size: 25px;color: #000906;background-color: #FFF140;left: 109px;top: 72px;width: 64px;height: 34px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"私は何も<br/>言ってないでしょ<br/>クソ野郎!",
"style":"font-size: 24px;color: #000906;background-color: #FFF140;left: 206px;top: 337px;width: 227px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"うがあぁぁぁ",
"style":"font-size: 30px;color: #000906;background-color: #FFF140;left: 620px;top: 45px;font-weight: bold;transform: rotate(25deg);"
},
{
"text" :"Song Title:Wrong<br/><br/>Em C G D7 <br/><br/>you can have your opinions <br/>but i won't agree with them <br/>and it's fine if you think i'm wrong <br/>cuz being different isn't a sin <br/><br/>but i won't stand for your bullshit <br/>and you are sorely wrong <br/>if you think that i'll just take it <br/>i'm gonna take you on <br/><br/>on, on, on <br/><br/>Am D7 Em <br/>i'm not saying you're a bad person <br/>except you are <br/>i think it's time you learn your lesson <br/>now it starts <br/><br/>aah <br/>aah <br/><br/>Em C G D7 <br/><br/>you're afraid of my type <br/>and you just can't stand <br/>that i am right <br/>and your logic can't withstand <br/><br/>and, and, and <br/><br/>you are so miserable <br/>and sometimes i pity you <br/>til i realize you're able <br/>to change the things you do <br/><br/>but you don't <br/>and you won't <br/>you'll never pull through <br/><br/>you won't <br/>you don't <br/>you refuse <br/><br/>ah (improv) <br/><br/>Am D7 Em <br/>i'm not saying you're a bad person <br/>except you are <br/>so maybe i think you're a bad person <br/>because you are <br/><br/>aah <br/>aah <br/><br/>Em C G D7 <br/><br/>you can have your opinions <br/>but you're wrong <br/>wrong <br/>wrong <br/>wrong",
"style":"font-size: 16px;color: black;background-color: white;left: 0px;top: 600px;border:solid 1px;"
},
{
"text" :"曲名:間違ってる<br/><br/>Em C G D7 <br/><br/>君には君の意見がある<br/>でも私は納得できない<br/>私が間違ってると思うなら それでいい<br/>違うことは罪じゃない<br/><br/>でも私は君のクソ意見に賛成しない<br/>君は痛ましいほど間違ってる<br/>もし私が受け入れると思ってるなら<br/>逆に私が君に受け入れさせてやる<br/><br/>やる、やる、やる<br/><br/>Am D7 Em <br/>私は君が悪人だと言わない<br/>君がそんなんじゃなきゃね<br/>君は学ぶべき時だ<br/>今すぐね<br/><br/>あぁ<br/>あぁ<br/><br/>Em C G D7 <br/><br/>私みたいなタイプは怖いでしょ<br/>君はただ我慢ならないだけ<br/>私が正しいから<br/>君の屁理屈じゃ勝てないから<br/><br/>それに、それに、それに<br/><br/>君はとても惨めで<br/>少し同情したわ<br/>私が君のやり方は<br/>変えられるって気付くまではね<br/><br/>でも君はしない<br/>君はやらない<br/>君は決して乗り越えない<br/><br/>君はしない<br/>君はやらない<br/>君は拒否する<br/><br/>あぁ(即興)<br/><br/>Am D7 Em <br/>私は君が悪人だとは言わない<br/>君がそんなんじゃなきゃね<br/>だから多分私は君は悪人だと思う<br/>だって君だから<br/><br/>あぁ<br/>あぁ<br/><br/>Em C G D7 <br/><br/>君には君の意見がある<br/>でも君は間違ってる<br/>間違ってる<br/>間違ってる<br/>間違ってる",
"style":"font-size: 16px;color: black;background-color: white;left: 400px;top: 600px;border:solid 1px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0055": [
{
"text" :"フラニーが<br/>正しい!!",
"style":"font-size: 14px;color: #5B4526;background-color: #FCED50;left: 53px;top: 12px;width: 73px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君は偏見がある<br/>私は君には<br/>勿体無い!",
"style":"font-size: 14px;color: #5B4526;background-color: #FCED50;left: 242px;top: 22px;width: 102px;height: 68px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ふざけんな<br/>クソ野郎!!",
"style":"font-size: 12px;color: #5B4526;background-color: #FCED50;left: 646px;top: 122px;width: 62px;height: 54px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0056": [
{
"text" :"ね…ねぇ ヒック フ…",
"style":"font-size: 14px;color: #604B26;background-color: #FCED50;left: 40px;top: 23px;width: 161px;height: 43px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"ハイ G!<br/>大丈…",
"style":"font-size: 14px;color: #413665;background-color: #C2B0D5;left: 66px;top: 83px;width: 96px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ごめんね<br/>早く言うこと<br/>聞かなくて…",
"style":"font-size: 14px;color: #604B26;background-color: #FCED50;left: 160px;top: 132px;width: 102px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君が正しい。<br/>奴は偏見持ちの<br/>バカ野郎よ",
"style":"font-size: 14px;color: #604B26;background-color: #FCED50;left: 485px;top: 39px;width: 121px;height: 72px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そう…",
"style":"font-size: 14px;color: #413665;background-color: #C2B0D5;left: 500px;top: 127px;width: 65px;height: 25px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ごめんね<br/>ジョージ",
"style":"font-size: 14px;color: #413665;background-color: #C2B0D5;left: 584px;top: 151px;width: 74px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…大丈夫?",
"style":"font-size: 14px;color: #413665;background-color: #C2B0D5;left: 628px;top: 212px;width: 89px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0057": [
{
"text" :"う…うん<br/>そう思う",
"style":"font-size: 14px;color: #673E20;background-color: #FDEE5A;left: 65px;top: 13px;width: 78px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"思い返せば<br/>嫌な奴だったし<br/>君は私を思って<br/>くれてた",
"style":"font-size: 14px;color: #673E20;background-color: #FDEE5A;left: 213px;top: 51px;width: 163px;height: 83px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ありがと<br/>F.<br/>愛してる",
"style":"font-size: 14px;color: #673E20;background-color: #FDEE5A;left: 335px;top: 167px;width: 66px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私も<br/>愛してる G.",
"style":"font-size: 14px;color: #572865;background-color: #B297C7;left: 346px;top: 249px;width: 87px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…アイス<br/>でもどう?<br/>おごるわよ",
"style":"font-size: 14px;color: #572865;background-color: #B297C7;left: 317px;top: 328px;width: 124px;height: 71px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん…<br/>すぐ<br/>行く…",
"style":"font-size: 14px;color: #673E20;background-color: #FDEE5A;left: 430px;top: 438px;width: 65px;height: 46px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0058": [
{
"text" :"それで、<br/>考えたの…",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 34px;top: 27px;width: 77px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"むむむ?",
"style":"font-size: 14px;color: #4C3B65;background-color: #B09ECB;left: 90px;top: 65px;width: 58px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ブログ持とう<br/>かなって<br/>君みたいに",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 70px;top: 102px;width: 133px;height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やっと?<br/>君の作った<br/>曲置くべきよ!!",
"style":"font-size: 14px;color: #4C3B65;background-color: #B09ECB;left: 265px;top: 22px;width: 114px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"多分<br/>置くわ…",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 324px;top: 122px;width: 76px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"へへ~",
"style":"font-size: 14px;color: #4C3B65;background-color: #B09ECB;left: 359px;top: 187px;width: 50px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ところで<br/>帽子返すわ。<br/>必要ないわ",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 437px;top: 10px;width: 138px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当?<br/>欲しければ<br/>あげるわよ",
"style":"font-size: 14px;color: #4C3B65;background-color: #B09ECB;left: 594px;top: 7px;width: 87px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いえ<br/>無い方が<br/>いいと思う",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 690px;top: 35px;width: 100px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"別人になれるのは<br/>楽しいかもって<br/>思ったけど 正直、<br/>私は私でいいわ",
"style":"font-size: 14px;color: #6D5328;background-color: #FAEF51;left: 628px;top: 376px;width: 151px;height: 102px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0059": [
{
"text" :"モンスター・ポップ!",
"style":"font-size: 18px;color: white;background-color: #FFEF63;left: 383px;top: 241px;text-shadow: 1px 2px 3px #000000;font-weight: bold;"
},
{
"text" :"私のウィンクと瞬きの区別付く人いるかな<br/>#サイクロプスの問題",
"style":"font-size: 10px;color: black;background-color: white;left: 393px;top: 287px;width: 196px;height: 27px;"
},
{
"text" :"やぁジョージさん、いつも面白いですね!!!<br/>どんな映画や色や動物が好きですか?",
"style":"font-size: 10px;color: black;background-color: #EFEFF0;left: 397px;top: 380px;width: 240px;height: 43px;"
},
{
"text" :"ありがとう!!",
"style":"font-size: 10px;color: black;background-color: white;left: 394px;top: 461px;width: 190px;height: 14px;"
},
{
"text" :"チャプター1完",
"style":"font-size: 20px;color: #D39E07;background-color: white;left: 602px;top: 443px;width: 161px;height: 27px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0060": [
{
"text" :"ハイ!私はマヤ・カーン!<br/>モンスターポップ!の作者です。<br/>1章の執筆に付き合って頂き<br/>ありがとう。<br/>楽しかったです!",
"style":"font-size: 14px;color: #87290C;background-color: #FCFCDF;left: 7px;top: 12px;width: 213px;height: 115px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ジョージのブログについて<br/>少し混乱があると思います、<br/>なので明言しておきます。<br/>1章終了時まで彼女は<br/>実際にはブログを作っていません",
"style":"font-size: 14px;color: #87290C;background-color: #FCFCDF;left: 44px;top: 154px;width: 248px;height: 135px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"1章のメインストーリー以前の<br/>ブログの場面は全て<br/>ベンと会った後です",
"style":"font-size: 14px;color: #87290C;background-color: #FCFCDF;left: 479px;top: 82px;width: 261px;height: 114px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"関連事項として<br/>\"cast\"ページのキャストや<br/>リンクページから実際の<br/>ブログを見つけられます!",
"style":"font-size: 14px;color: #87290C;background-color: #FCFCDF;left: 580px;top: 229px;width: 219px;height: 112px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私に付いて来て下さり<br/>ありがとうございます<br/>2章も楽しんで頂けると<br/>嬉しいです!",
"style":"font-size: 14px;color: #87290C;background-color: #FCFCDF;left: 542px;top: 375px;width: 220px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0061": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0062": [
{
"text" :"今日からユニティ大学が始まるわ!",
"style":"font-size: 14px;color: #2E2B1B;background-color: #F4EC55;left: 28px;top: 21px;width: 274px;height: 25px;"
},
{
"text" :"フラニーと私の最初の授業よ!",
"style":"font-size: 14px;color: #27231C;background-color: #FFE265;left: 551px;top: 454px;width: 226px;height: 24px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0063": [
{
"text" :"…モンスター史!",
"style":"font-size: 14px;color: #2E2B1B;background-color: #FFE265;left: 25px;top: 21px;width: 137px;height: 22px;"
},
{
"text" :"楽しみよ!",
"style":"font-size: 14px;color: #2E2B1B;background-color: #FFE265;left: 692px;top: 458px;width: 82px;height: 21px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0064": [
{
"text" :"…ジョージ!",
"style":"font-size: 14px;color: #741880;background-color: #C87BB0;left: 261px;top: 175px;width: 76px;height: 23px;"
},
{
"text" :"おはよ!<br/>席取り<br/>ありがと!",
"style":"font-size: 14px;color: #88632A;background-color: #FAEE5F;left: 519px;top: 32px;width: 80px;height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"当然よ!",
"style":"font-size: 14px;color: #741880;background-color: #C87BB0;left: 507px;top: 212px;width: 58px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0065": [
{
"text" :"最初の授業が<br/>同じで嬉しいわ!",
"style":"font-size: 14px;color: #322142;background-color: #B590BF;left: 93px;top: 19px;width: 128px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私も!<br/>興奮しちゃう!",
"style":"font-size: 14px;color: #4D3C1E;background-color: #FCF26F;left: 202px;top: 92px;width: 92x;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"聞いた?今夜<br/>新入生向けの<br/>懇親会があるって!",
"style":"font-size: 14px;color: #4D3C1E;background-color: #FCF26F;left: 326px;top: 96px;width: 158px;height: 72px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"楽しそうね!",
"style":"font-size: 14px;color: #322142;background-color: #B590BF;left: 532px;top: 160px;width: 82px;height: 49px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ええ!",
"style":"font-size: 14px;color: #4D3C1E;background-color: #FCF26F;left: 645px;top: 223px;width: 49px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0066": [
{
"text" :"ユニティ大学<br/>ユニコーンも<br/>いるって!",
"style":"font-size: 14px;color: #763E22;background-color: #FDF161;left: 26px;top: 33px;width: 127px;height: 69px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当??<br/>学校のシャツ<br/>着なきゃ!",
"style":"font-size: 14px;color: #211933;background-color: #9D77B2;left: 241px;top: 68px;width: 132px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"完璧ね!<br/>タイニィや<br/>皆にも<br/>話ましょ!",
"style":"font-size: 14px;color: #763E22;background-color: #FDF161;left: 436px;top: 50px;width: 103px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"すっごい<br/>盛り上がるわ!<br/>アハハ",
"style":"font-size: 14px;color: #763E22;background-color: #FDF161;left: 640px;top: 66px;width: 112px;height: 63px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0067": [
{
"text" :"お早う、皆さん!<br/>私はホリー・エバーグリーン<br/>今学期のモンスター史の講師です",
"style":"font-size: 14px;color: #4E132B;background-color: #EDA9CB;left: 17px;top: 24px;width: 230px;height: 92px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"講義を始める前に、<br/>出席をとります。<br/>では、<br/>アマシス、ジェーン…",
"style":"font-size: 14px;color: #4E132B;background-color: #EDA9CB;left: 114px;top: 120px;width: 148px;height: 92px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アィア エヴァ",
"style":"font-size: 10px;color: #4E132B;background-color: #943C6A;left: 600px;top: 198px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0068": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0069": [
{
"text" :"カーン<br/>マヤ",
"style":"font-size: 14px;color: #4E1933;background-color: #A02250;left: 187px;top: 171px;width: 49px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ラング…<br/>パーシー",
"style":"font-size: 14px;color: #4A1734;background-color: #E12C7A;left: 361px;top: 131px;width: 69px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"はい!",
"style":"font-size: 14px;color: #74292F;background-color: #EF92A5;left: 455px;top: 161px;width: 40px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"レイヌ、<br/>フランシス",
"style":"font-size: 14px;color: #4A1734;background-color: #E12C7A;left: 435px;top: 8px;width: 70px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"はい!",
"style":"font-size: 14px;color: #482D5F;background-color: #C39CC8;left: 572px;top: 21px;width: 40px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼って<span style=\"font-weight: bold;\">キュート</span><br/>じゃない?",
"style":"font-size: 14px;color: #6C4626;background-color: #FAF16E;left: 335px;top: 196px;width: 118px;height: 41px;text-align: center;"
},
{
"text" :"し…シッ!<br/>授業中よ!",
"style":"font-size: 13px;color: #482D5F;background-color: #C39CC8;left: 484px;top: 207px;width: 59px;height: 49px;text-align: center;"
},
{
"text" :"テンスリー、<br/>ジェネゼーブ",
"style":"font-size: 14px;color: #4A1734;background-color: #E12C7A;left: 590px;top: 195px;width: 107px;height: 48px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"はい!",
"style":"font-size: 14px;color: #6C4626;background-color: #FAF16E;left: 736px;top: 240px;width: 40px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0070": [
{
"text" :"以上。さてMH 101では<br/>先史時代の西暦0年から<br/>幅広い範囲をカバーします",
"style":"font-size: 14px;color: #5B363D;background-color: #D9A6C0;left: 24px;top: 25px;width: 218px;height: 84px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ですが、この場所の、<br/>近代のモンスター史上での<br/>興味深い出来事を<br/>誰か語れますか?",
"style":"font-size: 14px;color: #5B363D;background-color: #D9A6C0;left: 20px;top: 354px;width: 228px;height: 83px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…誰か?",
"style":"font-size: 14px;color: #5B363D;background-color: #D9A6C0;left: 287px;top: 19px;width: 75px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"新入生といえど、<br/>いつかは話す<br/>必要があります。",
"style":"font-size: 14px;color: #5B363D;background-color: #D9A6C0;left: 352px;top: 37px;width: 152px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ここは大学で<br/>君達は優秀な<br/>頭脳があるはず",
"style":"font-size: 14px;color: #5B363D;background-color: #D9A6C0;left: 388px;top: 118px;width: 103px;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"では…モンストラ市は<br/>合衆国史上初の<br/>モンスターと人間の<br/>合併都市ですね?",
"style":"font-size: 14px;color: #6D1B2C;background-color: #EA657C;left: 372px;top: 302px;width: 158px;height: 85px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"キャサリン・モンテンと<br/>マイケル・ストラテンが<br/>1913年に設立しました。",
"style":"font-size: 13px;color: #6D1B2C;background-color: #EA657C;left: 522px;top: 215px;width: 160px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0071": [
{
"text" :"彼女は<br/>モンスターだけの西の<br/>フランケンズタウン、<br/>彼は東のピープルポリス<br/>から来ました",
"style":"font-size: 13px;color: #530D13;background-color: #F2A0C4;left: 10px;top: 19px;width: 148px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"よくある<br/>ロミオとジュリエット、<br/>2人は恋に落ち…",
"style":"font-size: 13px;color: #530D13;background-color: #F2A0C4;left: 386px;top: 9px;width: 150px;height: 70px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"一緒になるため<br/>モンストラ市を<br/>設立しました",
"style":"font-size: 13px;color: #530D13;background-color: #F2A0C4;left: 547px;top: 7px;width: 166px;height: 68px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"後、彼らの子<br/>サンドラ、ウィリス、チャーリーが<br/>モンテン-ストラテンを<br/>モン-ストラと略し<br/>ユニティ大学を創設…",
"style":"font-size: 13px;color: #530D13;background-color: #F2A0C4;left: 64px;top: 245px;width: 225px;height: 90px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"史上初の統合<br/>高等教育施設と<br/>なりました",
"style":"font-size: 14px;color: #530D13;background-color: #F2A0C4;left: 304px;top: 255px;width: 118px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大変よろしい…<br/>パーシー、ですね?<br/>ですが本当に言うべきは<br/>最初の統合都市の点で…",
"style":"font-size: 14px;color: #50373C;background-color: #D1C0C6;left: 518px;top: 409px;width: 180px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0072": [
{
"text" :"ジョージ…",
"style":"font-size: 18px;color: #0C090D;background-color: #C99FC7;left: 38px;top: 267px;width: 111px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"ジョージ!!",
"style":"font-size: 45px;color: #0C090D;background-color: #C99FC7;left: 175px;top: 300px;width: 234px;height: 89px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"授業は<br/>終わりよ<br/>バカ",
"style":"font-size: 17px;color: #0C090D;background-color: #C99FC7;left: 696px;top: 424px;width: 75px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0073": [
{
"text" :"信じれない<br/>最初の授業で寝ちゃった!!!!",
"style":"font-size: 14px;color: #2B2A19;background-color: #FEF14C;left: 41px;top: 28px;width: 186px;height: 40px;tdisplay: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも良いニュースね<br/>フラニーが恋に落ちたって<br/>#一つ目でウィンクしてる<br/>#francantations",
"style":"font-size: 14px;color: #2B2A19;background-color: #FEF14C;left: 76px;top: 69px;width: 234px;height: 80px;tdisplay: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"違うってば 黙って!!<br/>#私にウィンクしないで<br/>#目に問題があるみたいよ<br/>#大きな単眼の問題ね ハハ<br/>#monstertonic",
"style":"font-size: 14px;color: #261E22;background-color: #BF8DBE;left: 482px;top: 28px;width: 290px;height: 98px;tdisplay: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>次は?",
"style":"font-size: 14px;color: #704B26;background-color: #FFF24F;left:41px;top: 166px;width: 69px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は文書館で<br/>初シフト、<br/>でも1時に休憩",
"style":"font-size: 14px;color: #441F47;background-color: #BF8DBE;left:49px;top: 232px;width: 138px;height: 83px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ランチ<br/>デート?",
"style":"font-size: 14px;color: #704B26;background-color: #FFF24F;left: 165px;top: 190px;width: 51px;height: 31px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"分かってる<br/>でしょ!!",
"style":"font-size: 12px;color: #441F47;background-color: #BF8DBE;left: 229px;top: 218px;width: 66px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"OK<br/>後でね!",
"style":"font-size: 14px;color: #704B26;background-color: #FFF24F;left: 467px;top: 145px;width: 77px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"良い<br/>シフトを!",
"style":"font-size: 14px;color: #704B26;background-color: #FFF24F;left: 563px;top: 138px;width: 77px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ありがと!<br/>また<br/>1時にね",
"style":"font-size: 14px;color: #441F47;background-color: #BF8DBE;left: 676px;top: 283px;width: 85px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0074": [
{
"text" :"道を歩くと<br/>足早な色んな顔とすれ違う<br/>キャンパスのどこかに<br/>遊びに行こうかな",
"style":"font-size: 14px;color: #1D1B15;background-color: #FFF781;left: 235px;top: 376px;width: 209px;height: 97px;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0075": [
{
"text" :"要約:図書館 今週はクッキー無料",
"style":"font-size: 14px;color: black;left: 14px;left: 15px;top: -5px;"
},
{
"text" :"クッキー無料の図書館!<br/>最高ね",
"style":"font-size: 14px;color: #1B1814;background-color: #FFF480;left: 303px;top: 31px;width: 190px;height: 38px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0076": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0077": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0078": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0079": [
{
"text" :"わぁ、<br/>ありがとう!",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 50px;top: 80px;width: 82px;height: 66px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;font-weight: bold;"
},
{
"text" :"大丈夫よ!",
"style":"font-size: 14px;color: #614023;background-color: #F6ED5D;left: 128px;top: 318px;width: 67px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"さぁ、<br/>手伝うわ!",
"style":"font-size: 14px;color: #614023;background-color: #F6ED5D;left: 133px;top: 363px;width: 86px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"う…うん",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 160px;top: 439px;width: 58px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>授業初日の<br/>図書館に<br/>何を?",
"style":"font-size: 14px;color: #614023;background-color: #F6ED5D;left: 345px;top: 33px;width: 124px;height: 84px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ここで働くの!<br/>W-9<sup>※</sup>を出したのよ",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 345px;top: 140px;width: 150px;height: 67px;text-align: center;"
},
{
"text" :"※W-9:アメリカの一般的な課税書",
"style":"font-size: 12px;color: black;left: 358px;top: 232px;"
},
{
"text" :"いいわね!",
"style":"font-size: 14px;color: #614023;background-color: #F6ED5D;left: 704px;top: 24px;width: 65px;height: 17px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あなたは?",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 685px;top: 58px;width: 80px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…私はただ<br/>クッキーを<br/>食べに",
"style":"font-size: 13px;color: #614023;background-color: #F6ED5D;left: 680px;top: 115px;width: 92px;height: 49px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アハハ",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 704px;top: 188px;width: 42px;height: 17px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで図書館に<br/>早めに来たの?",
"style":"font-size: 14px;color: #614023;background-color: #F6ED5D;left: 323px;top: 382px;width: 107px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうよ!<br/>私は寮生だから<br/>少し早めに<br/>越して来たの",
"style":"font-size: 14px;color: #166B83;background-color: #9BD6E6;left: 670px;top: 255px;width: 125px;height: 88px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0080": [
{
"text" :"ここ<br/>気に入ったわ",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 20px;top: 20px;width: 114px;height: 47px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"最初は少し<br/>戸惑ったわ。<br/>人間達と過ごしたこと<br/>なかったから。",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 51px;top: 123px;width: 159px;height: 104px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも<br/>本当に<br/>ここ<br/>好きよ",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 341px;top: 37px;width: 85px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私も!",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 401px;top: 139px;width: 83px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そう言えば!友達と<br/>ゴハン食べに<br/>行く気だけど。<br/>一緒にどう?",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 480px;top: 20px;width: 169px;height: 107px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいの?<br/>お邪魔じゃ<br/>ないかしら…",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 10px;top: 260px;width: 121px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいえ、ちっとも!",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 43px;top: 358px;width: 130px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それなら、<br/>ありがとう!",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 135px;top: 399px;width: 90px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいえ、ちっとも!",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 43px;top: 358px;width: 130px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…あっ 私バカね!<br/>名前聞いて<br/>なかった!",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 497px;top: 272px;width: 134px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私はマリナよ!",
"style":"font-size: 14px;color: #063E42;background-color: #C8FDF9;left: 643px;top: 348px;width: 113px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"はじめまして<br/>私ジョージ!",
"style":"font-size: 14px;color: #6A4B06;background-color: #FBFDA8;left: 575px;top: 400px;width: 160px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0081": [
{
"text" :"皆がいる!",
"style":"font-size: 14px;color: #523F01;background-color: #FCF1AE;left: 12px;top: 285px;width: 85px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ!<br/>静かに!",
"style":"font-size: 14px;color: #523F01;background-color: #FCF1AE;left: 335px;top: 288px;width: 98px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"う…うん",
"style":"font-size: 14px;color: #093D37;background-color: #CFFFF7;left: 629px;top: 419px;width: 59px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0082": [
{
"text" :"ジョージ!!!!!",
"style":"font-size: 14px;color: #50004A;background-color: #FDAFF1;left: 684px;top: 210px;width: 94px;height: 27px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ<br/>ジョージじゃないわ<br/>私は会ったこともない<br/>謎の見知らぬ人よ!!!",
"style":"font-size: 14px;color: #7D4B01;background-color: #FFE66B;left: 238px;top: 277px;width: 185px;height: 141px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ジョージ<br/>バレてる<br/>っての",
"style":"font-size: 14px;color: #50004A;background-color: #FDAFF1;left: 698px;top: 276px;width: 78px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ",
"style":"font-size: 14px;color: #7D4B01;background-color: #FFE66B;left: 701px;top: 423px;width: 74px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0083": [
{
"text" :"えっと…",
"style":"font-size: 14px;color: #156E5D;background-color: #C2FCF6;left: 13px;top: 12px;width: 64px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あっそうだ<br/>こちらはマリナ!<br/>図書館で会ったの",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 109px;top: 14px;width: 126px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当に<br/>図書館に<br/>行ったの??",
"style":"font-size: 14px;color: #000600;background-color: #FFC8FD;left: 235px;top: 72px;width: 114px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"お黙り<br/>私だってたまには<br/>図書館にも行くわよ",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 98px;top: 131px;width: 134px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"食物でも<br/>あったんでしょ",
"style":"font-size: 14px;color: #000600;background-color: #FFC8FD;left: 57px;top: 331px;width: 109px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 163px;top: 400px;width: 54px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"はぁ…",
"style":"font-size: 14px;color: #000600;background-color: #FFC8FD;left: 294px;top: 447px;width: 49px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"マリナ、皆は<br/>アミティ高校<br/>からの友達!",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 356px;top: 9px;width: 119px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フラニー",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 434px;top: 99px;width: 64px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ミシェル",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 550px;top: 50px;width: 81px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"デナ",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 658px;top: 40px;width: 48px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シドニー",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 693px;top: 61px;width: 61px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"マヤ",
"style":"font-size: 14px;color: #492301;background-color: #FDFAAA;left: 705px;top: 158px;width: 50px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私はタイニィ<br/>・ミナージ!",
"style":"font-size: 14px;color: #8B0928;background-color: #FFCDD8;left: 555px;top: 317px;width: 101px;height: 46px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0084": [
{
"text" :"とにかくさ、<br/>さっきの出来事<br/>聞いてよ!",
"style":"font-size: 14px;color: #360043;background-color: #F4C3FF;left: 24px;top: 31px;width: 124px;height: 117px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"廊下歩いて<br/>たらさ?",
"style":"font-size: 14px;color: #360043;background-color: #F4C3FF;left: 166px;top: 137px;width: 110px;height: 85px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"パーシーと<br/>会ったの!",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 349px;top: 58px;width: 73px;height: 63px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰?",
"style":"font-size: 14px;color: #7D3501;background-color: #FEFDC4;left: 430px;top: 128px;width: 55px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…今朝の<br/>モンスター史で<br/>隣に座った男よ",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 326px;top: 183px;width: 139px;height: 121px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ、忘れてた!<br/>ヘヘヘ",
"style":"font-size: 14px;color: #7D3501;background-color: #FEFDC4;left: 650px;top: 91px;width: 109px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハァ…",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 720px;top: 143px;width: 51px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"とにかく!!",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 661px;top: 207px;width: 88px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼のこと<br/>好きよね!",
"style":"font-size: 14px;color: #7D3501;background-color: #FEFDC4;left: 683px;top: 255px;width: 79px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"違うっつーの",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 664px;top: 304px;width: 122px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ヘヘヘ!",
"style":"font-size: 14px;color: #7D3501;background-color: #FEFDC4;left: 696px;top: 346px;width: 69px;height: 17px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"とにかく!!!!",
"style":"font-size: 14px;color: #990097;background-color: #F4C3FF;left: 651px;top: 411px;width: 100px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0085": [
{
"text" :"“エヴァ・アィア<br/>のデーモン:<br/>人間の内面の混乱<br/>及びその効果による<br/>現代社会における<br/>モンスターの記述”<br/>のコピー本を<br/>彼が持ってたの",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 20px;top: 15px;width: 152px;height: 216px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本の題名<br/>酷すぎる",
"style":"font-size: 14px;color: #A14D1D;background-color: #FDFED3;left: 289px;top: 44px;width: 113px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シッ<br/>もう!!",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 353px;top: 133px;width: 56px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"読んだ<br/>こと<br/>あるわ…",
"style":"font-size: 14px;color: #13A88B;background-color: #D3FEFA;left: 474px;top: 163px;width: 60px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"とにかく、<br/>私位しかその本<br/>読まないと<br/>思ってたのよ!",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 549px;top: 11px;width: 125px;height: 111px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"軽い<br/>読物じゃ<br/>ないから",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 700px;top: 8px;width: 68px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フラニー<br/>以外には<br/>そうね",
"style":"font-size: 13px;color: #A14D1D;background-color: #FDFED3;left: 728px;top: 120px;width: 57px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ジョージ!",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 716px;top: 197px;width: 74px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも彼が<br/>チャイコフ<br/>スキーの作品の<br/>大ファンって<br/>分かったの",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 14px;top: 250px;width: 110px;height: 116px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"普段から<br/>読書はよく<br/>するって",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 128px;top:390px;width: 83px;height: 85px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"へー…",
"style":"font-size: 14px;color: #13A88B;background-color: #D3FEFA;left: 270px;top: 400px;width: 56px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>私達<br/>考えて…",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 353px;top: 247px;width: 74px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"読書部を<br/>作ることに<br/>したの!",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 438px;top: 263px;width: 97px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君達も<br/>入りなさい!!",
"style":"font-size: 14px;color: #A319A0;background-color: #FDCAFE;left: 427px;top: 446px;width: 106px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"オタク<br/>臭いわね",
"style":"font-size: 14px;color: #A14D1D;background-color: #FDFED3;left: 624px;top: 264px;width: 119px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"オタク",
"style":"font-size: 14px;color: #A14D1D;background-color: #FDFED3;left: 716px;top: 343px;width: 49px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0086": [
{
"text" :"ヤバッ、<br/>休憩終わりだわ!<br/>急がないと!",
"style":"font-size: 14px;color: #A825A8;background-color: #EEC0FF;left: 60px;top: 45px;width: 119px;height: 123px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あらら…",
"style":"font-size: 14px;color: #894B09;background-color: #FFFCB4;left: 61px;top: 215px;width: 64px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ごめんね G",
"style":"font-size: 14px;color: #A825A8;background-color: #EEC0FF;left: 213px;top: 187px;width: 90px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"皆<br/>またね!",
"style":"font-size: 14px;color: #A825A8;background-color: #EEC0FF;left: 438px;top: 8px;width: 67px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"会えて<br/>よかったわ<br/>マリナ!",
"style":"font-size: 14px;color: #A825A8;background-color: #EEC0FF;left: 667px;top: 20px;width: 92px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん、<br/>私もよ!",
"style":"font-size: 14px;color: #0D7E73;background-color: #BBFFF8;left: 456px;top: 192px;width: 89px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"またね、<br/>オタク",
"style":"font-size: 14px;color: #894B09;background-color: #FFFCB4;left: 639px;top: 126px;width: 62px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼女完全に<br/>パーシーに<br/>惚れてる",
"style":"font-size: 14px;color: #894B09;background-color: #FFFCB4;left: 546px;top: 256px;width: 107px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私はそう<br/>睨んでる",
"style":"font-size: 14px;color: #894B09;background-color: #FFFCB4;left: 688px;top: 277px;width: 60px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼らの<br/>初子の命名権<br/>欲しいわね",
"style":"font-size: 14px;color: #894B09;background-color: #FFFCB4;left: 680px;top: 394px;width: 91px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0087": [
{
"text" :"違うっ<br/>てば!!",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 153px;top: 19px;width: 69px;height: 45px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"彼は可愛いって<br/>思っただけ!!",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 231px;top: 35px;width: 138px;height: 42px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"あんま話も<br/>してないし",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 182px;top: 88px;width: 108px;height: 40px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"あと私には<br/>彼の子なんて<br/>いない!!!!!!!!",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 258px;top: 141px;width: 103px;height: 62px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"笑い死にそう!",
"style":"font-size: 14px;color: #834501;background-color: #FFFEAA;left: 562px;top: 40px;width: 93px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"どうやって<br/>知ってるのよ",
"style":"font-size: 14px;color: #834501;background-color: #FFFEAA;left: 670px;top: 89px;width: 111px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"こっちのこと<br/>分かってる<br/>みたい",
"style":"font-size: 14px;color: #834501;background-color: #FFFEAA;left: 611px;top: 163px;width: 96px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それか<br/>超地獄耳ね",
"style":"font-size: 14px;color: #834501;background-color: #FFFEAA;left: 3px;top: 307px;width: 122px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は優秀な<br/>魔女だから<br/>当然よ!",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 307px;top: 265px;width: 123px;height: 60px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"<ruby><rb>小さな<rp>(</rp><rt>タイニィ</rt><rp>)</ruby>友達も<br/>電話してくれたし",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 364px;top: 325px;width: 115px;height: 52px;text-align: left;font-weight: bold;"
},
{
"text" :"文字通り<br/>全部<br/>丸聞こえよ",
"style":"font-size: 14px;color: #321F3B;background-color: #F8ACFB;left: 418px;top: 395px;width: 85px;height: 63px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"ハハ!",
"style":"font-size: 14px;color: #36858D;background-color: #BFFDF5;left: 724px;top: 265px;width: 50px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0088": [
{
"text" :"あっ、時間見て!<br/>筆読101に<br/>出なきゃ!",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 45px;top: 44px;width: 106px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それ<br/>私も",
"style":"font-size: 14px;color: #42A18D;background-color: #CBF3BB;left: 187px;top: 137px;width: 70px;height: 52px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私達<br/>行かな<br/>いと!!",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 205px;top: 245px;width: 64px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん<br/>…",
"style":"font-size: 14px;color: #42A18D;background-color: #CBF3BB;left: 142px;top: 402px;width: 46px;height: 34px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"皆<br/>またね!",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 306px;top: 20px;width: 66px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"皆今夜の<br/>懇親会<br/>来るわよね?",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 380px;top: 13px;width: 87px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"当然",
"style":"font-size: 14px;color: #872A7A;background-color: #FDD4EF;left: 487px;top: 48px;width: 40px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"見逃せ<br/>ないわ!",
"style":"font-size: 13px;color: #872A7A;background-color: #FDD4EF;left: 502px;top: 100px;width: 58px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"向こうで<br/>会おうね",
"style":"font-size: 12px;color: #872A7A;background-color: #FDD4EF;left: 525px;top: 151px;width: 52px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいわね!<br/>バイ 皆!",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 557px;top: 24px;width: 70px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"バイ…",
"style":"font-size: 12px;color: #42A18D;background-color: #CBF3BB;left: 675px;top: 22px;width: 36px;height: 16px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで…<br/>懇親会?",
"style":"font-size: 14px;color: #42A18D;background-color: #CBF3BB;left: 300px;top: 239px;width: 56px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!<br/>新入生<br/>向けのね!<br/>行く?",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 324px;top: 286px;width: 81px;height: 105px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"パーティは<br/>苦手<br/>だけど…",
"style":"font-size: 12px;color: #42A18D;background-color: #CBF3BB;left: 435px;top: 247px;width: 69px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"楽しそう!<br/>少し<br/>行くわ!",
"style":"font-size: 12px;color: #42A18D;background-color: #CBF3BB;left: 509px;top: 257px;width: 70px;height: 100px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ええ!<br/>ぜひとも!",
"style":"font-size: 14px;color: #8A410B;background-color: #FFFABA;left: 564px;top: 369px;width: 67px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0089": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0090": [
{
"text" :"パーシー!",
"style":"font-size: 14px;color: #7E4A06;background-color: #FCFDB6;left: 33px;top: 92px;width: 92px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰??",
"style":"font-size: 14px;color: #178669;background-color: #CFFFF9;left: 172px;top: 182px;width: 63px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フラニーの<br/>未来の夫よ!",
"style":"font-size: 14px;color: #7E4A06;background-color: #FCFDB6;left: 201px;top: 312px;width: 133px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ",
"style":"font-size: 13px;color: #178669;background-color: #CFFFF9;left: 181px;top: 416px;width: 27px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ねぇ!",
"style":"font-size: 14px;color: #7E4A06;background-color: #FCFDB6;left: 412px;top: 29px;width: 54px;height: 27px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ねぇ、<br/>パーシー!",
"style":"font-size: 13px;color: #7E4A06;background-color: #FCFDB6;left: 498px;top: 41px;width: 63px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ねぇ<br/>パーシー<br/>ちょっと!",
"style":"font-size: 16px;color: #7E4A06;background-color: #FCFDB6;left: 495px;top: 250px;width: 100px;height: 63px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0091": [
{
"text" :"えと…<br/>やぁ?",
"style":"font-size: 13px;color: #94001C;background-color: #FFAEB5;left: 32px;top: 25px;width: 44px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰<br/>だっけ?",
"style":"font-size: 13px;color: #94001C;background-color: #FFAEB5;left: 75px;top: 58px;width: 47px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"パーシー<br/>隣に座った<br/>じゃない!",
"style":"font-size: 15px;color: #B85102;background-color: #FCF4A0;left: 33px;top: 260px;width: 78px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ…<br/>OK",
"style":"font-size: 14px;color: #94001C;background-color: #FFAEB5;left: 84px;top: 360px;width: 52px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"えぇ!<br/>そうよ!",
"style":"font-size: 15px;color: #B85102;background-color: #FCF4A0;left: 345px;top: 25px;width: 65px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"席を<br/>取っといて<br/>あげる!",
"style":"font-size: 14px;color: #B85102;background-color: #FCF4A0;left: 553px;top: 148px;width: 81px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"と…とにかく<br/>ご理解<br/>感謝します",
"style":"font-size: 14px;color: #A4192E;background-color: #FF6E82;left: 602px;top: 265px;width: 100px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"問題<br/>ないわ!",
"style":"font-size: 14px;color: #A4192E;background-color: #FF6E82;left: 558px;top: 341px;width: 59px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0092": [
{
"text" :"ねぇ ねぇ<br/>ここよ!",
"style":"font-size: 14px;color: #6F4510;background-color: #FFF159;left: 54px;top: 33px;width: 67px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁうんOK<br/>ありがと…",
"style":"font-size: 14px;color: #981223;background-color: #FF798E;left: 168px;top: 112px;width: 77px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>先生と何を<br/>話してたの?",
"style":"font-size: 14px;color: #6F4510;background-color: #FFF159;left: 484px;top: 7px;width: 100px;height: 94px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"えっと…<br/>何でもない<br/>授業の事さ",
"style":"font-size: 14px;color: #981223;background-color: #FF798E;left: 586px;top: 291px;width: 74px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"授業始まって<br/>ないじゃん!<br/>先を見越したの",
"style":"font-size: 14px;color: #6F4510;background-color: #FFF159;left: 667px;top: 339px;width: 119px;height: 94px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうじゃ<br/>ないけど…",
"style":"font-size: 14px;color: #981223;background-color: #FF798E;left: 638px;top: 449px;width: 71px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0093": [
{
"text" :"と…ところで<br/>君の名は<br/>何だっけ…?",
"style":"font-size: 14px;color: #950C21;background-color: #FF7593;left: 13px;top: 27px;width: 107px;height: 54px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は<br/>ジョージ!",
"style":"font-size: 13px;color: #965A12;background-color: #F8EE62;left: 150px;top: 50px;width: 57px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"今朝は<br/>聞き取れ<br/>なくてさ…",
"style":"font-size: 14px;color: #950C21;background-color: #FF7593;left: 33px;top: 90px;width: 112px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"その友達とは<br/>初対面かな…",
"style":"font-size: 14px;color: #950C21;background-color: #FF7593;left: 179px;top: 92px;width: 98px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"その…<br/>初め<br/>まして!",
"style":"font-size: 14px;color: #950C21;background-color: #FF7593;left: 448px;top: 146px;width: 53px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あ!そうね!<br/>パーシー<br/>こちらはマリナ。<br/>マリナ、この人は<br/>パーシー!",
"style":"font-size: 13px;color: #965A12;background-color: #F8EE62;left: 483px;top: 30px;width: 115px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"こちら<br/>こそ!",
"style":"font-size: 12px;color: #004B36;background-color: #7ECDB7;left: 610px;top: 188px;width: 40px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0094": [
{
"text" :"ところで<br/>新入生向けの<br/>懇親会が<br/>今夜あるの<br/>聞いてる?",
"style":"font-size: 14px;color: #FA1432;background-color: #FEAFB6;left: 159px;top: 7px;width: 109px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #AF5316;background-color: #FAFB7B;left: 103px;top: 173px;width: 43px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"行く?",
"style":"font-size: 14px;color: #F91A33;background-color: #FFC3CB;left: 72px;top: 220px;width: 78px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #AF5316;background-color: #FAFB7B;left: 131px;top: 266px;width: 43px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>その…",
"style":"font-size: 14px;color: #F91A33;background-color: #FFC3CB;left: 446px;top: 54px;width: 45px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君の友達の<br/>フラニー?<br/>彼女来る?",
"style":"font-size: 14px;color: #F80027;background-color: #FEAFB8;left: 400px;top: 132px;width: 111px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"どうかな",
"style":"font-size: 14px;color: #F62943;background-color: #EC8C9A;left: 449px;top: 232px;width: 71px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"来るわよ<span style=\"font-weight: bold;\">絶対ね</span>",
"style":"font-size: 14px;color: #AF5316;background-color: #FAFB7B;left: 670px;top: 28px;width: 117px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"へへへへへ",
"style":"font-size: 14px;color: #AF5316;background-color: #FAFB7B;left: 684px;top: 256px;width: 84px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼は完全に<br/>君のこと<br/>好きね",
"style":"font-size: 14px;color: #181B11;background-color: #FAFB7B;left: 28px;top: 325px;width: 88px;height: 57px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"何!!!<br/>誰よ",
"style":"font-size: 14px;color: #40263F;background-color: #FA7BF7;left: 71px;top: 390px;width: 57px;height: 37px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"パーシーよ<br/>当然!!!",
"style":"font-size: 14px;color: #181B11;background-color: #FAFB7B;left: 120px;top: 429px;width: 84px;height: 34px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"そ…そう<br/>よかった",
"style":"font-size: 14px;color: #F62943;background-color: #EC8C9A;left: 132px;top: 325px;width: 58px;height: 52px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"授業<br/>始ま<br/>るね…",
"style":"font-size: 12px;color: #F62943;background-color: #EC8C9A;left: 170px;top: 370px;width: 45px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何変なこと<br/>言い出すの??",
"style":"font-size: 14px;color: #40263F;background-color: #FA7BF7;left: 355px;top: 323px;width: 108px;height: 73px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"いや彼が<br/>君が懇親会<br/>行くか<br/>聞くからさ",
"style":"font-size: 14px;color: #181B11;background-color: #FAFB7B;left: 587px;top: 325px;width: 96px;height: 78px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
{
"text" :"今晩彼と<br/>つきあわせたげる",
"style":"font-size: 14px;color: #181B11;background-color: #FAFB7B;left: 650px;top: 425px;width: 113px;height: 37px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;font-weight: bold;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0095": [
{
"text" :"今晩ユニティ大学の<br/>新入生の懇親会に行くわ!!<br/>私達超セクシー<span style=\";color: #CDC570\">#今こそ学校のシャツを<br/>見せつける時よ<br/>#今現在の自撮り</span>",
"style":"font-size: 14px;color: #3E3D22;background-color: #FCF276;left: 574px;top: 358px;width: 205px;height: 124px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0096": [
{
"text" :"パステル<br/>マジックの時間",
"style":"font-size: 14px;color: #FF1353;background-color: #FFFFEF;left: -10px;top: 35px;width: 165px;height: 31px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;transform: rotate(-10deg);"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0097": [
{
"text" :"パーティの<br/>準備は万全よ!!!!",
"style":"font-size: 14px;color: #3E3D22;background-color: #FCF276;left: 24px;top: 23px;width: 128px;height: 42px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0098": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0099": [
{
"text" :"へへへ",
"style":"font-size: 14px;color: #673F06;background-color: #E2E35A;left: 267px;top: 84px;width: 58px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"バァ!!",
"style":"font-size: 16px;color: black;left: 315px;top: 175px;transform: rotate(-20deg);text-shadow:#E2E55B 1px 1px 0, #E2E55B -1px -1px 0,#E2E55B -1px 1px 0, #E2E55B 1px -1px 0,#E2E55B 0px 1px 0, #E2E55B 0 -1px 0,#E2E55B -1px 0 0, #E2E55B 1px 0 0;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0100": [
{
"text" :"ごめんなさい<br/>あぁ 驚かす気<br/>だったのね",
"style":"font-size: 14px;color: #0E7286;background-color: #74FBFE;left: 667px;top: 202px;width: 105px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ<br/>シッ 大丈夫<br/>可愛い子たち<br/>大丈夫よ",
"style":"font-size: 14px;color: #0E7286;background-color: #74FBFE;left: 28px;top: 337px;width: 107px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"しまった<br/>予想外よ<br/>ごめんなさい",
"style":"font-size: 14px;color: #834D01;background-color: #E7FA81;left: 77px;top: 436px;width: 97px;height: 54px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ",
"style":"font-size: 14px;color: #0E7286;background-color: #74FBFE;left: 310px;top: 364px;width: 49px;height: 17px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"シーッ<br/>大丈夫…",
"style":"font-size: 14px;color: #0E7286;background-color: #74FBFE;left: 321px;top: 443px;width: 62px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"落ちつ<br/>いて…",
"style":"font-size: 12px;color: #0E7286;background-color: #74FBFE;left: 728px;top: 421px;width: 39px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0101": [
{
"text" :"ふぅ<br/>落ち着いた!",
"style":"font-size: 14px;color: #00747A;background-color: #9FFDF2;left: 52px;top: 24px;width: 99px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ごめん<br/>なさいね!",
"style":"font-size: 14px;color: #00747A;background-color: #9FFDF2;left: 221px;top: 35px;width: 82px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"この子達<br/>驚くのは<br/>好きじゃ<br/>ないの",
"style":"font-size: 14px;color: #00747A;background-color: #9FFDF2;left: 282px;top: 99px;width: 73px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"完全に<br/>私のせいよ<br/>ごめんね!",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 428px;top: 25px;width: 87px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"考えなしの<br/>私は大バカね!",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 383px;top: 144px;width: 103px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それにしても<br/>あなた<br/>超可愛い<br/>わね!",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 687px;top: 29px;width: 87px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"わぁ",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 722px;top: 155px;width: 47px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"超可愛い…",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 687px;top: 200px;width: 76px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フラニー<br/>マリナの<br/>可愛さを見…",
"style":"font-size: 14px;color: #793B01;background-color: #F6FD72;left: 487px;top: 286px;width: 92px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0102": [
{
"text" :"…て…",
"style":"font-size: 14px;color: #793B01;background-color: #FCFECC;left: 23px;top: 19px;width: 81px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕は寮生<br/>なんだ",
"style":"font-size: 14px;color: #A51629;background-color: #FFA8C6;left: 105px;top: 65px;width: 84px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ピープルポリスに<br/>家族は住んでて、<br/>通学には<br/>少し遠くて!",
"style":"font-size: 14px;color: #A51629;background-color: #FFA8C6;left: 426px;top: 28px;width: 117px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0103": [
{
"text" :"心配ないよ<br/>僕はモンスター<br/>嫌いでも<br/>何でもない!",
"style":"font-size: 14px;color: #9E002A;background-color: #FFB6C4;left: 10px;top: 13px;width: 107px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"モンスター達は好きさ!<br/>僕の祖父が<br/>アメリカに来て<br/>最初に仕事を見つけた<br/>場所ってだけさ",
"style":"font-size: 14px;color: #9E002A;background-color: #FFB6C4;left: 27px;top: 110px;width: 163px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ホッと<br/>したわ!",
"style":"font-size: 14px;color: #8C2999;background-color: #F6B6FE;left: 418px;top: 16px;width: 85px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"この前私達が<br/>好きだった<br/>人がモンスター<br/>嫌いのクソ<br/>だったから!",
"style":"font-size: 14px;color: #8C2999;background-color: #F6B6FE;left: 675px;top: 65px;width: 110px;height: 136px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…\"好き<br/>だった\"?",
"style":"font-size: 14px;color: #9E002A;background-color: #FFB6C4;left: 432px;top: 335px;width: 79px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0104": [
{
"text" :"この前私達が<br/>仲良くなった人がね、<br/>クソ野郎だったの!",
"style":"font-size: 14px;color: #6F007A;background-color: #EFB0FD;left: 25px;top: 25px;width: 169px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…でも君は<br/>素敵よ",
"style":"font-size: 14px;color: #6F007A;background-color: #EFB0FD;left: 365px;top: 30px;width: 84px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私嬉しい",
"style":"font-size: 14px;color: #6F007A;background-color: #EFB0FD;left: 415px;top: 117px;width: 72px;height: 29px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0105": [
{
"text" :"ねぇマリナ<br/>あなた<br/>寮生よね?",
"style":"font-size: 14px;color: #694601;background-color: #FCFFB1;left: 40px;top: 10px;width: 119px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 200px;top: 82px;width: 36px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それじゃ<br/>どこから<br/>来たの?",
"style":"font-size: 14px;color: #694601;background-color: #FCFFB1;left: 248px;top: 150px;width: 76px;height: 65px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フランケンズタウンよ!<br/>正直言うと、<br/>引っ越しは不安だったの<br/>人間達と暮らしたこと<br/>なかったから、<br/>でも皆いい人だった!",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 425px;top: 20px;width: 159px;height: 194px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"待って<br/>それじゃ周りに<br/>人間いなかった??<br/>今まで???",
"style":"font-size: 14px;color: #694601;background-color: #FCFFB1;left: 16px;top: 255px;width: 130px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いえ!",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 185px;top: 258px;width: 47px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ネット上ではね、<br/>直接はないわ",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 245px;top: 275px;width: 117px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"実際、2人の<br/>ルームメイトは<br/>人間だけど、まだ<br/>慣れないわね!",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 295px;top: 360px;width: 131px;height: 112px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ユニティは<br/>今の所大好きよ!<br/>皆本当に<br/>親切だもの",
"style":"font-size: 14px;color: #067C7E;background-color: #9FFFFF;left: 438px;top: 286px;width: 127px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0106": [
{
"text" :"うん<br/>そうね!",
"style":"font-size: 14px;color: #763E09;background-color: #FBF8B2;left: 265px;top: 15px;width: 72px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"子供の頃から<br/>ここに来たかったけど<br/>期待通り住めて<br/>嬉しいわ!",
"style":"font-size: 14px;color: #1B5A5C;background-color: #94E5C4;left: 347px;top: 30px;width: 183px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハイ<br/>パーシー!",
"style":"font-size: 12px;color: #27404D;background-color: #95D9E6;left: 192px;top: 286px;width: 54px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やぁ!",
"style":"font-size: 14px;color: #860B17;background-color: #FF9EAC;left: 580px;top: 276px;width: 66px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいパーティ<br/>だね?",
"style":"font-size: 14px;color: #860B17;background-color: #FF9EAC;left: 592px;top: 304px;width: 93px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"えぇ!",
"style":"font-size: 14px;color: #27404D;background-color: #95D9E6;left: 573px;top: 345px;width: 43px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"友達?",
"style":"font-size: 14px;color: #860B17;background-color: #FF9EAC;left: 705px;top: 277px;width: 74px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アレックス<br/>彼氏よ",
"style":"font-size: 14px;color: #27404D;background-color: #95D9E6;left: 699px;top: 323px;width: 93px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいね",
"style":"font-size: 14px;color: #860B17;background-color: #FF9EAC;left: 732px;top: 373px;width: 45px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"はじめ<br/>まして!",
"style":"font-size: 14px;color: #914029;background-color: #FCCFB2;left: 710px;top: 450px;width: 73px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0107": [
{
"text" :"じゃ<br/>食物<br/>見てくる!",
"style":"font-size: 14px;color: #27404D;background-color: #DCF1F8;left: 5px;top: 15px;width: 98px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいね!<br/>それじゃ!",
"style":"font-size: 13px;color: #983F4D;background-color: #FDABB9;left: 110px;top: 75px;width: 59px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"またね!",
"style":"font-size: 14px;color: #27404D;background-color: #DCF1F8;left: 75px;top: 150px;width: 50px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰?",
"style":"font-size: 14px;color: #590660;background-color: #F2A7FB;left: 135px;top: 365px;width: 76px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ただの<br/>ルームメイト",
"style":"font-size: 14px;color: #983F4D;background-color: #FDABB9;left: 125px;top: 450px;width: 87px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ユニティに<br/>共同寮があるの<br/>知らなかった!",
"style":"font-size: 14px;color: #7D4D10;background-color: #FBF8A8;left: 360px;top: 10px;width: 106px;height: 73px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁいゃ<br/>あるさ…",
"style":"font-size: 14px;color: #983F4D;background-color: #FDABB9;left: 710px;top: 30px;width: 68px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0108": [
{
"text" :"ところで<br/>ユニティ<br/>ユニコーン<br/>もう見た?",
"style":"font-size: 14px;color: #87121E;background-color: #FF8B9E;left: 10px;top: 10px;width: 113px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!!<br/>友達の半分は<br/>それ着てるわよ!",
"style":"font-size: 14px;color: #753301;background-color: #FFFAA8;left: 130px;top: 45px;width: 129px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"へぇ!!<br/>そりゃ<br/>いいね",
"style":"font-size: 14px;color: #87121E;background-color: #FF8B9E;left: 285px;top: 65px;width: 49px;height: 63px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私達はすごく<br/>繋がってるのよ",
"style":"font-size: 14px;color: #753301;background-color: #FFFAA8;left: 622px;top: 38px;width: 127px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"実際はまだ見てない、<br/>皆はただの見習いよ。<br/>本当のマスコットは<br/>2つ上の上級生で…",
"style":"font-size: 14px;color: #530066;background-color: #E9A6FF;left: 630px;top: 120px;width: 146px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0109": [
{
"text" :"あら!<br/>パー<br/>シー!",
"style":"font-size: 14px;color: #C35D07;background-color: #FFFFE4;left: 130px;top: 55px;width: 46px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やぁ!",
"style":"font-size: 14px;color: #D30018;background-color: #FDD3D9;left: 345px;top: 10px;width: 65px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"授業<br/>行くとこ?",
"style":"font-size: 14px;color: #C35D07;background-color: #FFFFE4;left: 430px;top: 30px;width: 76px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん<br/>創作文",
"style":"font-size: 14px;color: #D30018;background-color: #FDD3D9;left: 553px;top: 40px;width: 64px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"わぁ<br/>私も",
"style":"font-size: 14px;color: #C86E18;background-color: #FFF59B;left: 630px;top: 305px;width: 58px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいね",
"style":"font-size: 13px;color: #D30018;background-color: #FDD3D9;left: 680px;top: 370px;width: 40px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0110": [
{
"text" :"ところで…<br/>聞きたいけど…",
"style":"font-size: 14px;color: #C02C3F;background-color: #FB8E9D;left: 50px;top: 25px;width: 116px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君とフラニーは<br/>親密そうだね…",
"style":"font-size: 13px;color: #C02C3F;background-color: #FB8E9D;left: 107px;top: 98px;width: 96px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"すっごい<br/>仲良しよ!",
"style":"font-size: 14px;color: #A05512;background-color: #FAFFA4;left: 270px;top: 33px;width: 83px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"幼稚園からの<br/>幼馴染だよ!",
"style":"font-size: 14px;color: #A05512;background-color: #FAFFA4;left: 525px;top: 50px;width: 125px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君達<br/>2人って…",
"style":"font-size: 14px;color: #C02C3F;background-color: #FB8E9D;left: 85px;top: 305px;width: 77px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…付き合ってる?",
"style":"font-size: 12px;color: #C02C3F;background-color: #FB8E9D;left: 450px;top: 360px;width: 100px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0111": [
{
"text" :"そんなこと<br/>ないわ!",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 182px;top: 10px;width: 89px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大親友だけど<br/>ロマンチックな<br/>関係はないわ!",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 215px;top: 82px;width: 110px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"中学の時<br/>1回キスは<br/>したけど",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 200px;top: 190px;width: 119px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ただの友達。<br/>本当の本当に<br/>仲良しの友達よ!",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 92px;top: 255px;width: 110px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうか…<br/>OK いいね!<br/>それはいい…",
"style":"font-size: 14px;color: #9B0611;background-color: #FDD3D7;left: 370px;top: 30px;width: 89px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで…<br/>彼女は<br/>誰かと<br/>交際中?",
"style":"font-size: 14px;color: #9B0611;background-color: #FDD3D7;left: 495px;top: 50px;width: 63px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰も!<br/>ヘヘヘ",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 626px;top: 125px;width: 55px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"立候補<br/>しなよ!",
"style":"font-size: 14px;color: #AA5418;background-color: #FAFCA7;left: 690px;top: 183px;width: 51px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いや…",
"style":"font-size: 14px;color: #9B0611;background-color: #FDD3D7;left: 660px;top: 234px;width: 69px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そんな気<br/>ないのよね~",
"style":"font-size: 13px;color: #AA5418;background-color: #FAFCA7;left: 694px;top: 275px;width: 80px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0112": [
{
"text" :"ところで<br/>彼女の電話番号<br/>いる?",
"style":"font-size: 13px;color: #AA5418;background-color: #FAFCA7;left: 82px;top: 23px;width: 105px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0113": [
{
"text" :"だ…<br/>大丈夫…?",
"style":"font-size: 14px;color: #883501;background-color: #FDFDA2;left: 125px;top: 25px;width: 76px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"う…うん<br/>つまづいた<br/>だけ",
"style":"font-size: 14px;color: #A01123;background-color: #FFA1AD;left: 330px;top: 255px;width: 83px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"心臓<br/>が…",
"style":"font-size: 12px;color: #A01123;background-color: #FFA1AD;left: 392px;top: 338px;width: 38px;height: 34px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"と…とにかく<br/>便利そうだね<br/>…勉強には。<br/>もらえるかい…",
"style":"font-size: 14px;color: #A01123;background-color: #FFA1AD;left: 622px;top: 55px;width: 141px;height: 93px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"う…<br/>うん",
"style":"font-size: 14px;color: #883501;background-color: #FDFDA2;left: 680px;top: 290px;width: 55px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0114": [
{
"text" :"とにかく<br/>彼女の番号は…",
"style":"font-size: 14px;color: #6D22061;background-color: #FEFF98;left: 70px;top: 44px;width: 110px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"わかった<br/>ありがと",
"style":"font-size: 13px;color: #770014;background-color: #FF98A6;left: 202px;top: 175px;width: 55px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"見て!<br/>マリナよ!",
"style":"font-size: 14px;color: #6D22061;background-color: #FEFF98;left: 355px;top: 44px;width: 84px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ねぇ<br/>マリナ!",
"style":"font-size: 14px;color: #6D22061;background-color: #FEFF98;left: 525px;top: 112px;width: 84px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"隣に<br/>座って<br/>いい?",
"style":"font-size: 14px;color: #6D22061;background-color: #FEFF98;left: 133px;top: 250px;width: 64px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"少し先生と<br/>話して<br/>くるよ…",
"style":"font-size: 14px;color: #770014;background-color: #FF98A6;left: 90px;top: 395px;width: 91px;height: 72px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいわよ!<br/>大歓迎よ!",
"style":"font-size: 14px;color: #48AF9E;background-color: #B6FFF1;left: 512px;top: 330px;width: 86px;height: 43px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0115": [
{
"text" :"パーシーは?<br/>一緒じゃ<br/>なかった?",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 17px;top: 20px;width: 123px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"先生と<br/>話して<br/>来るって!",
"style":"font-size: 14px;color: #AF580D;background-color: #F6FF95;left: 165px;top: 20px;width: 111px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"初日に?",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 348px;top: 20px;width: 74px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうよね!でも<br/>全部の授業で<br/>してるみたい!",
"style":"font-size: 14px;color: #AF580D;background-color: #F6FF95;left: 400px;top: 69px;width: 110px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それにしても<br/>君来るの<br/>早いわね!",
"style":"font-size: 14px;color: #AF580D;background-color: #F6FF95;left: 55px;top: 265px;width: 98px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うっかり<br/>20分早く<br/>来ちゃって",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 135px;top: 340px;width: 120px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"キャンパスに<br/>住んでる<br/>からでしょ!",
"style":"font-size: 13px;color: #AF580D;background-color: #F6FF95;left: 290px;top: 390px;width: 83px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それも<br/>あるけど<br/>この授業<br/>楽しみで!",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 390px;top: 322px;width: 128px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"オンライン<br/>レビュー見たけど<br/>この先生は<br/>高評価よ!",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 538px;top: 338px;width: 137px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それに<br/>創作文は<br/>楽しみよ!",
"style":"font-size: 14px;color: #095F70;background-color: #94FFFB;left: 708px;top: 382px;width: 83px;height: 98px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0116": [
{
"text" :"ゴホン!<br/>ようこそ創作文101へ!<br/>私が本講義の教授<br/>バートラム・ディーズ。<br/>バートラムでいい。<br/>もう高校じゃない、<br/>名前だけでいい",
"style":"font-size: 14px;color: #2E2A94;background-color: #8596FF;left: 10px;top: 15px;width: 167px;height: 151px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"点呼はしない、<br/>君達はとても多く<br/>名を覚える<br/>努力はするが、<br/>印象に残るよう<br/>努めてくれると<br/>私も助かる",
"style":"font-size: 14px;color: #2E2A94;background-color: #8596FF;left: 105px;top: 215px;width: 140px;height: 229px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"出席は授業の<br/>休憩時間中に<br/>私の席に表を置く。<br/>名前をサイン<br/>してくれ<br/>間違って他人の名を<br/>記入するなよ<br/>私は矛盾の発見は<br/>得意だ",
"style":"font-size: 13px;color: #2E2A94;background-color: #8596FF;left: 240px;top: 45px;width: 117px;height: 258px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"始まった<br/>みたい!",
"style":"font-size: 14px;color: #A34B07;background-color: #FBFEBA;left: 335px;top: 350px;width: 79px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"やぁ<br/>君達",
"style":"font-size: 14px;color: #A3203C;background-color: #FEB9C4;left: 563px;top: 8px;width: 42px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハイ…",
"style":"font-size: 14px;color: #A34B07;background-color: #FBFEBA;left: 545px;top: 62px;width: 42px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"この授業は<br/>オンラインと講義の<br/>両方で構成され、<br/>最終成績の30%は<br/>オンラインだ、<br/>学習サイトを<br/>よく理解すること",
"style":"font-size: 13px;color: #2E2A94;background-color: #8596FF;left: 448px;top: 135px;width: 146px;height: 170px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"授業の課題は<br/>高校を出た者には<br/>難しくない、<br/>持てる力で、<br/>毎週やり続ければ<br/>ついていける",
"style":"font-size: 13px;color: #2E2A94;background-color: #8596FF;left: 435px;top: 318px;width: 157px;height: 170px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0117": [
{
"text" :"さて創作文とは。<br/>授業で何をすると思う?<br/>定期的な演習と<br/>テーマ別の読書を通じ、<br/>創造的な視野を広げて<br/>くれれば幸いだ",
"style":"font-size: 14px;color: #19184B;background-color: #9E99E9;left: 270px;top: 22px;width: 177px;height: 148px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"授業<br/>初日よ",
"style":"font-size: 14px;color: #A03D16;background-color: #EEFBB2;left: 110px;top: 214px;width: 90px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"\"創造は難しい\"<br/>と言うだろう。<br/>だが創造的な<br/>思考を簡単に<br/>するのが<br/>私の仕事だ",
"style":"font-size: 14px;color: #19184B;background-color: #9E99E9;left: 15px;top: 350px;width: 111px;height: 132px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ノートに<br/>何か書くこと<br/>あるの?",
"style":"font-size: 14px;color: #A03D16;background-color: #EEFBB2;left: 285px;top: 392px;width: 97px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"学期の終わりには<br/>思考や感情を<br/>創造的な書き方で<br/>表現できるように<br/>なって欲しい",
"style":"font-size: 14px;color: #19184B;background-color: #9E99E9;left: 620px;top: 30px;width: 155px;height: 156px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"わぁ 私の新しい友達は<br/>超かわいい<span style=\"color: #8A8C7F;\">#ユニユニ</span>",
"style":"font-size: 14px;color: #000600;background-color: #EEFBB2;left: 418px;top: 415px;width: 152px;height: 58px;text-align: left;display: flex;flex-direction: column;align-items: left;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0118": [
{
"text" :"とっても<br/>上手ね!",
"style":"font-size: 14px;color: #A54B01;background-color: #F0FDAF;left: 5px;top: 350px;width: 90px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アニメ<br/>とかよね",
"style":"font-size: 14px;color: #A54B01;background-color: #F0FDAF;left: 192px;top: 434px;width: 115px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"かわ<br/>いい!",
"style":"font-size: 14px;color: #A54B01;background-color: #F0FDAF;left: 300px;top: 354px;width: 43px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"芸術専攻<br/>する気?",
"style":"font-size: 14px;color: #A54B01;background-color: #F0FDAF;left: 332px;top: 418px;width: 71px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私も<br/>描いてよ!",
"style":"font-size: 14px;color: #A54B01;background-color: #F0FDAF;left: 540px;top: 410px;width: 86px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0119": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0120": [
{
"text" :"ねぇ<br/>ゴハン一緒に<br/>どう?",
"style":"font-size: 14px;color: #7D4301;background-color: #FCFC9B;left: 438px;top: 10px;width: 116px;height: 80px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"行く!",
"style":"font-size: 14px;color: #06858C;background-color: #9CFDFC;left: 480px;top: 113px;width: 37px;height: 18px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いや、ごめん<br/>僕は用事が<br/>ある…",
"style":"font-size: 14px;color: #9F0010;background-color: #FD9CA8;left: 600px;top: 134px;width: 103px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0121": [
{
"text" :"二人共<br/>またね!",
"style":"font-size: 14px;color: #B43643;background-color: #FFBDC7;left: 205px;top: 15px;width: 79px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"またね!",
"style":"font-size: 14px;color: #955306;background-color: #FDF37F;left: 250px;top: 75px;width: 65px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"バイ!",
"style":"font-size: 14px;color: #1F9897;background-color: #7FFDFF;left: 244px;top: 122px;width: 36px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それで<br/>どこでお昼<br/>食べたい?",
"style":"font-size: 14px;color: #955306;background-color: #FDF37F;left: 35px;top: 272px;width: 101px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"カフェテリアも<br/>いいけど。<br/>キャンパスから<br/>2ブロック先の<br/>サンドイッチ屋も<br/>美味しいって",
"style":"font-size: 14px;color: #955306;background-color: #FDF37F;left: 300px;top: 267px;width: 180px;height: 134px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それは<br/>よさそう!",
"style":"font-size: 14px;color: #1F9897;background-color: #7FFDFF;left: 404px;top: 415px;width: 64px;height: 55px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #955306;background-color: #FDF37F;left: 585px;top: 290px;width: 45px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0122": [
{
"text" :"それに食後に<br/>フローズン<br/>ヨーグ…",
"style":"font-size: 14px;color: #813C0C;background-color: #FDFC70;left: 128px;top: 16px;width: 115px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ゥゥルルトオォォ!!!",
"style":"font-size: 14px;color: #813C0C;background-color: #FDFC70;left: 502px;top: 68px;width: 136px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0123": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0124": [
{
"text" :"すみません<br/>すみません<br/>大丈夫ですか",
"style":"font-size: 18px;color: #2C5B01;background-color: #A6FF7B;left: 30px;top: 20px;width: 125px;height: 101px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うぐ…",
"style":"font-size: 14px;color: #2C5B01;background-color: #FAFE6B;left: 193px;top: 37px;width: 46px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ケガして<br/>ませんか",
"style":"font-size: 16px;color: #2C5B01;background-color: #A6FF7B;left: 224px;top: 64px;width: 77px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大丈夫<br/>大丈夫よ<br/>心配<br/>ないわ…",
"style":"font-size: 14px;color: #2C5B01;background-color: #FAFE6B;left: 518px;top: 160px;width: 94px;height: 78px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"マリナ<br/>どうしたの…",
"style":"font-size: 14px;color: #2C5B01;background-color: #FAFE6B;left: 530px;top: 265px;width: 99px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0125": [
{
"text" :"眼鏡が!",
"style":"font-size: 14px;color: #157E8C;background-color: #8BF8FB;left: 28px;top: 20px;width: 60px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"眼鏡なしじゃ<br/>見れない!",
"style":"font-size: 14px;color: #157E8C;background-color: #8BF8FB;left: 145px;top: 54px;width: 117px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"誰か石に<br/>しちゃう!",
"style":"font-size: 14px;color: #157E8C;background-color: #8BF8FB;left: 354px;top: 22px;width: 100px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うぅ…",
"style":"font-size: 14px;color: #157E8C;background-color: #8BF8FB;left: 240px;top: 185px;width: 46px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大丈夫!<br/>ここに…",
"style":"font-size: 14px;color: #733106;background-color: #FFF583;left: 514px;top: 20px;width: 108px;height: 51px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0126": [
{
"text" :"…あるわ",
"style":"font-size: 14px;color: #934916;background-color: #FBF68D;left: 115px;top: 20px;width: 61px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ごめんなさい",
"style":"font-size: 14px;color: #934916;background-color: #FBF68D;left: 600px;top: 10px;width: 88px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"これは?<br/>誰かの手?",
"style":"font-size: 14px;color: #0D848F;background-color: #8DF7FB;left: 443px;top: 292px;width: 119px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0127": [
{
"text" :"アハハ<br/>何でもない!",
"style":"font-size: 14px;color: #6F2E06;background-color: #FCF38B;left: 10px;top: 15px;width: 93px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"眼鏡<br/>見つけたわ!",
"style":"font-size: 14px;color: #6F2E06;background-color: #FCF38B;left: 155px;top: 405px;width: 93px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"はい<br/>どうぞ",
"style":"font-size: 14px;color: #6F2E06;background-color: #FCF38B;left: 590px;top: 12px;width: 53px;height: 40px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"さぁこれで<br/>いいわ",
"style":"font-size: 14px;color: #6F2E06;background-color: #FCF38B;left: 297px;top: 260px;width: 91px;height: 44px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"目を開けて!",
"style":"font-size: 14px;color: #6F2E06;background-color: #FCF38B;left: 350px;top: 330px;width: 107px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あ…<br/>ありがとう",
"style":"font-size: 13px;color: #007070;background-color: #8BFCF0;left: 505px;top: 265px;width: 67px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うわあっ<br/>僕のDS!!",
"style":"font-size: 14px;color: #36891C;background-color: #B4FC8B;left: 703px;top: 435px;width: 84px;height: 50px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0128": [
{
"text" :"ごめん<br/>なさい!",
"style":"font-size: 14px;color: #6A3D0B;background-color: #FFFE89;left: 20px;top: 20px;width: 77px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うわぁ<br/>最悪ね…",
"style":"font-size: 14px;color: #00595D;background-color: #8AFBFF;left: 135px;top: 35px;width: 100px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"特別版の<br/>ジルダ3DS<br/>よね?",
"style":"font-size: 14px;color: #00595D;background-color: #8AFBFF;left: 400px;top: 20px;width: 89px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん…",
"style":"font-size: 14px;color: #1F5F01;background-color: #ACFF88;left: 442px;top: 105px;width: 55px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何で僕デカール<br/>取っておかな<br/>かったんだ??",
"style":"font-size: 13px;color: #1F5F01;background-color: #ACFF88;left: 520px;top: 55px;width: 92px;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも僕には<br/>公式ジルダ3DSを<br/>持たない選択は<br/>ないし!!!",
"style":"font-size: 13px;color: #1F5F01;background-color: #ACFF88;left: 645px;top: 30px;width: 118px;height: 81px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"高かったのに<br/>壊れちゃったよ!",
"style":"font-size: 13px;color: #1F5F01;background-color: #ACFF88;left: 620px;top: 152px;width: 139px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0129": [
{
"text" :"あれ<br/>高いの…",
"style":"font-size: 14px;color: #813D10;background-color: #FFFDB2;left: 70px;top: 10px;width: 93px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"500$位",
"style":"font-size: 14px;color: #007A70;background-color: #B0FEFE;left: 270px;top: 190px;width: 59px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"マジで??",
"style":"font-size: 14px;color: #813D10;background-color: #FFFDB2;left: 450px;top: 20px;width: 104px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん",
"style":"font-size: 14px;color: #007A70;background-color: #B0FEFE;left: 700px;top: 200px;width: 36px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うわぁ",
"style":"font-size: 14px;color: #813D10;background-color: #FFFDB2;left: 483px;top: 270px;width: 45px;height: 25px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ぐすん…",
"style":"font-size: 14px;color: #3A7A01;background-color: #9EF383;left: 685px;top: 453px;width: 61px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0130": [
{
"text" :"ねぇ私達<br/>お昼にサンドイッチ<br/>食べに行くの、<br/>一緒にどう?",
"style":"font-size: 14px;color: #813D10;background-color: #FFFE90;left: 10px;top: 10px;width: 133px;height: 95px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"奢るわよ!",
"style":"font-size: 14px;color: #813D10;background-color: #FFFE90;left: 190px;top: 20px;width: 76px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いや 別にいいよ!<br/>君のせいじゃない。<br/>僕の不注意だ…",
"style":"font-size: 14px;color: #286F0B;background-color: #C6FF8F;left: 277px;top: 52px;width: 131px;height: 97px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それは分かるけど<br/>壊れたのは最悪でしょ<br/>せめて少しは良いこと<br/>してあげたくて",
"style":"font-size: 14px;color: #813D10;background-color: #FFFE90;left: 635px;top: 90px;width: 156px;height: 116px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当?<br/>ホントに<br/>いいの?",
"style":"font-size: 14px;color: #286F0B;background-color: #C6FF8F;left: 440px;top: 260px;width: 97px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん!",
"style":"font-size: 14px;color: #813D10;background-color: #FFFE90;left: 540px;top: 310px;width: 35px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君の友達との<br/>お昼の邪魔<br/>じゃない?",
"style":"font-size: 14px;color: #286F0B;background-color: #C6FF8F;left: 455px;top: 340px;width: 117px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いいえ!",
"style":"font-size: 12px;color: #813D10;background-color: #FFFE90;left: 520px;top: 455px;width: 43px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0131": [
{
"text" :"行き<br/>ましょ!",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 183px;top: 15px;width: 66px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"お…OK!",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 268px;top: 35px;width: 73px;height: 20px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君の<br/>名前は?",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 385px;top: 22px;width: 85px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"サシャ!",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 732px;top: 165px;width: 50px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それ<br/>女の子の<br/>名前じゃ…",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 375px;top: 227px;width: 91px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"アレクサンダー<br/>の略だよ",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 403px;top: 280px;width: 106px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本気でそう<br/>思ってる?",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 365px;top: 328px;width: 79px;height: 53px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"うん",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 432px;top: 385px;width: 33px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハハッ",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 404px;top: 402px;width: 45px;height: 19px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そういう<br/>君の名前は?",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 382px;top: 432px;width: 86px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ジョージ",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 565px;top: 273px;width: 59px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それ男の<br/>名前じゃ…",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 640px;top: 253px;width: 83px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君のサンド<br/>イッチに<br/>オナラ<br/>するわよ",
"style":"font-size: 14px;color: #813A01;background-color: #F9F36B;left: 715px;top: 268px;width: 76px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"背の高い人<br/>君の名前は?",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 672px;top: 345px;width: 86px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"マリナ!",
"style":"font-size: 14px;color: #28AAA1;background-color: #69F9DF;left: 730px;top: 420px;width: 53px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"はじめ<br/>まして!",
"style":"font-size: 14px;color: #2D8307;background-color: #A3FD5A;left: 662px;top: 436px;width: 73px;height: 35px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君もね",
"style":"font-size: 14px;color: #28AAA1;background-color: #69F9DF;left: 738px;top: 472px;width: 46px;height: 24px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0132": [
{
"text" :"ところで<br/>マリナあなた<br/>絵が本当に<br/>上手ね!",
"style":"font-size: 14px;color: #7E4001;background-color: #FBFC7C;left: 15px;top: 10px;width: 97px;height: 99px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あの…<br/>その…あ…<br/>ありがとう!",
"style":"font-size: 14px;color: #007B79;background-color: #73FDE8;left: 18px;top: 130px;width: 77px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"絵が<br/>好き<br/>なの?",
"style":"font-size: 14px;color: #277401;background-color: #AFFE73;left: 138px;top: 35px;width: 61px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"う…<br/>うん!",
"style":"font-size: 14px;color: #007B79;background-color: #73FDE8;left: 169px;top: 105px;width: 60px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕も!",
"style":"font-size: 14px;color: #277401;background-color: #AFFE73;left: 187px;top: 140px;width: 67px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"描くのは下手で<br/>観るのは好き<br/>って意味だけど",
"style":"font-size: 14px;color: #277401;background-color: #AFFE73;left: 250px;top: 50px;width: 118px;height: 82px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私達皆<br/>好きなものが<br/>違うわね…",
"style":"font-size: 14px;color: #7E4001;background-color: #FBFC7C;left: 390px;top: 70px;width: 87px;height: 99px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうみたい<br/>だね",
"style":"font-size: 14px;color: #277401;background-color: #AFFE73;left: 330px;top: 340px;width: 90px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は音楽家<br/>みたいな<br/>ものよ",
"style":"font-size: 14px;color: #7E4001;background-color: #FBFC7C;left: 420px;top: 410px;width: 104px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当?",
"style":"font-size: 14px;color: #007B79;background-color: #73FDE8;left: 538px;top: 30px;width: 49px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何<br/>してるの?",
"style":"font-size: 14px;color: #277401;background-color: #AFFE73;left: 624px;top: 40px;width: 69px;height: 42px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ウクレレ<br/>演奏して<br/>歌うわ<br/>たまに<br/>作曲も",
"style":"font-size: 14px;color: #7E4001;background-color: #FBFC7C;left: 680px;top: 95px;width: 96px;height: 99px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"まだそんな<br/>上手くない<br/>けど…",
"style":"font-size: 14px;color: #7E4001;background-color: #FBFC7C;left: 712px;top: 423px;width: 78px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0133": [
{
"text" :"君はどう<br/>サシャ?<br/>何が得意?",
"style":"font-size: 14px;color: #754B01;background-color: #F8FD6B;left: 10px;top: 10px;width: 97px;height: 84px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いや僕には<br/>特別な才能とか<br/>何もないよ…",
"style":"font-size: 14px;color: #287209;background-color: #9AFF69;left: 140px;top: 20px;width: 105px;height: 100px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何か<br/>あるでしょ!",
"style":"font-size: 14px;color: #754B01;background-color: #F8FD6B;left: 180px;top: 135px;width: 101px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"恥ずかしがり屋<br/>なのかしら…<br/>興味を<br/>そそられるわ!",
"style":"font-size: 14px;color: #754B01;background-color: #F8FD6B;left: 345px;top: 25px;width: 115px;height: 94px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"いや違うよ<br/>恥ずかしい<br/>とかじゃない!",
"style":"font-size: 14px;color: #287209;background-color: #9AFF69;left: 365px;top: 145px;width: 130px;height: 121px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"じゃ<br/>何よ?",
"style":"font-size: 14px;color: #754B01;background-color: #F8FD6B;left: 450px;top: 300px;width: 59px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ただ…",
"style":"font-size: 14px;color: #287209;background-color: #9AFF69;left: 370px;top: 430px;width: 48px;height: 47px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0134": [
{
"text" :"ただ<br/>…",
"style":"font-size: 14px;color: #428509;background-color: #BAFB67;left: 25px;top: 20px;width: 34px;height: 36px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕は何も<br/>得意じゃ<br/>ないんだ…",
"style":"font-size: 14px;color: #428509;background-color: #BAFB67;left: 75px;top: 50px;width: 93px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そんなこと<br/>ないと<br/>思うけど!",
"style":"font-size: 14px;color: #7C5601;background-color: #FBF267;left: 235px;top: 10px;width: 88px;height: 74px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"無神経で<br/>ごめんね!",
"style":"font-size: 14px;color: #7C5601;background-color: #FBF267;left: 345px;top: 20px;width: 91px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私は迷惑な<br/>アレよね<br/>御免なさい!",
"style":"font-size: 14px;color: #7C5601;background-color: #FBF267;left: 452px;top: 52px;width: 100px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"心配しなくて<br/>いいよ!",
"style":"font-size: 14px;color: #428509;background-color: #BAFB67;left: 528px;top: 355px;width: 92px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大した<br/>ことじゃ<br/>ない",
"style":"font-size: 14px;color: #428509;background-color: #BAFB67;left: 580px;top: 412px;width: 71px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0135": [
{
"text" :"※着メロ:セーラームーンのテーマ(英語版)",
"style":"font-size: 12px;color: black;left: 20px;top: 0px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"君は…",
"style":"font-size: 14px;color: #883A01;background-color: #FDFF6E;left: 20px;top: 20px;width: 59px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あら<br/>御免なさいね<br/>二人共…",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 685px;top: 30px;width: 98px;height: 60px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ママ!",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 46px;top: 290px;width: 51px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ゴメン<br/>今友達と<br/>いるの",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 130px;top: 290px;width: 88px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"後で<br/>かけ直して<br/>いい?",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 275px;top: 320px;width: 102px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"後で<br/>かけ直して<br/>いい?",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 275px;top: 320px;width: 102px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"OK<br/>私も<br/>愛してる",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 395px;top: 300px;width: 71px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"パパと父さん<br/>にも愛してる<br/>って伝えて",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 475px;top: 360px;width: 104px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ありがと",
"style":"font-size: 12px;color: #06748B;background-color: #6EFFFD;left: 600px;top: 330px;width: 55px;height: 22px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"私も<br/>寂しいわ!",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 663px;top: 373px;width: 66px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"OK<br/>バイ!",
"style":"font-size: 14px;color: #06748B;background-color: #6EFFFD;left: 725px;top: 427px;width: 46px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0136": [
{
"text" :"ご…ごめん!<br/>親が…",
"style":"font-size: 14px;color: #0A6776;background-color: #58FAE4;left: 165px;top: 10px;width: 95px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"大丈夫!",
"style":"font-size: 14px;color: #704809;background-color: #F8FA58;left: 310px;top: 15px;width: 61px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"セーラーヌーン<br/>のファンなの?",
"style":"font-size: 14px;color: #704809;background-color: #F8FA58;left: 264px;top: 90px;width: 108px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"その…<br/>うん!",
"style":"font-size: 14px;color: #0A6776;background-color: #58FAE4;left: 200px;top: 170px;width: 51px;height: 45px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"正直言うと<br/>少し恥ずかしいわ<br/>子供向け番組だから<br/>でも大好きよ!",
"style":"font-size: 14px;color: #0A6776;background-color: #58FAE4;left: 410px;top: 15px;width: 178px;height: 96px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そんなこと<br/>ないわよ!",
"style":"font-size: 14px;color: #704809;background-color: #F8FA58;left: 615px;top: 35px;width: 107px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"僕らの年でも<br/>好きな人は<br/>沢山いるよ!",
"style":"font-size: 14px;color: #1C6E01;background-color: #97F95A;left: 655px;top: 130px;width: 133px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうね…",
"style":"font-size: 14px;color: #0A6776;background-color: #58FAE4;left: 685px;top: 295px;width: 60px;height: 26px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0137": [
{
"text" :"でもね…",
"style":"font-size: 14px;color: #926814;background-color: #FFF183;left: 80px;top: 20px;width: 80px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"自分らしく好きで<br/>あり続けるのは<br/>大変なことよ",
"style":"font-size: 14px;color: #926814;background-color: #FFF183;left: 20px;top: 85px;width: 121px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それでいいのよ。<br/>だって皆も<br/>君と同じ様に<br/>頑張ってるから",
"style":"font-size: 14px;color: #926814;background-color: #FFF183;left: 25px;top: 360px;width: 159px;height: 120px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それって…<br/>驚くほど<br/>深いね",
"style":"font-size: 14px;color: #378002;background-color: #BAFF83;left: 320px;top: 165px;width: 91px;height: 67px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"頑張っ<br/>てみた",
"style":"font-size: 14px;color: #926814;background-color: #FFF183;left: 452px;top: 35px;width: 52px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それから<br/>どうした<br/>の?",
"style":"font-size: 14px;color: #780084;background-color: #ECB7FC;left: 420px;top: 280px;width: 75px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"少し話をして<br/>彼女がセーラームーンの<br/>コスプレした時の写真を<br/>見せてもらったわ",
"style":"font-size: 14px;color: #926814;background-color: #FFF183;left: 584px;top: 338px;width: 194px;height: 141px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0138": [
{
"text" :"へぇ、<br/>超カワイイ<br/>でしょうね",
"style":"font-size: 14px;color: #5A1076;background-color: #E8B2FC;left: 20px;top: 20px;width: 97px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"全くよ!",
"style":"font-size: 14px;color: #7C4815;background-color: #FDFE97;left: 64px;top: 105px;width: 57px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あとブログリンク<br/>交換して<br/>お喋りして<br/>フローズン<br/>ヨーグルトを…",
"style":"font-size: 14px;color: #7C4815;background-color: #FDFE97;left: 140px;top: 85px;width: 125px;height: 102px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…サシャが一分で<br/>カップ一杯食べられる<br/>って言うから、<br/>私が20$賭けて<br/>彼は失敗して私の勝ち!<br/>それで彼は酷い頭痛",
"style":"font-size: 14px;color: #7C4815;background-color: #FDFE97;left: 273px;top: 13px;width: 182px;height: 156px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"プッ",
"style":"font-size: 14px;color: #5A1076;background-color: #E8B2FC;left: 420px;top: 174px;width: 34px;height: 23px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ところで、<br/>昨日何してた?<br/>全く会わな<br/>かったけど",
"style":"font-size: 14px;color: #7C4815;background-color: #FDFE97;left: 490px;top: 25px;width: 113px;height: 133px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"面白い事は<br/>何も",
"style":"font-size: 14px;color: #5A1076;background-color: #E8B2FC;left: 632px;top: 53px;width: 91px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"パーシーが<br/>来たけど!",
"style":"font-size: 14px;color: #5A1076;background-color: #E8B2FC;left: 665px;top: 140px;width: 92px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何ぃ!!<br/>全部話して!!!",
"style":"font-size: 14px;color: #7C4815;background-color: #FDFE97;left: 610px;top: 240px;width: 94px;height: 64px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ハハ<br/>OK…",
"style":"font-size: 14px;color: #5A1076;background-color: #E8B2FC;left: 610px;top: 355px;width: 67px;height: 41px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0139": [
{
"text" :"知っての通り<br/>昨日はまた<br/>文書館で<br/>働いてたの…",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 105px;top: 10px;width: 109px;height: 99px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"彼は午後に<br/>少し来たわ",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 230px;top: 44px;width: 101px;height: 62px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"あぁ彼は<br/>そこ行って<br/>たのね",
"style":"font-size: 14px;color: #754709;background-color: #FCF59A;left: 175px;top: 130px;width: 111px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"えっ??",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 240px;top: 205px;width: 55px;height: 21px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"昨日授業の後<br/>食事に誘ったら<br/>彼は用事あるって!",
"style":"font-size: 14px;color: #754709;background-color: #FCF59A;left: 170px;top: 350px;width: 157px;height: 136px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"成績表の写しが<br/>彼は欲しかった<br/>みたい…",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 373px;top: 270px;width: 103px;height: 63px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"でも上司の登録者が<br/>不在だったから<br/>書類に記入して支払って<br/>後で戻って来れば<br/>押印と封入しとくって<br/>言ったの",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 595px;top: 28px;width: 184px;height: 139px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"成績表って<br/>早すぎない…",
"style":"font-size: 14px;color: #754709;background-color: #FCF59A;left: 540px;top: 175px;width: 118px;height: 66px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"事情があって<br/>家に送りたいって<br/>行ってた",
"style":"font-size: 14px;color: #5B007A;background-color: #CF92FB;left: 525px;top: 405px;width: 141px;height: 75px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0140": [
{
"text" :"<span><ruby><rb>成績値<rp>(</rp><rt>GPA</rt><rp>)</ruby>も知りたい</span>って言ってたから<br/>私が見て教えたわ",
"style":"font-size: 14px;color: #54006A;background-color: #EEB0FF;left: 205px;top: 20px;width: 152px;height: 94px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"学生<br/>IDナンバーは?",
"style":"font-size: 14px;color: #F63FB3;background-color: white;left: 230px;top: 145px;width: 103px;height: 43px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それ<br/>君の仕事?",
"style":"font-size: 14px;color: #715709;background-color: #FEFFB2;left: 415px;top: 15px;width: 87px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…本当<br/>は違う",
"style":"font-size: 14px;color: #54006A;background-color: #EEB0FF;left: 525px;top: 60px;width: 47px;height: 39px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"フラニー<br/>君はワルね!!",
"style":"font-size: 14px;color: #715709;background-color: #FEFFB2;left: 595px;top: 15px;width: 103px;height: 58px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"本当に<br/>彼のこと<br/>好きなのね",
"style":"font-size: 14px;color: #715709;background-color: #FEFFB2;left: 675px;top: 78px;width: 80px;height: 56px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ジョージ<br/>やめて!!",
"style":"font-size: 14px;color: #54006A;background-color: #EEB0FF;left: 710px;top: 153px;width: 77px;height: 37px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0141": [
{
"text" :"…それで<br/>彼が私の仕事が<br/>終わる時間聞いて、<br/>彼は12:30まで<br/>ここにいて、<br/>一緒に話してた…",
"style":"font-size: 14px;color: #300051;background-color: #DEAFFF;left: 17px;top: 20px;width: 146px;height: 136px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"それから12:30で<br/>仕事終わって<br/>彼は家まで私を<br/>送ってくれたの!!",
"style":"font-size: 14px;color: #300051;background-color: #DEAFFF;left: 185px;top: 10px;width: 144px;height: 79px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"何です<br/>って!!",
"style":"font-size: 14px;color: #5A3F06;background-color: #FDEF93;left: 265px;top: 125px;width: 50px;height: 33px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"そうなの!彼は<br/>同じ方向に行く所<br/>って言ってたけど<br/>彼はキャンパスに<br/>住んでるじゃん!<br/>私の家ここから<br/>20分位だし",
"style":"font-size: 14px;color: #300051;background-color: #DEAFFF;left: 340px;top: 30px;width: 181px;height: 159px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"スゴイ<br/>可愛い所<br/>あるわね!!",
"style":"font-size: 14px;color: #5A3F06;background-color: #FDEF93;left: 295px;top: 280px;width: 99px;height: 57px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"もう手は<br/>繋いだの??",
"style":"font-size: 14px;color: #78581D;background-color: #FCE979;left: 355px;top: 370px;width: 113px;height: 76px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"…少しだけ",
"style":"font-size: 14px;color: #421262;background-color: #D092FE;left: 665px;top: 185px;width: 76px;height: 59px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"わぁ!!!!<br/>うわ<br/>うわぁ!!!!",
"style":"font-size: 14px;color: #6D4E19;background-color: #FEEE93;left: 700px;top: 310px;width: 84px;height: 61px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0142": [
{
"text" :"OK<br/>オタク<br/>こいつを<br/>ご所望ね!!",
"style":"font-size: 14px;color: #765901;background-color: #F9FC90;left: 18px;top: 25px;width: 88px;height: 77px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"ウクレレ<br/>タイムよ!",
"style":"font-size: 14px;color: #765901;background-color: #F9FC90;left: 230px;top: 30px;width: 95px;height: 38px;text-align: center;display: flex;flex-direction: column;align-items: center;justify-content: center;"
},
{
"text" :"songtitle:booty call song<br/><br/>F C7 Dm Bb <br/><br/>what a hottie~~~ <br/>you wanna rock that body <br/>and smooch all over that face <br/>maybe go to his place <br/>whatcha do when you're there <br/>girl youd better beware <br/>cuz he is a cutie <br/>and you're gonna touch that bootie <br/>cuz you can't deny <br/>that you think he's fly <br/>he's a swell guy <br/>[doot doo doot] <br/>cuz he's a hottie <br/>c'mon girl rock that body <br/>and he's a cutie <br/>you wanna touch that bootie <br/><br/>he's a hottie <br/>?????<br/>he's a cutie <br/>you gonna touch that bootie <br/><br/>YEAH",
"style":"font-size: 16px;color: black;background-color: white;left: 0px;top: 600px;border:solid 1px;"
},
{
"text" :"songtitle:誘惑の電話の歌<br/><br/>F C7 Dm Bb <br/><br/>何てセクシ~<br/>君はその体を揺さぶりたい<br/>顔中にキスしたい<br/>きっと彼の所へ行くわ<br/>そこへ行く時は気をつけて<br/>女の子は特に注意して<br/>彼は可愛いから<br/>君はそのお尻を触る気ね<br/>君は拒否できない<br/>彼は格好良いから<br/>彼は素敵な男の子<br/>[ドゥ ドゥルドゥ ドゥー] <br/>彼はセクシー<br/>女の子はその体を揺さぶりたい<br/>彼は可愛い人<br/>君はそのお尻を触りたい<br/><br/>彼はセクシー<br/>?????<br/>彼は可愛い人<br/>君はそのお尻に触るわ<br/><br/>イェアー",
"style":"font-size: 16px;color: black;background-color: white;left: 400px;top: 600px;border:solid 1px;"
},
],
"http://www.monsterpop.mayakern.com/pages.php?page=0143": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0144": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0145": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0146": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0147": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0148": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0149": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0150": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0151": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0152": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0153": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0154": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0155": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0156": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0157": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0158": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0159": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0160": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0161": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0162": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0163": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0164": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0165": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0166": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0167": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0168": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0169": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0170": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0171": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0172": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0173": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0174": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0175": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0176": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0177": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0178": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0179": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0180": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0181": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0182": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0183": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0184": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0185": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0186": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0187": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0188": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0189": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0190": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0191": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0192": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0193": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0194": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0195": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0196": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0197": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0198": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0199": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0200": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0201": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0202": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0203": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0204": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0205": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0206": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0207": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0208": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0209": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0210": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0211": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0212": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0213": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0214": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0215": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0216": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0217": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0218": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0219": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0220": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0221": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0222": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0223": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0224": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0225": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0226": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0227": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0228": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0229": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0230": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0231": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0232": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0233": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0234": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0235": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0236": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0237": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0238": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0239": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0240": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0241": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0242": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0243": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0244": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0245": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0246": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0247": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0248": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0249": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0250": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0251": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0252": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0253": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0254": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0255": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0256": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0257": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0258": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0259": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0260": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0261": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0262": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0263": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0264": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0265": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0266": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0267": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0268": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0269": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0270": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0271": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0272": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0273": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0274": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0275": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0276": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0277": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0278": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0279": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0280": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0281": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0282": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0283": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0284": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0285": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0286": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0287": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0288": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0289": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0290": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0291": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0292": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0293": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0294": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0295": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0296": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0297": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0298": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0299": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0300": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0301": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0302": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0303": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0304": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0305": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0306": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0307": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0308": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0309": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0310": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0311": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0312": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0313": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0314": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0315": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0316": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0317": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0318": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0319": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0320": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0321": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0322": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0323": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0324": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0325": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0326": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0327": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0328": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0329": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0330": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0331": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0332": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0333": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0334": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0335": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0336": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0337": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0338": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0339": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0340": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0341": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0342": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0343": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0344": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0345": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0346": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0347": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0348": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0349": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0350": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0351": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0352": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0353": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0354": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0355": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0356": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0357": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0358": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0359": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0360": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0361": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0362": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0363": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0364": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0365": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0366": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0367": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0368": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0369": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0370": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0371": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0372": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0373": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0374": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0375": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0376": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0377": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0378": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0379": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0380": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0381": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0382": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0383": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0384": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0385": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0386": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0387": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0388": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0389": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0390": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0391": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0392": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0393": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0394": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0395": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0396": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0397": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0398": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0399": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0400": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0401": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0402": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0403": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0404": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0405": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0406": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0407": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0408": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0409": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0410": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0411": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0412": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0413": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0414": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0415": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0416": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0417": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0418": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0419": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0420": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0421": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0422": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0423": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0424": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0425": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0426": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0427": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0428": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0429": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0430": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0431": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0432": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0433": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0434": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0435": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0436": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0437": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0438": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0439": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0440": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0441": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0442": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0443": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0444": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0445": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0446": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0447": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0448": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0449": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0450": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0451": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0452": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0453": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0454": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0455": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0456": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0457": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0458": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0459": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0460": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0461": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0462": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0463": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0464": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0465": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0466": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0467": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0468": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0469": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0470": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0471": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0472": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0473": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0474": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0475": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0476": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0477": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0478": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0479": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0480": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0481": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0482": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0483": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0484": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0485": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0486": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0487": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0488": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0489": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0490": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0491": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0492": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0493": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0494": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0495": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0496": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0497": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0498": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0499": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0500": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0501": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0502": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0503": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0504": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0505": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0506": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0507": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0508": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0509": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0510": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0511": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0512": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0513": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0514": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0515": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0516": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0517": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0518": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0519": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0520": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0521": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0522": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0523": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0524": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0525": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0526": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0527": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0528": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0529": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0530": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0531": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0532": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0533": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0534": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0535": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0536": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0537": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0538": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0539": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0540": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0541": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0542": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0543": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0544": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0545": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0546": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0547": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0548": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0549": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0550": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0551": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0552": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0553": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0554": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0555": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0556": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0557": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0558": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0559": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0560": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0561": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0562": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0563": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0564": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0565": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0566": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0567": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0568": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0569": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0570": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0571": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0572": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0573": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0574": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0575": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0576": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0577": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0578": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0579": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0580": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0581": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0582": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0583": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0584": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0585": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0586": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0587": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0588": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0589": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0590": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0591": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0592": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0593": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0594": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0595": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0596": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0597": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0598": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0599": [
],
"http://www.monsterpop.mayakern.com/pages.php?page=0600": [
],
};