Skip to content

Instantly share code, notes, and snippets.

@50225512
Created March 7, 2018 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 50225512/3e6869b65c8c2fd83390d1bbc133182c to your computer and use it in GitHub Desktop.
Save 50225512/3e6869b65c8c2fd83390d1bbc133182c to your computer and use it in GitHub Desktop.
爬虫一个不可描述的网站
# -*- coding: utf-8 -*-
# Define here the models for your scraped items
#
# See documentation in:
# https://doc.scrapy.org/en/latest/topics/items.html
import scrapy
class MpwebspiderItem(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
url = scrapy.Field()
text = scrapy.Field()
image_urls = scrapy.Field()
cimages = scrapy.Field()
image_paths = scrapy.Field()
# -*- coding: utf-8 -*-
# Define here the models for your spider middleware
#
# See documentation in:
# https://doc.scrapy.org/en/latest/topics/spider-middleware.html
from scrapy import signals
class MpwebspiderSpiderMiddleware(object):
# Not all methods need to be defined. If a method is not defined,
# scrapy acts as if the spider middleware does not modify the
# passed objects.
@classmethod
def from_crawler(cls, crawler):
# This method is used by Scrapy to create your spiders.
s = cls()
crawler.signals.connect(s.spider_opened, signal=signals.spider_opened)
return s
def process_spider_input(self, response, spider):
# Called for each response that goes through the spider
# middleware and into the spider.
# Should return None or raise an exception.
return None
def process_spider_output(self, response, result, spider):
# Called with the results returned from the Spider, after
# it has processed the response.
# Must return an iterable of Request, dict or Item objects.
for i in result:
yield i
def process_spider_exception(self, response, exception, spider):
# Called when a spider or process_spider_input() method
# (from other spider middleware) raises an exception.
# Should return either None or an iterable of Response, dict
# or Item objects.
pass
def process_start_requests(self, start_requests, spider):
# Called with the start requests of the spider, and works
# similarly to the process_spider_output() method, except
# that it doesn’t have a response associated.
# Must return only requests (not items).
for r in start_requests:
yield r
def spider_opened(self, spider):
spider.logger.info('Spider opened: %s' % spider.name)
class MpwebspiderDownloaderMiddleware(object):
# Not all methods need to be defined. If a method is not defined,
# scrapy acts as if the downloader middleware does not modify the
# passed objects.
@classmethod
def from_crawler(cls, crawler):
# This method is used by Scrapy to create your spiders.
s = cls()
crawler.signals.connect(s.spider_opened, signal=signals.spider_opened)
return s
def process_request(self, request, spider):
# Called for each request that goes through the downloader
# middleware.
# Must either:
# - return None: continue processing this request
# - or return a Response object
# - or return a Request object
# - or raise IgnoreRequest: process_exception() methods of
# installed downloader middleware will be called
return None
def process_response(self, request, response, spider):
# Called with the response returned from the downloader.
# Must either;
# - return a Response object
# - return a Request object
# - or raise IgnoreRequest
return response
def process_exception(self, request, exception, spider):
# Called when a download handler or a process_request()
# (from other downloader middleware) raises an exception.
# Must either:
# - return None: continue processing this exception
# - return a Response object: stops process_exception() chain
# - return a Request object: stops process_exception() chain
pass
def spider_opened(self, spider):
spider.logger.info('Spider opened: %s' % spider.name)
# -*- coding: utf-8 -*-
# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html
import json
import scrapy
from scrapy.contrib.pipeline.images import ImagesPipeline
from scrapy.exceptions import DropItem
class MyImagePipeline(ImagesPipeline):
def get_media_requests(self, item, info):
for image_url in item['image_urls']:
yield scrapy.Request(image_url)
def item_completed(self, results, item, info):
image_paths = [x['path'] for ok, x in results if ok]
if not image_paths:
raise DropItem("Item contains no images")
item['image_paths'] = image_paths
return item
class MpwebspiderPipeline(object):
def __init__(self):
self.file = open('papers.json', 'wb')
def process_item(self, item, spider):
if item['text']:
line = json.dumps(dict(item)) + "\n"
self.file.write(line)
return item
else:
raise DropItem("Missing text in %s" % item)
# -*- coding: utf-8 -*-
# Scrapy settings for mpWebSpider project
#
# For simplicity, this file contains only settings considered important or
# commonly used. You can find more settings consulting the documentation:
#
# https://doc.scrapy.org/en/latest/topics/settings.html
# https://doc.scrapy.org/en/latest/topics/downloader-middleware.html
# https://doc.scrapy.org/en/latest/topics/spider-middleware.html
BOT_NAME = 'mpWebSpider'
SPIDER_MODULES = ['mpWebSpider.spiders']
NEWSPIDER_MODULE = 'mpWebSpider.spiders'
# Crawl responsibly by identifying yourself (and your website) on the user-agent
#USER_AGENT = 'mpWebSpider (+http://www.yourdomain.com)'
# Obey robots.txt rules
ROBOTSTXT_OBEY = True
# Configure maximum concurrent requests performed by Scrapy (default: 16)
#CONCURRENT_REQUESTS = 32
# Configure a delay for requests for the same website (default: 0)
# See https://doc.scrapy.org/en/latest/topics/settings.html#download-delay
# See also autothrottle settings and docs
#DOWNLOAD_DELAY = 3
# The download delay setting will honor only one of:
#CONCURRENT_REQUESTS_PER_DOMAIN = 16
#CONCURRENT_REQUESTS_PER_IP = 16
# Disable cookies (enabled by default)
#COOKIES_ENABLED = False
# Disable Telnet Console (enabled by default)
#TELNETCONSOLE_ENABLED = False
# Override the default request headers:
#DEFAULT_REQUEST_HEADERS = {
# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
# 'Accept-Language': 'en',
#}
# Enable or disable spider middlewares
# See https://doc.scrapy.org/en/latest/topics/spider-middleware.html
#SPIDER_MIDDLEWARES = {
# 'mpWebSpider.middlewares.MpwebspiderSpiderMiddleware': 543,
#}
# Enable or disable downloader middlewares
# See https://doc.scrapy.org/en/latest/topics/downloader-middleware.html
#DOWNLOADER_MIDDLEWARES = {
# 'mpWebSpider.middlewares.MpwebspiderDownloaderMiddleware': 543,
#}
# Enable or disable extensions
# See https://doc.scrapy.org/en/latest/topics/extensions.html
#EXTENSIONS = {
# 'scrapy.extensions.telnet.TelnetConsole': None,
#}
# Configure item pipelines
# See https://doc.scrapy.org/en/latest/topics/item-pipeline.html
ITEM_PIPELINES = {
'mpWebSpider.pipelines.MpwebspiderPipeline': 300,
'scrapy.pipelines.images.ImagesPipeline': 1,
# 'mpWebSpider.pipelines.MyImagePipeline': 1, # 自己重写的Piprline
}
IMAGES_STORE = 'D:\python_share\mpWebSpider'
IMAGES_URLS_FIELD = 'image_urls'
IMAGES_RESULT_FIELD = 'cimages'
MAGES_THUMBS = {
'samll': (50, 50),
'big': (270, 270),
}
IMAGE_EXPIRES = 30
# Enable and configure the AutoThrottle extension (disabled by default)
# See https://doc.scrapy.org/en/latest/topics/autothrottle.html
#AUTOTHROTTLE_ENABLED = True
# The initial download delay
#AUTOTHROTTLE_START_DELAY = 5
# The maximum download delay to be set in case of high latencies
#AUTOTHROTTLE_MAX_DELAY = 60
# The average number of requests Scrapy should be sending in parallel to
# each remote server
#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0
# Enable showing throttling stats for every response received:
#AUTOTHROTTLE_DEBUG = False
# Enable and configure HTTP caching (disabled by default)
# See https://doc.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings
#HTTPCACHE_ENABLED = True
#HTTPCACHE_EXPIRATION_SECS = 0
#HTTPCACHE_DIR = 'httpcache'
#HTTPCACHE_IGNORE_HTTP_CODES = []
#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage'
# This package will contain the spiders of your Scrapy project
#
# Please refer to the documentation for information on how to create and manage
# your spiders.
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import scrapy
from scrapy.crawler import CrawlerProcess
from mpWebSpider.items import MpwebspiderItem
from scrapy.selector import Selector
from scrapy.utils.project import get_project_settings
# from scrapy.contrib.loader import ItemLoader
class mpwebSpider(scrapy.Spider):
name = "mpWeb"
allowed_domains = ["527ee.com"]
start_urls = [
"https://www.527ee.com/htm/mp4list6/1.htm"
]
start_url = "https://www.527ee.com"
def parse(self, response):
papers = response.xpath(".//*[@class='thumb-link']")
n = 1
for paper in papers:
text = paper.xpath("@title").extract()
url = paper.xpath("@href").extract()
image_urls = paper.xpath('.//img/@src').extract()
# print n, "".join(text), "的链接是", "".join(mpwebSpider.start_urls) + "".join(url)
n = n + 1
item = MpwebspiderItem(text=text, url=url, image_urls=image_urls)
# request = scrapy.Request(url=mpwebSpider.start_urls[0], callback=self.parse_body)
# request.meta['item'] = item
# yield request
yield item
# yield {item['text'][0].encode('utf-8') : item['url'][0].encode('utf-8')},item只能是unicode来保存
next_page = Selector(response).re(u'<a href="(\S*)" target="_parent">下一页</a>')
# print next_page
if next_page:
url = mpwebSpider.start_url + "".join(next_page)
yield scrapy.Request(url=url.split()[0], callback=self.parse)
#print "".join(text), "的链接是", "".join(mpwebSpider.start_urls)+"".join(url)
# def parse_body(self, response):
# item = response.meta['item']
# body = response.xpath(".//*[@class='thumb-link']")
# item['cimage_urls'] = body.xpath('.//img/@src').extract()
# yield item
if __name__ == '__main__':
# process = CrawlerProcess({
# 'USER_AGENT': 'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.1)'
# })
process = CrawlerProcess(get_project_settings())
process.crawl('mpWeb')
process.start()
{"url": ["/htm/mp46/47195.htm"], "text": ["\u5974\u96b6\u5fd7\u613f\u3057\u3066\u304d\u305f\u540d\u95e8\u5927\u5b66\u306e\u304a\u5b22\u69d8\u306e\u3054\u3063\u304f\u3093\u5909\u6001\u8c03\u6559\u9972\u80b2 \u79c1\u2026\u4f55\u3067\u3082\u3057\u307e\u3059\u2026\u3069\u3046\u304b\u53ef\u7231\u304c\u3063\u3066\u4e0b\u3055\u3044\u2026 \u304d\u307f\u3068\u6b69\u5b9f"], "image_paths": ["full/30f5ac1d3511bcc99642ea462f3bd2830c620980.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47195.jpg"]}
{"url": ["/htm/mp46/47200.htm"], "text": ["\u3042\u306e\u300c\u4e2d\u51fa\u3057\u6073\u613f\u5a18\u300d\u9999\u5ddd\u770c\u5728\u4f4f \u65b0\u4ebaAV\u5973\u4f18\u300c\u8429\u91ce\u821e\u300d1\u65e5\u64ae\u5f71\u5bc6\u7740\u30c9\u30ad\u30e5\u30e1\u30f3\u30bf\u30ea\u30fc \u3010\u30dd\u30eb\u30c1\u30aa\u30a4\u30ad\u3011\u3010\u3059\u3063\u3074\u3093\u3011\u3010\u5a9a\u85ac\u3011\u3010\u5927\u91cf\u6f6e\u5439\u304d\u3011\u3010\u5bb6\u65cf\u306b\u7535\u8bdd\u3011\u3010\u672c\u751f\u4e2d\u51fa\u3057\u3011 \u5168\u90e8\u4e57\u305b\u30a8\u30af\u30b9\u30bf\u30b7\u30fc \u77e5\u3089\u306a\u3044\u7537\u306b\u4e2d\u51fa\u3057\u3055\u308c\u308b\u306e\u304c\u5174\u594b\u3059\u308b \u30c9\u5909\u6001\u751f\u4e2d\u51fa\u3057\u4f9d\u5b58\u5a18 \u6027\u6b32\u899a\u9192 \u837b\u91ce\u821e"], "image_paths": ["full/4205364b497f72cfbf18609abd6a4ee8c014b44c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47200.jpg"]}
{"url": ["/htm/mp46/47193.htm"], "text": ["\u53cb\u8fbe\u306e\u5965\u3055\u3093 \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/c813255ca874b9ee3480054e3ecfc37febda26a0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47193.jpg"]}
{"url": ["/htm/mp46/47198.htm"], "text": ["\u5de8\u4e73\u5973\u6559\u5e08\u306e\u8bf1\u60d1 \u4e00\u30ce\u702c\u306a\u3064\u304d"], "image_paths": ["full/b3594130ef6c8f1105a454eaf48b67cf9c5e5f37.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47198.jpg"]}
{"url": ["/htm/mp46/47199.htm"], "text": ["\u30ce\u30fc\u30d1\u30f3\u5973\u6559\u5e08 \u7686\u9053\u3042\u3086\u3080"], "image_paths": ["full/93cf0a716ebef581dba7cec47fcc933062c43e46.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47199.jpg"]}
{"url": ["/htm/mp46/47197.htm"], "text": ["\u8ebe\u3051\u3089\u308c\u305f\u8089\u4f53 \u590f\u76ee\u5f69\u6625 \u5e83\u702c\u5948\u3005\u7f8e"], "image_paths": ["full/d8634b6d09cc4cedd108e921d7ca70b726636e28.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47197.jpg"]}
{"url": ["/htm/mp46/47192.htm"], "text": ["\u30cd\u30c8\u30e9\u30ec\u4eba\u59bb\u30aa\u30fc\u30af\u30b7\u30e7\u30f3 \u6e1a\u3046\u308b\u307f \u5927\u69fb\u3072\u3073\u304d \u5317\u5ddd\u30a8\u30ea\u30ab \u963f\u90e8\u4e43\u307f\u304f"], "image_paths": ["full/9535b0aad20d190f84a1ee09df899062bd51d1bd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47192.jpg"]}
{"url": ["/htm/mp46/47207.htm"], "text": ["\u7279\u58f2\u30c1\u30e9\u30b7\u306e\u4e0b\u7740\u30e2\u30c7\u30eb\u3092\u3084\u3089\u3055\u308c\u305f\u59bb \u30c1\u30e3\u30e9\u3044\u30ab\u30e1\u30e9\u30de\u30f3\u306e\u53e3\u8f66\u306b\u4e57\u305b\u3089\u308c\u3066\u2026 \u897f\u6761\u6c99\u7f57"], "image_paths": ["full/55bfc3c1cc06db0ede79e42c333817bda0f88b12.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47207.jpg"]}
{"url": ["/htm/mp46/47194.htm"], "text": ["\u7d76\u5bfe\u989c\u51fa\u3057NG\u306e\u5143\u30ec\u30fc\u30b9\u30af\u30a4\u30fc\u30f3\u7f8e\u811a\u59bb\u304c\u95f7\u3048\u72c2\u3046\u30de\u30be\u5974\u96b6\u79cd\u4ed8\u3051\u8c03\u6559 \u3055\u304f\u3089"], "image_paths": ["full/1b782da3c3a04127c36306f1e5601419778b81c3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47194.jpg"]}
{"url": ["/htm/mp46/47196.htm"], "text": ["\u3010\u4e2a\u4eba\u64ae\u5f71\u3011\u30cf\u30fc\u30d5\u7f8e\u597319\u6b73\u3068\u30ca\u30de\u4e2d\u51fa\u3057\u30cf\u30e1\u64ae\u308a\uff01\u672c\u6c17\u3067\u4e2d\u51fa\u3057\u3092\u304a\u613f\u3044\u3059\u308b\u307b\u3069\u9676\u9154\u3059\u308b\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u30bb\u30c3\u30af\u30b9\u3010\u9ad8\u753b\u8d28\u3011 \u30b5\u30ea\u30fc"], "image_paths": ["full/b853b1d4c063b195914ae90f34a42095d8d37e1f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47196.jpg"]}
{"url": ["/htm/mp46/47205.htm"], "text": ["\u591c\u884c\u30d0\u30b9\u3067\u58f0\u3082\u51fa\u305b\u305a\u30a4\u30ab\u3055\u308c\u305f\u9699\u306b\u751f\u30cf\u30e1\u3055\u308c\u305f\u5973\u306f\u30b9\u30ed\u30fc\u30d4\u30b9\u30c8\u30f3\u306e\u75f9\u308c\u308b\u5feb\u611f\u306b\u7406\u6027\u3092\u5931\u3044\u4e2d\u51fa\u3057\u3082\u62d2\u3081\u306a\u3044 3"], "image_paths": ["full/201d5f3592bd6dc5ef4a49151778a9a0b4d8c5cd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47205.jpg"]}
{"url": ["/htm/mp46/47206.htm"], "text": ["\u6781\u96502\u7a74\u75f4\u6c49 \u30b9\u30da\u30b7\u30e3\u30eb 5 \u6bce\u671d\u3001\u30d0\u30b9\u3067\u89c1\u304b\u3051\u308b\u5de8\u4e73\u5973\u6559\u5e08\u3092\u8fde\u65e5\u75f4\u6c49\u30672\u7a74\u540c\u65f6\u4e2d\u51fa\u3057"], "image_paths": ["full/a2bd901aacaf446d1a5642ffa74bc14494a9acf2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47206.jpg"]}
{"url": ["/htm/mp46/47204.htm"], "text": ["H\u30ab\u30c3\u30d7\u7206\u4e73\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u767a\u60c5\u4e2d\u51fa\u3057\u6deb\u4ea4\u64ae\u5f71 RION"], "image_paths": ["full/54a092560af4b1c343eca3a8f9e309dace02e532.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47204.jpg"]}
{"url": ["/htm/mp46/47210.htm"], "text": ["\u522b\u989c\u30ad\u30e3\u30d3\u30f3\u30a2\u30c6\u30f3\u30c0\u30f3\u30c8 \u79cb\u6708\u5c0f\u753a"], "image_paths": ["full/3b5e022e4f5d9b6ed2b55d0642c8874fd776c533.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47210.jpg"]}
{"url": ["/htm/mp46/47209.htm"], "text": ["\u9ebb\u8863\u5b50\u306e\u8857\u5934\u30ec\u30ba\u30ca\u30f3\u30d1 3"], "image_paths": ["full/f775d142a74d2d13d3ecade792670c933c0a7289.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47209.jpg"]}
{"url": ["/htm/mp46/47211.htm"], "text": ["\u89c1\u3064\u3081\u3089\u308c\u308b\u306e\u5f31\u3044\u3093\u3067\u3057\u3087\uff1f \u68ee\u306a\u306a\u3053"], "image_paths": ["full/b670c4d7c0748e6baf53b117c2a7e39cc43ecf74.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47211.jpg"]}
{"url": ["/htm/mp46/47208.htm"], "text": ["\u672a\u4ea1\u4eba\u306e\u4e49\u6bcd\u306b\u8bf1\u308f\u308c\u3066\u2026 \u77e2\u90e8\u5bff\u6075"], "image_paths": ["full/fbe83b49a242502c5f97a9e4d6ee1f9b70d2947a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47208.jpg"]}
{"url": ["/htm/mp46/47215.htm"], "text": ["\u5b50\u5bab\u30ec\u30f3\u30bf\u30eb\u5973\u5b50\u6821\u751f \u4ec6\u306e\u5f7c\u5973\u306f\u8c01\u3068\u3067\u3082\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9\u3092\u3059\u308b\u30c3\uff01\uff01 \u306a\u3064\u3081\u7231\u8389"], "image_paths": ["full/e6cc4e0c78cee8dfb8eef475d41b87fb14018e5d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47215.jpg"]}
{"url": ["/htm/mp46/47213.htm"], "text": ["\u3044\u3064\u3067\u3082\u3069\u3053\u3067\u3082\u5373\u30cf\u30e1\u30e1\u30a4\u30c9 \u4f0a\u4e1c\u3061\u306a\u307f"], "image_paths": ["full/4b79906468dbfe812a8d0b9691a13282ed5841a5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47213.jpg"]}
{"url": ["/htm/mp46/47214.htm"], "text": ["\u8d85\u9ad8\u7ea7\u5c0f\u60aa\u9b54\u30e1\u30f3\u30ba\u30a8\u30b9\u30c6\u30b5\u30ed\u30f3 \u521d\u5ddd\u307f\u306a\u307f"], "image_paths": ["full/80ad6aaee504435656ae8b0a5f29f8a843581d03.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47214.jpg"]}
{"url": ["/htm/mp46/47212.htm"], "text": ["\u3061\u3063\u3061\u3083\u306a\u30ab\u30e9\u30c0\u3068\u5c0f\u3076\u308a\u306a\u30aa\u30c3\u30d1\u30a4\u3002\u3057\u3085\u308a148cm"], "image_paths": ["full/d65068260c74156edc5d75733e08847dd9d0a807.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47212.jpg"]}
{"url": ["/htm/mp46/47219.htm"], "text": ["\u98ce\u95f4\u3086\u307f\u3055\u3093\u306e\u3080\u3063\u3061\u3080\u3061\u306a\u304a\u5c3b\u304c\u3042\u307e\u308a\u306b\u3082\u30a8\u30ed\u8fc7\u304e\u3066\u2026\u6211\u6162\u51fa\u6765\u305a\u306b\u601d\u308f\u305a\u633f\u5165\u3057\u3061\u3083\u3044\u307e\u3057\u305f\u3002"], "image_paths": ["full/1c2c9b8aa069ecf44456dc80fba268b25d673212.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47219.jpg"]}
{"url": ["/htm/mp46/47218.htm"], "text": ["\u5de8\u4e73\u3060\u3089\u3051\u306e\u5973\u5b50\u5927\u751f\u5bee\u3067\u6bce\u65e5\u5b50\u4f5c\u308a\u4e2d\u51fa\u3057SEX"], "image_paths": ["full/a1183947e91688582803f6765faeaace1659567d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47218.jpg"]}
{"url": ["/htm/mp46/47223.htm"], "text": ["\u4ec6\u3068\u53cb\u8d35\u306e\u7518\uff5e\u3044\u540c\u6816\u6027\u6d3b \u5409\u6cfd\u53cb\u8d35"], "image_paths": ["full/7f1d71ab91382f5ebf0c1d7f89b270b77b14c820.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47223.jpg"]}
{"url": ["/htm/mp46/47216.htm"], "text": ["\u3064\u308b\u30de\u30f3\u6c57\u3060\u304fJK \u7231\u987b\u5fc3\u4e9c \u7f8e\u5c11\u5973\u304c\u6027\u6b32\u3092\u5265\u304d\u51fa\u3057\u306b\u3001\u304c\u3080\u3057\u3083\u3089\u4e2d\u51fa\u3057SEX"], "image_paths": ["full/6b3345ec3ba1d73b43fd4204036b7e7851bee962.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47216.jpg"]}
{"url": ["/htm/mp46/47217.htm"], "text": ["\u30a2\u30a4\u30c9\u30eb\u306b\u306a\u308a\u305f\u3044\u5730\u5473\u306a\u773c\u955c\u3063\u5b50 \u793e\u957f\u3055\u3093\u306a\u3093\u3067\u3082\u3057\u307e\u3059\u304b\u3089\u3001\u308f\u305f\u3057\u3092\u89c1\u820d\u3066\u306a\u3044\u3067\u2026 149cm\u4e45\u6211\u304b\u306e\u3093"], "image_paths": ["full/7c8ad58e4a31eb5c378d84673f9a9e02ff18f4b6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47217.jpg"]}
{"url": ["/htm/mp46/47222.htm"], "text": ["\u30ef\u30bf\u30b7\uff01\u3082\u3063\u3068\u6c17\u6301\u3061\u826f\u304f\u306a\u308a\u305f\u3044\u3093\u3067\u3059\u3063\uff01\uff01 \u5f7c\u6c0f\u306e\u3053\u3068\u306f\u597d\u304d\u3060\u3051\u3069\u3001\u3076\u3063\u3061\u3083\u3051\u5f7c\u3068\u306e\u30bb\u30c3\u30af\u30b9\u3063\u3066\u3059\u3054\u304f\u7269\u8db3\u308a\u306a\u3044\u3093\u3067\u3059\uff01 \u7231\u534e\u307f\u308c\u3044"], "image_paths": ["full/1cb602e4b584999b1a83a6a9e4e63b078d8d52ce.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47222.jpg"]}
{"url": ["/htm/mp46/47221.htm"], "text": ["\u731f\u5947\u7684\u306a\u90bb\u4eba\u30b9\u30c8\u30fc\u30ab\u30fc \u3042\u306e\u5b50\u306f\u304d\u3063\u3068\u5f7c\u6c0f\u3088\u308a\u4ffa\u306b\u72af\u3055\u308c\u305f\u3044\u306b\u51b3\u307e\u3063\u3066\u308b \u4e2d\u6751\u68a8\u4e43"], "image_paths": ["full/60b41e7f7221309f738de7a0c06cdad975b0bd03.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47221.jpg"]}
{"url": ["/htm/mp46/47220.htm"], "text": ["\u30bf\u30a4\u30c8\u30b9\u30ab\u30fc\u30c8\u3092\u7a7f\u304b\u3055\u308c\u3066\u2026\u3002 \u305f\u304b\u305b\u7531\u5948"], "image_paths": ["full/4c817fc9e73400b5cf51d3dfc368bea21ad0bc35.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47220.jpg"]}
{"url": ["/htm/mp46/47227.htm"], "text": ["\u30de\u30b9\u30af\u8089\u4fbf\u5668\uff01\u5a9a\u85ac\u306b\u6e0d\u3051\u3089\u308c\u305f\u7206\u4e73\u4eba\u59bb\u305f\u3061"], "image_paths": ["full/1e259489ff90b993e8413b45b98c87ff9038e22c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47227.jpg"]}
{"url": ["/htm/mp46/47226.htm"], "text": ["\u59b9\u306e\u751f\u6d3b\u3092\u8997\u304f\u9b54\u306e\u89c6\u7ebf\u2026\u306a\u3093\u3068\u72af\u4eba\u306f\u5b9f\u5144\u3060\u3063\u305f\u3002 \u95ee\u3044\u8bd8\u3081\u308b\u3068\u5144\u306f\u9006\u30ae\u30ec\u3057\u3066\u2026\u79c1\u306f\u73a9\u5177\u306e\u3088\u3046\u306b\u72af\u3055\u308c\u307e\u3057\u305f\u3002 \u51b2\u7530\u5948\u3005"], "image_paths": ["full/9f030131ce3d1119537801f10158b3086a50c340.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47226.jpg"]}
{"url": ["/htm/mp46/47225.htm"], "text": ["\u30dc\u30af\u306e\u5f7c\u5973\u306fAV\u5973\u4f18\u25c7 \u6ce2\u6728\u306f\u308b\u304b"], "image_paths": ["full/f46896a17892be04f4e423f44861b68a3941dacb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47225.jpg"]}
{"url": ["/htm/mp46/47224.htm"], "text": ["\u5b98\u80fd\u5c0f\u8bf4 \u606f\u5b50\u306e\u604b\u4eba\uff08\u304a\u3093\u306a\uff09 \u957f\u702c\u9ebb\u7f8e"], "image_paths": ["full/12d4306f52331c1f94683d72a981afd70b992152.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47224.jpg"]}
{"url": ["/htm/mp46/47230.htm"], "text": ["\u82b1\u3073\u3089\u5927\u56de\u8ee2\uff01\u304a\u3057\u3083\u3076\u308a\u30d4\u30f3\u30b5\u30ed\u5e97\uff01"], "image_paths": ["full/9313e4ff64c524f21fd3f5be4780eb134979bf36.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47230.jpg"]}
{"url": ["/htm/mp46/47229.htm"], "text": ["\u30d1\u30f3\u30b3\u30ad JK\u8131\u304e\u305f\u3066\u307b\u304b\u307b\u304b\u30d1\u30f3\u30c6\u30a3\u3092\u30c1\u25cf\u30dd\u306b\u88ab\u305b\u30b7\u30b3\u3089\u308c\u308b\u6781\u4e0a\u306e\u30d1\u30f3\u30c4\u30b3\u30ad"], "image_paths": ["full/996e6fd15007f1597d890f722f352e971ef4acc9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47229.jpg"]}
{"url": ["/htm/mp46/47202.htm"], "text": ["\u305d\u3093\u306a\u59bb\u3067\u3082\u7231\u3057\u3066\u308b\u2026 \u59bb\u3092\u540c\u50da\u306b\u5bdd\u53d6\u3089\u308c\u3066\u2026 \u304b\u3059\u307f\u679c\u7a42"], "image_paths": ["full/f49fc9ef31991b7824080db24370fa3db12aefce.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47202.jpg"]}
{"url": ["/htm/mp46/47201.htm"], "text": ["\u4ffa\u306e\u5ac1 BoinBody \u6298\u539f\u307b\u306e\u304b"], "image_paths": ["full/ea5dd79c2726fba2403279839574c53d35f50d05.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47201.jpg"]}
{"url": ["/htm/mp46/47203.htm"], "text": ["\u7d76\u4f26\u8001\u4eba\u305f\u3061\u306b\u5b55\u307e\u305b\u8f6e\u5978\u3055\u308c\u30a4\u30ad\u307e\u304f\u308b\u5de8\u4e73\u5ac1 II \u4e03\u539f\u3042\u304b\u308a"], "image_paths": ["full/96f3bda866424e1b50838e12266b4cb47c94ed41.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47203.jpg"]}
{"url": ["/htm/mp46/47228.htm"], "text": ["\u91d1\u7c89\u5973\u795e \u4e0a\u539f\u4e9c\u8863"], "image_paths": ["full/8607b047ebc9aa3fb993ba1d6a429a019d45b272.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47228.jpg"]}
{"url": ["/htm/mp46/47232.htm"], "text": ["\u989c\u51fa\u3057\u7d20\u4eba\u5a18\u306e\u304a\u307e\u25cf\u3053\u8d85\u63a5\u5199\u89b3\u5bdf \u6e80\u5f00\u82b1\u3073\u3089\u304c\u6fe1\u308c\u305f\u3089\u30bb\u30c3\u30af\u30b9OK\u306e\u30b5\u30a4\u30f3\uff01\uff01\u633f\u5165\u3057\u305f\u3089\u4e2d\u51fa\u3057\u307e\u3067\u6b62\u307e\u3089\u306a\u3044\u30d4\u30b9\u30c8\u30f3\uff01\uff01"], "image_paths": ["full/6423c3d08d304c0c978a535f1bcc98ea53e509b5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47232.jpg"]}
{"url": ["/htm/mp46/47231.htm"], "text": ["\u7d20\u4ebaG\u30ab\u30c3\u30d7\u5de8\u4e73\u306e\u30b9\u30ad\u30e5\u30fc\u30d0\u30fc\u30c0\u30a4\u30d3\u30f3\u30b0\u306e\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc\u304c\u6c57\u30c0\u30af\u30bb\u30c3\u30af\u30b9\u306e\u6700\u540e\u306f\u4e2d\u51fa\u3057\u3057\u3061\u3083\u3044\u307e\u3059\uff01\uff01 SION\u3061\u3083\u309323\u624d"], "image_paths": ["full/7a9ca73460af2467b66d8482af15c8a6d09e0764.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47231.jpg"]}
{"url": ["/htm/mp46/47191.htm"], "text": ["\u5973\u5b50\u6821\u30c6\u30cb\u30b9\u90e8\u5909\u6001\u5b55\u307e\u305b\u5408\u5bbf"], "image_paths": ["full/b999d2dc5067c020cc1d9183eb46fe2b5c2560fc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47191.jpg"]}
{"url": ["/htm/mp46/47233.htm"], "text": ["\u9a6c\u5e76\u307f\u52c3\u8d77\u5fc5\u987b\uff01\uff01\u6ce2\u591a\u91ce\u7ed3\u8863\u306e\u51c4\u30c6\u30af\u306b\u6211\u6162\u3067\u304d\u305f\u3089\u5373\u751f\u4e2d\u51fa\u3057\uff01\uff01\u601d\u308f\u305a12\u767a\u5c04\u7cbe\u3057\u3066\u3057\u307e\u3046\u7d20\u4eba\u7537\u4f18\u65e9\u6f0f\u30c1\u25cf\u30dd\u6539\u5584\u6deb\u8bed\u56de\u6625\u30de\u30c3\u30b5\u30fc\u30b8\uff01\uff1f"], "image_paths": ["full/34158f119e0aee76488b6d8aca990ae8330abdb6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47233.jpg"]}
{"url": ["/htm/mp46/47237.htm"], "text": ["\u30a4\u30f3\u30bf\u30fc\u30ca\u30b7\u30e7\u30ca\u30eb\u8fc7\u304e\u308bG\u30ab\u30c3\u30d7\u4eba\u59bb \u6210\u7530\u4e3d 29\u6b73 AV\u30c7\u30d3\u30e5\u30fc \u5965\u69d8\u306f\u5143\u56fd\u9645\u7ebfCA\u3067\u30de\u30eb\u30c1\u30ea\u30f3\u30ac\u30eb\uff01 \u30de\u30a4\u30c7\u30a3\u30eb\u30c9\u3092\u6301\u3061\u6b69\u304d\u4e16\u754c\u3092\u6e21\u3063\u305f\u624d\u5973\u304c\u3068\u3053\u308d\u6784\u308f\u305a\u767a\u60c5\u3057\u307e\u304f\u308b\uff01\uff01"], "image_paths": ["full/5806564d64eb1ac309e2d7c94eb0a6fe7f08fd7f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47237.jpg"]}
{"url": ["/htm/mp46/47236.htm"], "text": ["\u51fa\u5f20\u30de\u30c3\u30b5\u30fc\u30b8\u3067\u9645\u3069\u3044\u6240\u3092\u4f55\u5ea6\u3082\u523a\u6fc0\u3055\u308c\u30a4\u30af\u5bf8\u524d\u306b\u7ec8\u4e86\u3055\u305b\u3089\u308c\u305f\u4eba\u59bb\u306f\u81ea\u3089\u5ef6\u957f\u3092\u7533\u3057\u5165\u308c\u633f\u5165\u4e2d\u51fa\u3057\u3092\u6073\u613f\u3059\u308b\uff014"], "image_paths": ["full/9c5fdf29a22759d83509d835266cf72b30813716.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47236.jpg"]}
{"url": ["/htm/mp46/47235.htm"], "text": ["\u3082\u3057\u3082\u65f6\u95f4\u3092\u81ea\u7531\u306b\u6b62\u3081\u3089\u308c\u305f\u3089\u2026 5 \u6e29\u6cc9\u5de8\u4e73\u7f8e\u5973SP"], "image_paths": ["full/567f6947bc56a60db163d39dc1d9d4d7c4eca2ec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47235.jpg"]}
{"url": ["/htm/mp46/47234.htm"], "text": ["\u5916\u8d44\u7cfb\u4f01\u4e1a\u306b\u52e4\u3081\u308b\u30dc\u30af\u306f\u62db\u304b\u308c\u305f\u4e0a\u53f8\u5b85\u3067\u5168\u88f8\u306b\u30d0\u30b9\u30bf\u30aa\u30eb1\u679a\u306e\u5916\u56fd\u4eba\u59bb\u3068\u94b5\u5408\u308f\u305b\uff01\uff01\u307e\u3055\u304b\u306e\u30dd\u30ed\u30ea\u3053\u307c\u308c\u51fa\u305f\u751f\u30aa\u30c3\u30d1\u30a4\u306b\u601d\u308f\u305a\u76ee\u304c\u9489\u4ed8\u3051\u306b\u2026"], "image_paths": ["full/8ae72c69d1f3f2280c2e090e466a00db0c33a04f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47234.jpg"]}
{"url": ["/htm/mp46/47242.htm"], "text": ["\u67d0\u30d6\u30e9\u30a4\u30c0\u30eb\u30a8\u30b9\u30c6\u3067\u5168\u8eab\u304c\u8d85\u654f\u611f\u30aa\u30de\u25cf\u30b3\u306b\u306a\u308b\u6fc0\u70c8\u5a9a\u85ac\u3092\u30aa\u30a4\u30eb\u306b\u6df7\u5165\u3057\u4e73\u9996\u30d3\u30f3\u52c3\u3061\u306e\u7f8e\u5de8\u4e73\u3092\u306d\u3063\u3068\u308a\u63c9\u307f\u3057\u3060\u304b\u308c\u308c\u3070 \u5a5a\u524d\u82b1\u5ac1\u306f\u58f0\u3082\u51fa\u305b\u305a\u306b\u75c9\u631b\u30a4\u30ad\u8fde\u767a\uff01\uff01\u611f\u3058\u307e\u304f\u3063\u3066\u5f00\u304d\u3063\u3071\u306a\u3057\u306e\u5b50\u5bab\u53e3\u306f\u30ac\u30c1\u52c3\u8d77\u3057\u305f\u4ed6\u4eba\u68d2\u306e\u751f\u633f\u5165?\u751f\u4e2d\u51fa\u3057\u3092\u62d2\u3081\u306a\u3044\uff01 2"], "image_paths": ["full/cbdf5171be7bc5f528b9414d10670b3bfb9d4ccf.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47242.jpg"]}
{"url": ["/htm/mp46/47241.htm"], "text": ["100\u4e07\u5186\u3067\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0\u3055\u305b\u3066\u304f\u3060\u3055\u3044\uff01\u8857\u3086\u304f\u4f18\u3057\u3044\u82e5\u59bb\u304c\u8349\u98df\u7cfb\u7537\u5b50\u306e\u6027\u306e\u304a\u60a9\u307f\u76f8\u8c08\u306b\u306e\u308b\u3060\u3051\u306e\u306f\u305a\u304c\u2026\u6bcd\u6027\u3092\u304f\u3059\u3050\u3089\u308c\u3066\u30af\u30e9\u30af\u30e9\uff01\u304a\u91d1\u306b\u9493\u3089\u308c\u3066\u30d5\u30e9\u30d5\u30e9\uff01 2"], "image_paths": ["full/630b617b9e3ff910a4479a6aa8e26bdd71de49e3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47241.jpg"]}
{"url": ["/htm/mp46/47239.htm"], "text": ["\u300c\u814b\u3070\u3063\u304b\u308a\u64ae\u3089\u306a\u3044\u3067\u2026\u300d\u300c\u30a2\u30ca\u30eb\u3060\u3051\u306a\u3093\u3066\u803b\u305a\u304b\u3057\u3044\u300d\u30a8\u30ed\u4e00\u5207\u7981\u6b62\u3001\u7d20\u4eba\u30d5\u30a7\u30c1\u4f5c\u54c1\u64ae\u5f71\u4e2d\u306b\u5a9a\u85ac\u3092\u996e\u307e\u305b\u3066\u5f3a\u5236\u767a\u60c5\uff01\uff01\u7f9e\u803b\u00d7\u6deb\u4e71\u52b9\u679c\u3067\u5973\u304b\u3089\u672c\u756a\u3092\u6c42\u3081\u308b\u691c\u8bc1\u6620\u50cf\uff01\uff01"], "image_paths": ["full/01f05ab7a29bbc071852409a4ef4bc411ed21a01.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47239.jpg"]}
{"url": ["/htm/mp46/47238.htm"], "text": ["\u7a81\u7136\u306e\u30b2\u30ea\u30e9\u8c6a\u96e8\u3067\u5168\u8eab\u3073\u3057\u3087\u6fe1\u308c\u3001\u8584\u7740\u304c\u900f\u3051\u3066\u8d34\u308a\u4ed8\u304f\u670d\u304c\u5168\u88f8\u3092\u8fde\u60f3\uff01\uff01\u89c1\u3089\u308c\u3066\u803b\u305a\u304b\u3057\u3044\u900f\u3051\u30d6\u30e9\u900f\u3051\u30d1\u30f3\u304c\u30a8\u30ed\u5947\u8ff9\u3092\u8d77\u3053\u3059\uff01\uff01"], "image_paths": ["full/b69f7431106bca7ef9a0bd2f562c10b53dd61c8c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47238.jpg"]}
{"url": ["/htm/mp46/47246.htm"], "text": ["\u4ec6\u306e\u59b9 S\u7ea7\u7d20\u4eba\u51fa\u6f14\u51fa\u6765\u307e\u3059\u304b\uff1f PART 2 \u5144\u304c\u6295\u7a3f 20\u6b73\u5bab\u5d0e\u51fa\u8eab\u306e\u7530\u820e\u5a18AV\u30c7\u30d3\u30e5\u30fc\uff01\uff1f \u307f\u304a"], "image_paths": ["full/b90d6ae0c5b1aeb82c81bb85cf4467c963f8a45d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47246.jpg"]}
{"url": ["/htm/mp46/47245.htm"], "text": ["\u30ef\u30fc\u30ad\u30f3\u30b0\u30d7\u30a2OL \u7533\u544a\u51fa\u6765\u306a\u3044\u91cc\u30d0\u30a4\u30c8\u7ed9\u4e0e\u660e\u7ec6 vol.01"], "image_paths": ["full/a57a696ec99cb9d6c15c68e6a1360856affdf9c3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47245.jpg"]}
{"url": ["/htm/mp46/47244.htm"], "text": ["\u65b0?\u653e\u8bfe\u540e\u30a4\u30de\u30c9\u30adJK\u3068\u304a\u6563\u6b69\u308f\u308a\u304d\u308a\u30d0\u30a4\u30c8 01 \u3057\u3085\u308a\u3061\u3083\u3093"], "image_paths": ["full/eca798bbb567239668480002eda46c850c97e43c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47244.jpg"]}
{"url": ["/htm/mp46/47243.htm"], "text": ["\u654f\u8155\u30b9\u30ab\u30a6\u30c8\u30de\u30f3\u304c\u8fde\u308c\u3066\u304d\u305fS\u7ea7\u7d20\u4eba\u3092\u53e3\u8bf4\u304d\u843d\u3068\u3057\u3066\u30ac\u30c1FUCK"], "image_paths": ["full/3484156b73c71c44216a40a34ca3a74151048b23.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47243.jpg"]}
{"url": ["/htm/mp46/47251.htm"], "text": ["\u30a2\u30a4\u30c9\u30eb\u6d53\u539a\u751f\u4e2d\u8c03\u6559 \u5317\u5ddd\u77b3"], "image_paths": ["full/1a923f4a03e50acdcdc0bd1ec02c9676ca7efd5d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47251.jpg"]}
{"url": ["/htm/mp46/47250.htm"], "text": ["\u30ad\u30e3\u30ea\u30a2\u30a6\u30fc\u30de\u30f3 \u5371\u967a\u65e5\u79cd\u4ed8\u3051\u51cc\u8fb1 \u702c\u5948\u307e\u304a"], "image_paths": ["full/b11e351d38cd140b41b793b79c925a61dc58f2c3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47250.jpg"]}
{"url": ["/htm/mp46/47249.htm"], "text": ["\u8fde\u65e5\u306e\u731b\u6691\u306e\u305b\u3044\u3067\u70ed\u4e2d\u75c7\u304c\u7d9a\u51fa\uff01\uff1f\u305d\u3093\u306a\u4e2d\u3001\u4ec6\u3089\u306e\u5b66\u6821\u304c\u7d27\u6025\u3067\u4f5c\u3063\u305f\u6821\u5219\u306f\u300c\u30b9\u30fc\u30d1\u30fc\u30af\u30fc\u30eb\u30d3\u30ba\u300d\u3060\u3063\u305f\uff01\u5468\u308a\u3092\u89c1\u308c\u3070\u5973\u5b50\u306e\u30a4\u30e4\u30e9\u3057\u304f\u767a\u80b2\u3057\u305f\u8eab\u4f53\u304c\uff01\u305d\u3093\u306a\u72b6\u51b5\u3067\u6388\u4e1a\u306b\u96c6\u4e2d\u3067\u304d\u308b\u8a33\u3082\u306a\u304f\u3001\u5973\u5b50\u3092\u89c1\u308b\u305f\u3073\u30e0\u30e9\u30e0\u30e9\u3057\u3066\u3057\u307e\u3044\u2026"], "image_paths": ["full/2ab1d417aa1d96a57136f32db6c6cde25a77a338.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47249.jpg"]}
{"url": ["/htm/mp46/47256.htm"], "text": ["\u30a2\u30c0\u30eb\u30c8\u30d3\u30c7\u30aa\u30b7\u30e7\u30c3\u30d7\u306b\u95f4\u8fdd\u3048\u3066\u5165\u3063\u3066\u304d\u305f\u304a\u59c9\u3055\u3093\u3068\u72ed\u3044\u5e97\u5185\u30672\u4eba\u304d\u308a\u30c9\u30ad\u30c9\u30ad\u89c6\u7ebf\u306b\u30d5\u30eb\u52c3\u8d77\u72b6\u6001\u3067\u3059\u3002\u304a\u5c3b\u3092\u30dc\u30af\u306e\u80a1\u95f4\u306b\u62bc\u3057\u5f53\u3066\u3089\u308c\u3066\u7206\u767a\u5bf8\u524d\u3001\u5e97\u5458\u3084\u4ed6\u306e\u5ba2\u306b\u30d0\u30ec\u306a\u3044\u3088\u3046\u306bH\u51fa\u6765\u308b\u306e\u3067\u3057\u3087\u3046\u304b\uff1f"], "image_paths": ["full/997185fc4ea556c03acdc4f1d50136ca0bc7da64.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47256.jpg"]}
{"url": ["/htm/mp46/47248.htm"], "text": ["\u518d\u5a5a\u76f8\u624b\u306e\u8fde\u308c\u5b50\u306f\u7f8e\u4eba\u5973\u5b50\u6821\u751f\u59c9\u59b9\uff01\uff01\u521d\u3081\u3066\u7686\u3067\u5ddd\u306e\u5b57\u3067\u5bdd\u308b\u4e8b\u306b\u2026\u3002\u660e\u3051\u65b9\u3001\u5e74\u9877\u3067\u53ef\u7231\u3044\u59b9\u306e\u30d1\u30b8\u30e3\u30de\u304c\u306f\u3060\u3051\u3001\u767a\u80b2\u9014\u4e2d\u306e\u8eab\u4f53\u3092\u89c1\u3066\u6b32\u60c5\u3057\u3066\u3057\u307e\u3063\u305f\u4ec6\u306f\u5f7c\u5973\u3092\u2026\uff01\uff01\u3075\u3068\u6a2a\u3092\u89c1\u308b\u3068\u3001\u59b9\u3068\u4ec6\u304cSEX\u3057\u3066\u3044\u308b\u306e\u3092\u6c17\u3065\u3044\u305f\u59c9\u304c\u3001\u5174\u594b\u3057\u8eab\u4f53\u3092\u304f\u306d\u3089\u305b\u3066\u3044\u305f\u306e\u3067\u20264"], "image_paths": ["full/e8e24a28ecb3fc9fc7d588ae2b8ce3a82a69e3be.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47248.jpg"]}
{"url": ["/htm/mp46/47255.htm"], "text": ["AIKA \u5973\u304c\u7537\u3092\u672c\u80fd\u306e\u307e\u307e\u306b\u6c42\u3081\u308b\u30ce\u30f3\u30b9\u30c8\u30c3\u30d7\u30ce\u30fc\u30ab\u30c3\u30c8\u6027\u4ea4\u3002"], "image_paths": ["full/c83ac2ccef465d182d35f218614b056db3e87dac.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47255.jpg"]}
{"url": ["/htm/mp46/47254.htm"], "text": ["\u5c3d\u304d\u306a\u3044\u5feb\u697d\u306b\u7406\u6027\u306f\u5d29\u58ca\u3002 \u7518\u826f\u3057\u305a\u304f"], "image_paths": ["full/31877851731fb989b38fed69c7c81542993d86ea.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47254.jpg"]}
{"url": ["/htm/mp46/47252.htm"], "text": ["\u30ae\u30e3\u30eb\u30cf\u30e1\u30a6\u30a3\u30fc\u30af\u30a8\u30f3\u30c9\uff01\uff01 Vol.003"], "image_paths": ["full/b92da3d7d752b77792b356100f6c9b48daee6ad9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47252.jpg"]}
{"url": ["/htm/mp46/47260.htm"], "text": ["\u30ac\u30b5\u5165\u308c\uff01\u30d3\u30c3\u30b0\u30d0\u30f3\u30ed\u30fc\u30bf\u30fc\u6539 \u5973\u5b50\u5927\u751fAV\u5973\u4f18\u306e\u4e00\u4eba\u66ae\u3089\u3057\u306e\u81ea\u5b85\u306b\u30a2\u30dd\u65e0\u3057\u8bbf\u95ee\uff01\u5b66\u6821\u3084\u53cb\u8fbe\u306b\u30d0\u30e9\u3059\u3088\uff1f\u3068\u80c1\u3057\u306a\u304c\u3089\u5f3a\u5f15\u306b\u90e8\u5c4b\u306b\u4e0a\u304c\u308a\u3053\u3093\u3067\u8c03\u6559SEX\u305d\u3057\u3066\u5f7c\u6c0f\u306b\u5185\u7eea\u3067\u6f6e\u3092\u5439\u304f\u307e\u3067\u3001\u4ffa\u305f\u3061\u5e30\u308a\u307e\u30c6\u30f3\uff01 \u5bab\u5d0e\u3042\u3084"], "image_paths": ["full/fb641726462324fbb50cd414768b6e1d125265de.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47260.jpg"]}
{"url": ["/htm/mp46/47259.htm"], "text": ["\u4e88\u5907\u6821\u306b\u901a\u3046\u5730\u5473\u3067\u30de\u30b8\u30e1\u306a\u5973\u5b50\u6821\u751f\u3092\u30ec\u30a4\u30d7\u3057\u306a\u304c\u3089\u5168\u8eab\u3092\u5a9a\u85ac\u6e0d\u3051\u306b\u3057\u305f\u3089\u3001 \u3053\u3063\u3061\u304c\u5f15\u304f\u307b\u3069\u75c9\u631b?\u6f6e\uff06\u6ce1\u5439\u304d?\u5931\u795e\u3057\u307e\u304f\u3063\u305f\uff01 2"], "image_paths": ["full/f4ee20bc02a87786d1ac0b1e226fd76c423bc521.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47259.jpg"]}
{"url": ["/htm/mp46/47258.htm"], "text": ["\u5973\u5b50\u793e\u5458\u3060\u3051\u306e\u90e8\u7f72\u306b\u7537\u306f\u30dc\u30af1\u4eba\u3002\u9ed2\u30d1\u30f3\u30b9\u30c8\u304b\u3089\u3053\u307c\u308c\u305f\u900f\u3051\u30d1\u30f3\u30c1\u30e9\u306b\u52c3\u8d77\u3057\u3066\u308b\u30c1\u25cb\u30dd\u30b3\u30926\u4eba\u306e\u5148\u8f88\u306b\u305f\u3063\u3077\u308a\u53ef\u7231\u304c\u3063\u3066\u3082\u3089\u3044\u3001\u629c\u304b\u308c\u3059\u304e\u3066\u6b7b\u306b\u305d\u3046\u3067\u3059\uff01"], "image_paths": ["full/5f04205627aeef483a4a2e7389f7ffa2538ee8ff.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47258.jpg"]}
{"url": ["/htm/mp46/47257.htm"], "text": ["\u6bce\u671d\u901a\u52e4\u9014\u4e2d\u306b\u89c1\u304b\u3051\u308b\u5973\u5b50\u6821\u751f\u306e\u30d1\u30f3\u30c1\u30e9\u304c\u89c1\u3048\u3066\u5174\u594b\u3057\u3066\u305f\u3089\u3001\u5f7c\u5973\u305f\u3061\u3082\u5b9f\u306f\u89c1\u3089\u308c\u305f\u304c\u3063\u3066\u30c9\u30ad\u30c9\u30ad\u3057\u3066\u3044\u308b\u4ef6\u3002"], "image_paths": ["full/55f9c86371a338f6831c545935b26c62cdf78f59.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47257.jpg"]}
{"url": ["/htm/mp46/47263.htm"], "text": ["\u9022\u5742\u306f\u308b\u306a\u3061\u3083\u3093\u30bf\u30aa\u30eb\u4e00\u679a\u7537\u6c64\u5165\u3063\u3066\u307f\u307e\u305b\u3093\u304b\uff1fHARD"], "image_paths": ["full/c5f9dbddc3eb65bad7dbe5d8514b4b808fb7c3d6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47263.jpg"]}
{"url": ["/htm/mp46/47264.htm"], "text": ["DIGITAL CHANNEL \u767d\u77f3\u8309\u8389\u5948 \u7acb\u82b1\u306f\u308b\u307f"], "image_paths": ["full/17e0e86081cc1aaad78f2658538d811029ebcae0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47264.jpg"]}
{"url": ["/htm/mp46/47262.htm"], "text": ["DIGITAL CHANNEL DC 134 \u89e3\u7981\uff01\u521d\u306e\u5927\u91cf\u3076\u3063\u304b\u3051\uff01\u8d85\u30ec\u30a2\u30cf\u30e1\u64ae\u308a\uff01\u8c03\u6559\u8fde\u7d9a\u30d5\u30a7\u30e9\u30c1\u30aa\uff01\u6700\u5f3a\u6d53\u539a\u30b3\u30f3\u30c6\u30f3\u30c4\u306e190\u5206\uff01 \u685c\u6728\u51db"], "image_paths": ["full/71c6c345988a749cb1311eab32cc87fe55958ab3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47262.jpg"]}
{"url": ["/htm/mp46/47261.htm"], "text": ["\u30ae\u30ac\u30da\u30cb\u30b9VOL.2 \u9ed2\u4eba\u89e3\u7981 \u307f\u306a\u307f\u83dc\u3005Hold\u3014\u592a\u3055\u301516cm\u00d7Length\u3014\u957f\u3055\u301523cm"], "image_paths": ["full/2f2313f4cb54485bcb4911a425aa86162008e73b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47261.jpg"]}
{"url": ["/htm/mp46/47269.htm"], "text": ["\u59c9\u3078\u306e\u3057\u3064\u3051 \uff5e\u5f1f\u306e\u3044\u3044\u306a\u308a\u5974\u96b6\u306b\u306a\u308b\u307e\u3067\u306e5\u65e5\u95f4\uff5e"], "image_paths": ["full/c0a1e11beb4cf343a245baf6ec133001f47f67ec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47269.jpg"]}
{"url": ["/htm/mp46/47265.htm"], "text": ["\u7eb1\u4ed3\u307e\u306a \u7d27\u7f1a\u6027\u5974\u96b6"], "image_paths": ["full/c45c4ac3f90cdde5e80b4b50b923d5bee43ee2f4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47265.jpg"]}
{"url": ["/htm/mp46/47267.htm"], "text": ["\u5909\u6001\u5bb6\u65cf \u8fd1\u4eb2\u76f8\u5978 \u6b6a\u3093\u3060\u4e00\u5bb6\u306e\u65e5\u5e38\u8bb0\u9332"], "image_paths": ["full/7c88f84c89f8b0e04a8953121c57777117dfe940.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47267.jpg"]}
{"url": ["/htm/mp46/47266.htm"], "text": ["\u7279\u522b\u306a\u65e5\u306e\u3001\u683c\u522b\u306aSEX \u3053\u3093\u306a\u670d\u88c5\u3067\u30a8\u30c3\u30c1\u3057\u3061\u3083\u3063\u305f\u8bdd"], "image_paths": ["full/aa09251edba4e1fd962682c4f193dcb64dc82e22.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47266.jpg"]}
{"url": ["/htm/mp46/47271.htm"], "text": ["\u5e30\u56fd\u5b50\u5973 \u6c34\u6ca2\u7f8e\u6d77 20\u6b73 \u5904\u5973\u4e27\u5931"], "image_paths": ["full/c13db03bce55189973b86fb414d4e09c0aad8a10.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47271.jpg"]}
{"url": ["/htm/mp46/47276.htm"], "text": ["\u30bb\u30c3\u30af\u30b9\u30ec\u30b9\u306e\u59bb\u304c\u7981\u65ad\u306e\u5a9a\u85ac\u6cbb\u9a13\u30a2\u30eb\u30d0\u30a4\u30c8 \u521d\u7f8e\u6c99\u5e0c"], "image_paths": ["full/72cefca59fb5d99ea0f35651e610a6b2baf9422b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47276.jpg"]}
{"url": ["/htm/mp46/47270.htm"], "text": ["SOD\u5973\u5b50\u793e\u5458 \u7b2c34\u56de \u738b\u69d8\u30b2\u30fc\u30e0 \u793e\u5185\u3067\u3082\u4e00\u9645\u76ee\u7acb\u3064\u30e2\u30c7\u30eb\u7ea7\u957f\u8eab\u7f8e\u811a\u5973\u5b50\u793e\u54586\u540d \u957f\uff5e\u3044\u624b\u8db3\u306b\u5f04\u3070\u308c\u305f\u3044\uff01\u5927\u304d\u306a\u5973\u4f53\u306b\u7518\u3048\u305f\u3044\uff01\u5c0f\u3055\u3081\u30e6\u30fc\u30b6\u30fc\u69d8\u3068\u8eab\u957f\u5dee\u6700\u592726cm\u306e\u51f8\u51f9\u738b\u30b2\u30fc\u2015\u305d\u3057\u30666\u540d\u5168\u5458\u304cSEX"], "image_paths": ["full/43cec90fb74ae06a696570c23eb0ce47d9d2896f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47270.jpg"]}
{"url": ["/htm/mp46/47275.htm"], "text": ["\u6bcd\u4eb2\u3068\u606f\u5b50\u306e\u5de8\u4e73\u4eb2\u5b50\u30bd\u30fc\u30d7\u4e00\u8ee2\u4e2d\u51fa\u3057\u8fd1\u4eb2\u76f8\u5978 2"], "image_paths": ["full/fdfd83d2fe005862cc6a2ed601c911b2c75af576.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47275.jpg"]}
{"url": ["/htm/mp46/47274.htm"], "text": ["\u6ce2\u591a\u91ce\u7ed3\u8863BEST"], "image_paths": ["full/aa7a42da1d8c10b14ab09382cb9daceca85c5dad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47274.jpg"]}
{"url": ["/htm/mp46/47273.htm"], "text": ["\u300c\u5236\u670d?\u4e0b\u7740?\u5168\u88f8\u300d\u3067\u304a\u3082\u3066\u306a\u3057 \u307e\u305f\u304c\u308a\u30aa\u30de\u25cb\u30b3\u822a\u7a7a 6 \uff5e\u3010\u6deb\u8bed\u3011\u3010\u304a\u3055\u308f\u308a\u3011\u3010\u7ae5\u8d1e\u3011\u30102\u767a\u5c04\u3011\u65b0\u304a\u307e\u25cb\u3053\u30b5\u30fc\u30d3\u30b9\u306e\u3054\u7ecd\u4ecb\uff5e"], "image_paths": ["full/0f493800a406a4e1a2520a8399f5effb4ab8e3be.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47273.jpg"]}
{"url": ["/htm/mp46/47272.htm"], "text": ["\u7f8e\u5c3b\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc\u3078\u306e\u7a81\u304d\u3042\u3052\u672c\u756a\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u304c\u8bdd\u9898\u306e\u6700\u65b0\u30d5\u30a3\u30c3\u30c8\u30cd\u30b9\u30af\u30e9\u30d6 \u30d4\u30b9\u30c8\u30f3\u30b8\u30e0 \u8868\u53c2\u9053\u672c\u5e97"], "image_paths": ["full/bd76c799b6ddd4c1b5e89ac2543de88bf19213a5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47272.jpg"]}
{"url": ["/htm/mp46/47280.htm"], "text": ["\u5973\u5b50\u6821\u751f\u4e2d\u51fa\u3057\u30bd\u30fc\u30d7 \u3064\u307c\u307f"], "image_paths": ["full/92e4e2244f16c22037e4f8220f51f3820f4f75e0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47280.jpg"]}
{"url": ["/htm/mp46/47279.htm"], "text": ["\u30c7\u30ab\u5c3b\u30de\u30cb\u30a2\u30c3\u30af\u30b9 \u5c3e\u4e0a\u82e5\u53f6"], "image_paths": ["full/a06c47a5d0429b653618f014e7a6caee2325a7be.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47279.jpg"]}
{"url": ["/htm/mp46/47278.htm"], "text": ["\u7a81\u6483\u6f5c\u5165\uff01\uff01\u7d20\u4eba\u4e71\u4ea4\u30b5\u30fc\u30af\u30eb3"], "image_paths": ["full/239e0aebbecb6e7d6bc82a133d4acba73700478d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47278.jpg"]}
{"url": ["/htm/mp46/47277.htm"], "text": ["\u4f1a\u793e\u306e\u5148\u8f884\u4eba\u3068\u7814\u4fee\u65c5\u884c\u306b\u6765\u305f\u304b\u3089\u5b50\u4f5c\u308a"], "image_paths": ["full/a727019dd0fd331f1f0908d3a7b2af18dca588b7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47277.jpg"]}
{"url": ["/htm/mp46/47284.htm"], "text": ["\u5c04\u7cbe\u5927\u597d\u304d\u30de\u30b5\u30aa\u541b\u3068\u6b32\u6c42\u4e0d\u6e80\u304a\u59c9\u3061\u3083\u3093\u306eH\u306a\u304a\u7559\u5b88\u756a3 \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/4040f10f639dc842433037bb90e1a3c4d9d58751.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47284.jpg"]}
{"url": ["/htm/mp46/47283.htm"], "text": ["\u54c1\u5ddd\u52e4\u52a1 \u8eab\u957f173cm\u7f8e\u811a\u73b0\u5f79OL AV\u30c7\u30d3\u30e5\u30fc\uff01 \u82b1\u8863\u307f\u3055\u304d"], "image_paths": ["full/7141114766e66e7217c15768fe4259e1175f87d2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47283.jpg"]}
{"url": ["/htm/mp46/47282.htm"], "text": ["100\u56de\u7d76\u9876\u3057\u3066\u58ca\u308c\u305f\u73b0\u5f79OL \u68ee\u5185\u9999\u5948\u7f8e"], "image_paths": ["full/a4e86d00a810a3f3bd8d066ed84cc92e059ee9b8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47282.jpg"]}
{"url": ["/htm/mp46/47281.htm"], "text": ["\u6709\u540d\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u6708\u306b\u4e00\u5ea6\u306e\u5371\u967a\u65e5\u4e2d\u51fa\u3057\u30aa\u30d5\u4f1a \u3061\u306a\u307f"], "image_paths": ["full/7a05261ae4066834c806f3ff4bd7a1c36ff3252f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47281.jpg"]}
{"url": ["/htm/mp46/47288.htm"], "text": ["\u4fe1\u3058\u3089\u308c\u306a\u3044\u307b\u3069\u7cbe\u5b50\u306e\u3075\u3048\u308b\u30c1\u25cb\u30dd\u9650\u754c\u5bf8\u6b62\u3081\u7126\u3089\u3057\u6027\u4ea4 AIKA"], "image_paths": ["full/7327ec33d64013adee8cc0da04e71a254a3f7930.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47288.jpg"]}
{"url": ["/htm/mp46/47287.htm"], "text": ["\u6c34\u8c37\u5fc3\u97f3\u306e\u51c4\u30c6\u30af\u3092\u6211\u6162\u3067\u304d\u308c\u3070\u751f\u2605\u4e2d\u51fa\u3057SEX\uff01"], "image_paths": ["full/d485620ad9f7c29d9ef295728cc26af3053c70b0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47287.jpg"]}
{"url": ["/htm/mp46/47286.htm"], "text": ["\u9b54\u6cd5\u5c11\u5973\u5fe7\u3068\u6deb\u9b54\u306e\u7f60 \u9ebb\u4ed3\u5fe7"], "image_paths": ["full/6e8bccf12c07695d61b1ec57fc447a0e9e98b8d9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47286.jpg"]}
{"url": ["/htm/mp46/47285.htm"], "text": ["10\u767a\u4e2d\u51fa\u3057\u3059\u308b\u307e\u3067\u52c3\u8d77\u3055\u305b\u3061\u3083\u3046\u304a\u59c9\u69d8SEX\u30c6\u30af\u30cb\u30c3\u30af \u30b7\u30a7\u30ea\u30fc"], "image_paths": ["full/019f2c21c4c017a520348a32d72e81257c391a3a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47285.jpg"]}
{"url": ["/htm/mp46/47292.htm"], "text": ["\u5927\u80c6\u306a\u30c1\u30e9\u30ea\u30ba\u30e0\u3067\u4ec6\u3092\u6311\u767a\u3059\u308b\u4eba\u59bb\u5bb6\u5ead\u6559\u5e08\uff5e\u65e5\u9877\u306e\u6b32\u6c42\u4e0d\u6e80\u3092\u751f\u5f92\u306b\u3076\u3064\u3051\u308b\u6d6e\u6c17\u59bb\uff5e \u548c\u6cc9\u6da6"], "image_paths": ["full/98207556710b4cbaa3e01fdc95aa627c03544104.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47292.jpg"]}
{"url": ["/htm/mp46/47291.htm"], "text": ["\u6c64\u3051\u3080\u308a\u8fd1\u4eb2\u76f8\u5978 \u6bcd\u5b50\u5165\u6d74\u4ea4\u5c3e \u304b\u3059\u307f\u679c\u7a42"], "image_paths": ["full/4907d39b1d1f458e1318cd1da6b0525372a23c64.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47291.jpg"]}
{"url": ["/htm/mp46/47290.htm"], "text": ["S\u7ea7\u719f\u5973\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb \u5ddd\u4e0a\u3086\u3046 4\u65f6\u95f4 \u5176\u4e4b\u53c2"], "image_paths": ["full/dabc90f511bec24b270538f8c59197979ddeb002.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47290.jpg"]}
{"url": ["/htm/mp46/47289.htm"], "text": ["\u79c1\u306e\u5b50\u5bab\u3092\u5c04\u7cbe\u3067\u30aa\u3068\u3057\u3066 \u5409\u5ddd\u3042\u3044\u307f"], "image_paths": ["full/5ea9cb0d9680d08d3bf21f9154866ad56ac9c5b5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47289.jpg"]}
{"url": ["/htm/mp46/47296.htm"], "text": ["\u4eba\u59bb\u4e2d\u51fa\u3057\u305f\u3063\u3077\u308a7\u8fde\u767a\uff01\uff01 2"], "image_paths": ["full/e55eca6a769897c1b2416d5d90ed051f66c7559a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47296.jpg"]}
{"url": ["/htm/mp46/47295.htm"], "text": ["\u539f\u4f5c \u534e\u30d5\u30c3\u30af \u8d85\u7d76\u51cc\u8fb1\u7ade\u6f14\u5927\u4f5c \u5f85\u671b\u306e\u5b9f\u5199\u5316\uff01\uff01\u6839\u6697\u5c11\u5e74\u306e\u590d\u96e0\u30cf\u30fc\u30ec\u30e0\u8c03\u6559\u8ba1\u753b \u719f\u308c\u30b3\u30df3\u5468\u5e74\u8bb0\u5ff5\u4f5c\u54c1"], "image_paths": ["full/6f7de8dbc03bbd7a0da8bfbd88157dd83b299748.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47295.jpg"]}
{"url": ["/htm/mp46/47297.htm"], "text": ["\u77e5\u3063\u3066\u308b\u3042\u306e\u5a18\u304c\u98ce\u4fd7\u5b22\uff01\uff1f\u3053\u3093\u306a\u6240\u3067\u30d0\u30c3\u30bf\u30ea\u906d\u9047\u3059\u308b\u306a\u3093\u3066\u2026\u4ec6\u3082\u5f7c\u5973\u3082\u60f3\u5b9a\u5916\uff01\uff01\u304a\u8336\u3092\u6d4a\u3057\u3066\u9003\u3052\u5e30\u308b\u304b\u2026\u30a4\u30e4\u3001\u51b7\u9759\u306b\u8003\u3048\u308c\u3070\u5f7c\u5973\u306e\u65b9\u304c\u30d0\u30ec\u305f\u304f\u3044\u306f\u305a\uff01\uff01\u666e\u6bb5\u3068\u306e\u30ae\u30e3\u30c3\u30d7\u306b\u5174\u594b\u3057\u8fc7\u304e\u3066\u751f\u30cf\u30e1\u4e2d\u51fa\u3057\uff01\uff01\u3067\u3001\u53ce\u307e\u3089\u305a\u304a\u626b\u9664\u30d5\u30a7\u30e9\u5c04\u307e\u3067\uff01\uff01"], "image_paths": ["full/500b9c70a6a669d6d155b760bb3ed5f4937d1714.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47297.jpg"]}
{"url": ["/htm/mp46/47294.htm"], "text": ["\u90e8\u957f\u306e\u5965\u3055\u3093\u304c\u30a8\u30ed\u3059\u304e\u3066\u2026 \u6298\u539f\u307b\u306e\u304b"], "image_paths": ["full/c75402f157393b385c36c40b1f363c17fc50e7ca.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47294.jpg"]}
{"url": ["/htm/mp46/47293.htm"], "text": ["\u5927\u5931\u7981\u3002\uff5e\u4e0a\u54c1\u3076\u3063\u3066\u308b\u6deb\u4e71\u5965\u69d8\u306e\u307f\u3063\u3068\u3082\u306a\u3044\u30d3\u30b7\u30e7\u6fe1\u308c\u4ea4\u5c3e\uff5e \u6817\u5c71\u9999\u7eaf"], "image_paths": ["full/41672abc5ff1f819b111a462d8cd207c51f87c48.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47293.jpg"]}
{"url": ["/htm/mp46/47302.htm"], "text": ["\u4ffa\u305f\u3061\u306e\u8089\u4fbf\u5668\u306f\u91ce\u5916\u51cc\u8fb1\u3067\u30de\u30be\u5815\u3061\u3057\u305f\u793e\u957f\u4ee3\u7406\u592b\u4eba \u6c34\u91ce\u671d\u9633"], "image_paths": ["full/d73633a9edccaec4c8baa4ed8b5fe784893692f7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47302.jpg"]}
{"url": ["/htm/mp46/47301.htm"], "text": ["\u75c9\u631b\u7ea2\u6f6e\u6fc0\u30a4\u30ad\u5973\u6559\u5e08\u306e\u7d76\u9876\u6073\u613f\u4e2d\u51fa\u3057SEX \u5742\u53e3\u308c\u306a"], "image_paths": ["full/8856e40dcbf87b2cb729d995683d2c81c21fd71f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47301.jpg"]}
{"url": ["/htm/mp46/47300.htm"], "text": ["\u7206\u4e73\u5973\u5b50\u6821\u751f\u76d1\u7981\u62d8\u675f\u30d0\u30b9\u8c03\u6559 \u7231\u4e43\u307e\u307b\u308d"], "image_paths": ["full/72f41cb34130411242de51f66a5ced99abdae14b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47300.jpg"]}
{"url": ["/htm/mp46/47299.htm"], "text": ["\u30cc\u30eb\u30c6\u30ab\u30d1\u30a4\u30d1\u30f3\u9ed2\u30ae\u30e3\u30eb\u5931\u795e\u30aa\u30a4\u30eb\u30de\u30c3\u30b5\u30fc\u30b8 2"], "image_paths": ["full/a0701ed92e65cec94f360207856ee37c345777d4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47299.jpg"]}
{"url": ["/htm/mp46/47298.htm"], "text": ["\u4eb2\u621a\u306e\u304a\u3070\u3055\u3093\u306b\u7b14\u304a\u308d\u3057\u3055\u308c\u305f\u4ec6\u3002\u30ea\u30bf\u30fc\u30f3\u30ba"], "image_paths": ["full/ffc1d5c1f9a8e1128ccf01e8c6a5bfddd9e33a9d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47298.jpg"]}
{"url": ["/htm/mp46/47307.htm"], "text": ["\u30cf\u30cd\u8170\uff01\u7206\u30a4\u30ad\uff01\u5fc5\u305a\u6f6e\u5439\u304f\u75c9\u631b\u51fa\u5f20\u30a8\u30b9\u30c6 \u677e\u4e95\u4f18\u5b50"], "image_paths": ["full/c00d3b66b3fb596716b7448c1907ec9e2ddb5a69.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47307.jpg"]}
{"url": ["/htm/mp46/47305.htm"], "text": ["\u30d5\u30bf\u30ca\u30ea4 \u30cb\u30e5\u30fc\u30cf\u30fc\u30d5\u304c\u30d3\u30ad\u30cb\u7d20\u4eba\u30ca\u30f3\u30d1\uff01"], "image_paths": ["full/c2248880bb8875d8b067f888f03c7ef61c9814ec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47305.jpg"]}
{"url": ["/htm/mp46/47303.htm"], "text": ["\u4eba\u59bb\u306e\u6d6e\u6c17\u5fc3 \u837b\u91ce\u821e"], "image_paths": ["full/073f3eeaac13e0fc53b221f3f0955cbafede881c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47303.jpg"]}
{"url": ["/htm/mp46/47306.htm"], "text": ["\u5b9a\u5e74\u9000\u804c\u3057\u3066\u30d2\u30de\u306b\u306a\u3063\u305f\u30c9\u30b9\u30b1\u30d9\u4e49\u7236\u306e\u5ac1\u3044\u3062\u308a \u5742\u53e3\u308c\u306a"], "image_paths": ["full/332243bef225c56fd7321262093a7c8bd37713aa.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47306.jpg"]}
{"url": ["/htm/mp46/47304.htm"], "text": ["100\uff05 \u77f3\u57a3\u5c9b\u4ea7\uff01\u5730\u5143\u306e\u6709\u540d\u30d7\u30ed\u30b5\u30fc\u30d5\u30a1\u30fc \u51b2\u6483AV\u30c7\u30d3\u30e5\u30fc\uff01\uff01\uff01 \u30a8\u30df\u30ea22\u6b73"], "image_paths": ["full/8ac0afe467be41168852031408b2ea6a319a2933.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47304.jpg"]}
{"url": ["/htm/mp46/47311.htm"], "text": ["\u8d37\u5207\u308a\u5bb6\u65cf\u98ce\u5415\u306b\u7525\u3063\u5b50\u3092\u8bf1\u3063\u3066\u82e5\u3044\u30a8\u30ad\u30b9\u3092\u69a8\u308a\u53d6\u308b\u30de\u25cf\u30b3\u306e\u75bc\u3044\u305f\u53d4\u6bcd\u305f\u3061\u3002"], "image_paths": ["full/87a23939f038d6cc5fc418be52b910f6522a791d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47311.jpg"]}
{"url": ["/htm/mp46/47310.htm"], "text": ["\u540d\u4f5c\u304c\u4eca\u82cf\u308b\uff01\uff01\u6210\u5e74\u30b3\u30df\u30c3\u30af\u754c\u306e\u5de8\u5320?\u5c71\u6587\u4eac\u4f1d\u539f\u4f5c\uff01\uff01 \u6c99\u96ea\u306e\u91cc \u4e0a\u5dfb \u6751\u306e\u53e4\u304d\u79cd\u4ed8\u3051\u306e\u3057\u304d\u305f\u308a\u306b\u5815\u3061\u305f\u7f8e\u6bcd"], "image_paths": ["full/2ccbb3aa470ebe511ba788f36aa694cf528546ee.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47310.jpg"]}
{"url": ["/htm/mp46/47309.htm"], "text": ["\u601d\u308f\u305a\u25cfREC\u3057\u305f\u304f\u306a\u308b\u7740\u8863\u7206\u4e73\u304a\u3063\u3071\u30447 \u308a\u304a\u3093\u3055\u3093\uff0825\uff09"], "image_paths": ["full/963a762450dd460fb02a4fd4fac8a2a85ccd7747.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47309.jpg"]}
{"url": ["/htm/mp46/47308.htm"], "text": ["\u53cb\u4eba\u306e\u6bcd\u4eb2 \u6b66\u85e4\u3042\u3084\u304b"], "image_paths": ["full/1e1ac9eeea5ce6fa44bee2919c96d0c13634f954.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47308.jpg"]}
{"url": ["/htm/mp46/47315.htm"], "text": ["M\u6027\u5974\u8c03\u6559\u65e5\u8bb0 \u304b\u306e\u3093\uff08\u4eee\u540d\uff09 \u4e45\u6211\u304b\u306e\u3093"], "image_paths": ["full/bc350a421d244f31b3e78d7ff3a5c6f9f3adcecb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47315.jpg"]}
{"url": ["/htm/mp46/47316.htm"], "text": ["\u9ed2\u30ae\u30e3\u30eb\u91ce\u5916\u51cc\u8fb1 \u85e4\u672c\u7d2b\u5a9b"], "image_paths": ["full/cc4b704be7bba8e75e5af78b11e2cd12f347918d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47316.jpg"]}
{"url": ["/htm/mp46/47314.htm"], "text": ["\u606f\u5b50\u306b\u63c9\u307e\u308c\u771f\u5263\u306e\u6bcd \u6751\u4e0a\u304b\u306a"], "image_paths": ["full/ad0ebb5a080d9b81e28113a73327dd4faea65da3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47314.jpg"]}
{"url": ["/htm/mp46/47312.htm"], "text": ["\u63f4\u4ea4\u30d0\u30a4\u30d6\u30eb \u6625\u65e5\u3082\u306a"], "image_paths": ["full/51bf7ab2ba5e6eb91dd76799229a02b172a8969c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47312.jpg"]}
{"url": ["/htm/mp46/47319.htm"], "text": ["\u8d85\u9ad8\u7ea7\u98ce\u4fd7\u5b22 \u6c38\u4ed3\u305b\u306a"], "image_paths": ["full/a6fa2b579e155c8efb940143efe90c2cfc149f77.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47319.jpg"]}
{"url": ["/htm/mp46/47313.htm"], "text": ["\u6bcd\u306e\u80a1\u95f4\u306f\u591c\u3072\u3089\u304f \u8fd1\u85e4\u90c1\u7f8e"], "image_paths": ["full/2b9f8b6810b467f80b31325fe11a1fac0d4ba199.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47313.jpg"]}
{"url": ["/htm/mp46/47318.htm"], "text": ["\u4ea4\u308f\u308b\u4f53\u6db2\u3001\u6d53\u5bc6\u30bb\u30c3\u30af\u30b9 RION"], "image_paths": ["full/1df3d831d99903d84ac41c4d64f732993841fe7f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47318.jpg"]}
{"url": ["/htm/mp46/47317.htm"], "text": ["\u65b0\u4ebaNO.1STYLE \u9ad8\u5343\u7a42\u3059\u305aAV\u30c7\u30d3\u30e5\u30fc"], "image_paths": ["full/2bf453248881bb2a8ac1be6a4c372ba6770fa67f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47317.jpg"]}
{"url": ["/htm/mp46/47324.htm"], "text": ["\u4e0b\u7740\u30e2\u30c7\u30eb\u3092\u3055\u305b\u3089\u308c\u3066\u2026 \u7eea\u5ddd\u308a\u304a"], "image_paths": ["full/5e4473b88c2da87759b607cf049ee48ef2244492.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47324.jpg"]}
{"url": ["/htm/mp46/47323.htm"], "text": ["20\u30b3\u30b9\uff01 \u5929\u4f7f\u3082\u3048"], "image_paths": ["full/7d163ba87253d45b36099a9bb9f85aacd4ec8028.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47323.jpg"]}
{"url": ["/htm/mp46/47322.htm"], "text": ["\u304a\u307e\u25cf\u3053\u3001\u304f\u3071\u3041\u3002 \u8475"], "image_paths": ["full/115143399cb58bd596cf29604f6bcea1520557cb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47322.jpg"]}
{"url": ["/htm/mp46/47321.htm"], "text": ["1\u30f5\u6708\u95f4\u30bb\u30c3\u30af\u30b9\u3082\u30aa\u30ca\u30cb\u30fc\u3082\u7981\u6b62\u3055\u308c\u30e0\u30e9\u30e0\u30e9\u5168\u5f00\u3067\u30a2\u30c9\u30ec\u30ca\u30ea\u30f3\u7206\u767a\uff01\u75c9\u631b\u3057\u307e\u304f\u308a\u6027\u6b32\u5265\u304d\u51fa\u3057FUCK \u65e9\u4e59\u5973\u7f8e\u3005"], "image_paths": ["full/c64e81bcf46ec5109f4a1965497893f089fe175b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47321.jpg"]}
{"url": ["/htm/mp46/47320.htm"], "text": ["\u30e9\u30d6\u30ad\u30e2\u30e1\u30f3 \u5965\u83dc\u8389\u4e43"], "image_paths": ["full/8b7f6cc6e6c07cd205134d9b89af2862c0c69e51.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47320.jpg"]}
{"url": ["/htm/mp46/47329.htm"], "text": ["\u5973\u6559\u5e08\u8f6e\u5978 \u751f\u5f92\u305f\u3061\u306e\u76ee\u6807 \u539f\u3061\u3068\u305b"], "image_paths": ["full/1d83413c3d68733ce0594293adb090aba50f80f1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47329.jpg"]}
{"url": ["/htm/mp46/47330.htm"], "text": ["\u307e\u3060\u307e\u3060\u72af\u3057\u8db3\u308a\u306a\u3044\u5973 \u5927\u69fb\u3072\u3073\u304d"], "image_paths": ["full/f38e08dc6788c123e8c25bac8d406f9552c76199.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47330.jpg"]}
{"url": ["/htm/mp46/47327.htm"], "text": ["\u304a\u5144\u3061\u3083\u3093\u3001\u79c1\u306f\u3082\u3046\u6c61\u308c\u3066\u308b\u306e\uff1f \u305d\u308c\u304c\u79c1\u306e\u65e5\u5e38\u3060\u3063\u305f\u2026\u3002 \u5357\u68a8\u592e\u5948"], "image_paths": ["full/705753c8fd7b179ee63cc91829cecc050481890a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47327.jpg"]}
{"url": ["/htm/mp46/47328.htm"], "text": ["\u51cc\u8fb1\u306b\u5bfc\u304b\u308c\u3066 KAORI"], "image_paths": ["full/96270716986ebdd5afaed6b64413ea649b50e8ae.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47328.jpg"]}
{"url": ["/htm/mp46/47326.htm"], "text": ["\u4e2d\u304b\u3089\u51fa\u3066\u304f\u308b\u767d\u6d4a\u6c41 \u5409\u6ca2\u660e\u6b69"], "image_paths": ["full/6ebab2b456e80fbca1e9e3c7d0d72dbe0d21d718.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47326.jpg"]}
{"url": ["/htm/mp46/47325.htm"], "text": ["S1\u30d5\u30a1\u30f3\u611f\u8c22\u796d \u660e\u65e5\u82b1\u30ad\u30e9\u30e9\u306eS\u7ea7\u30c6\u30af\u30cb\u30c3\u30af\u306b\u6211\u6162\u3067\u304d\u305f\u3089\u30ac\u30c1SEX"], "image_paths": ["full/2fec7087129b6a5526c2abf86fc4146d95f6f53b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47325.jpg"]}
{"url": ["/htm/mp46/47335.htm"], "text": ["\u7236\u304c\u51fa\u304b\u3051\u30662\u79d2\u3067\u30bb\u30c3\u30af\u30b9\u3059\u308b\u6bcd\u3068\u606f\u5b50 \u7fbd\u7530\u7483\u5b50"], "image_paths": ["full/0c09e7c5ba3f904b536590a0a18f20b4ba00b7e4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47335.jpg"]}
{"url": ["/htm/mp46/47334.htm"], "text": ["\u4eb2\u65cf\u76f8\u5978 \u304d\u308c\u3044\u306a\u53d4\u6bcd\u3055\u3093 \u98ce\u95f4\u3086\u307f"], "image_paths": ["full/7b246639947d8487f6f9d14a091ffa7ed31a16b6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47334.jpg"]}
{"url": ["/htm/mp46/47333.htm"], "text": ["S\u7ea7\u719f\u5973\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb \u5bab\u90e8\u51c9\u82b1 4\u65f6\u95f4"], "image_paths": ["full/396da0d7f0cd76fb56ac8ab640ce61485b709a5e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47333.jpg"]}
{"url": ["/htm/mp46/47331.htm"], "text": ["\u592b\u306e\u76ee\u306e\u524d\u3067\u72af\u3055\u308c\u3066\u2015 \u66b4\u8650\u306a\u30b3\u30a6\u30ce\u30c8\u30ea \u677e\u5143\u30e1\u30a4"], "image_paths": ["full/29c211fb0e8754f979a518d5b0808ffdc8a6137c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47331.jpg"]}
{"url": ["/htm/mp46/47332.htm"], "text": ["\u719f\u5973\u306e\u826f\u3055\u306f\u30e4\u30c3\u3066\u307f\u306a\u3044\u3068\u548c\u5978\u306a\u3044 \u677e\u524d\u3061\u3065\u308b"], "image_paths": ["full/f5c758802d5ed7d09028d4b10a985bc0efcef443.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47332.jpg"]}
{"url": ["/htm/mp46/47340.htm"], "text": ["\u901a\u5b66\u9014\u4e2d\u306b\u75f4\u6c49\u306e\u624b\u306b\u3088\u3063\u3066\u7d76\u9876\u3092\u6559\u3048\u8fbc\u307e\u308c\u305f\u5973\u5b50\u6821\u751f \u51d1\u8389\u4e45"], "image_paths": ["full/4dfacfe309dc98f14df7d87ea808a088284acf68.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47340.jpg"]}
{"url": ["/htm/mp46/47339.htm"], "text": ["\u30de\u30b8\u30a4\u30ad\uff01\u521d3P \u51c9\u5bab\u3059\u305a"], "image_paths": ["full/e8da06c18bca127f4a920d0f59329b19f1ea97f4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47339.jpg"]}
{"url": ["/htm/mp46/47338.htm"], "text": ["M DOLES THE BONDAGE CORSET GIRL FETISH \u8fbb\u672c\u308a\u3087\u3046"], "image_paths": ["full/5607667f5abc86710d3a694750e781f7664781e3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47338.jpg"]}
{"url": ["/htm/mp46/47337.htm"], "text": ["\u8fd1\u4eb2\u76f8\u5978\u4e2d\u51fa\u3057\u30bd\u30fc\u30d7 \u521d\u3081\u3066\u306e\u719f\u5973\u98ce\u4fd7\u3001\u6307\u540d\u3057\u305f\u3089\u6bcd\u3061\u3083\u3093\u3060\u3063\u305f \u7b39\u5c71\u5e0c"], "image_paths": ["full/5510999d0d1e6ab3d3d8e2c9c0cffcdfc4c1be17.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47337.jpg"]}
{"url": ["/htm/mp46/47336.htm"], "text": ["\u7d27\u7f1a\u5bdd\u53d6\u3089\u308c\u5ac1 \u4e49\u7236\u306b\u7f1a\u3089\u308c\u3066\u611f\u3058\u3066\u3057\u307e\u3063\u305f\u79c1\u2026 \u9999\u4e43\u307e\u3069\u304b"], "image_paths": ["full/a06cf8841b8f984720ac1e52fd564ac2c783b8a9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47336.jpg"]}
{"url": ["/htm/mp46/47346.htm"], "text": ["\u4e0a\u53f8\u306b\u3082\u53d6\u5f15\u5148\u3067\u3082\u8bc4\u5224\u306e\u826f\u3044\u9ad8\u5b66\u6b74OL\u304c\u5229\u5c3f\u5264\u3068\u30c4\u30dc\u523a\u6fc0\u3067\u30aa\u30b7\u30c3\u30b3\u6211\u6162\u9650\u754c\uff01\uff01\u4ed5\u4e8b\u4e2d\u306e\u793e\u5185\u3067\u96a0\u308c\u30b7\u30e7\u30f3\u73b0\u573a\u306b\u906d\u9047\u3057\u305f\u65f6\u300c\u304a\u613f\u3044\u3001\u89c1\u306a\u3044\u3067\u2026\u300d\u65ad\u308b\u58f0\u3082\u865a\u3057\u304f\u6b62\u3081\u308c\u306a\u3044\u653e\u5c3f\u3068\u7f9e\u803b\u306e\u5feb\u697d\u306b\u6d78\u308b\u8868\u60c5\u3092\u89c1\u9003\u3055\u306a\u3044\uff01\uff01"], "image_paths": ["full/411f9a39f551bfc2413f00d9b72ea4561090e33f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47346.jpg"]}
{"url": ["/htm/mp46/47345.htm"], "text": ["STRONG TATTOO\u306e\u5973 RiRi"], "image_paths": ["full/b3ef75167bb310d0f46acfdd1704d78b9bb8f4ad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47345.jpg"]}
{"url": ["/htm/mp46/47344.htm"], "text": ["\u5929\u4f7f\u306e\u69d8\u306a\u5947\u8ff9\u306e\u7f8e\u811a\u30b9\u30ec\u30f3\u30c0\u30fc\u5236\u670dJK\u3068\u5b66\u6821\u3067\u30cf\u30e1\u307e\u304f\u308b\uff01\uff01 \u4f50\u3005\u6728\u7f8e\u5357"], "image_paths": ["full/fb3fe74d3bf269f45c5fad5a804a6f2a54c7e4d1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47344.jpg"]}
{"url": ["/htm/mp46/47343.htm"], "text": ["\u30e1\u30ac\u30cd\u304c\u4f3c\u5408\u3046\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u7f8e\u5c11\u5973\u3063\u3066\u30a8\u30ed\u304f\u306a\u3044\uff1f \u5411\u4e95\u84dd"], "image_paths": ["full/d3a4b98badce9771caaae5d15bdc5f0286649e8b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47343.jpg"]}
{"url": ["/htm/mp46/47342.htm"], "text": ["\u65e6\u90a3\u306e\u8fd1\u304f\u3067\u30b3\u30c3\u30bd\u30ea\u72af\u3059\uff01\uff01\u4e0d\u598a\u6cbb\u7597\u3068\u79f0\u3057\u3066\u592b\u5987\u3067\u6765\u9662\u3057\u3066\u304d\u305f\u5965\u69d8\u3092\u30d0\u30ec\u306a\u3044\u3088\u3046\u306b\u79cd\u4ed8\u3051\u751f\u30cf\u30e1\u30ac\u30c1\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9\u3067\u5bdd\u76d7\u308b\u6781\u60aa\u30a8\u30ed\u4ea7\u79d1\u533b"], "image_paths": ["full/6adbbf418d26fda639948305c4c2e651bc3d2fbd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47342.jpg"]}
{"url": ["/htm/mp46/47353.htm"], "text": ["\u300c\u81ea\u5b85\u3067\u59bb\u3092\u5bdd\u53d6\u3063\u3066\u4e0b\u3055\u3044\u300d\u7231\u3059\u308b\u5de8\u4e73\u59bb\u3092\u522b\u306e\u7537\u306b\u5bdd\u53d6\u3089\u305b\u6b21\u7b2c\u306b\u6fe1\u308c\u59cb\u3081\u30a4\u30ad\u307e\u304f\u308b\u59bb\u3092\u76ee\u306e\u524d\u306b\u3057\u3066\u5174\u594b\u3059\u308b\u592b"], "image_paths": ["full/005aef261146e7e363268e162be991b05c0a63e5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47353.jpg"]}
{"url": ["/htm/mp46/47341.htm"], "text": ["\u6bce\u65e5\u306e\u3088\u3046\u306b\u90e8\u5ba4\u3067\u6027\u5904\u7406\u5974\u96b6\u3068\u3057\u3066\u6271\u308f\u308c\u308b\u5973\u5b50\u30de\u30cd\u30fc\u30b8\u30e3\u30fc \u8fbb\u672c\u674f"], "image_paths": ["full/6451d063786e6ca63434ea9ce273f8359db0b508.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47341.jpg"]}
{"url": ["/htm/mp46/47350.htm"], "text": ["\u30a2\u30ca\u30eb\u30d5\u30a1\u30c3\u30af\u53ef\u306e\u4eba\u59bb\u30c7\u30ea\u30d8\u30eb\u5b22\u306f\u30aa\u30de\u25cf\u30b3\u306b\u30c1\u25cf\u30dd\u3092\u633f\u308c\u3089\u308c\u3066\u3082\u6012\u3089\u306a\u3044\u306e\u304b\uff1f"], "image_paths": ["full/6d9ba29dcbcf46fd9035099d5c0f70cf7cd4d9a6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47350.jpg"]}
{"url": ["/htm/mp46/47349.htm"], "text": ["\u56fd\u5185\u6700\u5927\u7ea7\u306e\u30b3\u30b9\u30d7\u30ec\u30a4\u30d9\u30f3\u30c8\u306b\u6f5c\u5165\uff01\u64ae\u3089\u308c\u305f\u304c\u308a\u306e\u7f8e\u5c11\u5973\u30ec\u30a4\u30e4\u30fc\u3092\u4e16\u754c\u306b\u767a\u4fe1\u3057\u305f\u3044\u304b\u30895\u4e07\u5186\u306e\u8c22\u793c\u3067\u30b9\u30bf\u30b8\u30aa\u64ae\u5f71\u3055\u305b\u3066\u3068\u53e3\u8bf4\u3044\u3066\u5a9a\u85ac\u5165\u308a\u30c9\u30ea\u30f3\u30af\u3067\u767a\u60c5\u3055\u305b\u305f\u3089\u30e4\u30ec\u308b\u306e\u304b\uff1f"], "image_paths": ["full/e4ef1fb794cc865912dcebb0eec7416fd7d4948b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47349.jpg"]}
{"url": ["/htm/mp46/47354.htm"], "text": ["\u300c\u4e2d\u306b\u51fa\u3057\u3066\u2026\u592b\u3068\u5b50\u4f9b\u306b\u306f\u5185\u7eea\u300d\u81ea\u5b85\u3067\u611a\u75f4\u95fb\u304d\u5c4b\u306b\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9\u3092\u305b\u304c\u3080\u7f8e\u4eba\u4eba\u59bb\u305f\u3061 8"], "image_paths": ["full/f6147f7682843bba41d42775518ae210175d28bc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47354.jpg"]}
{"url": ["/htm/mp46/47348.htm"], "text": ["\u5927\u5b66\u751f\u9650\u5b9a\uff01\u30ea\u30a2\u30eb\u306b\u7537\u5973\u306e\u53cb\u60c5\u306f\u6210\u7acb\u3059\u308b\u304b\uff1fin\u7d20\u4eba\u30a8\u30ed\u30e9\u30a4\u30d6\u30c1\u30e3\u30c3\u30c8\uff01\u6700\u5927\u89c6\u8074\u4eba\u6570\u00d71\u4e07\u5186\u306e\u30d0\u30a4\u30c8\u611f\u899a\u3067\u5927\u708e\u4e0a\u30c1\u30e3\u30c3\u30c8\u306b\u3042\u304a\u3089\u308cH\u306a\u6d41\u308c\u306b\u2026 2"], "image_paths": ["full/0a65303476ab3846552c221ede527ff47db952b0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47348.jpg"]}
{"url": ["/htm/mp46/47347.htm"], "text": ["\u6210\u57ce\u25cf\u4e01\u76ee\u3067\u5730\u4e0b\u55b6\u4e1a\u3057\u3066\u3044\u308b\u4eba\u59bb\u304a\u3063\u3071\u3044\u30d1\u30d6\u306f\u3001\u30d0\u30b9\u30c8100cm\u306e\u30c9\u8feb\u529b\u7206\u4e73\u304c\u52bf\u305e\u308d\u3044\u3067\u3001\u6b32\u6c42\u4e0d\u6e80\u306a\u30c7\u30ab\u5c3b\u3092\u30d0\u30c3\u30af\u304b\u3089\u751f\u30c1\u25cf\u30dd\u3067\u6fc0\u30d4\u30b9\u30c8\u30f3\u51fa\u6765\u308b\u3068\u3044\u3046\u5642\u306f\u672c\u5f53\u306a\u306e\u304b\uff1f"], "image_paths": ["full/0cdeb45d7c2fea9fa0bb8206cab4680fed994519.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47347.jpg"]}
{"url": ["/htm/mp46/47352.htm"], "text": ["\u30a8\u30ed\u884c\u4e3a\u4e00\u5207\u7981\u6b62\u306e\u30e1\u30a4\u30c9\u30ea\u30d5\u30ec\u3067\u60aa\u620f\uff01\u90bb\u306b\u5ba2\u304c\u3044\u308b\u306b\u3082\u5173\u308f\u3089\u305a\u3001\u58f0\u3092\u62bc\u3057\u6740\u3057\u672c\u6c17\u3067\u30a4\u30ad\u307e\u304f\u308b\u3069\u30b9\u30b1\u30d9\u6108\u3089\u3057\u30e1\u30a4\u30c9"], "image_paths": ["full/4a426950b715bf29e2498aea2265bafa9af29630.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47352.jpg"]}
{"url": ["/htm/mp46/47360.htm"], "text": ["\u5168\u56fd\u90fd\u9053\u5e9c\u770c\u9009\u629c\uff01\u73b0\u5730\u8c03\u8fbe\u3057\u305f\u8d85S\u7ea7\u7d20\u4eba\u5a18 \u5173\u4e1c\u7f16 Part4"], "image_paths": ["full/4401545601ab35c973f5798382e6e830f62887be.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47360.jpg"]}
{"url": ["/htm/mp46/47359.htm"], "text": ["\u7d20\u4eba\u5a18\u306e\u803b\u3058\u3089\u3044\u653e\u5c3f\u30b3\u30ec\u30af\u30b7\u30e7\u30f3"], "image_paths": ["full/f9392de6f422789a850b1bc2596116314ff54050.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47359.jpg"]}
{"url": ["/htm/mp46/47358.htm"], "text": ["\u30c1\u25cf\u30dd\u51fa\u3057\u306a\u304c\u3089\u7d20\u4eba\u5a18\u3068\u30c9\u30e9\u30a4\u30d6\uff01"], "image_paths": ["full/8ba709e52294d3335e760b9a1ae08f7b187045f1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47358.jpg"]}
{"url": ["/htm/mp46/47355.htm"], "text": ["\u751f\u4e2d\u51fa\u3057\u82e5\u59bb\u30ca\u30f3\u30d1\uff01 13"], "image_paths": ["full/c50e43b36539ef150f3d4d7272899b92fb993905.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47355.jpg"]}
{"url": ["/htm/mp46/47364.htm"], "text": ["\u9b3c\u30d5\u30a7\u30e9\u5730\u72f1 XXVII \u83b2\u5b9f\u30af\u30ec\u30a2 \u795e\u6ce2\u591a\u4e00\u82b1"], "image_paths": ["full/97d7df2446c6ee2129e4e9251fef29b5fe4ec74a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47364.jpg"]}
{"url": ["/htm/mp46/47356.htm"], "text": ["\u5de8\u4e73\u4eba\u59bb\u6e29\u6cc9\u4e71\u4ea4\u30b5\u30fc\u30af\u30eb"], "image_paths": ["full/8a3fa847638f0d5a218d01309b7b165e949f2c2b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47356.jpg"]}
{"url": ["/htm/mp46/47362.htm"], "text": ["\u7d27\u7f1a\u9b3c\u30a4\u30ab\u30bb \u5343\u4e43\u3042\u305a\u307f"], "image_paths": ["full/6e67904b6e6ff2427b99de5aa6b41b72b9b05f40.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47362.jpg"]}
{"url": ["/htm/mp46/47363.htm"], "text": ["\u9b3c\u30d1\u30a4\u30ba\u30ea\u5730\u72f1 \u4e03\u8349\u3061\u3068\u305b"], "image_paths": ["full/05f4aeacc6a7c18bc9403bc23580d63e4d2c3ce8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47363.jpg"]}
{"url": ["/htm/mp46/47357.htm"], "text": ["\u8fc7\u6fc0\u3059\u304e\u308b\u30c9\u7d20\u4eba\u5a18 4\u65f6\u95f4\u30b9\u30da\u30b7\u30e3\u30eb 30"], "image_paths": ["full/682ac3c3327369d2b4330b103ec7dbaf58e60370.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47357.jpg"]}
{"url": ["/htm/mp46/48700.htm"], "text": ["CA\u98de\u884c\u673a\u75f4\u6c49 3 \u8c6a\u534e\u7248 \u4e2d\u51fa\u3057\u30b9\u30da\u30b7\u30e3\u30eb"], "image_paths": ["full/aaf9304f2e6c09aabeaae902e3dd067ed455e719.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48700.jpg"]}
{"url": ["/htm/mp46/47361.htm"], "text": ["\u9b3c\u30a4\u30ab\u30bb \u6ce2\u591a\u91ce\u7ed3\u8863"], "image_paths": ["full/d2ebdc5662e6abcf45d396af3897e0c219d4504e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47361.jpg"]}
{"url": ["/htm/mp46/48698.htm"], "text": ["\u30ad\u30b9\u306b\u5174\u5473\u3092\u6301\u3061\u59cb\u3081\u305f\u59b9\u306b\u5a9a\u85ac\u3092\u53e3\u306b\u542b\u3093\u3067\u30d9\u30ed\u30ad\u30b9\u3057\u305f\u3089\u30a2\u30d8\u30c8\u30ed\u989c\u3067\u30a4\u30ad\u307e\u304f\u308b\u30bb\u30c3\u30af\u30b9\u5927\u597d\u304d\u3063\u5b50\u306b\u6fc0\u5909\uff01"], "image_paths": ["full/1116c7aea4618e6a7719c26045c0ef73136909ad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48698.jpg"]}
{"url": ["/htm/mp46/48699.htm"], "text": ["\u63a5\u5ba2\u4e2d\u306b\u989c\u3092\u7ea2\u6f6e\u3055\u305b\u306a\u304c\u3089\u611f\u3058\u307e\u304f\u308b\u30d0\u30a4\u30c8\u5a18 \u7279\u522b\u7f16 \u30d1\u30c1\u30f3\u30b3\u5e97\u4e2d\u51fa\u3057SP\uff5e\u30db\u30fc\u30eb\u30ec\u30c7\u30a3\u3001\u30ab\u30a6\u30f3\u30bf\u30fc\u30ec\u30c7\u30a3\u3001\u30a4\u30d9\u30f3\u30c8\u30ac\u30fc\u30eb\u3001\u30b3\u30fc\u30d2\u30fc\u30ec\u30c7\u30a3\uff5e"], "image_paths": ["full/35e882a84827e268a1f2422a3b9307a1807707ec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48699.jpg"]}
{"url": ["/htm/mp46/48697.htm"], "text": ["\u5de8\u4e73\u5973\u6559\u5e085\u4eba\u304c\u653e\u8bfe\u540e\u306e\u6559\u5ba4\u3067\u751f\u5f92\u3068\u738b\u69d8\u30b2\u30fc\u30e0\u521d\u4f53\u9a13\uff01\u305d\u3057\u3066\u7537\u306f\u4ec61\u4eba\u306b\u2026"], "image_paths": ["full/d8313fc876f65c5a2d3489470e6333e75f31a701.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48697.jpg"]}
{"url": ["/htm/mp46/48696.htm"], "text": ["\u75f4\u6c49\u5e08\u306b\u65e0\u7406\u3084\u308a\u633f\u308c\u3089\u308c\u305f\u30ea\u30e2\u30d0\u30a4\u304c\u53d6\u308c\u305a\u75c9\u631b\u30a4\u30ad\u3057\u3066\u3057\u307e\u3046\u30bf\u30a4\u30c8\u30b9\u30ab\u30fc\u30c8\u306e\u5973 3"], "image_paths": ["full/e03755a8786d0988143c64fddd5913d73acae5fd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48696.jpg"]}
{"url": ["/htm/mp46/48708.htm"], "text": ["\u4e0a\u539f\u4e9c\u8863\u30b3\u30b9\u30d7\u30ec SPECIAL BEST 4\u65f6\u95f4"], "image_paths": ["full/2aa3698ba131196034a733357c9828f2c122f1c7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48708.jpg"]}
{"url": ["/htm/mp46/48707.htm"], "text": ["\u7ae5\u8d1e\u306e\u4ec6\u3092\u4e0d\u60af\u306b\u601d\u3063\u305f\u598a\u5a20\u3057\u305f\u59c9\u306b\u300c\u64e6\u308a\u3064\u3051\u308b\u3060\u3051\u3060\u3088\u300d\u3068\u3044\u3046\u7ea6\u675f\u3067\u7d20\u80a1\u3057\u3066\u3082\u3089\u3063\u3066\u3044\u305f\u3089\u4e92\u3044\u306b\u6c17\u6301\u3061\u826f\u3059\u304e\u3066\u30de\u25cf\u30b3\u306f\u30b0\u30c3\u30b7\u30e7\u30ea\uff01\u3067\u30cc\u30eb\u3063\u3068\u751f\u633f\u5165\uff01\u300c\u3048\uff01\uff1f\u5165\u3063\u3066\u308b\uff1f\u300d\u3067\u3082\u3069\u3046\u306b\u3082\u6b62\u307e\u3089\u306a\u304f\u3066\u4e2d\u51fa\u3057\uff01"], "image_paths": ["full/f7a696dc6609e1433589f49ab021141bc6b88796.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48707.jpg"]}
{"url": ["/htm/mp46/48704.htm"], "text": ["\u7d4c\u9a13\u8c4a\u5bcc\u306a\u4f18\u3057\u3044\u7d20\u4eba\u4eba\u59bb\u304c\u6700\u9ad8\u306e\u7ae5\u8d1e\u7b14\u304a\u308d\u3057 3"], "image_paths": ["full/7d72dd54664c87d4443d02b0182c2f1727c32178.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48704.jpg"]}
{"url": ["/htm/mp46/48705.htm"], "text": ["\u8868\u53c2\u9053\u3067\u307f\u3064\u3051\u305f\u7f8e\u4e73\u4eba\u59bb\u306b\u300c\u65b0\u4f5c\u6c34\u7740\u306e\u30e2\u30c7\u30eb\u306b\u306a\u3063\u3066\u4e0b\u3055\u3044\u300d\u3068\u58f0\u3092\u304b\u3051\u3001\u64ae\u5f71\u3067\u30c6\u30f3\u30b7\u30e7\u30f3\u3092\u4e0a\u3052\u3066\u30cc\u30eb\u30cc\u30eb\u6ce1\u6ce1\u30bd\u30fc\u30d7\u4f53\u9a13"], "image_paths": ["full/c6a840657a7fdabd397b91385eace51a93870fef.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48705.jpg"]}
{"url": ["/htm/mp46/48703.htm"], "text": ["\u307f\u307b\u306e \u81ea\u5b85\u306b\u7a81\u6483\u8bbf\u95ee\uff01\u4e2d\u51fa\u305720\u8fde\u767a"], "image_paths": ["full/0bdfae23dd99310b7582b7ed2bb1625f3d4026a8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48703.jpg"]}
{"url": ["/htm/mp46/48701.htm"], "text": ["\u5973\u6027\u7528\u98ce\u4fd7\u306b\u901a\u3044\u3064\u3081\u308b\u30bb\u30ec\u30d6\u59bb\u305f\u3061\uff01 \u5a9a\u85ac\u30a8\u30b9\u30c6\u3067\u5feb\u697d\u306b\u6eba\u308c\u308b\u9ad8\u7ea7\u79d8\u5bc6\u5e97\u3092\u5b8c\u5168\u76d7\u64ae"], "image_paths": ["full/5a59d5b2fd73a463475147dcd00ea61cd39b8cb1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48701.jpg"]}
{"url": ["/htm/mp46/48702.htm"], "text": ["\u5371\u967a\u65e5\u76f4\u6483\u8bbf\u95ee\uff01\u5b50\u4f5c\u308a\u6027\u6559\u80b2 3 \uff5e\u7d76\u4f26\u5148\u751f\u304c\u6559\u3048\u5b50\u306e\u5bb6\u306b\u5bb6\u5ead\u8bbf\u95ee\u3057\u3066\u751f\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9\u5b9f\u4e60\uff5e"], "image_paths": ["full/f1ec8b8b40b66a6f7d4b32aad592459877069a7a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48702.jpg"]}
{"url": ["/htm/mp46/48718.htm"], "text": ["\u90e8\u4e0b\u3068\u51fa\u5f20\u5148\u306e\u30db\u30c6\u30eb\u3067\u76f8\u90e8\u5c4b\u306b\u306a\u3063\u3066\u30e0\u30e9\u30e0\u30e9\u3057\u3066\u624b\u3092\u51fa\u3057\u305f\u4ffa"], "image_paths": ["full/1c1bf709731f06f771a1970f929c89236c041b82.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48718.jpg"]}
{"url": ["/htm/mp46/48715.htm"], "text": ["\u8fd1\u4eb2\u76f8\u5978 \u76f8\u8c08\u3057\u305f\u6559\u5e08\u306b\u72af\u3055\u308c\u7236\u306b\u3082\u9006\u3089\u3048\u306a\u3044\u5a18 \u5c9b\u5d0e\u7ed3\u8863"], "image_paths": ["full/b3bed490a32bbd9e518bf0eb38a82f1aafdb7480.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48715.jpg"]}
{"url": ["/htm/mp46/48716.htm"], "text": ["\u662d\u548c\u5973\u306e\u30a8\u30ec\u30b8\u30fc \u5c9b\u306e\u5148\u751f?\u592b\u306e\u524d\u3067\u72af\u3055\u308c\u3066\u20261945 \u536f\u6c34\u54b2\u6d41"], "image_paths": ["full/f33e7a88029eed9770e0ec858c06a9e6d875780a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48716.jpg"]}
{"url": ["/htm/mp46/48714.htm"], "text": ["\u75c5\u9662\u3078\u304a\u3070\u3042\u3061\u3083\u3093\u306e\u304a\u89c1\u821e\u3044\u306b\u884c\u3063\u305f\u3089\u5927\u90e8\u5c4b\u306f\u6b32\u6c42\u4e0d\u6e80\u306e\u82e5\u3044\u5973\u6027\u3060\u3089\u3051\u3067\u30a8\u30ed\u8fc7\u304e\u305f\uff01\u51b3\u3057\u3066\u7956\u6bcd\u601d\u3044\u3068\u306f\u8a00\u3048\u306a\u3044\u4ec6\u304c\u6bce\u65e5\u75c5\u9662\u306b\u304a\u89c1\u821e\u3044\u306b\u884c\u304f\u306e\u306b\u306f\u8a33\u304c\u3042\u3063\u3066\u2026\u3002"], "image_paths": ["full/b330b7b7ea87bceec549d0c6040b556506fc92dc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48714.jpg"]}
{"url": ["/htm/mp46/48712.htm"], "text": ["\u300c\u30c0\u30e1\u3060\u3088\u304a\u5144\u3061\u3083\u3093\uff01\u633f\u3063\u3061\u3083\u3044\u305d\u3046\u3060\u3088\uff01\u300d\u5168\u304f\u5973\u6027\u306b\u7e01\u304c\u306a\u304b\u3063\u305f\u30dc\u30af\u306b\u4eba\u751f\u306e\u8ee2\u673a\u304c\uff01\u7236\u4eb2\u304c\u518d\u5a5a\u3057\u3066\u7a81\u7136\u3001\u5973\u5b50\u6821\u751f\u306e\u59b9\u304c\u3067\u304d\u305f\uff01\uff01\u3057\u304b\u3082\u8d85\u30ab\u30ef\u30a4\u30af\u3066\u3057\u304b\u3082\u3057\u304b\u3082\u5de8\u4e73\uff01\u4f55\u3068\u8a00\u3063\u3066\u3082\u4e00\u756a\u3044\u3044\u306e\u304c\u6c17\u304c\u5f31\u304f\u3066\u4f55\u3067\u3082\u8a00\u3046\u4e8b\u3092\u95fb\u3044\u3066\u304f\u308c\u3061\u3083\u3044\u305d\u3046\u306a\u3068\u3053\u308d\u3002"], "image_paths": ["full/1b268abdb9086ccd7c2d6154978881c7cbe91c53.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48712.jpg"]}
{"url": ["/htm/mp46/48713.htm"], "text": ["\u653e\u8bfe\u540e\u306e\u6559\u5ba4\u3067\u90e8\u6d3b\u304c\u4f11\u307f\u306b\u306a\u3063\u305f\u8fd0\u52a8\u90e8\u5973\u5b50\u305f\u3061\u306b\u56f2\u307e\u308c\u3066\u7537\u306f\u4ec61\u4eba\u306e\u738b\u69d8\u30b2\u30fc\u30e0\uff01\u653e\u8bfe\u540e\u3001\u6025\u306b\u90e8\u6d3b\u304c\u4e2d\u6b62\u306b\u306a\u308a\u6687\u3092\u6301\u3066\u4f59\u3057\u3066\u3044\u308b\u8fd0\u52a8\u90e8\u5973\u5b50\u305f\u3061\u304c\u3084\u3063\u3066\u6765\u305f\u3002"], "image_paths": ["full/dba1c38132553f735d2eafdeca0f746adda6e09f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48713.jpg"]}
{"url": ["/htm/mp46/48711.htm"], "text": ["\u3042\u306e\u7d20\u6674\u3089\u3057\u3044\u4e2d\u51fa\u3057\u306e\u5feb\u611f\u3092\u3082\u3046\u4e00\u5ea6\uff01\uff5e\u3044\u307e\u3060\u304b\u3064\u3066\u30e2\u30c6\u305f\u3053\u3068\u304c\u306a\u3044\u4ec6\u304c\u6b32\u6c42\u4e0d\u6e80\u306e\u4eba\u59bb\u306b\u3060\u3051\u306f\u6c42\u3081\u3089\u308c\u308b\u7406\u7531\uff5e\u5bb6\u306b\u6e38\u3073\u306b\u6765\u305f\u30de\u30de\u53cb\u306f\u30bb\u30c3\u30af\u30b9\u30ec\u30b9\u3089\u3057\u304f\u8d85\u6b32\u6c42\u4e0d\u6e80\u3002\u305d\u3093\u306a\u30de\u30de\u53cb\u304c\u4ec6\u306e\u65e5\u8bfe\u306e\u30aa\u30ca\u30cb\u30fc\u73b0\u573a\u3092\u76ee\u6483\uff01"], "image_paths": ["full/e150abc42fa46f2f8b7c762a41407eb35eadb92b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48711.jpg"]}
{"url": ["/htm/mp46/48710.htm"], "text": ["\u300c\u307e\u3060\u76ee\u3092\u5f00\u3051\u3061\u3083\u30c0\u30e1\u3060\u3088\uff01\u4eca\u3001\u4f55\u3057\u3066\u308b\u304b\u5206\u304b\u308b\u304b\u306a\uff1f\u300d\u90fd\u4f1a\u306b\u4f4f\u3080\u30e4\u30ea\u30de\u30f3\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u4eb2\u621a\u306e\u304a\u59c9\u3061\u3083\u3093\u304c\u6cd5\u4e8b\u3067\u6570\u5341\u5e74\u3076\u308a\u306b\u7530\u820e\u306e\u6211\u304c\u5bb6\u306b\u3084\u3063\u3066\u304d\u305f\uff01 \u90fd\u4f1a\u304b\u3089\u6765\u305f\u523a\u6fc0\u7684\u304b\u3064\u8fc7\u6fc0\u306a\u670d\u3092\u7740\u305f\u3061\u3087\u3063\u3068H\u306a\u4eb2\u621a\u306e\u304a\u59c9\u3061\u3083\u3093\u306b\u52c3\u8d77\u305b\u305a\u306b\u306f\u3044\u3089\u308c\u306a\u3044\uff01\uff01"], "image_paths": ["full/8addb1d754c259508ad32d13e99250622113cbc8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48710.jpg"]}
{"url": ["/htm/mp46/48709.htm"], "text": ["\u9a91\u4e57\u4f4d\u304c\u4e0b\u624b\u3060\u304b\u3089\u3063\u3066\u5f7c\u6c0f\u306b\u632f\u3089\u308c\u305f\u304b\u3089\u9a91\u4e57\u4f4d\u306e\u7ec3\u4e60\u306b\u4ed8\u304d\u5408\u3063\u3066\uff01 \u3044\u3064\u3082\u5f1f\u306e\u4ec6\u306b\u6016\u3044\u59c9\u304c\u3001\u306a\u306b\u3084\u3089\u4eca\u65e5\u306f\u843d\u3061\u8fbc\u3093\u3067\u3044\u308b\u3002\u8bdd\u3092\u95fb\u304f\u3068\u5f7c\u6c0f\u306b\u30d5\u30e9\u308c\u305f\u3089\u3057\u3044\u3002\u30b2\u30e9\u30b2\u30e9\u7b11\u3063\u3066\u3044\u308b\u4ec6\u3092\u7a81\u7136\u62bc\u3057\u5012\u3057\u3001\u9a91\u4e57\u4f4d\u306e\u7ec3\u4e60\u3092\u3057\u305f\u3044\u3068\u8a00\u3063\u3066\u304d\u305f\uff01"], "image_paths": ["full/f8f2bb84466a6a5acc2f30750de44d941dbbd568.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48709.jpg"]}
{"url": ["/htm/mp46/48706.htm"], "text": ["\u7537\u5973\u306e\u6027\u6b32\u304c\u9006\u8ee2"], "image_paths": ["full/87e66df2b0a599e49876914569d347d8c1aa2361.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48706.jpg"]}
{"url": ["/htm/mp46/48727.htm"], "text": ["\u300c\u300e\u304a\u3058\u3055\u3093\u306a\u306e\u306b\u654f\u611f\u306a\u3093\u3067\u3059\u306d\u2026\u300f\u8d2f\u7984\u30aa\u30e4\u30b8\u304c\u30e1\u30f3\u30ba\u30a8\u30b9\u30c6\u3067\u52c3\u8d77\u3057\u306a\u304c\u3089\u7ae5\u8d1e\u306e\u3088\u3046\u306b\u611f\u3058\u307e\u304f\u3063\u305f\u3089\u304a\u306d\u3048\u3055\u3093\u5e97\u5458\u304c\u53ef\u7231\u3044\u30ae\u30e3\u30c3\u30d7\u306b\u767a\u60c5\u25c6\u719f\u5e74\u30c1\u25cf\u30dd\u3092\u3086\u3063\u304f\u308a\u63e1\u308a\u3057\u3081\u3066\u304d\u305f\u300dVOL.1"], "image_paths": ["full/17dcfb9e792d4c75da87c3fd9fdcf1510ab68275.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48727.jpg"]}
{"url": ["/htm/mp46/48724.htm"], "text": ["SEX\u306e\u30cf\u30fc\u30c9\u30eb\u304c\u5f02\u5e38\u306b\u4f4e\u3044\u4e16\u754c 11"], "image_paths": ["full/cd35e8f0b791ab3ba9735ae3d3c71b2d1bf9bf71.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48724.jpg"]}
{"url": ["/htm/mp46/48726.htm"], "text": ["\u300c\u300e\u65e6\u90a3\u3055\u3093\u3088\u308a\u79c1\u306e\u65b9\u304c\u3044\u3044\u3067\u3057\u3087\uff1f\u300f\u4f11\u61a9\u4e2d\u306b2\u4eba\u304d\u308a\uff01\u30ec\u30ba\u30d3\u30a2\u30f3\u306e\u4eba\u59bb\u304c\u540c\u3058\u804c\u573a\u3067\u50cd\u304f\u30d1\u30fc\u30c8\u59bb\u306e\u521d\u30ec\u30ba\u3092\u593a\u3063\u3066\u4f55\u5ea6\u3082\u30a4\u30ab\u30bb\u3066\u30e4\u308b\u300dVOL.1"], "image_paths": ["full/9133aed3feceb507940f350f2e4ab4037bef71ff.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48726.jpg"]}
{"url": ["/htm/mp46/48723.htm"], "text": ["\u5de8\u4e73\u5973\u5b50\u5927\u751f\u9650\u5b9a\uff01\uff01\u7bb1\u6839\u3067\u30c7\u30fc\u30c8\u4e2d\u306e\u7d20\u4eba\u30ab\u30c3\u30d7\u30eb\u5bfe\u6297 \u80dc\u3063\u305f\u3089\u8d4f\u91d1100\u4e07\u5186\uff01\u8d1f\u3051\u305f\u3089\u8fde\u7d9a\u751f\u4e2d\u51fa\u3057\uff01\u6df7\u6d74\u6e29\u6cc9\u4e2d\u51fa\u3057\u91ce\u7403\u62f33 \u5f7c\u6c0f\u306e\u76ee\u306e\u524d\u3067\u4e00\u822c\u7537\u6027\u5ba2\u305f\u3061\u3068\u751f\u307e\u308c\u3066\u521d\u3081\u3066\u306e\u751f\u633f\u5165SEX\uff01\u4e2d\u51fa\u3057\u5408\u8ba116\u767a"], "image_paths": ["full/fb9cf2dbf435da0a52467c775cb356f66534b328.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48723.jpg"]}
{"url": ["/htm/mp46/48720.htm"], "text": ["\u6ce2\u591a\u91ce\u7ed3\u8863\u304c\u6559\u3048\u308b\u5927\u4eba\u306b\u306a\u3063\u3066\u304b\u3089\u306e\u4fdd\u5065\u4f53\u80b2\u6388\u4e1a"], "image_paths": ["full/8243d149351562b899ebf9aa509e2ae23d7f8e2f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48720.jpg"]}
{"url": ["/htm/mp46/48722.htm"], "text": ["\u4e00\u822c\u7537\u5973\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0AV \u30de\u30b8\u30c3\u30af\u30df\u30e9\u30fc\u306e\u5411\u3053\u3046\u306b\u306f\u518d\u5a5a\u3057\u305f\u3066\u306e\u6bcd\u4eb2\uff01\u5973\u5b50\u6821\u751f\u306e\u5a18\u3068\u65b0\u3057\u3044\u304a\u7236\u3055\u3093\u304c2\u4eba\u3063\u304d\u308a\u306e\u5bc6\u5ba4\u30671\u767a10\u4e07\u5186\u306e\u8fde\u7d9a\u5c04\u7cbeSEX\u306b\u6311\u6226\uff01"], "image_paths": ["full/f6bcaf529d45e9fd3d466e26889f0de35acfc093.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48722.jpg"]}
{"url": ["/htm/mp46/48721.htm"], "text": ["\u30d5\u30a7\u30ed\u30e2\u30f3\u6deb\u5c3b AIKA"], "image_paths": ["full/4255410f9ee7b6448ae85d7e48f5e6888b874c4d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48721.jpg"]}
{"url": ["/htm/mp46/48719.htm"], "text": ["\u6027\u6b32\u76db\u308a\u306e\u4e0a\u53f8\u306e\u5965\u3055\u3093\u306b\u9a6c\u4e57\u308a\u3055\u308c\u3066\u75f4\u5973\u3089\u308c\u3061\u3083\u3063\u305f\u4ffa"], "image_paths": ["full/6d4fcca6607d6a58e6a42621f964b15ac12f991a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48719.jpg"]}
{"url": ["/htm/mp46/48735.htm"], "text": ["\u8fd1\u6240\u306e\u30de\u30de\u305f\u3061\u306b\u3088\u3063\u3066\u305f\u304b\u3063\u3066\u5e7c\u3044\u30c1\u25cf\u30b3\u3092\u30a4\u30bf\u30ba\u30e9\u3055\u308c\u3066\u5927\u4eba\u306e\u30ab\u30e9\u30c0\u3092\u305f\u3063\u3077\u308a\u6559\u3048\u8fbc\u307e\u308c\u307e\u3057\u305f\u3002"], "image_paths": ["full/fe8843ca7e916cb48c5fe78a75e23295aaf61d98.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48735.jpg"]}
{"url": ["/htm/mp46/48734.htm"], "text": ["\u4eb2\u306e\u5c45\u306a\u3044\u65e5\u3001\u4ec6\u306f5\u4eba\u306e\u59b9\u3068\u3080\u3061\u3083\u304f\u3061\u3083SEX\u3057\u305f\u3002"], "image_paths": ["full/26566e41b13b879e58c6069f4bb9998fd3d47082.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48734.jpg"]}
{"url": ["/htm/mp46/48733.htm"], "text": ["\u30b3\u30b9\u30d7\u30ec\u30a4\u30d9\u30f3\u30c8\u30ca\u30f3\u30d1\u8fde\u308c\u8fbc\u307fSEX\u96a0\u3057\u64ae\u308a \uff5e\u7d20\u4eba\u30ec\u30a4\u30e4\u30fc\u306b\u58f0\u3092\u6302\u3051\u30cf\u30e1\u64ae\u308a\u4e2d\u51fa\u3057\u65e0\u8bb8\u53ef\u8d29\u58f2\uff5e"], "image_paths": ["full/57a32a51daff70cae5ec6408284976c7ef695a13.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48733.jpg"]}
{"url": ["/htm/mp46/48732.htm"], "text": ["\u3059\u3057\u8bd8\u3081\u72b6\u6001\u306e\u8d85\u6e80\u5458\u30d0\u30b9\u3067\u8eab\u52a8\u304d\u306e\u53d6\u308c\u306a\u3044\u5973\u306e\u5b50\u3092\u75f4\u6c49\u3057\u307e\u304f\u308a\u30d1\u30f3\u30c4\u5185\u5927\u91cf\u5c04\u7cbe"], "image_paths": ["full/a4f7ddc757b8969f3f0eae14566ce0a5556106b6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48732.jpg"]}
{"url": ["/htm/mp46/48730.htm"], "text": ["\u7a81\u7136\u306e\u30b2\u30ea\u30e9\u8c6a\u96e8\u3067\u30ba\u30d6\u6fe1\u308c\u306e\u307e\u307e\u5e30\u793e\u3057\u305f\u5de8\u4e73\u5973\u4e0a\u53f8\u306e\u900f\u3051\u3066\u3044\u308b\u4e0b\u7740\u304c\u30a8\u30ed\u3059\u304e\u3066\u300c\u4f53\u304c\u6e29\u307e\u308a\u307e\u3059\u3088\uff01\u300d\u3068\u5a9a\u85ac\u5165\u308a\u306e\u304a\u8336\u3092\u996e\u307e\u305b\u3066\u5f3a\u5236\u767a\u60c5\uff01\u4e00\u5ea6\u306f\u63c9\u3093\u3067\u307f\u305f\u304b\u3063\u305f\u4e0a\u53f8\u306e\u5de8\u4e73\u3092\u63c9\u307f\u307e\u304f\u3063\u3066\u30cf\u30e1\u307e\u304f\u3063\u3066\u30a4\u30ab\u305b\u307e\u304f\u3063\u3066\u30e4\u30ea\u307e\u3057\u305f\uff01\uff01\uff01"], "image_paths": ["full/971ebc6488021ef35f6996007ad933fec3d6a5b1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48730.jpg"]}
{"url": ["/htm/mp46/48729.htm"], "text": ["\u75f4\u6c49\u76f8\u8c08\u6240\u75f4\u6c49 3 \uff5e\u7f32\u308a\u8fd4\u3055\u308c\u308b\u75f4\u6c49\u884c\u4e3a\uff5e"], "image_paths": ["full/b3576086c764dd7a36e10f69dcfcd1d4651cb530.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48729.jpg"]}
{"url": ["/htm/mp46/48728.htm"], "text": ["\u300c10\u5468\u5e74\u8bb0\u5ff5 \u300e\u304a\u3070\u3055\u3093\u3067\u672c\u5f53\u306b\u3044\u3044\u306e\uff1f\u300f\u8d58\u6ca28\u30bb\u30c3\u30af\u30b9SPECIAL \u82e5\u304f\u3066\u786c\u3044\u52c3\u8d77\u89d2\u5ea6150\u5ea6\u306e\u5c11\u5e74\u30c1\u25cf\u30dd\u306b\u62b1\u304d\u3064\u304b\u308c\u305f\u304a\u3070\u3055\u3093\u770b\u62a4\u5e08\u306f\u30e4\u3089\u308c\u3066\u3082\u4f18\u3057\u3059\u304e\u3066\u65ad\u308c\u306a\u3044\u300d"], "image_paths": ["full/c9985b9452ca54ae284c952f1b8e85ad65145b1f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48728.jpg"]}
{"url": ["/htm/mp46/48740.htm"], "text": ["\u79cb\u53f6\u3042\u304b\u306d \u8d23\u3081\u308b\u3001\u8d23\u3081\u3089\u308c\u308b\u30024\u672c\u756a"], "image_paths": ["full/7dd2018b5672552a656975db2d6bd4031427a7a1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48740.jpg"]}
{"url": ["/htm/mp46/48739.htm"], "text": ["\u30de\u30b7\u30f3\u30d0\u30a4\u30d6\u3067\u72af\u3055\u308c\u3066\u3001\u30b1\u30bf\u30b1\u30bf\u7b11\u3044\u306a\u304c\u3089\u30a4\u30ad\u72c2\u3046\u751f\u5f92\u4f1a\u957f\u3068\u4e66\u8bb02"], "image_paths": ["full/0f0496ef64fc9f3607f6824726edc40daddfb4e4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48739.jpg"]}
{"url": ["/htm/mp46/48738.htm"], "text": ["\u7ed3\u5a5a\u76f4\u524d\u306e\u871c\u6708\u3001\u6bce\u6669\u65e6\u90a3\u3055\u3093\u306b\u7231\u3055\u308c\u3066\u6700\u9ad8\u611f\u5ea6\u306b\u306a\u3063\u3066\u3044\u308b\u65b0\u59bb \u30d6\u30e9\u30a4\u30c0\u30eb\u30a8\u30b9\u30c6\u3067\u6cb9\u65ad\u3057\u305f\u3068\u3053\u308d\u306b\u5a9a\u85ac\u30c1\u25cf\u30dd\u3092\u5373\u30cf\u30e1\uff01\u3059\u3050\u306b\u62b5\u6297\u304c\u5f31\u307e\u308a\u3001\u611f\u3058\u59cb\u3081\u305f\u3068\u3053\u308d\u3067\u30de\u30b7\u30f3\u30d0\u30a4\u30d6\u633f\u5165\u3001\u6f6e\u3092\u5439\u304d\u307e\u304f\u3063\u3066\u3001\u4e2d\u51fa\u3057\u3092\u3059\u3093\u306a\u308a\u53d7\u3051\u5165\u308c\u308b\uff012"], "image_paths": ["full/53dd61d7fcf33bd326435ea08393377a609f0b5b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48738.jpg"]}
{"url": ["/htm/mp46/48736.htm"], "text": ["\u899a\u9192Gas\u30a2\u30af\u30e1\u8133\u9ac4\u30de\u30c7\u72c2\u30ef\u30bb\u30c6\u3001\u72af\u30eb\uff01\u6d77\u5916\u3067\u6d41\u884c\u4e2d\u306e\u5a9a\u85ac\u30ac\u30b9\u3092\u5438\u5f15 01 \u9752\u5c71\u672a\u6765"], "image_paths": ["full/7bae54d0f5ca7c2ec9ab6723c86f9b2ec98db378.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48736.jpg"]}
{"url": ["/htm/mp46/48737.htm"], "text": ["\u304a\u5b22\u69d8\u5973\u5b50\u6821\u751f?OL?\u4e88\u5907\u6821\u751f?\u30d5\u30ea\u30fc\u30bf\u30fc\u3001\u7f8e\u4eba4\u59c9\u59b9\u306e\u81ea\u5b85\u306b\u4fb5\u5165\u300c\u304a\u59c9\u3061\u3083\u3093\u3092\u30ec\u30a4\u30d7\u3055\u308c\u305f\u304f\u306a\u304b\u3063\u305f\u3089\u9ed9\u3063\u3066\u4e2d\u51fa\u3057\u3055\u305b\u308d\u300d\u3068\u80c1\u3057\u3066\u7ed3\u5c40\u5bb6\u65cf\u5168\u5458\u30ca\u30de\u4e2d\u51fa\u3057\u30ec\u30a4\u30d7\uff01"], "image_paths": ["full/e774f20e6b284ac41c8ffa99713ade4623e1974b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48737.jpg"]}
{"url": ["/htm/mp46/48746.htm"], "text": ["\u6deb\u3089\u306a\u4eba\u59bb\u3068\u306e\u6e29\u6cc9\u4e2d\u51fa\u3057\u306e\u65c5 \u5e73\u7a4f\u306a\u6bce\u65e5\u306b\u4e0d\u6e80\u304c\u3042\u308b\u308f\u3051\u3067\u306f\u306a\u3044\u304c\u3069\u3053\u304b\u7269\u8db3\u308a\u306a\u3044\u3002\u3082\u3046\u4e00\u5ea6\u3060\u3051\u3068\u304d\u3081\u304d\u3092\u611f\u3058\u305f\u304f\u3066\u5973\u306f\u89c1\u77e5\u3089\u306c\u7537\u306b\u62b1\u304b\u308c\u308b\u2026 2"], "image_paths": ["full/80f18c8030ae942ca92f76ce877014e7a54929c4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48746.jpg"]}
{"url": ["/htm/mp46/48744.htm"], "text": ["20\u4ee3\u30de\u30de\u306e\u6291\u3048\u304d\u308c\u306a\u3044\u6027\u6b32\uff01\u30bb\u30c3\u30af\u30b9\u30ec\u30b9\u306e\u82e5\u59bb\u306f3P4P\u5f53\u305f\u308a\u524d"], "image_paths": ["full/8a2358f69b0e467e7cb06453c22ff575ff7638bc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48744.jpg"]}
{"url": ["/htm/mp46/48742.htm"], "text": ["\u53e4\u5ddd\u3044\u304a\u308a \u30bf\u30a4\u30c8\u30b9\u30ab\u30fc\u30c8\u306e\u8bf1\u60d1 \u5148\u8f88OL\u306e\u30d1\u30c3\u30c4\u30d1\u30c4\u306e\u30d2\u30c3\u30d7\u30e9\u30a4\u30f3\u3068\u30d1\u30f3\u30c1\u30e9\u3001\u592a\u3082\u3082\u7f8e\u811a\u3001\u30a8\u30ed\u5c3b\u306b\u5174\u594b\u3055\u305b\u3089\u308c\u3066\u2026"], "image_paths": ["full/3d528de09cff757b11a80100879f102230ad287a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48742.jpg"]}
{"url": ["/htm/mp46/48741.htm"], "text": ["\u9999\u6f84\u306f\u308b\u304b \u7f8e\u4eba\u5973\u6559\u5e08\u9675\u8fb1\u8c03\u6559"], "image_paths": ["full/0fe466231e4076ef696658cd6abb82885f389755.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48741.jpg"]}
{"url": ["/htm/mp46/48743.htm"], "text": ["Romantic album"], "image_paths": ["full/a43d480262a3b3996abd4c12f2549cd9cdca39ef.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48743.jpg"]}
{"url": ["/htm/mp46/48754.htm"], "text": ["SOD\u5973\u5b50\u793e\u5458 \u3008\u7f14\u3081\u5207\u308a\u306f\u7834\u3063\u305f\u4e8b\u306a\u3044\u3067\u3059\u3009\u304c\u81ea\u6162\u3067\u3001\u4e1a\u52a1\u6001\u5ea6\u306f\u3044\u305f\u3063\u3066\u52e4\u52c9\u304c\u3001\u300c\u81ed\u3044\u3061\u25cf\u307d\u304c\u597d\u304d\u3089\u3057\u3044\u300d\u300c\u4ed5\u4e8b\u3092\u53e3\u5b9f\u306b\u81ea\u3089\u30a8\u30ed\u30b0\u30c3\u30ba\u8bd5\u3057\u305f\u304c\u308b\u300d\u7b49\u3005\u5b9f\u306f\u30b9\u30b1\u30d9\u306a\u306e\u3067\u306f\uff1f"], "image_paths": ["full/ff307381aee6bf7b53375f0bec776b7c70dd3f84.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48754.jpg"]}
{"url": ["/htm/mp46/48753.htm"], "text": ["\u6210\u719f\u3057\u305f\u59c9\u306e\u88f8\u306b\u89e6\u308c\u305f\u7ae5\u8d1e\u5f1f\u306f\u30a4\u30b1\u306a\u3044\u4e8b\u3068\u77e5\u308a\u3064\u3064\u3082\u30c1\u25cf\u30dd\u3092\u52c3\u8d77\u3055\u305b\u3066\u300c\u7981\u65ad\u306e\u8fd1\u4eb2\u76f8\u5978\u300d\u3057\u3066\u3057\u307e\u3046\u306e\u304b\uff01\uff1f 7"], "image_paths": ["full/0e3835d899305aa6d180810b58b762f098330683.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48753.jpg"]}
{"url": ["/htm/mp46/48752.htm"], "text": ["\u5b50\u6301\u3061\u306e\u7537\u6027\u3068\u7ed3\u5a5a\u3057\u305f\u82e5\u59bb\u304c\u601d\u6625\u671f\u3067\u81ea\u5206\u3092\u907f\u3051\u308b\u4e49\u7406\u306e\u606f\u5b50\u3068\u4e00\u6cca\u4e8c\u65e5\u306e\u30b9\u30ad\u30f3\u30b7\u30c3\u30d7\u6df7\u6d74\u6e29\u6cc9\u65c5\u884c\uff01\u300c\u30de\u30de\u3068\u547c\u3093\u3067\u3082\u3089\u3044\u305f\u3044\u2026\u300d\u521d\u3081\u3066\u306e\u6df7\u6d74?\u6dfb\u3044\u5bdd\u2026\u8fd1\u4eb2\u76f8\u5978\u307e\u3067\u306e\u5168\u8bb0\u9332\uff01\uff01\uff01"], "image_paths": ["full/86655481da61164779ae094cc0a0e7a30e2aa001.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48752.jpg"]}
{"url": ["/htm/mp46/48751.htm"], "text": ["\u6e05\u695a\u306a\u89c1\u305f\u76ee\u3068\u306f\u91cc\u8179\u306a\u5909\u6001\u6027 SOD\u4eba\u59bb\u30ec\u30fc\u30d9\u30eb\u53f2\u4e0a\u6700\u9ad8\u306e\u9ad8\u5b66\u6b74\u30ae\u30e3\u30c3\u30d7\u304a\u305f\u304f\u4eba\u59bb \u4e95\u6d66\u6c99\u7ec7 32\u6b73 \u6700\u7ec8\u7ae0 \u65e6\u90a3\u306b\u5618\u3092\u3064\u3044\u3066 \u4e00\u6cca\u4e8c\u65e5 \u521d\u3081\u3066\u306e\u4e2d\u51fa\u3057\u6e29\u6cc9\u4e0d\u4f26\u65c5\u884c"], "image_paths": ["full/af63513e606d679a055270662dd07c8244cfb7b0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48751.jpg"]}
{"url": ["/htm/mp46/48749.htm"], "text": ["\u7403\u573a\u3067\u50cd\u304f\u3068\u3063\u3066\u3082\u53ef\u7231\u3044\u30d3\u30fc\u30eb\u306e\u58f2\u308a\u5b50\u3055\u3093\u304c\u7a76\u6781\u306e\u304a\u3082\u3066\u306a\u3057\u25c6\u5bab\u76ca\u3053\u3068\u306f \u8d85\u9ad8\u7ea7\u65b0\u4eba\u30bd\u30fc\u30d7\u5b22"], "image_paths": ["full/0772c79ca65d50e3647ccd350e2b2e19e693ecc9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48749.jpg"]}
{"url": ["/htm/mp46/48750.htm"], "text": ["\u73b0\u5f79\u306eTV\u30bf\u30ec\u30f3\u30c8\uff01\u305d\u3057\u3066\u79cb\u53f6\u539f\u306e\u73b0\u5f79\u30e1\u30a4\u30c9\u3055\u3093 \u6d45\u7530\u7ed3\u68a8 \u9650\u754c\u7a81\u7834\uff01\u6fc0\u30a4\u30ab\u305b\u8c03\u6559\uff01\uff01SEX\u4e2d\u6bd2\u306b\u306a\u308b\u307e\u3067\u3001\u5f7b\u5e95\u7684\u306b\u5f00\u767a\u3057\u307e\u3059"], "image_paths": ["full/c3a857a08d7553c122b2975894df7aba74ef0082.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48750.jpg"]}
{"url": ["/htm/mp46/48747.htm"], "text": ["\u53e3\u8bf4\u304d\u843d\u3068\u3057\u305f\u719f\u597313\u540d\u306e\u4e2d\u51fa\u3057\u30ca\u30f3\u30d1 \u5927\u4eba\u306e\u8272\u6c17\u5168\u5f00240\u5206"], "image_paths": ["full/a63cec85d5fcc58701c85f16022bacf0ece8b546.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48747.jpg"]}
{"url": ["/htm/mp46/48748.htm"], "text": ["\u7f8e\u9b54\u5973\u30ca\u30f3\u30d1\uff01\uff01\u3057\u307f\u3051\u3093\u304c\u5ff5\u3089\u3059\uff01\u719f\u5973\u306e\u7406\u6027\u5439\u304d\u98de\u3076\u751fFUCK\uff01\u8868\u53c2\u9053\u7f16"], "image_paths": ["full/814b72c249599662d56889f0c400d1ca84dbcb40.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48748.jpg"]}
{"url": ["/htm/mp46/48760.htm"], "text": ["\u590f\u5e0c\u307f\u306a\u307f\u304c\u4e16\u754c\u6700\u5927\u306e\u30c7\u30ab\u30c1\u30f3\u9ed2\u4eba\u3068\u30ac\u30c3\u30c4\u30ea\u751f\u4e2d\u51fa\u3057"], "image_paths": ["full/775e811f15a027518f3feb9ffc64a89a46f06eaf.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48760.jpg"]}
{"url": ["/htm/mp46/48759.htm"], "text": ["\u30cf\u30fc\u30ec\u30e0\u30ec\u30fc\u30b9\u30af\u30a4\u30fc\u30f3"], "image_paths": ["full/8ce430f380754ff05b8a20b9d9ef8a356eea1f06.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48759.jpg"]}
{"url": ["/htm/mp46/48758.htm"], "text": ["\u30e4\u30ea\u30de\u30f3\u30d3\u30c3\u30c1\u5e73\u7136\u5973\u5b66\u56ed 2"], "image_paths": ["full/5350a101dbbd3ca119f9afb23ce8600f5dcf7ce7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48758.jpg"]}
{"url": ["/htm/mp46/48757.htm"], "text": ["\u65e5\u672c\u4e00\u30b4\u30fc\u30b8\u30e3\u30b9\u306a\u30ea\u30e0\u30b8\u30f3\u98ce\u4fd7"], "image_paths": ["full/1dea261bdd34d06e33ccad895d35c1b1e480320a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48757.jpg"]}
{"url": ["/htm/mp46/48756.htm"], "text": ["\u6027\u6b32\u5904\u7406\u5c02\u95e8 \u30bb\u30c3\u30af\u30b9\u5916\u6765\u533b\u9662 11 \u771f\u6b63\u4e2d\u51fa\u3057\u79d1 \u306a\u304b\u3060\u3057\u8bbf\u95ee\u770b\u62a4\u30b5\u30fc\u30d3\u30b9"], "image_paths": ["full/f9aae9dc91a67d66121fd951b155e1d8a1d358a8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48756.jpg"]}
{"url": ["/htm/mp46/48755.htm"], "text": ["\u3061\u25cf\u307d\u6d17\u3044\u5c4b\u306e\u304a\u4ed5\u4e8b 14\uff5e\u672a\u6210\u5e74\u5973\u5b50\u6821\u751fver. 2\uff5e"], "image_paths": ["full/eda9c71da06536603caf17325c6af0ee376848a4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48755.jpg"]}
{"url": ["/htm/mp46/48762.htm"], "text": ["\u592b\u3092\u30de\u30de\u53cb\u306b\u5bdd\u53d6\u3089\u308c\u305f\u8179\u3044\u305b\u306b\u3001\u30de\u30de\u53cb\u306e\u65e6\u90a3\u3092\u5bdd\u53d6\u3063\u305f\u59bb\uff01\u521d\u3081\u306f\u590d\u96e0\u306e\u3064\u3082\u308a\u304c\u4ed6\u4eba\u68d2\u306e\u864f\u306b\u2026 \u4f50\u3005\u6728\u3042\u304d"], "image_paths": ["full/905b5f92b47bacbdee8258ab9fb1cf9876aacbb3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48762.jpg"]}
{"url": ["/htm/mp46/48761.htm"], "text": ["\u751f\u5f92\u305f\u3061\u306b\u6652\u3057\u8005\u306b\u3055\u308c\u305f\u5973\u6559\u5e08 \u7acb\u82b1\u4ec1\u7f8e\u5148\u751f \u751f\u5f92\u7f16"], "image_paths": ["full/46f6a2259de3c472dd60417150a19e502414aba0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48761.jpg"]}
{"url": ["/htm/mp46/48766.htm"], "text": ["\u5929\u4f7f\u306e\u30a2\u30ca\u30eb W\u4e8c\u7a74?\u4e2d\u51fa\u3057\u30d1\u30a4\u30d1\u30f3 \u307f\u304f \u3068\u3082\u3053"], "image_paths": ["full/31b6dca6c0e40f702a139229421e1e30944ed531.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48766.jpg"]}
{"url": ["/htm/mp46/48765.htm"], "text": ["\u7d27\u7f1a\u9b3c\u30a4\u30ab\u30bb \u6728\u5357\u65e5\u83dc"], "image_paths": ["full/4a0fc9173b99852563c04210bdfa30c40c354bc5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48765.jpg"]}
{"url": ["/htm/mp46/48763.htm"], "text": ["\u4eba\u59bb\u3092\u81ea\u5b85\u306b\u8fde\u308c\u8fbc\u307f\u9154\u308f\u305b\u3066\u5f3a\u5f15\u30a2\u30ca\u30eb\u4e2d\u51fa\u3057FUCK\uff01"], "image_paths": ["full/041ffd1ad3395fec341fff8d4736541d26da1aa5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48763.jpg"]}
{"url": ["/htm/mp46/48768.htm"], "text": ["\u9b3c\u30d5\u30a7\u30e9\u5730\u72f1XXIX \u4e18\u54b2\u30a8\u30df\u30ea \u4e0a\u539f\u82b1\u604b"], "image_paths": ["full/b61146318d7eee29a01d14ada5e4bdbd98635917.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48768.jpg"]}
{"url": ["/htm/mp46/48764.htm"], "text": ["\u79cb\u53f6\u539f\u30b9\u30af\u6c34\u7f8e\u5c11\u5973\u56de\u6625\u30ea\u30d5\u30ec\u30af\u30bd\u30ed\u30b8\u30fcVol.1"], "image_paths": ["full/9160cae20f96a90fcbbee8c48e3e929678ee7145.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48764.jpg"]}
{"url": ["/htm/mp46/48767.htm"], "text": ["\u5927\u91cf\u7cbe\u5b50\u3054\u3063\u304f\u309320\u767a\uff01\uff01\u6deb\u8bed\u5b9f\u51b5\u30ed\u30ea\u5973\u5b50\u30a2\u30ca\u30a6\u30f3\u30b5\u30fc \u9752\u5c71\u672a\u6765"], "image_paths": ["full/2db9e8556f98bd938a87e1f29752f4376205e520.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48767.jpg"]}
{"url": ["/htm/mp46/48770.htm"], "text": ["\u77e5\u4eba\u306e\u30de\u30c3\u30b5\u30fc\u30b8\u5e08\u306b\u5bdd\u53d6\u3089\u308c\u305f\u4eba\u59bb \u30bb\u30c3\u30af\u30b9\u30ec\u30b9\u89e3\u6d88\u3092\u5efa\u524d\u306b\u30de\u30c3\u30b5\u30fc\u30b8\u5e08\u304c\u4f01\u3066\u305f\u7f60 \u85e4\u4e0b\u68a8\u82b1"], "image_paths": ["full/5b85ec73b08306a5c2784cd0d0e29239463769fc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48770.jpg"]}
{"url": ["/htm/mp46/48772.htm"], "text": ["\u767e\u5408\u5ddd\u3055\u3089\u306e\u7a81\u6483\u30ec\u30ba\u30ca\u30f3\u30d1\uff01\u8857\u3086\u304f\u7d20\u4eba\u5a18\u3092\u55b0\u3044\u6bd4\u3079\uff01\uff01"], "image_paths": ["full/dd8d6f68300f35f6803984c5406f70a9de3d8be6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48772.jpg"]}
{"url": ["/htm/mp46/48777.htm"], "text": ["\u6f5c\u5165\u635c\u67fb\u5b98 \u897f\u5ddd\u3086\u3044"], "image_paths": ["full/bf08785fd51a593c1521fd3db506104e18fe57f3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48777.jpg"]}
{"url": ["/htm/mp46/48769.htm"], "text": ["\u304b\u3059\u307f\u679c\u7a42\u306e\u30c1\u25cf\u30dd\u3057\u3054\u304d\u306b\u8010\u3048\u305f\u308910\u4e07\u5186\u5dee\u3057\u4e0a\u3052\u307e\u3059"], "image_paths": ["full/9f8358a42cc26efcc58f6b6567c12f040a3d8e30.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48769.jpg"]}
{"url": ["/htm/mp46/48771.htm"], "text": ["\u4e94\u5341\u5c9a\u3055\u3093\u5bb6\u306e\u6b6a\u3093\u3060\u6027\u6559\u80b2 \u4e94\u5341\u5c9a\u3057\u306e\u3076 \u5c0f\u6cc9\u307e\u308a"], "image_paths": ["full/675a29979721c8c424ba412c6db996c5c51bc71b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48771.jpg"]}
{"url": ["/htm/mp46/48776.htm"], "text": ["\u6bbf\u5802\uff01\u30b9\u30fc\u30d1\u30fc\u30a2\u30a4\u30c9\u30eb8\u65f6\u95f4 \u6ce2\u591a\u91ce\u7ed3\u8863 2"], "image_paths": ["full/1853dde53c0af3f74d99a842f409de3c5f496dfb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48776.jpg"]}
{"url": ["/htm/mp46/48774.htm"], "text": ["\u7d20\u4eba\u30ca\u30f3\u30d1\u6301\u3061\u5e30\u308a\uff01\u76d7\u64aeSEX\u6a2a\u6d41\u3057\u6620\u50cf 14"], "image_paths": ["full/d6c4f1d28a4407ee5c3d959c0822dc2ee0e69a9c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48774.jpg"]}
{"url": ["/htm/mp46/48780.htm"], "text": ["\u30b6\u30fc\u30e1\u30f3\u3054\u3063\u304f\u3093100\u8fde\u767a \u685c\u4e95\u3042\u3086"], "image_paths": ["full/9e3293917d88f923f0148b663d38ea9304ed8fd4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48780.jpg"]}
{"url": ["/htm/mp46/48773.htm"], "text": ["\u50cd\u304f\u30a4\u30a4\u5973 OL\u3060\u3063\u3066\u601d\u3044\u3063\u304d\u308a\u30a8\u30c3\u30c1\u3057\u3066\u30b9\u30c8\u30ec\u30b9\u767a\u6563\u3057\u305f\u3044\u3093\u3067\u305915\u4eba4\u65f6\u95f4"], "image_paths": ["full/43251f1aaac489975753e2901b76c21ac977db0d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48773.jpg"]}
{"url": ["/htm/mp46/48779.htm"], "text": ["\u5730\u5143\u51ef\u65cbSEX \u661f\u7f8e\u308a\u304b"], "image_paths": ["full/24ca8427e88019f92e71d034bc6cdd4b93a958c5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48779.jpg"]}
{"url": ["/htm/mp46/48778.htm"], "text": ["\u3088\u3046\u3053\u305d\uff01\u30ad\u30e2\u30e1\u30f3\u30cf\u30a6\u30b9\u3078 \u53cb\u7530\u5f69\u4e5f\u9999"], "image_paths": ["full/5708ee4721bcbe9cafb9e41c7e29548d80bd2fac.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48778.jpg"]}
{"url": ["/htm/mp46/48781.htm"], "text": ["\u3046\u3057\u3058\u307e\u3044\u3044\u8089\u30d7\u30ed\u30c7\u30e5\u30fc\u30b9 \u4f50\u4ed3\u7eca\u00d7\u30b3\u30b9\u30d7\u30ec\u00d7\u30ea\u30a2\u30eb\u30a8\u30ed"], "image_paths": ["full/c3e3ee85f076bed76dc03bccabf81bf28c76d8e7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48781.jpg"]}
{"url": ["/htm/mp46/48785.htm"], "text": ["\u30b9\u30ad\uff01\u30b9\u30ad\uff01\u30c7\u30ab\u30c1\u30f3\u5148\u751f \u6765\u6816\u307f\u3055"], "image_paths": ["full/8ef1ee142d5a9c68c09283402c4e19729cc4d842.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48785.jpg"]}
{"url": ["/htm/mp46/48783.htm"], "text": ["million\u00d7MAXING \u5927\u91cf\u30b6\u30fc\u30e1\u30f3\u3076\u3063\u304b\u305130\u767a\uff01\uff01 \u7f8e\u51c9\u308a\u306a"], "image_paths": ["full/2eac331a8616b10eea696f585d2fb0e72c81db5b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48783.jpg"]}
{"url": ["/htm/mp46/48784.htm"], "text": ["\u300c\u79c1\u306f\u73a9\u5177\u3067\u3059\u2026\u300d\u7f8e\u5c11\u5973\u6027\u4ea4\u4fdd\u5065\u4f53\u80b2\u65e5\u5fd7\u4f55\u3082\u77e5\u3089\u306a\u3044\u7eaf\u771f\u65e0\u57a2\u306a\u5973\u5b50\u6821\u751f\u306b\u3053\u308c\u304c\u666e\u901a\u306e\u300cSEX\u300d\u3060\u3068\u6559\u3048\u8fbc\u3080\u3002\u7a42\u6ce2\u3072\u306a\u3053"], "image_paths": ["full/c6ecfd3dc581dd3a654640d734ec824f7a6e2bba.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48784.jpg"]}
{"url": ["/htm/mp46/48790.htm"], "text": ["\u30ec\u30f3\u30bf\u30eb\u82e5\u59bb\uff5e\u3042\u306a\u305f\u597d\u307f\u306e\u82e5\u59bb\u306b1\u65e5\u306a\u306b\u3057\u3066\u3082\u3044\u3044\u306e\u3088\uff5e"], "image_paths": ["full/f857243ff46a8eff667c9db9d87675908bdc2f9a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48790.jpg"]}
{"url": ["/htm/mp46/48789.htm"], "text": ["\u7f8e\u4eba\u5973\u5c06\u304c\u5fc3\u3092\u8fbc\u3081\u305f\u30b9\u30da\u30b7\u30e3\u30eb\u30c6\u30af\u30cb\u30c3\u30af\u3067\u63a5\u5f85\uff01\u81f3\u308c\u308a\u5c3d\u304f\u305b\u308a\u306e\u30b9\u30da\u30b7\u30e3\u30eb\u6e29\u6cc9\u65c5\u9986\uff01\uff01 \u4e0a\u539f\u4e9c\u8863 \u4e59\u53f6\u306a\u306a\u305b \u306a\u3064\u3081\u7231\u8389 \u6ce2\u591a\u91ce\u7ed3\u8863 \u7b71\u7530\u3086\u3046 \u6c34\u91ce\u671d\u9633 \u5927\u69fb\u3072\u3073\u304d"], "image_paths": ["full/986ac03c85ff8c78fc363c66440f5fec1b23cc0e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48789.jpg"]}
{"url": ["/htm/mp46/48788.htm"], "text": ["\u7f8e\u4eba\u5965\u69d8\u3068\u30cf\u30fc\u30ec\u30e0\u7ed3\u5a5a\u6027\u6d3b \u53f6\u5c71\u3081\u3044 Maika \u5ddd\u6751\u307e\u3084 \u5357\u68a8\u592e\u5948"], "image_paths": ["full/012fbf4cd48b961116301c9d033bbce8db46f8f1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48788.jpg"]}
{"url": ["/htm/mp46/48787.htm"], "text": ["\u7f8e\u5c11\u5973\u5c02\u95e8\u7d20\u80a1\u4ea4\u9645\u30af\u30e9\u30d6 \u3042\u3044"], "image_paths": ["full/d3598ce9f04a59e03aeb3a619aab4e0cd369b3f1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48787.jpg"]}
{"url": ["/htm/mp46/48786.htm"], "text": ["\u65b0\u9c9c\u5de8\u4e73\u5973\u5b50\u6821\u751f \u6843\u5c3b\u5a18\u3068\u3044\u3044\u306a\u308a\u4e2d\u51fa\u3057\u6027\u4ea4 \u307e\u307b\u308d"], "image_paths": ["full/a32d83521402b9576da7fe3ca0c8c873b85dd9a5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48786.jpg"]}
{"url": ["/htm/mp46/48793.htm"], "text": ["10\u4eba10\u767a\uff0b7\u767a\u672c\u5f53\u306e\u751f\u4e2d\u51fa\u3057 \u590f\u5e0c\u307f\u306a\u307f"], "image_paths": ["full/0274c54823da3017995b60eb21f268f0e9adac60.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48793.jpg"]}
{"url": ["/htm/mp46/48792.htm"], "text": ["\u30de\u30b0\u30ed\u7537\u9650\u5b9a\uff01\uff01\u6700\u521d\u304b\u3089\u6700\u540e\u307e\u3067\u52a8\u304b\u306a\u304f\u3066\u3082\u30a4\u30ab\u305b\u307e\u304f\u3063\u3066\u304f\u308c\u308b\u98ce\u4fd7\u30d5\u30eb\u30b3\u30fc\u30b9\uff01\uff0110\u767a\u51fa\u3059\u307e\u3067\u5e30\u308c\u307e\u305b\u3093\uff01\uff01 \u83b2\u5b9f\u30af\u30ec\u30a2 \u6728\u5357\u65e5\u83dc \u795e\u30e6\u30ad \u521d\u7f8e\u6c99\u5e0c"], "image_paths": ["full/0657894e58ff013d3d06dccf68a7cc91c15964aa.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48792.jpg"]}
{"url": ["/htm/mp46/48796.htm"], "text": ["\u3059\u3054\u3044\u91cf\u306e\u672c\u6c17\u6c41SEX \u5ddd\u4e0a\u5948\u3005\u7f8e"], "image_paths": ["full/df40f91dea3abd59e3d90a61fcedb9c8f7edeebb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48796.jpg"]}
{"url": ["/htm/mp46/48791.htm"], "text": ["\u5973\u306e\u30ab\u30e9\u30c0\u306f\u8170\u4f7f\u3044\u3067\u51b3\u307e\u308b\uff014\u65f6\u95f4 19"], "image_paths": ["full/a28e8e4f63b6b69a4c09fc1f04bd1fb65e92998b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48791.jpg"]}
{"url": ["/htm/mp46/48795.htm"], "text": ["\u5c11\u5973\u4eba\u5f62\uff5e\u304a\u4e49\u7236\u3055\u3093\u3001\u304a\u613f\u3044\u3001\u3082\u3046\u8bb8\u3057\u3066\u2026\uff5e \u6c5f\u5948\u308b\u308a"], "image_paths": ["full/03ebc68c151a5779e29a9f8a1718e4177ba45ff0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48795.jpg"]}
{"url": ["/htm/mp46/48782.htm"], "text": ["\u8f6f\u7981\u30bb\u30d5\u30ec\u5973\u5b50\u6821\u751f \u7eeb\u6ce2\u3086\u3081"], "image_paths": ["full/ec868fb71c9e5205a16757ee2519d3099ce6b81e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48782.jpg"]}
{"url": ["/htm/mp46/48794.htm"], "text": ["\u3044\u304d\u306a\u308a\u4e2d\u51fa\u3057AV\u30c7\u30d3\u30e5\u30fc \u6728\u5357\u7ffc"], "image_paths": ["full/a174dbfb42b369a72dac5b3e528d3d6014dfe9fb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48794.jpg"]}
{"url": ["/htm/mp46/48801.htm"], "text": ["\u30a2\u30ca\u30eb\u89e3\u7981\u3067\u5f15\u9000 \u30b7\u30a7\u30ea\u30fc"], "image_paths": ["full/9a9e8ca72b7b3041f563e781becee0ba111fe88e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48801.jpg"]}
{"url": ["/htm/mp46/48800.htm"], "text": ["\u3071\u3044\u3071\u3044\u30d8\u30d6\u30f3"], "image_paths": ["full/c65d16d9f8a388bdebd8678cc3b1c98b816aeb40.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48800.jpg"]}
{"url": ["/htm/mp46/48798.htm"], "text": ["\u6027\u5904\u7406\u3068\u5316\u3057\u305f\u4f18\u7b49\u751f \u7686\u91ce\u3042\u3044"], "image_paths": ["full/89c4e7a063909b10415c43b131fc7a961d5152bf.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48798.jpg"]}
{"url": ["/htm/mp46/48799.htm"], "text": ["\u79c1\u306e\u5b50\u5bab\uff08\u30ca\u30ab\uff09\u306b\u5168\u90e8\u51fa\u3057\u3066 \u68ee\u82fa\u8389"], "image_paths": ["full/afbfca0238b39b4fbc80a7ff53d1df97757219db.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48799.jpg"]}
{"url": ["/htm/mp46/48805.htm"], "text": ["\u30b4\u30fc\u30b9\u30c8\u3092\u7231\u3057\u305f\u7f8e\u4e73\u59bb \uff5e\u3042\u306a\u305f\u306b\u305a\u3063\u3068\u6deb\u3089\u306b\u62b1\u304b\u308c\u3066\u3044\u305f\u3044\uff5e \u6c34\u57ce\u5948\u7eea"], "image_paths": ["full/12d2743e9d1a6dede315fd5d6e4db466cfd58117.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48805.jpg"]}
{"url": ["/htm/mp46/48804.htm"], "text": ["\u53d7\u9a13\u524d\u306e\u606f\u5b50\u3092\u5351\u7325\u306a\u30b3\u30b9\u30c1\u30e5\u30fc\u30e0\u3067\u52b1\u307e\u3059\u5de8\u4e73\u30de\u30de \u4e03\u539f\u3042\u304b\u308a"], "image_paths": ["full/938f875f3cb21a1cbad5a3a914d2a4dbe2cf5d98.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48804.jpg"]}
{"url": ["/htm/mp46/48803.htm"], "text": ["\u30c9\u30c7\u30ab\u4e73 \u6e05\u51a2\u90a3\u5948"], "image_paths": ["full/4ca57cc152d3e9b28b534d1320af0f218069be6a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48803.jpg"]}
{"url": ["/htm/mp46/48802.htm"], "text": ["\u30ef\u30bf\u30b7\u306f\u7236\u306e\u6027\u5904\u7406\u30da\u30c3\u30c8\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u82e5\u83dc\u304b\u306a\u3048"], "image_paths": ["full/872d97967d88a38340f38c9157fee8d65281b275.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48802.jpg"]}
{"url": ["/htm/mp46/48809.htm"], "text": ["\u795e\u30de\u30f3\u306e\u9ed2\u30ae\u30e3\u30eb\u300110\u4ee3\u30671000\u4eba\u65a9\u308a\u306e\u4f59\u88d5"], "image_paths": ["full/74c3bf092408f1ba9f9147802e16f307821c7bd1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48809.jpg"]}
{"url": ["/htm/mp46/48808.htm"], "text": ["\u3088\u30fc\u3057\uff01\u304a\u3058\u3055\u3093\u3001\u7206\u4e70\u3044\u3057\u3061\u3083\u304a\u3046\u304b\u306a\uff1f"], "image_paths": ["full/733c213c4d655633568d81d50333552f492497b1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48808.jpg"]}
{"url": ["/htm/mp46/48807.htm"], "text": ["\u8fc7\u5270\u30d5\u30a7\u30ed\u30e2\u30f3\u306e\u5ac1\u304c\u51fa\u5f20\u30d1\u30bd\u30b3\u30f3\u8bb2\u5e08\u3092\u59cb\u3081\u305f\u306e\u3060\u304c"], "image_paths": ["full/b12f600207964647f311304146066214df88e101.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48807.jpg"]}
{"url": ["/htm/mp46/48812.htm"], "text": ["\u4eba\u59bb\u76d7\u64ae \u8997\u304b\u308c\u305f\u79c1\u6027\u6d3b \u6ce2\u591a\u91ce\u7ed3\u8863"], "image_paths": ["full/7758f7be80da275fe000d2240b8e1596ce6ce874.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48812.jpg"]}
{"url": ["/htm/mp46/48811.htm"], "text": ["\u4eba\u59bb\u6027\u5974\u96b6 \u9ed2\u702c\u840c\u8863"], "image_paths": ["full/90877a8f79c8428711339b4de0b8e6bb69850f81.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48811.jpg"]}
{"url": ["/htm/mp46/48810.htm"], "text": ["\u6deb\u3089\u306b\u306a\u308b\u307b\u3069\u7f8e\u3057\u304f \u30ab\u30c3\u30d7\u30ea\u30f3\u30b0\u7248 \u5800\u5185\u79cb\u7f8e \u590f\u76ee\u4f18\u5e0c"], "image_paths": ["full/8afc754f4d217d440a01b5fe2689dd628cd80e03.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48810.jpg"]}
{"url": ["/htm/mp46/48813.htm"], "text": ["\u304a\u3070\u30c1\u30e9GET \u5b9f\u5728\u3059\u308b\u65e0\u57a2\u306a\u719f\u5973\u306e\u803b\u3058\u3089\u3044EXPRESS 11"], "image_paths": ["full/46457e3a10b0ecbcc8a9fb906a92680469306f62.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48813.jpg"]}
{"url": ["/htm/mp46/48817.htm"], "text": ["\u719f\u7761\u3057\u3066\u3044\u308b\u59c9\u306e\u30ab\u30e9\u30c0\u306b\u60aa\u620f"], "image_paths": ["full/3e367ac3b8466b1772579a04f912b432b9cddc8b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48817.jpg"]}
{"url": ["/htm/mp46/48814.htm"], "text": ["\u4eba\u59bb\u30ca\u30f3\u30d1\u4e2d\u51fa\u3057\u30a4\u30ab\u30bb 21 \u5b89\u5b9a\u306e\u6c60\u888b\u7f16"], "image_paths": ["full/39e09a74435d47b4504d6b7a1514a32b75d031f7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48814.jpg"]}
{"url": ["/htm/mp46/48815.htm"], "text": ["\u4eba\u59bb\u672c\u756a\u56de\u6625\u30a8\u30b9\u30c6 \u6e05\u695a\u7cfb\u75f4\u5973\u5965\u69d89\u540d\u81f3\u9ad8\u306e\u30b5\u30fc\u30d3\u30b94\u65f6\u95f4"], "image_paths": ["full/e0d5f7bfe61e1f0391e730ba6d8f59fe8e9daac3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48815.jpg"]}
{"url": ["/htm/mp46/48816.htm"], "text": ["\u72d9\u308f\u308c\u305f \u5ac1\u306e\u5351\u7325\u306a\u30c7\u30ab\u30d1\u30a4 \u51a2\u7530\u8bd7\u7ec7"], "image_paths": ["full/621bdd30afa86bc778602950aa3fc408f41d152b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48816.jpg"]}
{"url": ["/htm/mp46/48821.htm"], "text": ["\u67d0\u30d6\u30e9\u30a4\u30c0\u30eb\u30a8\u30b9\u30c6\u3067\u5168\u8eab\u304c\u8d85\u654f\u611f\u30aa\u30de\u25cf\u30b3\u306b\u306a\u308b\u6fc0\u70c8\u5a9a\u85ac\u3092\u30aa\u30a4\u30eb\u306b\u6df7\u5165\u3057\u4e73\u9996\u30d3\u30f3\u52c3\u3061\u306e\u7f8e\u5de8\u4e73\u3092\u306d\u3063\u3068\u308a\u63c9\u307f\u3057\u3060\u304b\u308c\u308c\u3070 \u5a5a\u524d\u82b1\u5ac1\u306f\u58f0\u3082\u51fa\u305b\u305a\u306b\u75c9\u631b\u30a4\u30ad\u8fde\u767a\uff01\uff01\u611f\u3058\u307e\u304f\u3063\u3066\u5f00\u304d\u3063\u3071\u306a\u3057\u306e\u5b50\u5bab\u53e3\u306f\u30ac\u30c1\u52c3\u8d77\u3057\u305f\u4ed6\u4eba\u68d2\u306e\u751f\u633f\u5165?\u751f\u4e2d\u51fa\u3057\u3092\u62d2\u3081\u306a\u3044\uff01 3"], "image_paths": ["full/442ef9d30d75c88e741447a378bddd839c75f028.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48821.jpg"]}
{"url": ["/htm/mp46/48824.htm"], "text": ["\u4e1a\u754c\u3067\u5927\u6ce8\u76ee\u306e\u7f8e\u4eba\u59c9\u59b9\uff01\u59c9\u306f\u30d7\u30ed\u30b4\u30eb\u30d5\u30a1\u30fc\uff01\u5c02\u5c5e\u30ad\u30e3\u30c7\u30a3\u30fc\u306e\u59b9\u304c\u59c9\u306b\u5185\u7eea\u3067\u307e\u3055\u304b\u306eAV\u30c7\u30d3\u30e5\u30fc\uff01 \u305b\u308a\u306a"], "image_paths": ["full/fff868c46d1ea332bce0585ef5750f100056c11f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48824.jpg"]}
{"url": ["/htm/mp46/48818.htm"], "text": ["\u300c10\u5206\u304a\u304d\u306b\u30ad\u30b9\u3057\u3066\u304f\u3060\u3055\u3044\u300d\u8d64\u306e\u4ed6\u4eba\u540c\u58eb\u304c\u4f55\u5ea6\u3082\u30ad\u30b9\u3092\u91cd\u306d\u308b\u3068\u706b\u304c\u3064\u3044\u3066\u521d\u5bfe\u9762SEX\u3059\u308b\u306e\u304b\uff1f"], "image_paths": ["full/58073952132e41f4201c58a9ee94c2bbf6a372bb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48818.jpg"]}
{"url": ["/htm/mp46/48823.htm"], "text": ["100\u4e07\u5186\u3067\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0\u3055\u305b\u3066\u304f\u3060\u3055\u3044\uff01\u804c\u573a\u306e\u540c\u50da\u3068\u5bc6\u5ba4\u3067\u4e8c\u4eba\u3063\u304d\u308a\uff01\u30c1\u30e3\u30c3\u30c8\u306e\u8fc7\u6fc0\u306a\u8981\u6c42\u306b\u3069\u3053\u307e\u3067\u4ed5\u4e8b\u4ef2\u95f4\u306e\u307e\u307e\u3067\u3044\u3089\u308c\u308b\u304b\u5f7b\u5e95\u691c\u8bc1\uff01\uff01\u300c\u7537\u300d\u3092\u610f\u8bc6\u3057\u305f\u3053\u3068\u304c\u306a\u304b\u3063\u305f\u4ef2\u95f4\u306e\u76ee\u306e\u524d\u3067\u67d4\u4e73\u30dd\u30ed\u30ea\uff06\u30c7\u30ab\u5c3b\u30d7\u30eb\u30f3\uff01"], "image_paths": ["full/ff47e89f964e25245e7ee9427b467d130bd68f3b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48823.jpg"]}
{"url": ["/htm/mp46/48822.htm"], "text": ["\u8fd1\u9877\u30b0\u30c3\u3068\u62b1\u304d\u3054\u308d\u306a\u30ab\u30e9\u30c0\u3064\u304d\u306b\u306a\u3063\u3066\u304d\u305f\u82e5\u3044\u5ac1\u304c\u65e0\u610f\u8bc6\u306b\u4e49\u7236\u306e\u52d8\u8fdd\u3044\u3092\u8bf1\u767a\uff01\u30bd\u30ce\u6c17\u306b\u306a\u3063\u305f\u8fd1\u4eb2\u68d2\u3092\u751f\u3067\u633f\u5165\u3057\u3088\u3046\u3068\u3057\u305f\u3089\u3001\u304a\u4e49\u7236\u3055\u3093\u305d\u308c\u3060\u3051\u306f\u30c0\u30e1\uff01\u3068\u3044\u3046\u306e\u306fOK\u306e\u30b5\u30a4\u30f3\uff1f"], "image_paths": ["full/24c6305e8f67d832e2d2c4e3bf253ce486895c7a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48822.jpg"]}
{"url": ["/htm/mp46/48825.htm"], "text": ["\u5317\u6d77\u9053\u80b2\u3061\u306e\u5929\u7136\u3061\u3063\u3071\u3044\u5a18 AV\u30c7\u30d3\u30e5\u30fc \u7a42\u6ce2\u3072\u306a\u3053"], "image_paths": ["full/b089594c7437fff1627386a39b7163b79940a375.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48825.jpg"]}
{"url": ["/htm/mp46/48828.htm"], "text": ["\u300c\u4e2d\u306b\u51fa\u3057\u3066\u2026\u592b\u3068\u5b50\u4f9b\u306b\u306f\u5185\u7eea\u300d\u81ea\u5b85\u3067\u611a\u75f4\u95fb\u304d\u5c4b\u306b\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9\u3092\u305b\u304c\u3080\u7f8e\u4eba\u4eba\u59bb\u305f\u3061 9"], "image_paths": ["full/53a3b18a0e1110f089a9e3890e3d2fdf67635207.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48828.jpg"]}
{"url": ["/htm/mp46/48830.htm"], "text": ["\u751f\u4e2d\u51fa\u3057\u82e5\u59bb\u30ca\u30f3\u30d1\uff01 15"], "image_paths": ["full/931b6088676fd4569d548ee31c6e75f9f6a98dc4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48830.jpg"]}
{"url": ["/htm/mp46/48826.htm"], "text": ["\u8131\u304e\u305f\u304c\u308b\u4eba\u59bb"], "image_paths": ["full/175c30af981ce71c872331a777888bc5039b81cc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48826.jpg"]}
{"url": ["/htm/mp46/48829.htm"], "text": ["\u7d20\u4eba\u30ca\u30f3\u30d1\uff01\uff01\u3068\u308a\u3042\u3048\u305a\u7d20\u80a1\u307e\u3067\u304c\u95f4\u8fdd\u3048\u3066\u30c1\u25cf\u30dd\u304c\u30ba\u30dc\u30ea\u30c3\uff01\uff01Part6"], "image_paths": ["full/4107cf520815571202449c6778e25cb7d6626177.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48829.jpg"]}
{"url": ["/htm/mp46/48832.htm"], "text": ["\u73b0\u5f79\u5973\u5b50\u5927\u751f\u30ca\u30de\u4e2d\u51fa\u3057\u30e9\u30a4\u30d5 4"], "image_paths": ["full/345b164c162d1dc497fc7077cee3ac0c0f65c52a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48832.jpg"]}
{"url": ["/htm/mp46/48827.htm"], "text": ["\u5e30\u7701\u3057\u3066\u304d\u305f\u4f84\u3063\u5b50 \u5bb6\u65cf\u306b\u96a0\u308c\u3066\u8fd1\u4eb2\u76f8\u5978"], "image_paths": ["full/1c6b9dd19602a712e5faa210a4e00b006bda44ce.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48827.jpg"]}
{"url": ["/htm/mp46/48834.htm"], "text": ["\u53ef\u7231\u3059\u304e\u3066\u6027\u683c\u826f\u3057\uff01\u30a8\u30c3\u30c1\u306a\u30d0\u30a4\u30c8\u3061\u3083\u3093\u30a2\u30df\u30e5\u30fc\u30ba\u30e1\u30f3\u30c8\u30d1\u30fc\u30af\u5e97\u5458\u3055\u304d\u3061\u3083\u3093\uff08\u4eee\u540d\uff09"], "image_paths": ["full/825c8fa06163232e7c42e0922cea038c4d75452b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48834.jpg"]}
{"url": ["/htm/mp46/48831.htm"], "text": ["\u4e1c\u4eac\u8def\u4e0a\u8f6f\u6d3e\uff01\uff012\u7f8e\u4e73\u7f8e\u5973\u7f16"], "image_paths": ["full/92ef5bf6fa80d3cc4491884b037742a546d3f887.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48831.jpg"]}
{"url": ["/htm/mp46/48837.htm"], "text": ["\u5b98\u80fd\u5c0f\u8bf4 \u8d64\u3044\u4f1e \u5c0f\u5ddd\u6843\u679c"], "image_paths": ["full/3162788c0d3be8f7cd14fa5013999121f5dd1f6f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48837.jpg"]}
{"url": ["/htm/mp46/48835.htm"], "text": ["\u672a\u6765\u306e\u5973\u5b50\u30a2\u30ca \u30df\u30b9\u30ad\u30e3\u30f3\u30d1\u30b9\u3092\u5a9a\u85ac\u6e0d\u3051\u306b\u3057\u3066SEX \u3055\u3089\u306b\u4eb2\u53cb\u306b\u7535\u8bdd\u3055\u305b\u547c\u3073\u51fa\u3057\u3001\u305d\u306e\u53cb\u8fbe\u3082\u85ac\u6e0d\u3051\u306b\u3057\u3066SEX"], "image_paths": ["full/6de7b26a97a7a8cd67dd96031277d4539e94efab.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48835.jpg"]}
{"url": ["/htm/mp46/48839.htm"], "text": ["\u30cd\u30c8\u30e9\u30ec\uff5e\u72d9\u308f\u308c\u305f\u7f8e\u4eba\u59bb\u306e\u8276\u88f8\uff5e \u957f\u702c\u9ebb\u7f8e"], "image_paths": ["full/42722756be83a1eb4d92f5fff6259434d0cc4eb8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48839.jpg"]}
{"url": ["/htm/mp46/48833.htm"], "text": ["\u7d20\u80a1\u4e2d\u306b\u300c\u304a\u613f\u3044\u2026\u633f\u308c\u3066\u2026\u300d\u52c3\u8d77\u30af\u30ea\u30c8\u30ea\u30b9\u306b\u30c1\u25cb\u30dd\u3092\u76f4\u6483\u3055\u305b\u64e6\u3063\u305f\u3089\u30c7\u30ea\u30d8\u30eb\u5b22\u306e\u672c\u756a\u786e\u7387120\uff05UP\u306f\u30ac\u30c1\uff01\uff01"], "image_paths": ["full/2cd295303652cc1296bed708264cab04d555623c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48833.jpg"]}
{"url": ["/htm/mp46/48838.htm"], "text": ["\u6795\u55b6\u4e1a\u3001\u59cb\u3081\u307e\u3057\u305f\u3002\u661f\u4e95\u7b11 \uff5e\u30ec\u30fc\u30b9\u30af\u30a3\u30fc\u30f3\u306e\u91cc\u989c\uff5e"], "image_paths": ["full/0eacd5d90f73a31add969c2d4672fe51c146f332.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48838.jpg"]}
{"url": ["/htm/mp46/48841.htm"], "text": ["\u6fe1\u308c\u900f\u3051J\u25cb\u96e8\u5bbf\u308a\u30ec\u00d7\u30d7 \u3055\u3068\u3046\u7231\u7406"], "image_paths": ["full/b48875e1a8cbf92a93870d0fcd64716218ec95e2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48841.jpg"]}
{"url": ["/htm/mp46/48840.htm"], "text": ["\u65b0\u4ebaDEBUT\uff01\uff01 \u7d20\u989c\u306e\u307e\u307e\u3067 \u7f8e\u54b2\u3042\u3084"], "image_paths": ["full/b5cfe4c902e3088d9615eab8e91125c0136ce45e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48840.jpg"]}
{"url": ["/htm/mp46/48842.htm"], "text": ["\u8910\u8272\u30c7\u30ab\u5c3bFUCK \u3076\u3063\u304b\u3051\u771f\u6027\u4e2d\u51fa\u3057 AIKA"], "image_paths": ["full/d37c6920626e383595682864e3d98807f244351a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48842.jpg"]}
{"url": ["/htm/mp46/48843.htm"], "text": ["\u4e2d\u51fa\u3057\u3054\u3063\u304f\u3093\u3057\u653e\u9898\uff01\u7cbe\u5b50\u30b4\u30af\u996e\u307f\u30ac\u30fc\u30eb\u30ba\u30d0\u30fc \u85e4\u672c\u7d2b\u5a9b"], "image_paths": ["full/ff71fd05bbb90e60ef74a1b3bae9beb1ba300a29.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48843.jpg"]}
{"url": ["/htm/mp46/48847.htm"], "text": ["\u30a8\u30ed\u30ab\u30b7\u30b3\u3044\u5bb6\u5ead\u6559\u5e08 \u4f0a\u4e1c\u3061\u306a\u307f"], "image_paths": ["full/36f9dc3655b7db38b5d4c198ff5275473a4885d9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48847.jpg"]}
{"url": ["/htm/mp46/48849.htm"], "text": ["\u6559\u80b2\u70ed\u5fc3\u304a\u6bcd\u3055\u3093\u30b7\u30e7\u30bf\u5feb\u697d\u5815\u3061 \u4e09\u6d66\u6075\u7406\u5b50"], "image_paths": ["full/6a57c182cedc37336d2215e2f711927e7793411d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48849.jpg"]}
{"url": ["/htm/mp46/48846.htm"], "text": ["SUPER\u7206\u4e73BODY\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc6\u5909\u5316 \u4e43\u3005\u679c\u82b1"], "image_paths": ["full/5911ea83b49dafcdb41a701fa6ba2e0e41f9c0db.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48846.jpg"]}
{"url": ["/htm/mp46/48844.htm"], "text": ["18\u6b73\u73b0\u5f79\u5973\u5b50\u5927\u751f\u304c\u5904\u5973\u4e27\u5931AV\u30c7\u30d3\u30e5\u30fc\uff01\uff01 \u94c3\u6728\u7406\u6c99"], "image_paths": ["full/dfa20568dd21acb96b0d6e100902dfbb9aa7eeba.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48844.jpg"]}
{"url": ["/htm/mp46/48845.htm"], "text": ["\u3069\u3093\u306a\u51cc\u8fb1\u3082\u7b11\u989c\u3067\u53d7\u3051\u5165\u308c\u308b\u5a18 \u3064\u307c\u307f"], "image_paths": ["full/f20a86eefface70803d104c577e3131dbc7d198e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48845.jpg"]}
{"url": ["/htm/mp46/48848.htm"], "text": ["\u65e5\u713c\u3051\u3042\u3068 \u308c\u306a"], "image_paths": ["full/63a51e6cbf4b00fca3aec6281ebbc487df254fdf.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48848.jpg"]}
{"url": ["/htm/mp46/48856.htm"], "text": ["\u6bcd\u306e\u53cb\u4eba\u306f\u5ddd\u4e0a\u3086\u3046\uff5e\u4ec6\u3068\u4eba\u6c17AV\u5973\u4f18\u306e\u7b14\u4e0b\u3057\u4e2d\u51fa\u3057\u6027\u6d3b\uff5e"], "image_paths": ["full/ba77680e326f0485724f190173794576ba02d5d4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48856.jpg"]}
{"url": ["/htm/mp46/48852.htm"], "text": ["\u610f\u8bc6\u6b8b\u3057\u3066\u8eab\u4f53\u3092\u4e57\u3063\u53d6\u3089\u308c\u308b\uff01\u9996\u304b\u3089\u4e0b\u3060\u3051\u50ac\u7720\u672f\u306b\u304b\u304b\u3063\u305f\u5973\u5b50\u6821\u751f \u65e9\u5ddd\u4f0a\u7ec7"], "image_paths": ["full/a33b068939ea998369a230fd9f43e67e87fb1fc6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48852.jpg"]}
{"url": ["/htm/mp46/48859.htm"], "text": ["\u304a\u3058\u3055\u3093\u30684\u672c\u756a \u4e1c\u51db"], "image_paths": ["full/d12f7bdc2bce11ed8f23e9c954a751514c66b27d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48859.jpg"]}
{"url": ["/htm/mp46/48858.htm"], "text": ["\u304a\u4e49\u59c9\u3055\u3093\u304c\u5ac1\u306e\u5b9f\u5bb6\u3067\u4ec6\u3092\u8bf1\u60d1\u5bdd\u53d6\u308a \u4f50\u3005\u6728\u3042\u304d"], "image_paths": ["full/18506bec96d66504fded4bf0c6469fb7eeb1e498.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48858.jpg"]}
{"url": ["/htm/mp46/48861.htm"], "text": ["\u5351\u7325\u306a\u5302\u3044\u6f02\u3046\u9ed2\u30ae\u30e3\u30ebAIKA\u306e\u4e2d\u51fa\u3057\u30b0\u30a4\u8fbc\u307f\u30d3\u30ad\u30cb"], "image_paths": ["full/bb43488f35d7d5719ef561ce90345352b5cf2e3d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48861.jpg"]}
{"url": ["/htm/mp46/48860.htm"], "text": ["\u672c\u756a\u306a\u3057\u306e\u30de\u30c3\u30c8\u30d8\u30eb\u30b9\u306b\u884c\u3063\u3066\u51fa\u3066\u304d\u305f\u306e\u306f\u90bb\u5bb6\u306e\u9ad8\u6162\u306a\u7f8e\u4eba\u59bb\u3002\u5f31\u307f\u3092\u63e1\u3063\u305f\u4ec6\u306f\u672c\u756a\u3082\u4e2d\u51fa\u3057\u3082\u5f3a\u8981\uff01\u5e97\u5916\u3067\u3082\u8a00\u3044\u306a\u308a\u306e\u6027\u5974\u96b6\u306b\u3057\u305f \u3081\u3050\u308a"], "image_paths": ["full/c718287ea86667dd7959f2ec8406a5b4c9752275.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48860.jpg"]}
{"url": ["/htm/mp46/48862.htm"], "text": ["\u6728\u5357\u65e5\u83dc\u306e\u6c57\u3060\u304f\u3001\u79cd\u4ed8\u3051\u3001M\u5973\u72e9\u308aSEX"], "image_paths": ["full/b617d5b9bf0d7a0e1d2efe1806b4a06d2a0589b5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48862.jpg"]}
{"url": ["/htm/mp46/48865.htm"], "text": ["I\u30ab\u30c3\u30d7\u5de8\u4e73\u4eba\u59bb\u306e\u8bf1\u60d1\u56de\u6625\u30de\u30c3\u30b5\u30fc\u30b8 \u6843\u702c\u53cb\u68a8\u5948"], "image_paths": ["full/56a972b57abf27fcaaefeebc53ebbf2e8ba7a722.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48865.jpg"]}
{"url": ["/htm/mp46/48863.htm"], "text": ["\u767d\u3044\u4eba\u59bb \u6c99\u5e0c"], "image_paths": ["full/3cf706b476f1753b4d5a7d019c7500494b3edd41.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48863.jpg"]}
{"url": ["/htm/mp46/48867.htm"], "text": ["\u4eba\u6c17\u30ae\u30e3\u30eb\u5973\u4f18E-BODY\u5149\u4e34\uff01 \u7406\u6027\u3050\u3061\u3083\u3050\u3061\u3083\u7d76\u53eb\u30c8\u30e9\u30f3\u30b9\u6027\u4ea4 AIKA"], "image_paths": ["full/108809acf7b3200a83a0d7d41558e439370886e2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48867.jpg"]}
{"url": ["/htm/mp46/48866.htm"], "text": ["\u7d76\u987681\u56de\uff01\uff01\u5143\u30a2\u30a4\u30c9\u30eb\u59bb\u306e\u6fc0\u30a4\u30ad\uff01\u521d\u4f53\u9a13\u30bb\u30c3\u30af\u30b9 \u80fd\u7f8e\u3061\u306a\u3064"], "image_paths": ["full/5f071f36128726ce8ffb0545c4d5e4f0349aee83.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48866.jpg"]}
{"url": ["/htm/mp46/48864.htm"], "text": ["\u5a9a\u85ac\u50ac\u7720\u30dd\u30eb\u30c1\u30aa \u6bcd\u4e73\u55b7\u5c04\u30ad\u30e1\u30bb\u30af \u5c0f\u690b\u304b\u3092\u308a"], "image_paths": ["full/271239f64f0ef33526e1d5bdc4ab2ac54a1a495f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48864.jpg"]}
{"url": ["/htm/mp46/48869.htm"], "text": ["\u30b8\u30e0\u52e4\u52a1\u6b747\u5e74\uff01\u65e5\u3005\u5f3a\u5316\u3055\u308c\u7d9a\u3051\u308b\u6027\u6b32\u65fa\u76db\u306a171cm\u9ad8\u8eab\u957f\u30b9\u30ec\u30f3\u30c0\u30fc\u30dc\u30c7\u30a3\uff01\u73b0\u5f79\u4eba\u59bb\u30b9\u30dd\u30fc\u30c4\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fcAV\u30c7\u30d3\u30e5\u30fc \u524d\u7530\u6731\u91cc"], "image_paths": ["full/21efae1158ab215b52204936005647a055b853a4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48869.jpg"]}
{"url": ["/htm/mp46/48870.htm"], "text": ["\u5143\u6d77\u5916\u30e2\u30c7\u30eb\u306e\u7206\u4e73I\u30ab\u30c3\u30d7\u582a\u80fd \u30dc\u30f3\uff01\u30ad\u30e5\u30c3\uff01\u30dc\u30f3\u30c7\u30fc\u30b8\uff01 \u4f50\u3005\u6728\u30a8\u30ea\u30fc"], "image_paths": ["full/7f3ac1e91fa7c8d3e78dc1bf7df757af3b494224.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48870.jpg"]}
{"url": ["/htm/mp46/48868.htm"], "text": ["\u60ca\u6115\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\uff01\u30ad\u30ef\u30ad\u30ef\u9732\u51fa\u670d\u306e\u6700\u7ec8\u7cfb\u4eca\u65f6\u30ae\u30e3\u30ebSEX\u6620\u50cf\uff01 \u7834\u5ec9\u803b\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u3080\u3063\u3061\u3080\u3061Hcup\u7eaf\u767d\u30ae\u30e3\u30eb\u521dAV\u51fa\u6f14\uff01\u307f\u308620\u6b73"], "image_paths": ["full/f3f12ca0dde3a5801cc8862bcc09546ab88cb7be.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48868.jpg"]}
{"url": ["/htm/mp46/48871.htm"], "text": ["\u6fe1\u308c\u30c6\u30ab\u30b3\u30fc\u30c6\u30a3\u30f3\u30b0 Hcup\u7206\u4e73BODY \u7f8e\u7af9\u3059\u305a"], "image_paths": ["full/9d246e513e23f943d323f27be7b137dbcb096df3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48871.jpg"]}
{"url": ["/htm/mp46/48873.htm"], "text": ["\u6c61\u4e0b\u52a3\u30d9\u30c8\u30ae\u30c8\u771f\u6b63\u4e2d\u51fa\u3057\u6027\u4ea4 \u4e2d\u5e74\u4eb2\u7236\u3068\u30c6\u30a3\u30a2\u306e\u553e\u6db2\u3068\u6c57\u3068\u30de\u30f3\u6c41\u3068\u7cbe\u6db2\u304c\u4ea4\u308a\u5408\u3046"], "image_paths": ["full/cdc755b9c154781443a38ae49f8eebf7942723cd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48873.jpg"]}
{"url": ["/htm/mp46/48872.htm"], "text": ["\u7206\u4e73\u30d6\u30eb\u30d6\u30eb\u6781\u9650\u30d4\u30b9\u30c8\u30f3 \u30cf\u30a4\u30d1\u30fc\u8170\u632f\u308a\u30a4\u30ab\u30bb\u9a91\u4e57\u4f4d NAOMI"], "image_paths": ["full/fc65cf88e9644a0d4bf1048b8d0a02b6566754c2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48872.jpg"]}
{"url": ["/htm/mp46/48875.htm"], "text": ["\u6e05\u7eaf\u7cfbJK\u306e\u304a\u6cca\u308a\u7231\u4eba\u8bd5\u9a13\u300c\u79c1\u3001\u30ab\u30ec\u30b7\u3092\u91cc\u5207\u3063\u3066\u3001\u4ed6\u306e\u4eba\u3068\u65c5\u884c\u306b\u6765\u307e\u3057\u305f\u2026\u304d\u3063\u3068\u660e\u65e5\u306e\u671d\u307e\u3067\u62b1\u304b\u308c\u3001\u5f04\u3070\u308c\u7d9a\u3051\u307e\u3059\u2026\u300d \u5411\u4e95\u84dd"], "image_paths": ["full/fd8181e9196a497f22504fc9a7ab727903024563.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48875.jpg"]}
{"url": ["/htm/mp46/48874.htm"], "text": ["\u777e\u4e38\u30ab\u30e9\u30c3\u30ab\u30e9\u306b\u306a\u308b\u307e\u3067\u7cbe\u5b50\u30cc\u30ad\u5c3d\u304f\u3059\u9006\u5a9a\u85ac10\u8fde\u767aSEX \u94c3\u6728\u771f\u5915"], "image_paths": ["full/43ac83e9dc63501d02c49a7a7df58f37e39e10b8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48874.jpg"]}
{"url": ["/htm/mp46/48880.htm"], "text": ["\u8d85\u6781\u4e0a\uff01\u6027\u611f\u00d7\u98ce\u4fd7\u30d5\u30eb\u30b3\u30fc\u30b94\u65f6\u95f4 \u51c9\u5bab\u3059\u305a"], "image_paths": ["full/031f1a32c0ecc6387271d48214a6b69455b56113.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48880.jpg"]}
{"url": ["/htm/mp46/48879.htm"], "text": ["\u4e09\u559c\u672c\u306e\u305e\u307f\u306e\u9b3c\u30b3\u30ad\uff01\uff01\u30a8\u30ed\u30b3\u30b9\u3068\u30c9\u6deb\u8bed\u3067\u30c9\u30d4\u30e5\u30c9\u30d4\u30e5\u767a\u5c04\u3055\u305b\u3089\u308c\u3061\u3083\u3063\u305f\u4ec6"], "image_paths": ["full/0eebe5f662c4e45d697ea1d3422beeec2b56bd67.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48879.jpg"]}
{"url": ["/htm/mp46/48877.htm"], "text": ["\u4eb2\u65cf\u76f8\u5978 \u304d\u308c\u3044\u306a\u53d4\u6bcd\u3055\u3093 \u5439\u77f3\u308c\u306a"], "image_paths": ["full/96cb9479da4a49f3ffd26219065212f4ec1d3c99.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48877.jpg"]}
{"url": ["/htm/mp46/48876.htm"], "text": ["\u79c1\u3001\u4e49\u5f1f\u306b\u5bdd\u53d6\u3089\u308c\u307e\u3057\u305f \u661f\u91ce\u5343\u7eb1"], "image_paths": ["full/6428ad08dd05df97f766f91852e0e7a84e9cdcd3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48876.jpg"]}
{"url": ["/htm/mp46/48881.htm"], "text": ["\u4e07\u5f15\u304d\u306e\u4ee3\u507f\u306b\u6027\u88c1\u3092\u4e0b\u3055\u308c\u308b\u5973\u5b50\u6821\u751f \u8fbb\u672c\u674f"], "image_paths": ["full/d841cb1dc646816378f27ffb508735466860aae4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48881.jpg"]}
{"url": ["/htm/mp46/48883.htm"], "text": ["\u521d\u64ae\u308a?TATTOO\u306e\u30b9\u30b9\u30e1 \u6deb\u7eb9\u306e\u523b \u5ca9\u5d0e\u30ea\u30b5"], "image_paths": ["full/2d238c5a6330e799bc96c488c116c6c2c0c45da6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48883.jpg"]}
{"url": ["/htm/mp46/48884.htm"], "text": ["\u5143\u6559\u3048\u5b50\u306e\u7d20\u4eba\u5de8\u4e73\u5973\u6559\u5e08 \u4e45\u3057\u3076\u308a\u306b\u4f1a\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u5143\u6559\u3048\u5b50\u3067\u6559\u5e08\u6b744\u5e74\u306e\u30c9\u771f\u9762\u76ee\u3067\u304a\u575a\u3044\u5f7c\u5973\u306e\u76f8\u8c08\u3092\u95fb\u304d\u306a\u304c\u3089\u3001\u5de7\u3044\u8a00\u53f6\u3067\u6170\u3081\u8912\u3081\u3061\u304e\u308b\u3002\u5acc\u304c\u308b\u5f7c\u5973\u306b\u571f\u4e0b\u5ea7\u3067\u300c\u4e00\u767a\u3001\u304a\u613f\u3044\uff01\uff01\u300d\u3053\u308c\u304c\u30cf\u30e1\u3089\u308c\u3061\u3083\u3046\u3093\u3067\u3059\u3001\u672c\u5f53\u306b\uff01\uff01"], "image_paths": ["full/e92caff0cb6df46cfaa1ca209cf5ff35cd871cab.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48884.jpg"]}
{"url": ["/htm/mp46/48885.htm"], "text": ["18\u6b73\u3002\u7d20\u4eba\u5973\u5b50\u5927\u751f \u67d0\u6709\u540d\u5973\u5b50\u5927\u5b66\u306e\u5973\u5b50\u5927\u751f\u3002\u8d85\u771f\u9762\u76ee\u3067\u4eb2\u304c\u91d1\u6301\u3061\u306e\u304a\u5b22\u69d8\u3002\u4e0a\u4eac\u3057\u305f\u3066\u3067\u7d4c\u9a13\u4eba\u6570\u4e00\u4eba\u306e\u307b\u307c\u5904\u5973\u72b6\u6001\u3002\u5f7c\u5973\u3092\u30ca\u30f3\u30d1\u3002\u957f\u671f\u6226\u3067\u983c\u307f\u8fbc\u307f\u3001\u571f\u4e0b\u5ea7\u3092\u7f32\u308a\u8fd4\u3057\u306a\u3093\u3068\u304b\u4e00\u767a\u30cf\u30e1\u3061\u3083\u3044\u307e\u3057\u305f\u3002\u4eca\u56de\u306f\u82e6\u52b4\u3057\u307e\u3057\u305f\u304c\u3001\u5973\u306e\u5b50\u306f\u4e0a\u7269\u3067\u3059\u3002"], "image_paths": ["full/16025024d5029a6916cb935ea146dd1e9dcf183f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48885.jpg"]}
{"url": ["/htm/mp46/48882.htm"], "text": ["\u5357\u56fd\u30ae\u30e3\u30eb\u30a2\u30b9\u30ea\u30fc\u30c8\u598a\u5a20\u899a\u609f\u306eAV\u30d0\u30a4\u30c8\uff01 \u4f50\u5ddd\u601c\u5948"], "image_paths": ["full/48de961740d260ff38a23dfba478e5e1b25b8aa2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48882.jpg"]}
{"url": ["/htm/mp46/48886.htm"], "text": ["\u702c\u7530\u594f\u6075 \u67d0\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3\u30de\u30cd\u30fc\u30b8\u30e3\u30fcAV\u30c7\u30d3\u30e5\u30fc \uff5e\u64ae\u5f71\u65e5\u5f53\u65e5\u3001\u65b0\u4eba\u5973\u4f18\u304c\u7a81\u7136\u30ad\u30e3\u30f3\u30bb\u30eb\uff01\u4ed5\u65b9\u306a\u3044\u306e\u3067\u3001\u73b0\u573a\u306b\u6765\u305f\u30a8\u30ed\u305d\u3046\u306a\u5de8\u4e73\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3092\u306a\u3057\u5d29\u3057\u306b\u8bf4\u5f97\u3057AV\u30c7\u30d3\u30e5\u30fc\u3055\u305b\u308b\u3053\u3068\u306b\u6210\u529f\uff01\uff01\uff5e"], "image_paths": ["full/661a6a5445f0c6032c4a59c97f24bd87e7a7e44b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48886.jpg"]}
{"url": ["/htm/mp46/48888.htm"], "text": ["Fucking Machine SEX \u5343\u53f6\u306d\u306d"], "image_paths": ["full/c3d2867a3e1c8af2a433adaee07223934557e776.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48888.jpg"]}
{"url": ["/htm/mp46/48887.htm"], "text": ["\u4e2d\u51fa\u3057\u30de\u25cf\u30b3\u3001\u304f\u3071\u3041\u3002 AIKA"], "image_paths": ["full/5f7f79eedef6eb084f4869410cb24080755fcecd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48887.jpg"]}
{"url": ["/htm/mp46/48890.htm"], "text": ["\u82e5\u59bb\u6027\u5974\u96b6\u9675\u8fb1\u8c03\u6559 \u7f8e\u51c9\u308a\u306a"], "image_paths": ["full/6bcb3f647e58f3074131a940e1a8eb2b94f9818b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48890.jpg"]}
{"url": ["/htm/mp46/48889.htm"], "text": ["Premium PEACH Hip \uff5e\u9752\u3044\u679c\u5b9f\uff5e \u54b2\u4e43\u67d1\u83dc"], "image_paths": ["full/b5cba20913531524f8961be46e9f21fb6947117f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48889.jpg"]}
{"url": ["/htm/mp46/48891.htm"], "text": ["\u4e2d\u51fa\u3057\u3076\u3063\u304b\u3051in\u5909\u6001\u64ae\u5f71\u90e8\u5c4b \u767d\u8863\u3086\u304d"], "image_paths": ["full/b1027626bcda39730d94449bc71a43dddbe62a37.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48891.jpg"]}
{"url": ["/htm/mp46/48892.htm"], "text": ["\u521d\u4e2d\u51fa\u3057\uff01 \uff5e\u5b50\u5bab\u3067\u611f\u3058\u308b\u6e29\u304b\u3044\u751f\u30b6\u30fc\u30e1\u30f3\uff5e \u304d\u307f\u306e\u5948\u6d25"], "image_paths": ["full/ceebe12c6148751d9ca15f884eeefc75d18ba0d5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48892.jpg"]}
{"url": ["/htm/mp46/48893.htm"], "text": ["\u7531\u7231\u53ef\u5948 \u6c5f\u6238\u56db\u5341\u516b\u624b"], "image_paths": ["full/a10595b8c6e9d723572b2568dad3e7cc9df4f915.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48893.jpg"]}
{"url": ["/htm/mp46/48896.htm"], "text": ["\u820c\u4f7f\u3044\u306e\u4e0a\u624b\u306a\u5973\u306e\u5b50 \u81a3\u53e3\u304b\u3089\u6ea2\u308c\u51fa\u308b\u307b\u3069\u305f\u3063\u3077\u308a\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9 \u3042\u3084\u306a"], "image_paths": ["full/559d0bde03ab7308f5dc229b8a3637b776e39066.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48896.jpg"]}
{"url": ["/htm/mp46/48895.htm"], "text": ["\u306d\u3063\u3068\u308a\u6d53\u539a\u30ad\u30b9\u3092\u3057\u306a\u304c\u3089\u4f55\u5ea6\u3082\u7d76\u9876\u3059\u308bF\u30ab\u30c3\u30d7\u5973\u5b50\u6821\u751f \u3048\u308a\u304b"], "image_paths": ["full/7975d9779898a5845279a18bca3c05075c9b27b3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48895.jpg"]}
{"url": ["/htm/mp46/48898.htm"], "text": ["\u8d85\u9ad8\u7ea7\u4e2d\u51fa\u3057\u5c02\u95e8\u30bd\u30fc\u30d74\u8f6e\u8f664\u65f6\u95f4SPECIAL"], "image_paths": ["full/0118b75233f20cfb08fdddceffdae89378131fd3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48898.jpg"]}
{"url": ["/htm/mp46/48897.htm"], "text": ["\u5904\u5973 \u6700\u540e\u306e\u65e5 \u771f\u3063\u767d\u3044\u7f8e\u3057\u3044\u808c\u306e\u900f\u660e\u611f\u629c\u7fa4\u5c11\u5973\u30c7\u30d3\u30e5\u30fc \u521d\u3081\u3066\u306eSEX\u3002\u305d\u3057\u3066\u521d\u3081\u3066\u306e\u4e2d\u51fa\u3057\u2026\u3002 \u3059\u305a"], "image_paths": ["full/ac98096e0e672c5cf68dcbae06d607a4c1074b8f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48897.jpg"]}
{"url": ["/htm/mp46/48902.htm"], "text": ["\u30d8\u30f3\u30ea\u30fc\u51a2\u672c \u719f\u5973 40\uff5e50\u4ee3\u305f\u3061\u304c\u72c2\u3046 \u3042\uff5e\u3044\u3050\u3045\uff01"], "image_paths": ["full/fdc0c0c83b913472ba3cb92b38daa59ba8055409.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48902.jpg"]}
{"url": ["/htm/mp46/48894.htm"], "text": ["\u98ce\u90aa\u3063\u3074\u304d\u30ab\u30ce\u30b8\u30e7 \u5409\u6ca2\u660e\u6b69"], "image_paths": ["full/d212aee32704fde33d31ab7d462648f3df816f9b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48894.jpg"]}
{"url": ["/htm/mp46/48899.htm"], "text": ["\u75c9\u631b\u7d76\u9876\u30aa\u30a4\u30eb\u30de\u30c3\u30b5\u30fc\u30b8 \u30de\u30f3\u6c41\u5782\u308c\u6d41\u3057\u76d1\u7981\u4e2d\u51fa\u3057\u30a8\u30b9\u30c6 \u5439\u77f3\u308c\u306a"], "image_paths": ["full/873ca43d73f649fbc7a53950b1336f35619c2d40.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48899.jpg"]}
{"url": ["/htm/mp46/48904.htm"], "text": ["\u30d8\u30f3\u30ea\u30fc\u51a2\u672c\u539f\u4f5c \u6027\u72af\u7f6a \u5211\u6cd5177 \u5e38\u4e60\u72af \u8fde\u7d9a\u66b4\u884c\u9b54 \u6a29\u85e4\u5e73\u516b\u306e\u72af\u7f6a/\u5fcd\u3073\u8fbc\u307f\u66b4\u884c \u771f\u663c\u306e\u4fb5\u5165\u8005/\u5c71\u4e2d\u66b4\u884c \u4e0d\u4f26\u60c5\u4ea4\u4e2d\u306e\u60aa\u68a6"], "image_paths": ["full/57a40efaa000ffc2b292f30f068d42aba6fab3b1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48904.jpg"]}
{"url": ["/htm/mp46/48903.htm"], "text": ["\u6e05\u695a\u306a\u304a\u5b22\u69d8\u5973\u5b50\u5927\u751f\u304c\u5909\u6001\u4e2d\u5e74\u7537\u306e\u8089\u4fbf\u5668\u5909\u6001\u5974\u96b6\u306b\u6d17\u8133\u3055\u308c\u3066\u3061\u25cb\u307d\u3092\u3060\u3089\u3057\u306a\u304f\u3058\u3085\u307c\u3058\u3085\u307c\u3057\u3083\u3076\u3063\u3066\u3001\u8c03\u6559\u6e08\u307f\u5b8c\u5815\u3061\u30de\u25cb\u30b3\u306b\u305f\u3063\u3077\u308a\u751f\u4e2d\u51fa\u3057\u3055\u308c\u308b\u304a\u8bdd\u3002 \u6c34\u6ca2\u307f\u3086"], "image_paths": ["full/9bb29fd80513a48b20ce1bfa16d99dab6239c2fb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48903.jpg"]}
{"url": ["/htm/mp46/48906.htm"], "text": ["\u4e2d\u5e74\u306e\u306d\u3061\u3063\u3053\u3044SEX \u5186\u57ce\u3072\u3068\u307f"], "image_paths": ["full/1bcad9f2f5cbbd71fe8fd2a3a821ac7f4f68e178.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48906.jpg"]}
{"url": ["/htm/mp46/48908.htm"], "text": ["\u521d\u64ae\u308a \u803b\u3058\u3089\u3044\u306e\u7d20\u4eba\u59bb3 \u90c1\u5b50"], "image_paths": ["full/b722e0b8349017ab6318c02f737c9d7d54432781.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48908.jpg"]}
{"url": ["/htm/mp46/48907.htm"], "text": ["\u79d8\u5bc6\u306e\u30ec\u30ba\u30d3\u30a2\u30f33 \u677e\u5143\u30e1\u30a4"], "image_paths": ["full/09943dcc1e2a4e620c628856893056490c21f7d2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48907.jpg"]}
{"url": ["/htm/mp46/48905.htm"], "text": ["\u30d8\u30f3\u30ea\u30fc\u51a2\u672c\u30a8\u30ed\u672c \u30bb\u30c3\u30af\u30b9\u306e\u5302\u3044\u304c\u3059\u308b\u6deb\u4e71\u5973\uff08\u3044\u3084\u3089\u3057\u3044\uff09\u306e\u90e8\u5c4b"], "image_paths": ["full/fd9bd34242d6453d1cf345a19cd19181337ec9a3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48905.jpg"]}
{"url": ["/htm/mp46/48909.htm"], "text": ["\u8170\u632f\u308b\u4ed6\u4eba\u306e\u59bb"], "image_paths": ["full/cb5486dfb588f90b05c855bc56b3fcb66dca2fd4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48909.jpg"]}
{"url": ["/htm/mp46/48912.htm"], "text": ["\u306a\u3081\u304f\u3058\u5973\u5c063 \u91ce\u672c\u4eac\u9999"], "image_paths": ["full/f21de934e2840980c23dde4fed80992d06b659f3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48912.jpg"]}
{"url": ["/htm/mp46/48910.htm"], "text": ["\u4e49\u5144\u306b\u72af\u3055\u308c\u30663 \u837b\u91ce\u821e"], "image_paths": ["full/abf3684d89343f8572f31e5b438fa3aa9f48dc9d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48910.jpg"]}
{"url": ["/htm/mp46/48911.htm"], "text": ["\u79c1\u306f\u5c0f\u3055\u306a\u753a\u306e\u4e0d\u52a8\u4ea7\u5c4b\u306e\u4e8b\u52a1\u54585 \u7fbd\u7530\u7483\u5b50"], "image_paths": ["full/bc982024d6ba2048a2e3ba524489e00073c5ba68.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48911.jpg"]}
{"url": ["/htm/mp46/48914.htm"], "text": ["\u3072\u304b\u308b\u306e\u6311\u767a\u30c1\u30e9\u30ea\u30ba\u30e0 \u2026\u5f93\u59b9\u304c\u5c0f\u60aa\u9b54\u3059\u304e\u3066\u56f0\u308b\u3093\u3067\u3059\u2026 \u305d\u306e7 \u7ec0\u91ce\u3072\u304b\u308b"], "image_paths": ["full/82f2503562f8a0cac6dc56c99b23c1922bcb8aea.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48914.jpg"]}
{"url": ["/htm/mp46/48913.htm"], "text": ["\u7d20\u654c\u306a\u30ab\u30ce\u30b8\u30e7 \u963f\u90e8\u4e43\u307f\u304f \u4e0d\u601d\u8bae\u7cfb\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u7f8e\u5c11\u5973\u306e\u3076\u3063\u304b\u3051\u3054\u3063\u304f\u3093\u8c03\u6559\u305b\u3063\u304f\u3059"], "image_paths": ["full/3843abb18d4d3d7403852aefa3d453296120814c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48913.jpg"]}
{"url": ["/htm/mp46/48916.htm"], "text": ["\u3053\u306e\u5a18\u3001\u58ca\u3057\u3066\u3084\u308b\u3002 \u5411\u4e95\u84dd"], "image_paths": ["full/d26162ca7cbf92ba8cafa93fe6f15fc5d5d63dab.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48916.jpg"]}
{"url": ["/htm/mp46/48915.htm"], "text": ["\u79c1\u3001\u7a81\u7136\u62bc\u3057\u5165\u3063\u3066\u304d\u305f\u30aa\u30c8\u30b3\u306e\u4eba\u305f\u3061\u306b\u8f6e\u3055\u308c\u307e\u3057\u305f\u2026\u3002 \u67ff\u8c37\u3072\u304b\u308b"], "image_paths": ["full/d0896202f49a28a2a304ba6ef16ec584ff5ad6f7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48915.jpg"]}
{"url": ["/htm/mp46/48918.htm"], "text": ["\u7f8e\u5c11\u5973\u5373\u30cf\u30e1\u767d\u4e66 45"], "image_paths": ["full/aef62fff6716ea5620a78b720944cc7a28fad669.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48918.jpg"]}
{"url": ["/htm/mp46/48917.htm"], "text": ["\u30a2\u30a4\u30c9\u30eb\u7ea7\u306e\u5236\u670d\u7f8e\u5c11\u5973?\u3072\u304b\u308b \u6deb\u884c\u30bb\u30c3\u30af\u30b9\u306b\u68a6\u4e2d\u3067\u803d\u308a\u3001\u767d\u304f\u6c61\u3055\u308c\u308b\u803b\u305a\u304b\u3057\u3044\u59ff\u3092\u3001\u5168\u90e8\u64ae\u3089\u308c\u3061\u3083\u3044\u307e\u3057\u305f\u2026\u3002 \u67ff\u8c37\u3072\u304b\u308b"], "image_paths": ["full/014a243b04c09df504b1dddd92ecd3cdd8e3423a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48917.jpg"]}
{"url": ["/htm/mp46/48919.htm"], "text": ["\u300c2\u5150\u306e\u6bcd\u4eb2\u306b\u3057\u3066\u8001\u8217\u304a\u8336\u5c4b\u306e\u82e5\u5973\u5c06\u300d\u4f50\u3005\u6728\u3042\u304d 35\u6b73 \u4e2d\u51fa\u3057\u4e0d\u4f26\u6e29\u6cc9"], "image_paths": ["full/19dc86a2fb7a6d9ab5e76d5761b243087a1fb911.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48919.jpg"]}
{"url": ["/htm/mp46/48922.htm"], "text": ["\u6781\u4e0a\u30c6\u30af\u30cb\u30c3\u30af\u3067\u3054\u5949\u4ed5\u3057\u3066\u304f\u308c\u308b\u30e1\u30f3\u30ba\u56de\u6625\u30de\u30c3\u30b5\u30fc\u30b8\u30b5\u30ed\u30f3"], "image_paths": ["full/754c39d7647c26e7ad0b6cf7f2a940a54d6ff549.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48922.jpg"]}
{"url": ["/htm/mp46/48921.htm"], "text": ["\u4e16\u754c\u4e00\u767a\u5c04\u306e\u52bf\u3044\u304c\u51c4\u3059\u304e\u308b\u7537\u306e\u5b55\u307e\u305b\u30c9\u30c3\u30ab\u30fc\u30f3SEX \u5409\u5ddd\u3042\u3044\u307f \u6ce2\u591a\u91ce\u7ed3\u8863 \u963f\u90e8\u4e43\u307f\u304f"], "image_paths": ["full/db4586a8e384a4a1280433d415f91029a4558eab.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48921.jpg"]}
{"url": ["/htm/mp46/48924.htm"], "text": ["\u606f\u5b50\u306e\u5de8\u4e73\u59bb\u3092\u786e\u5b9f\u306b\u5b55\u307e\u305b\u305f\u3044 \u5439\u77f3\u308c\u306a"], "image_paths": ["full/902fe5744c12d0a8fa5898b7a4835a8955751b9b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48924.jpg"]}
{"url": ["/htm/mp46/48920.htm"], "text": ["\u307c\u3063\u3057\u3043\u539f\u4f5c \u3075\u305f\u90e8\uff01 \u7b2c2\u5f3e \u4e0b\u5dfb"], "image_paths": ["full/23fda84e5f4f8f2a7b61b852ca9e07ea4ae76047.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48920.jpg"]}
{"url": ["/htm/mp46/48923.htm"], "text": ["\u67d0\u6709\u540d\u56fd\u7acb\u5927\u5b663\u5e74 \u6c34\u6cf3\u90e8\u30a8\u30fc\u30b9\u661f\u5d0e\u307f\u3086\u3046 AV\u30c7\u30d3\u30e5\u30fc AV\u5973\u4f18\u65b0\u4e16\u4ee3\u3092\u767a\u6398\u3057\u307e\u3059\uff01"], "image_paths": ["full/6e08db22deb3acfa0896c01e5f2fe1dfc479b436.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48923.jpg"]}
{"url": ["/htm/mp46/48926.htm"], "text": ["\u6700\u9ad8\u7ea7Kcup \u5de8\u4e73\u4e2d\u51fa\u3057\u30bd\u30fc\u30d7 \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/2253b4e046f01c0c6b08bd620b390ca8e291e20b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48926.jpg"]}
{"url": ["/htm/mp46/48925.htm"], "text": ["\u30b5\u30f3\u30d0\u306e\u56fd\u304b\u3089\u3084\u3063\u3066\u6765\u305f\uff01\uff01\u767d\u4eba\u5de8\u4e73G\u30ab\u30c3\u30d7\u30ab\u30fc\u30cb\u30d0\u30eb\u30c0\u30f3\u30b5\u30fcAV\u30c7\u30d3\u30e5\u30fc\uff01\uff01 MARIA"], "image_paths": ["full/7381c6753f72243f60d719de20bf70c1fcb74089.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48925.jpg"]}
{"url": ["/htm/mp46/48928.htm"], "text": ["\u5947\u8ff9\u306eLcup\u7206\u4e73\u304cAV\u590d\u6d3b\uff01 \u897f\u57a3\u308b\u304b"], "image_paths": ["full/0758314e1f491b29453f4bb9c5cc26d20b239f95.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48928.jpg"]}
{"url": ["/htm/mp46/48929.htm"], "text": ["\u61a7\u308c\u306e\u9ad8\u7ea7\u4f4f\u5b85\u8857\u51fa\u8eab\uff01\u826f\u5bb6\u306eHcup\u5de8\u4e73\u304a\u5b22\u69d8AV\u30c7\u30d3\u30e5\u30fc\uff01\uff01 \u7b39\u4ed3\u674f"], "image_paths": ["full/bced2e3de79d0f183d9a5767b0b3e5625158fa17.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48929.jpg"]}
{"url": ["/htm/mp46/48927.htm"], "text": ["\u5de8\u4e73\u5973\u6559\u5e08\u306e\u8bf1\u60d1 KAORI"], "image_paths": ["full/2d491cb2a823ce623cf758194357ffb71161788a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48927.jpg"]}
{"url": ["/htm/mp46/48931.htm"], "text": ["\u90bb\u306e\u6fe1\u308c\u4e73\u304a\u59c9\u3055\u3093\u306b\u72af\u3055\u308c\u308b2 \u4f50\u5c71\u7231"], "image_paths": ["full/5bff4f7e71c8872f68c12edc15e075e1c592f78a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48931.jpg"]}
{"url": ["/htm/mp46/48933.htm"], "text": ["\u30bb\u30eb\u30d5\u304a\u3063\u3071\u3044\u8210\u3081"], "image_paths": ["full/459ee76a9c7b1de3ba7655fa632e4e814d08ae4f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48933.jpg"]}
{"url": ["/htm/mp46/48932.htm"], "text": ["\u4eb2\u53cb\u304b\u3089\u3053\u3063\u305d\u308a\u5f7c\u6c0f\u3092\u5bdd\u53d6\u308b\u5de8\u4e73\u3067\u30a8\u30c3\u30c1\u306a\u75f4\u5973\u304a\u59c9\u3055\u3093 JULIA"], "image_paths": ["full/05efae36f4bac2111c20876ba54532057a96d2ae.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48932.jpg"]}
{"url": ["/htm/mp46/48930.htm"], "text": ["\u5de8\u4e73\u6f5c\u5165\u635c\u67fb\u5b98 Hitomi"], "image_paths": ["full/b62202ce16c75c8d832c16f3d31b79418958f061.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48930.jpg"]}
{"url": ["/htm/mp46/48934.htm"], "text": ["\u307b\u308d\u9154\u3044\u306a\u307e\u306a\u304b\u3060\u305710\u8fde\u767aSEX \u65e9\u5ddd\u745e\u5e0c"], "image_paths": ["full/64fca0e81732e4fbf1914573ad2619bdcac957d0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48934.jpg"]}
{"url": ["/htm/mp46/48935.htm"], "text": ["\u5a9a\u85ac\u5feb\u697d\u4f9d\u5b58\u5909\u6001\u4e2d\u6bd2\u3044\u3044\u306a\u308a\u30e4\u30f3\u30c7\u30ec\u5973\u5b50\u6821\u751f\u751f\u4e2d\u51fa\u3057\u5b55\u307e\u305bSEX \u5e76\u6728\u3042\u3086"], "image_paths": ["full/f9b5c400b6cbdfed236aa58d05c4700d34971d4e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48935.jpg"]}
{"url": ["/htm/mp46/48937.htm"], "text": ["\u672c\u683c\u5bb6\u5ead\u5185\u76f8\u5978\u7269\u8bed \u304a\u6bcd\u3055\u3093\u304c\u521d\u3081\u3066\u306e\u5973\u306b\u306a\u3063\u3066\u3042\u3052\u308b \u5ddd\u4e0a\u3086\u3046"], "image_paths": ["full/57f33aa79f4ad56d814332c6fc55b652668d5928.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48937.jpg"]}
{"url": ["/htm/mp46/48936.htm"], "text": ["\u30c0\u30ec\u30b3\u30ec\uff01\uff1f\u3042\u306e\u8150\u5973\u5b50\u30a2\u30cb\u30aa\u30bfAV\u5973\u4f18\u300c\u6cb3\u897f\u3042\u307f\u300d\u4eca\u4e1a\u754c\u3067\u4e00\u756a\u7231\u3055\u308c\u3066\u3044\u308b\u5f7c\u5973\u306b1\u65e5\u5bc6\u7740\u30c9\u30ad\u30e5\u30e1\u30f3\u30bf\u30ea\u30fc"], "image_paths": ["full/4bc5fba050ed5001e938e755f5081f3e9851f386.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48936.jpg"]}
{"url": ["/htm/mp46/48940.htm"], "text": ["\u98df\u30b6\u30fc\u9732\u51fa\u30cf\u30a4\u30ad\u30f3\u30b0 \u7fbd\u6708\u5e0c"], "image_paths": ["full/17bcf1d23bea53c77edf536f17a9346f60ba6f4b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48940.jpg"]}
{"url": ["/htm/mp46/48939.htm"], "text": ["\u300c\u7231\u3057\u3044\u5f7c\u5973\u306f\u4e2d\u51fa\u3057\u4fbf\u5668\u306b\u5815\u3068\u3055\u308c\u3066\u2026\u300d \u897f\u7530\u30ab\u30ea\u30ca"], "image_paths": ["full/001fad008f6c4904a577089be48c5eb1c0616a18.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48939.jpg"]}
{"url": ["/htm/mp46/49767.htm"], "text": ["\u94c1\u62d8\u675f\u30ec\u30ba\u30d3\u30a2\u30f3 3"], "image_paths": ["full/53b4e07a23ac4c9357f73b6cde966292004fdbad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49767.jpg"]}
{"url": ["/htm/mp46/49769.htm"], "text": ["\u521d\u3081\u3066\u306e\u6fc0\u30a4\u30ad\uff01\u30a8\u30ed\u30b9\u899a\u9192100\u7d76\u9876 \u5317\u5ddd\u3086\u305a"], "image_paths": ["full/77337330a5ce57492f0ff0535f019f43727d4062.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49769.jpg"]}
{"url": ["/htm/mp46/48941.htm"], "text": ["\u30c9S\u306e\u9ed2\u30ae\u30e3\u30ebERIKA\u3092\u30c9M\u306e\u30bb\u30c3\u30af\u30b9?\u30e2\u30f3\u30b9\u30bf\u30fc\u78a7\u3057\u306e\u304c\u72af\u3059\u3002 ERIKA \u78a7\u3057\u306e"], "image_paths": ["full/1485acdb630d19ecc163b1567d84ed37a6f39d17.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48941.jpg"]}
{"url": ["/htm/mp46/49768.htm"], "text": ["\u8089\u4f53\u5949\u4ed5\u306e\u30e0\u30c1\u30e0\u30c1\u5de8\u4e73\u30c7\u30ab\u5c3b\u30bb\u30fc\u30eb\u30b9\u30ec\u30c7\u30a3\u306b\u304a\u4ed5\u7f6e\u304d\u8c03\u6559 \u4e09\u559c\u672c\u306e\u305e\u307f"], "image_paths": ["full/0ebcdee1fb3a2e49aab7619794c823d151ec62bb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49768.jpg"]}
{"url": ["/htm/mp46/49770.htm"], "text": ["\u4ea4\u308f\u308b\u4f53\u6db2\u3001\u6d53\u5bc6\u30bb\u30c3\u30af\u30b9 \u76f8\u6cfd\u3086\u308a\u306a"], "image_paths": ["full/f180d7185be2d70fae67245e06d8426be7167d69.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49770.jpg"]}
{"url": ["/htm/mp46/49771.htm"], "text": ["\u8857\u884c\u304f\u30bb\u30ec\u30d6\u4eba\u59bb\u3092\u30ca\u30f3\u30d1\u3057\u3066AV\u81ea\u5b85\u64ae\u5f71\uff01 \u65e6\u90a3\u306e\u3044\u306a\u3044\u5bb6\u3067\u30e4\u308b\u80cc\u5fb3\u611f\u307e\u307f\u308c\u306e\u4e2d\u51fa\u3057\u6027\u4ea4\uff01\uff01 \u4eba\u59bb6\u4eba in \u8868\u53c2\u9053?\u81ea\u7531\u304c\u4e18?\u7530\u56ed\u8c03\u5e03"], "image_paths": ["full/9b822abf5eb45523024fdf8bc4ca1594456e6b60.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49771.jpg"]}
{"url": ["/htm/mp46/49773.htm"], "text": ["\u4eba\u751f\u521d?\u30c8\u30e9\u30f3\u30b9\u72b6\u6001 \u6fc0\u30a4\u30ad\u7d76\u9876\u30bb\u30c3\u30af\u30b9 \u7f8e\u91cc\u6709\u7eb1"], "image_paths": ["full/e1afe90df15fe5c73622636eb678859d21cf44bc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49773.jpg"]}
{"url": ["/htm/mp46/49772.htm"], "text": ["\u7d76\u9876\u30e9\u30f3\u30b8\u30a7\u30ea\u30fc\u30ca 13 \u9999\u690e\u308a\u3042"], "image_paths": ["full/69902c5b32cfef5aa81ce8c95e6dba9f111360fd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49772.jpg"]}
{"url": ["/htm/mp46/49775.htm"], "text": ["\u4ec6\u3068\u745e\u7a42\u306e\u7518\u8fc7\u304e\u308b\u793e\u5185\u604b\u7231SEX\u30e9\u30a4\u30d5 \u4e0a\u539f\u745e\u7a42"], "image_paths": ["full/8128716274ba8853519b13986581b303e60b89d7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49775.jpg"]}
{"url": ["/htm/mp46/49774.htm"], "text": ["\u98ce\u4fd7\u30bf\u30ef\u30fc \u6027\u611f\u30d5\u30eb\u30b3\u30fc\u30b93\u65f6\u95f4SPECIAL \u8c37\u7530\u90e8\u548c\u6c99"], "image_paths": ["full/fac7abec0328abb2a412eee3df6836920a57e042.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49774.jpg"]}
{"url": ["/htm/mp46/49780.htm"], "text": ["\u6781\u4e0a\u306e\u65b0\u4eba\u6bcd \u5929\u7ae5\u7ee2\u679d"], "image_paths": ["full/4cd61d4f0e1dd6dc53a1d1544eadebf6644afb08.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49780.jpg"]}
{"url": ["/htm/mp46/49776.htm"], "text": ["\u80cc\u540e\u304b\u3089\u8eab\u3082\u5fc3\u3082\u5f81\u670d\u3055\u308c\u30a4\u30ad\u3088\u304c\u308b\u96cc\u72acFUCK"], "image_paths": ["full/5b995712492ab26c15b752ee555ca8245676bbd1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49776.jpg"]}
{"url": ["/htm/mp46/49779.htm"], "text": ["\u3042\u306e\u65f6\u306e\u304a\u3070\u3055\u3093 \u5929\u91ce\u5f25\u751f"], "image_paths": ["full/47d658708aa5963236ff7d2046d2a5050e54eeec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49779.jpg"]}
{"url": ["/htm/mp46/49777.htm"], "text": ["\u94c1\u677fcomplete \u5de8\u4e73\u3068\u30c7\u30ab\u5c3b\u7f8e\u5973\u306e\u6f6e\u55b7\u304d\u30bb\u30c3\u30af\u30b9 BEST \u6d5c\u5d0e\u771f\u7eea"], "image_paths": ["full/ea62037af069d469ddeab97609f69d8c4f5a9cc1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49777.jpg"]}
{"url": ["/htm/mp46/49778.htm"], "text": ["\u62d8\u675f\u6c57\u3060\u304f\u30a4\u30ab\u30bb\u6027\u4ea4"], "image_paths": ["full/36bf19bdaacef960b71fc31d9ecf651db4dfedc6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49778.jpg"]}
{"url": ["/htm/mp46/49782.htm"], "text": ["\u3044\u3072\u306a\u308a\u306e\u6bcd \u7b71\u5bab\u5343\u660e"], "image_paths": ["full/d9967d7e714ed3c0828caea5969400ad81dc4243.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49782.jpg"]}
{"url": ["/htm/mp46/49781.htm"], "text": ["\u6bcd\u306e\u80a1\u95f4\u306f\u591c\u3072\u3089\u304f \u5188\u7530\u667a\u6075\u5b50"], "image_paths": ["full/a92fb297855d0ab5a6634fb21a63b4498630cb5e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49781.jpg"]}
{"url": ["/htm/mp46/49784.htm"], "text": ["\u6c41\u7537\u90e8\u5c4b\u306b\u5973\u4f18\u3092\u653e\u308a\u8fbc\u307f\u597d\u304d\u653e\u9898\u30e4\u30ea\u820d\u3066\u751f\u30cf\u30e1\u989c\u5c04"], "image_paths": ["full/9e65de41b7ee15d78fc555a8a92b0507fb954193.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49784.jpg"]}
{"url": ["/htm/mp46/49783.htm"], "text": ["\u5909\u6001M\u5973\u8fde\u308c\u8f6e\u5978\u3057\u7f9e\u803b\u8c03\u6559"], "image_paths": ["full/f795f310dc130b6393d645ccecea2da6db402d65.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49783.jpg"]}
{"url": ["/htm/mp46/49786.htm"], "text": ["\u3061\u3087\u3093\u306e\u95f4\u719f\u5973 \u5730\u65b9\u3067\u5642\u306e\u4eba\u6c17\u719f\u5973\u3092\u3053\u3063\u305d\u308a\u76d7\u64ae\u3057\u3066\u307f\u307e\u3057\u305f"], "image_paths": ["full/a0676503f0d71e0019483694f024343fe7b909e5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49786.jpg"]}
{"url": ["/htm/mp46/49785.htm"], "text": ["\u59b9\u306e\u7206\u4e73\u306f\u4e00\u89c1\u306b\u3057\u304b\u305anostalgie\uff0306 \u6e05\u51a2\u90a3\u5948 I\u30ab\u30c3\u30d7107cm"], "image_paths": ["full/1fe3cf504ca7ee6ed0ba2a89d55c4a9cf8be355c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49785.jpg"]}
{"url": ["/htm/mp46/49787.htm"], "text": ["\u773c\u955c\u00d7\u9996\u8f6e\u00d7\u7206\u4e73 \u30aa\u30ec\u306e\u59c9\u3061\u3083\u3093\u30c9M\u3044\u3044\u306a\u308a\u30e1\u30b9\u5974\u96b6 \u6210\u5bab\u307f\u3053\u3068"], "image_paths": ["full/3c649db6470bdb54569e1076b411f0e87ed44fdc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49787.jpg"]}
{"url": ["/htm/mp46/49788.htm"], "text": ["\u5934\u304c\u771f\u3063\u767d\u306b\u306a\u308b\u307b\u3069\u8d85\u30a8\u30af\u30b9\u30bf\u30b7\u30fc\uff01G\u30b9\u30dd\u30c3\u30c8\u7a81\u304d\u4e0a\u3052\u9a91\u4e57\u4f4d50\u4eba"], "image_paths": ["full/587a8ff4b55cabdf736b3e5724c5b101cdbfa11d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49788.jpg"]}
{"url": ["/htm/mp46/49791.htm"], "text": ["\u30cd\u30c8\u30e9\u30ec\u30fc\u30bc \u751f\u4fdd\u30ec\u30c7\u30a3\u306e\u59bb\u304c\u987e\u5ba2\u306e\u7537\u306b\u5bdd\u53d6\u3089\u308c\u305f\u8bdd\u3057 \u8276\u5802\u3057\u307b\u308a"], "image_paths": ["full/537d6ed0ffa233cdc42c25ef5fb2bfccd4b2d53a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49791.jpg"]}
{"url": ["/htm/mp46/49789.htm"], "text": ["S1\u5973\u4f18\u306e\u30de\u25cb\u30b3\u3069\u771f\u3093\u4e2d\u306b\u3076\u3063\u3068\u3044\u30d0\u30a4\u30d6\u3076\u3063\u8fbc\u307f\u30ba\u30dc\u30ba\u30dc\u30a2\u30d8\u30a2\u30d8\u5feb\u697d\u5236\u88c1\u3057\u305f\u3089\u2026\u3068\u3093\u3067\u3082\u306a\u3044\u3053\u3068\u306b\u306a\u3063\u3061\u3083\u3063\u305f\u30b9\u30da\u30b7\u30e3\u30eb"], "image_paths": ["full/ba4e9ef23506304a585a299181c58775c997ef98.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49789.jpg"]}
{"url": ["/htm/mp46/49793.htm"], "text": ["\u7206\u4e73\u30d1\u30a4\u30d1\u30f3\u7740\u30a8\u30ed\u30a2\u30a4\u30c9\u30eb\u64ae\u5f71\u73b0\u573a\u30bb\u30af\u30cf\u30e9\u76d7\u64ae"], "image_paths": ["full/e100775a8b608b0444e536b400170a47bfc6b859.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49793.jpg"]}
{"url": ["/htm/mp46/49792.htm"], "text": ["\u7a93\u304b\u3089\u30c7\u30ab\u5c3b\u3092\u51fa\u3057\u3066\u7537\u3092\u8bf1\u3046\u4eba\u59bb \u672c\u771f\u3086\u308a"], "image_paths": ["full/48d0755c0f7cc2e33e1a11a1f3a81a4e3fd60b6e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49792.jpg"]}
{"url": ["/htm/mp46/49795.htm"], "text": ["\u30e0\u30c1\u30e0\u30c1\u5de8\u4e73\u5c3b\u30d9\u30ed\u3061\u3085\u3046\u30b6\u30fc\u30e1\u30f3\u3076\u3063\u304b\u3051\u30cb\u30fc\u30c8\u5a18 \u96fe\u5c9b\u3055\u304f\u3089"], "image_paths": ["full/4d253be62a4ac902700089a61e40dee93acc2661.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49795.jpg"]}
{"url": ["/htm/mp46/49794.htm"], "text": ["\u30b6\u30fc\u30e1\u30f3\u3054\u3063\u304f\u3093\u5c02\u7528\u30c9\u30b9\u30b1\u30d9\u5143\u30ae\u30e3\u30eb\u304a\u59c9\u3055\u3093 \u5185\u5c71\u307e\u3044"], "image_paths": ["full/6bdc71cd800b546355a18751c58689e682880a4f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49794.jpg"]}
{"url": ["/htm/mp46/49798.htm"], "text": ["\u3059\u3079\u3066\u306f\u3053\u3053\u304b\u3089\u59cb\u307e\u3063\u305f\u2026\u592b\u306e\u76ee\u306e\u524d\u3067\u72af\u3055\u308c\u3066 \u30d5\u30a1\u30fc\u30b9\u30c8\u30ec\u30a4\u30d7BEST6\u65f6\u95f4"], "image_paths": ["full/ac28f32140705af52761a7023e9a220f730e64a0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49798.jpg"]}
{"url": ["/htm/mp46/49800.htm"], "text": ["\u305d\u306e\u30ec\u30a4\u30e4\u30fc\u3001\u7206\u4e73\u306b\u3064\u304d\u20262 \u72d9\u308f\u308c\u305f\u67d0\u6709\u540d\u82b8\u80fd\u30b9\u30af\u30fc\u30eb\u7814\u4fee\u751f \u60a0\u6728\u3086\u3044\u306a I\u30ab\u30c3\u30d7110cm"], "image_paths": ["full/02cd2cc8d5fc7512a185433de45e5aec7f5b9a63.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49800.jpg"]}
{"url": ["/htm/mp46/49796.htm"], "text": ["\u30e9\u30d6\u30db\u306b\u6cca\u307e\u3063\u305f\u6bcd\u3068\u5b50 \u957f\u5d8b\u307f\u3069\u308a"], "image_paths": ["full/247ec301861e6dbd5623c3ee33188fee12fc915c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49796.jpg"]}
{"url": ["/htm/mp46/49799.htm"], "text": ["\u7206\u4e73\u7d20\u4eba\u691c\u8bc1\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\uff01 5\u5e74\u95f4\u653e\u7f6e\u3055\u308c\u305f\u300c\u8d28\u7d20\u3067\u307e\u3058\u3081\u306aOL\u83ca\u5730\u306f\u306a\u300d\u306eI\u30ab\u30c3\u30d7100cm\u304c\u7206\u88c2\u3059\u308b\u77ac\u95f4\u2026"], "image_paths": ["full/82c9ec15580499e40591d122d1d1a7af5f04570a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49799.jpg"]}
{"url": ["/htm/mp46/49801.htm"], "text": ["\u305d\u306e\u540e\u306e\u81ea\u64ae\u308aM\u5973 \u9003\u4ea1\u6559\u3048\u5b50\u533f\u3044\u8c03\u6559 \u4e2d\u91cc\u7f8e\u7a42"], "image_paths": ["full/7a739154d697c2231208301a3c76aeb3b1f3a556.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49801.jpg"]}
{"url": ["/htm/mp46/49802.htm"], "text": ["\u54bd\u3073\u6ce3\u304f\u5996\u8276\u719f\u5973\u305f\u3061\u306e\u97ad\u6253\u3061\u8c03\u6559\u30d9\u30b9\u30c8"], "image_paths": ["full/eb2f2e75598f9971b83c16b1dda64e4ad542ac26.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49802.jpg"]}
{"url": ["/htm/mp46/49804.htm"], "text": ["\u7f1a\u308a\u62f7\u95ee \u5974\u96b6\u5e02\u573a\u306e\u5bb4"], "image_paths": ["full/6d1253518d3a41342a3d22cabcf74d03a9df0087.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49804.jpg"]}
{"url": ["/htm/mp46/49803.htm"], "text": ["\u82b1\u3068\u874e \u606f\u5b50\u306e\u5974\u96b6\u306b\u306a\u3063\u305f\u6bcd \u5439\u77f3\u308c\u306a"], "image_paths": ["full/5fefbcc86f460dbcb15562dd7de6fbc2364f7953.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49803.jpg"]}
{"url": ["/htm/mp46/49806.htm"], "text": ["\u30dc\u30af\u306f\u751f\u306e\u30de\u25cb\u30b3\u304c\u89c1\u305f\u3044\u3093\u3067\u3059\uff01 \u5973\u6027\u306b\u7e01\u304c\u307e\u3063\u305f\u304f\u306a\u3044\u30dc\u30af\u306f\u3069\u3046\u3057\u3066\u3082\u5973\u6027\u5668\u304c\u89c1\u305f\u304f\u3066\u3001\u5bdd\u3066\u3044\u308b\u59c9\u306e\u90e8\u5c4b\u306b\u3053\u3063\u305d\u308a\u5fcd\u3073\u8fbc\u307f\u30d1\u30f3\u30c4\u3092\u8131\u304c\u3057\u751f\u30de\u25cb\u30b3\u9274\u8d4f\uff01 \u89c1\u3066\u3044\u308b\u3060\u3051\u3067\u5f53\u7136\u52c3\u8d77\uff01\u633f\u308c\u305f\u3044\uff01\u3067\u3082\u3001\u633f\u308c\u305f\u3089\u30c0\u30e1\u3060\u2026\u3002\u3067\u3082\u3067\u3082\u3001\u633f\u308c\u305f\u3089\u6c17\u6301\u3061\u3044\u3044\u3093\u3060\u308d\u3046\u306a\u3002"], "image_paths": ["full/6fdc0f38f52b0d9c0fc73cc6531f34b6945ead36.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49806.jpg"]}
{"url": ["/htm/mp46/49805.htm"], "text": ["\u300c\u79c1\u304a\u3070\u3055\u3093\u3060\u3051\u3069\u4e00\u751f\u60ac\u547d\u6c17\u6301\u3061\u3088\u304f\u3059\u308b\u304b\u3089\u304a\u613f\u3044\u2026\u300d\u4e0d\u610f\u306b\u89c1\u3066\u3057\u307e\u3063\u305f\u606f\u5b50\u306e\u53cb\u8fbe\u306e\u52c3\u8d77\u30c1\u25cb\u30dd\u306b\u767a\u60c5\uff01\u3057\u304b\u3082\u60f3\u8c61\u4ee5\u4e0a\u306b\u5927\u304d\u3044\u30c1\u25cb\u30dd\u3067\u633f\u5165\u524d\u304b\u3089\u7206\u6fe1\u308c\u72b6\u6001\uff01\u5f53\u7136\u633f\u5165\u3057\u305f\u3089\u5373\u30de\u30b8\u30a4\u30ad\u3067\u4f55\u5ea6\u3082\u4e2d\u51fa\u3057\u3092\u6c42\u3081\u308b\uff01"], "image_paths": ["full/6193d022c8df0dd7d2164148da75cdb5b8ebc01a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49805.jpg"]}
{"url": ["/htm/mp46/49810.htm"], "text": ["\u7537\u5b50\u7981\u5236\u3001\u5973\u5b50\u5bee\u306b\u7537\u306f\u30dc\u30af1\u4eba\uff01 \u59c9\u304c\u4f4f\u3080\u5973\u5b50\u5bee\u306f\u30c9\u30b9\u30b1\u30d9\u5973\u306e\u5de3\u7a9f\uff01\uff1f \u5168\u5bee\u5236\u5973\u5b50\u6821\u306b\u901a\u3046\u59c9\u306e\u5143\u306b\u3001\u5c4a\u3051\u7269\u3092\u6e21\u3057\u306b\u3084\u3063\u3066\u304d\u305f\u30dc\u30af\u3002\u7537\u304c\u73cd\u3057\u3044\u306e\u304b\u3001\u8997\u304d\u306b\u6765\u305f\u59c9\u306e\u53cb\u4eba\u8fbe\u304c\u7d9a\u3005\u3068\u96c6\u307e\u3063\u3066\u304d\u305f\u3002\u7537\u306b\u3064\u3044\u3066\u77e5\u308a\u305f\u3044\uff01\u3068\u5174\u5473\u6d25\u3005\u306a\u59c9\u306e\u540c\u7ea7\u751f\u306b\u56f2\u307e\u308c\u2026"], "image_paths": ["full/95a8b1676ccbcb1e68a6eb21975aa04616bacf9e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49810.jpg"]}
{"url": ["/htm/mp46/49807.htm"], "text": ["\u4e21\u4eb2\u306e\u7559\u5b88\u3092\u826f\u3044\u4e8b\u306b\u304a\u6cca\u307e\u308a\u4f1a\u3092\u5f00\u304f\u59b9\u3002\u305f\u3060\u3001\u30dc\u30af\u305f\u3061\u306f\u76f8\u90e8\u5c4b\u3002\u3068\u306b\u304b\u304f\u72ed\u3044\u3002\u59b9\u306f\u5927\u76ee\u306b\u89c1\u3066\u3088\u3068\u30dc\u30af\u306b\u624b\u3092\u5408\u308f\u305b\u3066\u304d\u305f\u304c\u5197\u8c08\u3058\u3083\u306a\u3044\u3002\u30dc\u30af\u306f\u53d7\u9a13\u751f\u3001\u3053\u308c\u304b\u3089\u304c\u8ffd\u3044\u8fbc\u307f\u3063\u3066\u65f6\u3060\u3002\u3057\u304b\u3057\u3001\u53ef\u7231\u3044\u53cb\u4eba\u305f\u3061\u3092\u89c1\u305f\u77ac\u95f4\u2026"], "image_paths": ["full/13b4831f4067c3dba1971ed97aef58a7b70f86d0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49807.jpg"]}
{"url": ["/htm/mp46/49809.htm"], "text": ["\u5e7c\u9a6f\u67d3\u3068H\u3054\u3063\u3053\u3067\u7d20\u80a1\u72b6\u6001\uff01\u3067\u30cc\u30eb\u30cc\u30eb\u3067\u2018\u30ba\u30dc\u2019\u5c0f\u4e2d\u305d\u3057\u3066\u25cf\u6821\u751f\u306b\u306a\u3063\u305f\u4eca\u3082\u5973\u306e\u5b50\u306b\u5168\u304f\u30e2\u30c6\u306a\u3044\u30dc\u30af\u3068\u306f\u5bfe\u7167\u7684\u306b\u5e7c\u9a6f\u67d3\u306f\u30af\u30e9\u30b9\u3067\u30de\u30c9\u30f3\u30ca\u7684\u5b58\u5728\u306b\uff01\uff01\u5b66\u6821\u3067\u306f\u5965\u624b\u3067\u771f\u9762\u76ee\u3076\u3063\u3066\u3044\u308b\u304c\u5b9f\u306f\u8d85\u30b9\u30b1\u30d9\u3067H\u306a\u4e8b\u306b\u5174\u5473\u6d25\u3005\uff01\uff01 3"], "image_paths": ["full/4cb90c402442dc0e52c754e0bc4152307ed79704.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49809.jpg"]}
{"url": ["/htm/mp46/49812.htm"], "text": ["\u8c03\u6559\u30bd\u30d5\u30c8SM \u606f\u5b50\u306e\u5ac1\u3092\u75f9\u308c\u85ac\u3067\u7f1a\u308a\u4e0a\u3052\u8089\u611f\u7684\u30ab\u30e9\u30c0\u306b\u30cc\u30eb\u30c3\u3068\u633f\u5165\u3059\u308b\u4e49\u7236 \u3042\u304d\u3089"], "image_paths": ["full/57ac97ca2fd7dd42e7c218ca39ce4f1323a82fe2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49812.jpg"]}
{"url": ["/htm/mp46/49811.htm"], "text": ["\u5a18\u306e\u30d6\u30eb\u30de\u3092\u5c65\u3044\u305f\u3089\u4e88\u60f3\u5916\u306b\u5c0f\u3055\u304f\u3066\u8131\u3052\u306a\u304f\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u6bcd \u7b71\u7530\u3042\u3086\u307f"], "image_paths": ["full/a00ef859cba1d2ac2e990e7cb0bd9de6adf60921.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49811.jpg"]}
{"url": ["/htm/mp46/49814.htm"], "text": ["\u521d\u3081\u3066\u6765\u305f\u30aa\u30a4\u30eb\u30a8\u30b9\u30c6\u3067\u3001\u30a8\u30b9\u30c6\u30c6\u30a3\u30b7\u30e3\u30f3\u304c\u4e88\u60f3\u4ee5\u4e0a\u306b\u30df\u30cb\u30b9\u30ab\u30fc\u30c8\uff06\u80f8\u30c1\u30e9\u3067\u5bfe\u5fdc\u3057\u3066\u304f\u308b\uff01\u305d\u306e\u65e0\u9632\u5907\u306a\u683c\u597d\u306b\u30bd\u30bd\u3089\u308c\u308b\u304c\u51b7\u3081\u305f\u6001\u5ea6\u2026\u3002\u3057\u304b\u3057\u4ec6\u304c\u30c7\u30ab\u30c1\u30f3\u3060\u3068\u6c17\u4ed8\u3044\u305f\u9014\u7aef\u3001\u30c1\u25cb\u30dd\u306b\u68a6\u4e2d\u306b\u306a\u308a\u672c\u756a\u884c\u4e3a\u3092\u81ea\u3089\u6c42\u3081\u3066\u304d\u305f\uff01\uff01"], "image_paths": ["full/ccf24aeec88934fb3293b7c4c2f8888c0dcabecb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49814.jpg"]}
{"url": ["/htm/mp46/49808.htm"], "text": ["\u4e0b\u7740\u30e1\u30fc\u30ab\u30fc\u306b\u5165\u793e\u3057\u305f\u3089\u6deb\u4e71\u5973\u5b50\u793e\u5458\u7387100\uff05\uff01\u3084\u3063\u3068\u5c31\u804c\u3067\u304d\u305f\u4f1a\u793e\u306f\u7f8e\u4eba\u793e\u5458\uff08\u3057\u304b\u3082\u5168\u5458\u5de8\u4e73\uff01\uff09\u3070\u304b\u308a\u306e\u4e0b\u7740\u30e1\u30fc\u30ab\u30fc\uff01\u7537\u306f\u30dc\u30af1\u4eba\uff01\u5618\u307f\u305f\u3044\u306a\u73af\u5883\u306b\u30c9\u30ad\u30c9\u30ad\u304c\u6b62\u307e\u308a\u307e\u305b\u3093\uff01\u3057\u304b\u3082\u3053\u306e\u4f1a\u793e\u306e\u4f1a\u8bae\u3067\u306f\u5973\u6027\u793e\u5458\u81ea\u3089\u4e0b\u7740\u30e2\u30c7\u30eb\u306b\uff01"], "image_paths": ["full/97ecfe9c0b542ac949cd50dd76ef1bd00f3af74b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49808.jpg"]}
{"url": ["/htm/mp46/49813.htm"], "text": ["\u82e5\u59bb\u30ec\u30ba\u30d3\u30a2\u30f3 \u820c\u3068\u5507\u3068\u553e\u6db2\u307e\u307f\u308c\u306e\u6d53\u539a\u63a5\u543b \u8210\u3081\u3066\u6c42\u3081\u3066\u8d2a\u3063\u3066\u2026"], "image_paths": ["full/3ef948d811a8ccdb8be96699a26508ae4bd1a617.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49813.jpg"]}
{"url": ["/htm/mp46/49816.htm"], "text": ["\u5de5\u4e8b\u73b0\u573a\u3067\u50cd\u304f\u4ffa\u306e\u3080\u3055\u82e6\u3057\u3044\u30a2\u30d1\u30fc\u30c8\u306e\u90bb\u306b\u30bd\u30bd\u308b\u7406\u7cfb\u30e1\u30ac\u30cd\u5973\u5b50\u5927\u751f\u304c\u8d8a\u3057\u3066\u304d\u305f\u3002\u8089\u4f53\u52b4\u50cd\u8005\u3067\u30d3\u30f3\u30dc\u30fc\u306a\u30aa\u30c3\u30b5\u30f3\u306e\u4ffa\u304c\u521d\u3081\u3066\u89c1\u308b\u30bf\u30a4\u30d7\u306e\u7537\u3067\u5174\u5473\u6d25\u3005\uff01\uff1f\u5f7c\u5973\u305f\u3061\u306e\u7814\u7a76\u5bfe\u8c61\u306b\u306a\u3063\u305f\u4ffa\u306e\u30c1\u25cb\u30dd\u306f\u3058\u3063\u304f\u308a\u3068\u53ef\u7231\u304c\u3089\u308c\u3001\u305f\u3063\u3077\u308a\u5f04\u3070\u308c\u2026"], "image_paths": ["full/a60b6fb6e80952861c90e0c63c70320fea87e379.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49816.jpg"]}
{"url": ["/htm/mp46/49815.htm"], "text": ["\u6614\u304b\u3089\u3057\u3066\u307f\u305f\u304b\u3063\u305f\u304a\u533b\u8005\u3055\u3093\u30b4\u30c3\u30b3 \u30cb\u30bb\u533b\u8005\u306b\u306a\u3063\u3066\u3001\u30bd\u30bd\u308b\u82e5\u3044\u5973\u6027\u60a3\u8005\u3092\u7269\u8272\u3057\u30a4\u30bf\u30ba\u30e9\u4e09\u6627\uff01\u30d1\u30f3\u30c4\u306b\u30b7\u30df\u307e\u3067\u4f5c\u3063\u3066\u611f\u3058\u307e\u304f\u308b\u306e\u3067\u3001\u3082\u3046\u6211\u6162\u51fa\u6765\u305a\u306b\u633f\u5165\u3057\u3061\u3083\u3044\u307e\u3057\u305f\u3002\u3042\u3042\u3001\u6614\u304b\u3089\u61a7\u308c\u3066\u3044\u305f\u304a\u533b\u8005\u3055\u3093\u30b4\u30c3\u30b3\u3092\u3064\u3044\u306b\u8fbe\u6210\uff01"], "image_paths": ["full/7a5a9532e1c7d0c3b56d49b764fedd7de8757809.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49815.jpg"]}
{"url": ["/htm/mp46/49818.htm"], "text": ["\u30cb\u30bb\u306e\u5973\u6027\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u5fd7\u30a2\u30f3\u30b1\u30fc\u30c8\u306b\u300c\u30ae\u30e3\u30eb\u304c\u5acc\u3044\uff01\u300d\u3068\u56de\u7b54\u3057\u305f\u4e00\u822c\u7537\u6027\u306f\u3001\u85e4\u672c\u7d2b\u5a9b\u306e\u30bd\u30bd\u308b\u30e4\u30ea\u30de\u30f3\u30c6\u30af\u30cb\u30c3\u30af\u306b\u3069\u3053\u307e\u3067\u8010\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u304b\uff1f"], "image_paths": ["full/b377ff41ac852bcfdcd583f6b7077f588693537e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49818.jpg"]}
{"url": ["/htm/mp46/49820.htm"], "text": ["\u7ade\u6cf3\u6c34\u7740\u306e\u5973 \u6ce2\u591a\u91ce\u7ed3\u8863"], "image_paths": ["full/2de12e306855fb67fc1913783195032a73761b94.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49820.jpg"]}
{"url": ["/htm/mp46/49817.htm"], "text": ["\u6700\u8fd1\u30bd\u30bd\u308a\u307e\u304f\u308b\u59b9\u306b\u30a4\u30bf\u30ba\u30e9\u534a\u5206\u3067\u5927\u4eba\u306e\u73a9\u5177\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\uff01\u5acc\u304c\u3063\u305f\u3082\u306e\u306e\u3001\u672c\u5f53\u306f\u5174\u5473\u6d25\u3005\u3089\u3057\u304f\u30b3\u30c3\u30bd\u30ea\u8bd5\u3057\u3066\u3044\u308b\u306e\u3092\u8997\u304d\u89c1\u3001\u30aa\u30ca\u30cb\u30fc\u3059\u308b\u5144\u59b9\uff01\u4e92\u3044\u306b\u6c17\u3065\u304f\u3082\u77e5\u3089\u306c\u30d5\u30ea\u3057\u3066\u3044\u305f\u304c\u6211\u6162\u51fa\u6765\u305a\u3001\u3044\u3051\u306a\u3044\u4e8b\u3068\u601d\u3044\u306a\u304c\u3089\u8fd1\u4eb2\u76f8\u5978\uff01\u6c17\u6301\u3061\u3088\u3059\u304e\u3066\u73a9\u5177\u306f\u3082\u3046\u3044\u3089\u306a\u3044\u3002"], "image_paths": ["full/8fdf4ae07f678a0dc119fcd645c0f2236b41fd85.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49817.jpg"]}
{"url": ["/htm/mp46/49821.htm"], "text": ["\u30d3\u30b8\u30cd\u30b9\u30db\u30c6\u30eb\u306e\u30de\u30c3\u30b5\u30fc\u30b8\u5e08\u306e\u80f8\u30c1\u30e9\u3067\u80a1\u95f4\u304c\u53cd\u5fdc\u3057\u3066\u3057\u307e\u3063\u305f\u4ffa 7"], "image_paths": ["full/488ac4b5ea9da28809078ee8f3898ebf14cda151.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49821.jpg"]}
{"url": ["/htm/mp46/49819.htm"], "text": ["\u653e\u8bfe\u540e\u306e\u6559\u5ba4\u3067\u30bb\u30af\u30cf\u30e9\u6307\u5bfc\u306b\u767a\u60c5\u3057\u3066\u3057\u307e\u3063\u305f\u30bd\u30bd\u308b\u5de8\u4e73\u6559\u80b2\u5b9f\u4e60\u751f"], "image_paths": ["full/77f04803f6a1b38ada279b6ec816a97b9861ee4b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49819.jpg"]}
{"url": ["/htm/mp46/49823.htm"], "text": ["\u663c\u4e0b\u304c\u308a\u306e\u5c02\u4e1a\u4e3b\u5987 \u65f6\u95f4\u3092\u6301\u3066\u4f59\u3057\u305f\u82e5\u59bb\u3092\u8997\u304d\u3001\u663c\u304b\u3089\u663c\u5bdd\u3092\u591c\u8fd9\u3044\u3067\u9876\u304d\u307e\u3059\u3002"], "image_paths": ["full/91ce1ec78269ccbac2ee7b723a9a576433de2aab.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49823.jpg"]}
{"url": ["/htm/mp46/49826.htm"], "text": ["\u4e00\u822c\u7537\u5973\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0AV \u30de\u30b8\u30c3\u30af\u30df\u30e9\u30fc\u306e\u5411\u3053\u3046\u306b\u306f\u7231\u3059\u308b\u65e6\u90a3\uff01 \u4e0a\u53f8\u81ea\u6162\u306e\u7f8e\u3057\u3044\u5965\u3055\u307e\u3068\u82e5\u3044\u90e8\u4e0b\u304c2\u4eba\u3063\u304d\u308a\u306e\u5bc6\u5ba4\u3067\u7d20\u80a1\u306b\u6311\u6226\uff01\u300c\u64e6\u308b\u3060\u3051\u306a\u3089\u6d6e\u6c17\u3058\u3083\u306a\u3044\u3088\u306d\u2026\uff1f\u300d\u4eca\u307e\u3067\u4e00\u5ea6\u3082\u6d6e\u6c17\u3057\u305f\u3053\u3068\u306e\u306a\u3044\u8d1e\u6dd1\u59bb\u304c\u50cd\u304d\u8bd8\u3081\u3067\u6e9c\u307e\u3063\u305f\u52c3\u8d77\u30c1\u25cb\u30dd\u3092\u64e6\u308a\u3064\u3051\u3089\u308c\u3066\u2026"], "image_paths": ["full/281134f0944853fd403f34768c8a42535c5f0bff.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49826.jpg"]}
{"url": ["/htm/mp46/49825.htm"], "text": ["\u4e00\u822c\u7537\u5973\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0AV \u6e29\u6cc9\u65c5\u884c\u4e2d\u306e\u5973\u5b50\u5927\u751f4\u4eba\u304c\u521d\u5bfe\u9762\u306e\u7537\u5b50\u5b66\u751f\u30b0\u30eb\u30fc\u30d7\u3078\u4e2d\u51fa\u30571\u767a10\u4e07\u5186\u306e\u9006\u591c\u8fd9\u3044\u306b\u6311\u6226\uff01 \u58f0\u3092\u51fa\u305b\u306a\u3044\u521d\u3081\u3066\u306e\u591c\u8fd9\u3044\u30df\u30c3\u30b7\u30e7\u30f3\u306b\u5174\u594b\u3057\u305f\u30aa\u30de\u25cb\u30b3\u306f\u7a81\u7136\u306e\u30e9\u30c3\u30ad\u30fc\u30b9\u30b1\u30d9\u5230\u6765\u3067\u52c3\u8d77\u3057\u305f\u30c1\u25cb\u30dd\u3092\u79bb\u3055\u306a\u3044\uff01 in\u7bb1\u6839\u6e29\u6cc9"], "image_paths": ["full/9dbcc1d8abe73cc2bce61f2e269f0ba8b19fe2b6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49825.jpg"]}
{"url": ["/htm/mp46/49828.htm"], "text": ["\u30de\u30b8\u30c3\u30af\u30df\u30e9\u30fc\u4fbf \u5168\u545835\u6b73over\uff01 \u7f8e\u3057\u304f\u3066\u6e05\u695a\u306a\u4eba\u59bb\u3055\u3093\u521d\u3081\u3066\u306e\u3054\u3063\u304f\u3093\u7f16vol.02 \u65e6\u90a3\u306e\u7cbe\u6db2\u3082\u996e\u3093\u3060\u3053\u3068\u306e\u306a\u3044\u5965\u3055\u307e\u305f\u3061\u304c\u4eba\u751f\u521d\u306e\u7cbe\u996e\u4f53\u9a13\u25c6 \u5408\u8ba110\u767a\uff01\uff01 in\u94f6\u5ea7\uff06\u767d\u91d1"], "image_paths": ["full/407217c0336ee446fd9bc5bf8f7cba3caf564118.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49828.jpg"]}
{"url": ["/htm/mp46/49824.htm"], "text": ["\u82e5\u59bb\u30ca\u30f3\u30d1\u6027\u611f\u30de\u30c3\u30b5\u30fc\u30b8\u5373\u30cf\u30e1 \u3082\u3063\u3068\u6c17\u6301\u3061\u3088\u304f\u306a\u308a\u305f\u3044\u3068\u6027\u6b32\u306b\u76ee\u899a\u3081\u305f\u82e5\u59bb\u306b\u3001AV\u7537\u4f18\u6027\u611f\u30de\u30c3\u30b5\u30fc\u30b8\u306e\u30b9\u30fc\u30d1\u30fc\u30c6\u30af\u30cb\u30c3\u30af\u3092\u65e0\u6599\u3067\u304a\u8bd5\u3057\u3057\u307e\u305b\u3093\u304b\u3068\u53e3\u8bf4\u3044\u305f\u3089\u3001\u6c17\u6301\u3061\u3088\u3059\u304e\u3066\u672c\u756a\u307e\u3067\u51fa\u6765\u3061\u3083\u3044\u307e\u3057\u305f\u300219"], "image_paths": ["full/eb1d4dc2cee0bb533c4442eff2875a5bcde82e7d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49824.jpg"]}
{"url": ["/htm/mp46/49827.htm"], "text": ["\u4e00\u822c\u7537\u5973\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0AV \u5b50\u4f9b\u304c\u5927\u597d\u304d\uff01\u3069\u3093\u306a\u3068\u304d\u3067\u3082\u7b11\u989c\u3042\u3075\u308c\u308b\u7d20\u4eba\u306e\u5de8\u4e73\u304a\u59c9\u3055\u3093\u9650\u5b9a\uff01 \u7ae5\u8d1e\u30af\u30f3\u306e\u68a6\u3067\u3042\u308b\u6388\u4e73\u624b\u30b3\u30ad\u3092\u304a\u613f\u3044\u3057\u305f\u3089\u5fc3\u4f18\u3057\u3044\u65b0\u4eba\u306e\u5e7c\u513f\u56ed\u306e\u5148\u751f\uff06\u4fdd\u6bcd\u3055\u3093\u306f\u5927\u304d\u306a\u304a\u3063\u3071\u3044\u3068\u6bcd\u6027\u7231\u3092\u523a\u6fc0\u3055\u308c\u7b14\u304a\u308d\u3057SEX\u3057\u3066\u304f\u308c\u308b\u306e\u304b\uff01\uff1f2"], "image_paths": ["full/9466f552ca3317e89ffe842f7a6f4e985cfcf6b8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49827.jpg"]}
{"url": ["/htm/mp46/49830.htm"], "text": ["\u300c\u5973\u6027\u5c02\u7528\u8f66\u4e21\u3067\u521d\u3081\u3066\u553e\u6db2\u304c\u4ea4\u308f\u308b\u307b\u3069\u306e\u30ec\u30ba\u30ad\u30b9\u3092\u3055\u308c\u305f\u5973\u306f\u30d1\u30f3\u30c4\u3092\u6fe1\u3089\u3057\u306a\u304c\u3089\u767a\u60c5\u3059\u308b\u307e\u3067\u4f55\u5206\uff1f\u300dVOL.1"], "image_paths": ["full/a7195a0788b4a773b88a189507598802cf6b9594.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49830.jpg"]}
{"url": ["/htm/mp46/49829.htm"], "text": ["\u300c\u8eab\u5185\u30c1\u25cb\u30dd\u3067\u4f55\u5ea6\u3082\u7a81\u304b\u308c\u30a4\u30ad\u6211\u6162\u3059\u308b\u30c4\u30f3\u30c7\u30ec\u59c9\u304c\u5bb6\u65cf\u306b\u30d0\u30ec\u306a\u3044\u3088\u3046\u306b\u3053\u3063\u305d\u308a\u30e4\u3089\u308c\u308b\u5bb6\u5ead\u5185\u30bb\u30c3\u30af\u30b9\u73b0\u573a\u3092\u8997\u304f\u300d"], "image_paths": ["full/1dc60d522ccc01c7b99eb828996ffd2fadc600b6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49829.jpg"]}
{"url": ["/htm/mp46/49831.htm"], "text": ["\u300c\u3042\u306e\u4eba\u306b\u3082\u3046\u4e00\u5ea6\u9022\u3063\u3066\u30e4\u3089\u308c\u305f\u3044\u30b9\u30da\u30b7\u30e3\u30eb \u91c7\u7cbe\u5ba4\u3067\u4f18\u3057\u304f\u30cc\u3044\u3066\u304f\u308c\u305f\u3042\u306e\u719f\u5e74\u770b\u62a4\u5e08\u3068\u7ae5\u8d1e\u541b\u30922\u4eba\u304d\u308a\u306b\u3057\u305f\u3089\u2026\u307e\u3055\u304b\u306e\u751f\u30cf\u30e1\uff01\u81a3\u5185\u3067\u66b4\u767a\u3055\u308c\u3066\u4f55\u5ea6\u3082\u4e2d\u51fa\u3057\u25c6\u300d"], "image_paths": ["full/3ad12c8416a224ba0d9d087f1fef83b5a58fd24e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49831.jpg"]}
{"url": ["/htm/mp46/49835.htm"], "text": ["\u5a9a\u85ac\u30a8\u30d3\u53cd\u308a\u75f4\u6c49\u30d0\u30b9 \u6e80\u5458\u30d0\u30b9\u3067\u8eab\u52a8\u304d\u306e\u53d6\u308c\u306a\u3044\u30a6\u30d6\u5973\u5b50\u3092\u5a9a\u85ac\u75f4\u6c49\u3067\u5931\u7981\u7d76\u9876\u3055\u305b\u30a8\u30d3\u53cd\u308a\u3059\u308b\u307b\u3069\u767a\u72c2\u3055\u305b\u308d\uff01"], "image_paths": ["full/70e9362359291bdd7782bcfbaecb61befcaa6e01.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49835.jpg"]}
{"url": ["/htm/mp46/49834.htm"], "text": ["\u821e\u30ef\u30a4\u30d5 \uff5e\u30bb\u30ec\u30d6\u5036\u697d\u90e8\uff5e 84"], "image_paths": ["full/fa268543624079043c30607a06b0e0f2c7b6039a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49834.jpg"]}
{"url": ["/htm/mp46/49832.htm"], "text": ["\u304a\u3063\u3071\u3044\u30dd\u30ed\u30ea\u3067\u5373\u5931\u683c\uff01\u30cc\uff5e\u30c9\u30d6\u30e9\u3077\u308b\u3077\u308b\u9009\u624b\u6a29"], "image_paths": ["full/9fd0f9e98f87c50b6bac32f980d52a39aa1eb10a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49832.jpg"]}
{"url": ["/htm/mp46/49833.htm"], "text": ["\u7d20\u4eba\u5973\u6027\u9650\u5b9a\uff01\u30b9\u30ab\u30fc\u30c8\u5dfe\u7740\u30af\u30a4\u30ba\u30bf\u30a4\u30e0\u30b7\u30e7\u30c3\u30af"], "image_paths": ["full/f0fc11fd6e026bfc5869bb577c2e81a8cb137402.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49833.jpg"]}
{"url": ["/htm/mp46/49839.htm"], "text": ["\u73b0\u5f79\u30b8\u30e0\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc \u771f\u6728\u3086\u304b\u308a \u9650\u754c\u7a81\u7834\uff01\u6fc0\u30a4\u30ab\u305b\u8c03\u6559\uff01\uff01"], "image_paths": ["full/17ab7a1e22d817740c486d308b3e640760f28914.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49839.jpg"]}
{"url": ["/htm/mp46/49838.htm"], "text": ["\u304a\u3063\u3071\u3044\u30d1\u30d6\u306e\u30cf\u30c3\u30b9\u30eb\u30bf\u30a4\u30e0\u3067\u6697\u304f\u306a\u3063\u305f\u9699\u306b\u30d5\u30eb\u52c3\u8d77\u30c1\u25cb\u30dd\u3092\u30c1\u30e3\u30c3\u30af\u304b\u3089\u51fa\u3057\u3066\u30d1\u30f3\u30c6\u30a3\u30fc\u3054\u3068\u30de\u25cb\u30b3\u306b\u3081\u308a\u8fbc\u307e\u305b\u3066\u3082\u5f3a\u304f\u62d2\u5426\u3057\u306a\u3044\u5973\u306e\u5b50\u306b\u306f\u5f3a\u5f15\u306b\u30d1\u30f3\u30c4\u3092\u30ba\u30e9\u3057\u3066\u30ba\u30c3\u30d7\u30b7\u633f\u5165\uff01\u601d\u3044\u3063\u5207\u308a\u30cf\u30c3\u30b9\u30eb\u3057\u3066\u30e4\u30ea\u307e\u3057\u305f\uff01"], "image_paths": ["full/52c0b4ff843acaac79e72ed584c74aa9d6391bd5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49838.jpg"]}
{"url": ["/htm/mp46/49837.htm"], "text": ["\u56f3\u4e66\u9986\u3067\u52c9\u5f3a\u4e2d\u306e\u771f\u9762\u76ee\u30a6\u30d6\u5973\u5b50\u6821\u751f\u3092\u56fa\u5b9a\u5a9a\u85ac\u30d0\u30a4\u30d6\u62d8\u675f\u3067\u4eba\u77e5\u308c\u305a\u30a4\u30ab\u30bb\u307e\u304f\u308c\uff01"], "image_paths": ["full/d697887873da2c01161447705eae7cfc324d047c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49837.jpg"]}
{"url": ["/htm/mp46/49836.htm"], "text": ["\u663c\u4e0b\u304c\u308a\u306e\u4eba\u59bb\u306f\u30de\u30c3\u30b5\u30fc\u30b8\u4e2d\u306b\u30ab\u30fc\u30c6\u30f3\u306e\u90bb\u304b\u3089\u30bb\u30c3\u30af\u30b9\u3057\u3066\u3044\u308b\u5598\u304e\u58f0\u304c\u95fb\u3053\u3048\u3066\u304d\u305f\u3089\u3001\u5b9f\u306fAV\u304c\u6d41\u308c\u3066\u3044\u308b\u3060\u3051\u3068\u3082\u77e5\u3089\u305a\u30bb\u30af\u30cf\u30e9\u30de\u30c3\u30b5\u30fc\u30b8\u5e08\u306b\u62b5\u6297\u3059\u308b\u4e8b\u3082\u65e0\u304f\u30ab\u30e9\u30c0\u3092\u8bb8\u3057\u3066\u3057\u307e\u3046\u306e\u304b\uff01\uff1f\u3084\u3063\u3066\u307f\u305f\uff01"], "image_paths": ["full/aa300d73621cc92b8d278385a65156aff1fe48cb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49836.jpg"]}
{"url": ["/htm/mp46/49841.htm"], "text": ["\u4e00\u70b9\u306e\u6619\u308a\u3082\u306a\u304f\u51db\u3068\u3057\u3066\u7f8e\u3057\u3044\u4eba\u59bb \u4eca\u4e95 \u771f\u7531\u7f8e 37\u6b73 \u7b2c3\u7ae0 \u65e6\u90a3\u304c\u4ed5\u4e8b\u304b\u3089\u5e30\u308b\u307e\u3067\u306e9\u65f6\u95f4\u305a\u30fc\u3063\u3068\u6c17\u6301\u3061\u826f\u304f\u306a\u3063\u3066\u3044\u305f\u3044 \u81ea\u5b85\u306e\u5ead\u3001\u8f66\u3001\u30db\u30c6\u30eb\u3067\u30b9\u30b1\u30d9\u6c41\u3092\u55b7\u304d\u6f0f\u3089\u3057\u306a\u304c\u3089\u65e6\u90a3\u3092\u5fd8\u308c\u3066\u4eba\u751f\u3067\u4e00\u756a\u305f\u304f\u3055\u3093\u7d76\u9876\u3057\u305f\u65e5"], "image_paths": ["full/9481d10b2d5b95be51dd4f965ee6ad47114a23fb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49841.jpg"]}
{"url": ["/htm/mp46/49840.htm"], "text": ["\u672c\u804c\u3001\u6d45\u8349\u30ed\u30c3\u30af\u5ea7 \u8e0a\u308a\u5b50 \u89b3\u6708\u594f 19\u6b73 \u5feb\u611f\u306b\u8eab\u4f53\u304c\u4ef0\u3051\u53cd\u308b\u8fde\u7d9a\u7d76\u98764\u672c\u756a"], "image_paths": ["full/eab2d4797768440652ca33a28aa33c451f93a6f3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49840.jpg"]}
{"url": ["/htm/mp46/49842.htm"], "text": ["\u300c\u79c1\u307f\u305f\u3044\u306b\u53ef\u7231\u3044\u3051\u308c\u3070\u3001AV\u3067\u3082\u30c8\u30c3\u30d7\u306b\u306a\u308c\u308b\u3068\u601d\u3044\u307e\u3059\uff01\u300d\u4e16\u95f4\u77e5\u3089\u305a\u304c\u6545\u306bAV\u3092\u7518\u304f\u89c1\u3066\u3044\u308b\u3001\u3061\u3087\u3063\u3068\u751f\u610f\u6c17\u3060\u3051\u3069\u3001\u618e\u3081\u306a\u3044\uff01\uff1f\u4e0a\u539f\u4e9c\u8863\u3092\u8d85\u3048\u308b\u6709\u540d\u5973\u4f18\u306b\u306a\u308a\u305f\u3044\uff01\u3068\u3044\u3046\u4e0a\u5347\u5fd7\u5411\u306e\u3042\u308b\u65b0\u4eba\u89c1\u3064\u3051\u307e\u3057\u305f\uff01\uff01\u77f3\u539f\u3086\u3046\u304b AV Debut \u79c1\u306e\u76ee\u6807\u306f\u4e0a\u539f\u4e9c\u8863\u3061\u3083\u3093\u3067\u3059\uff01"], "image_paths": ["full/530342c9d71dec340e16b50febe03478c5e11b43.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49842.jpg"]}
{"url": ["/htm/mp46/49843.htm"], "text": ["\u300c\u598a\u5a20\u3057\u3066\u3082\u6784\u3044\u307e\u305b\u3093\u2026\u5927\u91cf\u306e\u7cbe\u5b50\u3092\u81a3\u5965\u306b\u6d41\u3057\u8fbc\u3093\u3067\u304f\u3060\u3055\u3044\uff01\u300dSNS\u306b\u81ea\u3089\u6295\u7a3f\u3057\u3066\u4e2d\u51fa\u3057\u5fd7\u613f \u5927\u5b66\u3067\u306f\u76ee\u7acb\u305f\u306a\u3044\u5730\u5473\u306a\u5973\u306e\u5b50\u304c\u590d\u6570\u30c1\u25cb\u30dd\u306b\u5815\u3061\u3066\u81ea\u3089\u7cbe\u996e\u307e\u3067\u3082\u6073\u613f\u3059\u308b"], "image_paths": ["full/c21673809b794754607ab174fdb12b8d9ac7ac49.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49843.jpg"]}
{"url": ["/htm/mp46/49845.htm"], "text": ["SOD\u5973\u5b50\u793e\u5458 \u300eSOD\u5973\u5b50\u793e\u5458\u4f5c\u54c1\u300f\u3078\u306e\u51fa\u6f14\u4ea4\u6e09\u3092\u53d7\u3051\u305f\u5973\u5b50\u793e\u5458\u8fbe \u64ae\u5f71\u524d\u306e\u30ab\u30e1\u30e9\u30c6\u30b9\u30c8\u3067\u672c\u7f16\u3067\u306f\u89c1\u305b\u306a\u304b\u3063\u305fH\u306a\u7d20\u989c\u3092\u89c1\u305b\u305f17\u540d AV\u4f1a\u793e\u3067\u50cd\u3044\u3066\u3044\u3066\u3082\u88f8\u3092\u64ae\u3089\u308c\u308b\u306e\u306f\u3082\u3061\u308d\u3093\u803b\u305a\u304b\u3057\u3044\u666e\u901a\u306e\u5973\u5b50\u304c\u52c7\u6c17\u3092\u51fa\u3057\u3066 \u30ab\u30e1\u30e9\u306e\u524d\u3067\u521d\u3081\u3066\u306e\u30aa\u30ca\u30cb\u30fc \u624b\u30b3\u30ad\u30d5\u30a7\u30e9 SEX"], "image_paths": ["full/8163ff40e582c0fdbf78494043a795e55dfac740.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49845.jpg"]}
{"url": ["/htm/mp46/49844.htm"], "text": ["\u30de\u30b8\u30c3\u30af\u30df\u30e9\u30fc\u53f7 \u3069\u3046\u3057\u3066\u3082\u5352\u4e1a\u3067\u304d\u306a\u304b\u3063\u305f\u7ae5\u8d1e\u6551\u6e08\u30b7\u30ea\u30fc\u30ba \u300c\u65e0\u6599\u30de\u30c3\u30b5\u30fc\u30b8\u4f53\u9a13\u3092\u3057\u307e\u305b\u3093\u304b\uff1f\u300d\u3068\u58f0\u3092\u304b\u3051\u305f\u6709\u540d\u304a\u5b22\u69d8\u5b66\u6821\u306b\u901a\u3046\u6e05\u695a\u306a\u5973\u5b50\u5927\u751f\u3092\u7ae5\u8d1e\u541b\u304c\u7535\u30de\u30678\u56de\u7d76\u9876\u6fc0\u30a4\u30ab\u30bb\uff01\u610f\u8bc6\u304c\u98de\u3093\u3067\u3044\u308b\u95f4\u306b\u7ae5\u8d1e\u30c1\u25cb\u30dd\u3092\u3053\u3063\u305d\u308a\u633f\u5165\uff01"], "image_paths": ["full/57171ca192940178e6b7833866dda5b58a721111.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49844.jpg"]}
{"url": ["/htm/mp46/49847.htm"], "text": ["\u300c\u3082\u3063\u3068\u6c17\u6301\u3061\u826f\u3044H\u304c\u3057\u3066\u307f\u305f\u3044\u300d\u4eca\u5bab\u3044\u305a\u307f 19\u6b73 SOD\u5c02\u5c5eAV\u30c7\u30d3\u30e5\u30fc"], "image_paths": ["full/7e1d249b319116b24fa005db718711062df8a1c6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49847.jpg"]}
{"url": ["/htm/mp46/49846.htm"], "text": ["\u91cd\u306a\u308a\u307e\u25cb\u3053\u306b\u8fde\u7d9a\u3067\uff01\u5927\u91cf\u306b\uff01\u4e2d\u51fa\u3057\u3057\u653e\u9898 \u68a6\u306e\u30e9\u30d6\u30e9\u30d6\u59c9\u59b9\u4e3c\u751f\u6d3b"], "image_paths": ["full/e98c9130567ee31bf105866dc8e1487ac50c4ef0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49846.jpg"]}
{"url": ["/htm/mp46/49848.htm"], "text": ["\u300c\u610f\u8bc6\u304c\u98de\u3073\u305d\u3046\u306b\u306a\u308b\u304f\u3089\u3044\u30a4\u30c3\u3066\u307f\u305f\u3044\u2026\u300d\u521d\u3081\u3066\u7d4c\u9a13\u3059\u308b\u75c9\u631b\u7d76\u53eb\u30de\u30b8\u30a4\u30adSEX \u51c9\u6d77\u307f\u3055 19\u6b73"], "image_paths": ["full/f0ef9bf1227aa4441d30731a36e94b92ac0302ad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49848.jpg"]}
{"url": ["/htm/mp46/49849.htm"], "text": ["\u4e2d\u51fa\u3057\u3067\u304d\u308b\u4eba\u59bb\u56de\u6625\u30a8\u30b9\u30c6"], "image_paths": ["full/e36ad1ab74e9549606e9898553f84be724d6a559.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49849.jpg"]}
{"url": ["/htm/mp46/49851.htm"], "text": ["\u5909\u6001\u5c3b\u30d5\u30a7\u30c1\u306e\u305f\u3081\u306e\u58c1\u5c3b\u98ce\u4fd7\u5e97"], "image_paths": ["full/6dff02de5f354314522dde09c3820e61a005e917.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49851.jpg"]}
{"url": ["/htm/mp46/49850.htm"], "text": ["\u79c1\u7acb\u30b9\u30da\u30ec\u30ba\u5973\u5b66\u9662 2 \u58c1\u30c1\u25cb\u30dd\u90e8\u6d3b\u52a8\u7f16"], "image_paths": ["full/e9a97c367b4a28510c01c9dad0aaf5baee227f48.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49850.jpg"]}
{"url": ["/htm/mp46/49853.htm"], "text": ["\u5973\u5b50\u30a2\u30ca\u304c\u30d1\u30a4\u30ba\u30ea\u5de8\u4e73\u30fc\u30b9SHOW \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/6e29473ee766e810ea459c76a612d1b264983008.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49853.jpg"]}
{"url": ["/htm/mp46/49854.htm"], "text": ["\u6d53\u539a\u63a5\u543b\u3002\u6027\u6b32\u3092\u89e3\u653e\u3055\u305b\u3066\u6b32\u6c42\u4e0d\u6e80\u3092\u4e49\u7406\u306e\u606f\u5b50\u306b\u3076\u3064\u3051\u308b\u304a\u6bcd\u3055\u3093 \u7b39\u672c\u6893"], "image_paths": ["full/a51d0481269b490b0bdaa884316d06b881b403ba.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49854.jpg"]}
{"url": ["/htm/mp46/49852.htm"], "text": ["\u9ed2\u30ae\u30e3\u30eb\u30d3\u30c3\u30c1\u306a\u5c04\u7cbe\u7ba1\u7406 3 \u4e0a\u539f\u82b1\u604b \u85e4\u672c\u7d2b\u5a9b"], "image_paths": ["full/3a2b3bfec3e1cb66d42aa21a3e41e4e2878b8430.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49852.jpg"]}
{"url": ["/htm/mp46/49856.htm"], "text": ["\u5a9a\u85ac\u00d7\u4e21\u624b\u62d8\u675f\u00d7\u7126\u3089\u3057 1cm\u5148\u306e\u30c1\u25cb\u30dd\u3092\u8210\u3081\u3055\u305b\u3066\u3082\u3089\u3048\u305a\u6027\u6b32\u7206\u767a \u773c\u955c\u304c\u4f3c\u5408\u3046\u540c\u50da"], "image_paths": ["full/76208175eb665327cfe0bf73a1b5c80f3721474a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49856.jpg"]}
{"url": ["/htm/mp46/49855.htm"], "text": ["\u30d1\u30a4\u30ba\u30ea\u3060\u3051\u306e\u306f\u305a\u304c\u2026\u5de8\u4e73\u3067\u631f\u3080\u7ae5\u8d1e\u30c1\u25cb\u30dd\u306e\u521d\u3005\u3057\u3044\u53cd\u5fdc\u306b\u5174\u594b\u3057\u3060\u3057\u300c\u79c1\u3067\u3044\u3044\u306a\u3089\u300d\u4f18\u3057\u304f\u7b14\u304a\u308d\u3057\uff01"], "image_paths": ["full/ea23ef1904f94572c5c69a32e67a491451a2f48b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49855.jpg"]}
{"url": ["/htm/mp46/49861.htm"], "text": ["\u30de\u30de\u53cb\u306e\u30e4\u30ea\u30b5\u30fc\uff01\uff01\u5b50\u4f9b\u304c\u540c\u3058\u5e7c\u25cb\u56ed\u306b\u901a\u3046\u30de\u30de\u305f\u3061\u5927\u4eba\u306e\u30b5\u30fc\u30af\u30eb \u5b50\u4f9b\u304c\u5e7c\u25cb\u56ed\u306b\u901a\u3063\u3066\u308b\u95f4\u306b\u5b50\u4f9b\u306e\u53cb\u8fbe\u306e\u30d1\u30d1\u306b\u4e2d\u51fa\u3057\u3092\u305b\u304c\u3080\u30de\u30de\u305f\u3061\u2026"], "image_paths": ["full/f09347902fac5248930cd764c8b7ea93483a2df0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49861.jpg"]}
{"url": ["/htm/mp46/49859.htm"], "text": ["\u300c\u4e2d\u51fa\u3057\u3060\u3051\u306f\u2026\u300d\u72af\u3057\u305f\u59c9\u306b\u5c04\u7cbe\u76f4\u524d\u3067\u5acc\u304c\u3089\u308c\u534a\u5916\uff01\u3067\u3082\u4e2d\u306b\u51fa\u3057\u305f\u304f\u3066\u65e0\u7406\u3084\u308a\u534a\u4e2d\uff01"], "image_paths": ["full/4350c9b940c3a667e8f1f176fba1be6a706a21f8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49859.jpg"]}
{"url": ["/htm/mp46/49860.htm"], "text": ["\u90bb\u306e\u7537\u5b50\u6821\u751f\u306e\u30aa\u30ab\u30ba\u306b\u3055\u308c\u3066\u3044\u308b\u3068\u6c17\u3065\u3044\u305f\u4eba\u59bb\u304c\u305d\u306e\u573a\u3067\u9a6c\u4e57\u308a\u9006\u5373\u30cf\u30e1"], "image_paths": ["full/33a0021e276f3f58868323ef194c1a6cca33b829.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49860.jpg"]}
{"url": ["/htm/mp46/49857.htm"], "text": ["\u75f4\u6c49OK\u5a18 VOL.14 \u30e6\u30fc\u30b6\u30fc\u30ea\u30af\u30a8\u30b9\u30c8SP"], "image_paths": ["full/16a85ce6ea30fb447cc4bcbe3ac4a849e7b41124.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49857.jpg"]}
{"url": ["/htm/mp46/49863.htm"], "text": ["\u30da\u30cb\u30b7\u30e3\u30eb\u30a8\u30b9\u30c6\u30de\u30c3\u30b5\u30fc\u30b8"], "image_paths": ["full/a3e6466cc9d4de6bfeebadf485a32bbf480e6682.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49863.jpg"]}
{"url": ["/htm/mp46/49865.htm"], "text": ["\u5e38\u306b\u4e73\u9996\u8d23\u3081\u30e1\u30f3\u30ba\u30a8\u30b9\u30c6"], "image_paths": ["full/e7c9ac71dc035e7f212058dcd84203a0720f6750.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49865.jpg"]}
{"url": ["/htm/mp46/49864.htm"], "text": ["\u7d20\u4eba\u30ca\u30f3\u30d1 \u4f1a\u793e\u306e\u4e0a\u53f8\u3068\u90e8\u4e0b\u304c\u6311\u6226\uff01\u3059\u3050\u306b\u7834\u308c\u308b\u30e9\u30c3\u30d7\u8d8a\u3057\u306e\u7d20\u80a1\u30b2\u30fc\u30e0\u3067\u8d4f\u91d1\u83b7\u5f97\uff01"], "image_paths": ["full/4b691ca7c43e30668f41d7722fedbbcb8d842c7e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49864.jpg"]}
{"url": ["/htm/mp46/49867.htm"], "text": ["\u6559\u3048\u5b50\u3092H\u306a\u30a4\u30bf\u30ba\u30e9\u3067\u304a\u52c9\u5f3a\u4e2d\u306b\u52c3\u8d77\u3055\u305b\u3001SEX\u307e\u3067\u3057\u3066\u3057\u307e\u3046\u8bf1\u60d1\u5bb6\u5ead\u6559\u5e08\u306f\u5b9f\u5728\u3059\u308b\u306e\u304b\uff01\uff1f"], "image_paths": ["full/87aab1c1e72b8c9c95aa156114c821ae35da521d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49867.jpg"]}
{"url": ["/htm/mp46/49866.htm"], "text": ["\u5bdd\u3066\u3044\u308b\u30ae\u30e3\u30eb\u306b\u30a4\u30bf\u30ba\u30e9\u3057\u3066\u3044\u305f\u3089\u9006\u306b\u751f\u30cf\u30e1\u3092\u6c42\u3081\u3089\u308c\u3066\u3001\u3082\u3046\u767a\u5c04\u3057\u305d\u3046\u306a\u306e\u306b\u30ab\u30cb\u3070\u3055\u307f\u3067\u30ed\u30c3\u30af\u3055\u308c\u3066\u9003\u3052\u3089\u305a\u305d\u306e\u307e\u307e\u4e2d\u51fa\u3057\uff01"], "image_paths": ["full/5e17bfd1b36ddafbd883e39bba75f5ff690c5f5d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49866.jpg"]}
{"url": ["/htm/mp46/49870.htm"], "text": ["\u30d1\u30f3\u30c4\u89c1\u3061\u3083\u30c0\u30e1\uff01\u30e4\u30ad\u30e2\u30c1\u59b9?\u5973\u5b50\u6821\u751f\u3068\u30d3\u30c3\u30c1\u306a\u304a\u53cb\u8fbe\u3002 \u5973\u5b50\u6821\u751f\u306e\u59b9\u304c\u53cb\u8fbe\u3068\u6e38\u3093\u3067\u3044\u3066\u3001\u53cb\u8fbe\u306e\u30d1\u30f3\u30c1\u30e9\u3092\u89c1\u3066\u3044\u305f\u3089\u59b9\u304c\u30e4\u30ad\u30e2\u30c1\u3092\u3084\u3044\u3066\u3001\u304a\u5144\u3061\u3083\u3093\u306e\u30d0\u30ab\uff01\u3068\u8a00\u3063\u3066\u7acb\u3061\u53bb\u308a\u3001\u6b8b\u3063\u305f\u53cb\u8fbe\u306f\u3082\u3063\u3068\u89c1\u305f\u3044\uff1f\u3068\u8a00\u3063\u3066\u8fd1\u5bc4\u3063\u3066\u304d\u3066\u30a8\u30c3\u30c1\u3057\u305f\u3002"], "image_paths": ["full/f5413534ed29fe1f179db57faf36dc928a446e93.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49870.jpg"]}
{"url": ["/htm/mp46/49869.htm"], "text": ["\u6e80\u5458\u30d0\u30b9\u306b\u4e57\u308a\u5408\u308f\u305b\u305f\u5148\u8f88OL\u3068\u4e0b\u534a\u8eab\u304c\u5bc6\u7740\u3057\u3066\u3057\u307e\u3044\u52c3\u8d77\u3055\u305b\u3066\u305f\u3089\u6012\u3089\u308c\u308b\u3069\u3053\u308d\u304b\u30c1\u25cb\u30dd\u3092\u63e1\u308a\u3057\u3081\u306a\u304c\u3089\u4ec6\u306b\u5fae\u7b11\u307f\u304b\u3051\u3066\u304d\u305f\u3001\u30a8\uff5e\uff1f\uff01\u3053\u3053\u3067\u30e4\u30c3\u3061\u3083\u3046\u3093\u3059\u304b\u30fc\uff1f\uff01\uff01"], "image_paths": ["full/9e2131ea938b3ec4a6306e28c6639ddce7f19982.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49869.jpg"]}
{"url": ["/htm/mp46/49868.htm"], "text": ["\u671d\u304b\u3089\u6669\u307e\u3067\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30b9 21 \u68ee\u661f\u3044\u307e\u308a"], "image_paths": ["full/309e747f5616229538c0334194361f0b35c67cf4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49868.jpg"]}
{"url": ["/htm/mp46/49873.htm"], "text": ["\u899a\u9192Gas\u30a2\u30af\u30e1\u8133\u9ac4\u30de\u30c7\u72c2\u30ef\u30bb\u30c6\u3001\u72af\u30eb\uff01\u6d77\u5916\u3067\u6d41\u884c\u4e2d\u306e\u5a9a\u85ac\u30ac\u30b9\u3092\u5438\u5f15 03 \u685c\u4e95\u3042\u3086"], "image_paths": ["full/fff9d147b87c32bbd474bc547d5c3bc19c300198.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49873.jpg"]}
{"url": ["/htm/mp46/49877.htm"], "text": ["\u767d\u77f3\u8309\u8389\u5948 \u65e5\u5e30\u308a\u306712\u767a\u5c04\u7cbe\u3057\u3061\u3083\u3046\u30e4\u30ea\u307e\u304f\u308a\u30a4\u30c1\u30e3\u30a4\u30c1\u30e3\u6e29\u6cc9\u65c5\u884c"], "image_paths": ["full/6ddb6a1c7e38a308b376ee19db6fd2277281dd5b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49877.jpg"]}
{"url": ["/htm/mp46/49875.htm"], "text": ["\u5357\u771f\u83dc\u679c \u8d85\u9ad8\u7ea7\u65b0\u4eba\u30bd\u30fc\u30d7\u5b22"], "image_paths": ["full/357ae23206ee5cd261ea9325e15398013b316817.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49875.jpg"]}
{"url": ["/htm/mp46/49872.htm"], "text": ["\u30d3\u30c3\u30b0\u30d0\u30f3\u30ed\u30fc\u30bf\u30fc\uff01\u81ea\u5206\u304b\u3089\u8170\u3092\u632f\u3063\u3066\u3001\u91ce\u5916\u6f6e\u5439\u304d\u3092\u30aa\u30cd\u30c0\u30ea\u3057\u3066\u304f\u308b\u9732\u51fa\u613f\u671b\u5a18 \u8ff9\u7f8e\u3057\u3085\u308a"], "image_paths": ["full/de149b81826381ce9bf5c99e7044f2d27713a30f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49872.jpg"]}
{"url": ["/htm/mp46/49874.htm"], "text": ["\u591c\u52e4\u75c5\u680b\u30ec\u30a4\u30d7 \u672c\u5f53\u306f\u5f85\u3063\u3066\u3044\u305f\u3093\u3058\u3083\u306a\u3044\u306e\uff1f\u591c\u4e2d\u4e00\u4eba\u3067\u50cd\u304f\u770b\u62a4\u5e08\u3092\u30c8\u30a4\u30ec\u3067\u3053\u3063\u305d\u308a\u30ec\u30a4\u30d7"], "image_paths": ["full/b599fc668b455c5b53f345956f9f836654b58c9f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49874.jpg"]}
{"url": ["/htm/mp46/49881.htm"], "text": ["\u7f8e\u5973\u3067\u91ce\u7363 \u6311\u767a\u30d0\u30c3\u30af\u4e2d\u51fa\u3057 \u6c34\u6ca2\u306e\u306e"], "image_paths": ["full/929056ddb44234a5839125618a7593638980742b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49881.jpg"]}
{"url": ["/htm/mp46/49879.htm"], "text": ["\u75f4\u5973\u3068\u540c\u681624\u65f6\u95f4\u4e2d\u51fa\u3057 AIKA"], "image_paths": ["full/96a62be5eb5e4aaad1f2776b293506c1ba93cf73.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49879.jpg"]}
{"url": ["/htm/mp46/49882.htm"], "text": ["\u75f4\u5973\u306e\u540c\u65f6\u30a4\u30ad\u4e2d\u51fa\u3057\uff5e\u7537\u5973\u5feb\u611fMAX3\u672c\u756a\uff5e \u5ddd\u4e0a\u3086\u3046"], "image_paths": ["full/0b1fdd8fc055dc0744233643c296ccdde0ef1f10.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49882.jpg"]}
{"url": ["/htm/mp46/49880.htm"], "text": ["\u65f6\u95f4\u65e0\u5236\u9650\uff01\u767a\u5c04\u65e0\u5236\u9650\uff01M\u7537\u5c02\u7528\u8d85\u9ad8\u7ea7\u4e2d\u51fa\u3057\u6deb\u8bed\u30bd\u30fc\u30d7 KAORI"], "image_paths": ["full/a5c3437abcabb335a147494b1d7afadc88bafa12.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49880.jpg"]}
{"url": ["/htm/mp46/49885.htm"], "text": ["\u4e94\u611f\u5c01\u3058SEX\uff013 \u6ce2\u591a\u91ce\u7ed3\u8863"], "image_paths": ["full/255a64a907b75e5422b17ec08c72428d303f51c1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49885.jpg"]}
{"url": ["/htm/mp46/49883.htm"], "text": ["\u521a\u6bdb\u30ec\u30ba\u30d3\u30a2\u30f34 \u6c34\u539f\u3055\u306a \u7fbd\u6708\u5e0c"], "image_paths": ["full/dd99ec2e5cb19427d8682f19078b517a8a60a659.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49883.jpg"]}
{"url": ["/htm/mp46/49887.htm"], "text": ["\u613f\u671b\u53f6\u3046\u4e0d\u601d\u8bae\u306a\u6027\u611f\u30a8\u30ec\u30d9\u30fc\u30bf\u30fcvol03 \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/50c243c8e1d6ba556bb0e9c0ccbdcc8eb449f535.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49887.jpg"]}
{"url": ["/htm/mp46/49884.htm"], "text": ["\u5bf8\u6b62\u3081SEX \u304a\u613f\u3044\u3060\u304b\u3089\u30a4\u30ab\u305b\u3066\u304f\u3060\u3055\u3044\u20265 \u68ee\u6ca2\u304b\u306a"], "image_paths": ["full/686d43c5980d77eeb19ef331c3ce0b69b9e30082.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49884.jpg"]}
{"url": ["/htm/mp46/49890.htm"], "text": ["\u5373\u30cf\u30e1\uff01\uff0116 \u7fbd\u7530\u7483\u5b50"], "image_paths": ["full/f83a9ead74d91e2806e9e2de709d5e2f2454f54f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49890.jpg"]}
{"url": ["/htm/mp46/49889.htm"], "text": ["\u79c1\u306f\u5c0f\u3055\u306a\u753a\u306e\u4e0d\u52a8\u4ea7\u5c4b\u306e\u4e8b\u52a1\u54586 \u304b\u3059\u307f\u679c\u7a42"], "image_paths": ["full/c711cfaf513e870efdb2d79640cd9613d39070f7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49889.jpg"]}
{"url": ["/htm/mp46/49888.htm"], "text": ["\u30d0\u30c42\u306e\u4e0d\u8d1e\u59bb5 \u5439\u77f3\u308c\u306a"], "image_paths": ["full/72022439b9edb687371ff2686038344ababd37d9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49888.jpg"]}
{"url": ["/htm/mp46/49886.htm"], "text": ["\u9b45\u60d1\u306e\u30ad\u30e3\u30e9\u30c1\u30a7\u30f3\u4e03\u5909\u53163 \u98ce\u95f4\u3086\u307f"], "image_paths": ["full/a4a8c8664c2b3073cfe8988c1ba2e1f738247921.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49886.jpg"]}
{"url": ["/htm/mp46/49891.htm"], "text": ["\u306a\u3081\u304f\u3058\u5973\u623f3 \u521d\u7f8e\u6c99\u5e0c"], "image_paths": ["full/db59bd9a52cd3b0ccb91253093d17ad5e8c7795f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49891.jpg"]}
{"url": ["/htm/mp46/49897.htm"], "text": ["\u5343\u53f6\u306e\u30c1\u30e7\u30a4\u7530\u820e\u5728\u4f4f\u306e\u30e4\u30ea\u30de\u30f3JK?\u7f8e\u9999\u300c\u30aa\u30c8\u30b3\u306e\u4eba\u3068\u521d\u3081\u3066\u65c5\u884c\u306b\u6765\u307e\u3057\u305f\u2026\u3002\u300d \u4e09\u5b85\u7f8e\u9999"], "image_paths": ["full/e4c4b58f33e696c861df49aed1dd8c09fc4972e7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49897.jpg"]}
{"url": ["/htm/mp46/49893.htm"], "text": ["\u7f8e\u4eba\u9b54\u597393 \u3086\u3046\u3053 32\u6b73"], "image_paths": ["full/3c0948fc513c039cfdec6a67007940fbd4a0670a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49893.jpg"]}
{"url": ["/htm/mp46/49892.htm"], "text": ["\u30a2\u30ca\u30eb\u8210\u3081\u9ad8\u7ea7\u75f4\u5973\u30b5\u30ed\u30f310 \u897f\u6761\u6c99\u7f57"], "image_paths": ["full/086ee716f377a2ae0d15e223dd168a97948352bb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49892.jpg"]}
{"url": ["/htm/mp46/49899.htm"], "text": ["\u30c0\u30de\u3067\u4e2d\u51fa\u3057 \u30ca\u30f3\u30d1\u8fde\u308c\u8fbc\u307f\u7d20\u4eba\u59bb \u30ac\u30c1\u3067\u76d7\u64ae\u65e0\u65ad\u3067\u767a\u58f2 22"], "image_paths": ["full/993806e269f49faedef443f09c34916c3d7270b7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49899.jpg"]}
{"url": ["/htm/mp46/49895.htm"], "text": ["\u5b66\u6821\u3067\u8bc4\u5224\u306e\u30b9\u30dd\u30fc\u30c4\u7cfbJK\u306f\u30db\u30c6\u30eb\u306b\u8fde\u308c\u8fbc\u307e\u308c\u30c9\u30ed\u30c9\u30ed\u306e3P\u30bb\u30c3\u30af\u30b9\u306b\u5815\u3061\u308b\u2026\u3002 \u51c9\u5bab\u306e\u3093"], "image_paths": ["full/a0d9149134273f2c6296b66865b2e4ce34414539.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49895.jpg"]}
{"url": ["/htm/mp46/49901.htm"], "text": ["\u79c1\u3001\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3055\u3093\u3068\u51fa\u6765\u3066\u307e\u3059\u2026\uff01\uff01\u79cd\u4ed8\u3051\u4e2d\u51fa\u3057\u3092\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u3067\u697d\u3057\u3080\u5973\u4f18\u305f\u3061"], "image_paths": ["full/43b9fcce795edafec339112ff10c375abc7ee703.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49901.jpg"]}
{"url": ["/htm/mp46/49900.htm"], "text": ["\u4e2d\u51fa\u3057\u30b7\u30f3\u30c7\u30ec\u30e9\uff5e20\u65f6\u306b\u7d76\u5bfe\u672c\u7269\u4e2d\u51fa\u3057\u89e3\u7981\u3059\u308b\u30c7\u30fc\u30c8\uff5e"], "image_paths": ["full/d904be1e969d8bc56db9285c13d4aa455a28d08c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49900.jpg"]}
{"url": ["/htm/mp46/49898.htm"], "text": ["\u81ea\u3089\u8170\u3092\u632f\u3063\u3066\u304c\u3063\u3064\u304f\u5965\u3055\u3093www \u7d20\u4eba\u5965\u3055\u3093\u3054\u9a70\u8d70\u69d8\u3067\u3057\u305f\u3002\u5168\u56fd\u7e26\u65ad\u300cMaji\u300d100\uff05\u30ca\u30f3\u30d1 \u5185\u623f\u3088\u308a\u3082\u5916\u623f\u3088\u308a\u3082\u8089\u68d2\u304c\u597d\u304d\uff01 \u4e2d\u3067\u3082\u5916\u3067\u3082\u30a4\u30ad\u307e\u304f\u308b\u5343\u53f6\u7f8e\u4eba\u82e5\u59bb\u7f16"], "image_paths": ["full/b80564b3f94d734cbb87674ce606dd01ef154323.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49898.jpg"]}
{"url": ["/htm/mp46/49903.htm"], "text": ["\u989c\u51fa\u3057NG\u4e2d\u51fa\u3057OK\u7d20\u4eba\u5a18\u3002 \u308c\u306a\u3061\u3083\u3093"], "image_paths": ["full/52dab5ff81bb73dccfb505e90ee69c16ac0a9ed4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49903.jpg"]}
{"url": ["/htm/mp46/49902.htm"], "text": ["\u5f15\u9000\u524d\u591c\u796d \u30ac\u30c1\u7d20\u4eba\u6551\u6e08\u4f01\u753b\uff01100\u4eba\u00d7\u4e2d\u51fa\u3057\u5f15\u9000\u7248\u3078\u306e\u9053 \u4e0a\u539f\u4e9c\u8863"], "image_paths": ["full/0f53fe70e314a86c6057d98ce5b7b5699b460402.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49902.jpg"]}
{"url": ["/htm/mp46/49905.htm"], "text": ["\u654f\u611f?\u75c9\u631b?\u6fc0\u5c04\u4e2d\u51fa\u3057\u3067\u4e73\u9996\u30d3\u30c3\u30af\u30f3\uff01 \u3042\u3079\u307f\u304b\u3053"], "image_paths": ["full/dd26c4e775abce067cbe7acd82574c9c2e07b86a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49905.jpg"]}
{"url": ["/htm/mp46/49904.htm"], "text": ["\u5f7c\u5973\u306e\u59b9\u306b\u7231\u3055\u308c\u3059\u304e\u3066\u3053\u3063\u305d\u308a\u5b50\u4f5c\u308a\u6027\u6d3b \u7231\u987b\u5fc3\u4e9c"], "image_paths": ["full/b7bfa1ae2acbb1e10afe6caadc1085709ef8009a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49904.jpg"]}
{"url": ["/htm/mp46/49906.htm"], "text": ["\u3059\u3093\u3054\u3044\u4e73\u9996\u8d23\u3081\u3067\u4e2d\u51fa\u3057\u3092\u8bf1\u3046\u8fde\u7d9a\u81a3\u69a8\u308a\u75f4\u5973\u30ae\u30e3\u30eb AIKA"], "image_paths": ["full/a60dd2cde28b550e7c6ff861ca5ec52aa29a70aa.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49906.jpg"]}
{"url": ["/htm/mp46/49910.htm"], "text": ["\u30a4\u30f3\u30c6\u30ea\u7cfb\u5973\u5b50\u5927\u751f\u304c\u67d0\u6709\u540d\u79c1\u7acb\u5927\u5b66\u30e4\u30ea\u30b5\u30fc\u306b\u5165\u90e8\uff01\uff5e\u53c2\u52a0\u3057\u305f\u65b0\u6b53\u5408\u5bbf\u3067\u8d77\u304d\u305f\u4e2d\u51fa\u3057\u4e71\u4ea4\u306e\u5b9f\u6001\uff5e \u677f\u91ce\u30e6\u30a4\u30ab"], "image_paths": ["full/de0c9a223df2275b8697d7a35b849ff1979a7323.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49910.jpg"]}
{"url": ["/htm/mp46/49908.htm"], "text": ["\u7d76\u5bfe\u306b\u7cbe\u5b50\u3092\u6ea2\u3057\u3061\u3083\u3044\u3051\u306a\u3044 \u3044\u3044\u306a\u308a\u4e2d\u51fa\u3057\u6563\u6b69 \u5927\u5c9b\u7f8e\u7eea"], "image_paths": ["full/531115b5be0893c2855ed60f12cac59577c8316e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49908.jpg"]}
{"url": ["/htm/mp46/49909.htm"], "text": ["\u7d76\u5bfe\u598a\u5a20\uff01\u30ac\u30f3\u53cd\u308a\u751f\u30c1\u25cb\u30dd\u3067\u5b55\u307e\u305b\u4e2d\u51fa\u3057SEX\uff01 \u6da9\u8c37\u679c\u6b69"], "image_paths": ["full/10c5538b55623518a0c8755d5ef1f2c0012614a9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49909.jpg"]}
{"url": ["/htm/mp46/49911.htm"], "text": ["\u798f\u5188\u306e\u5973\u6027\u30b7\u30f3\u30ac\u30fcAV\u30c7\u30d3\u30e5\u30fc \u8def\u4e0a\u6f14\u594f\u4e2d\u306b\u30c7\u30d3\u30e5\u30fc\u3057\u307e\u305b\u3093\u304b\uff1f\u3068\u58f0\u3092\u304b\u3051\u305f\u3089\u305d\u306e\u65e5\u306b\u4e2d\u51fa\u3057\u307e\u3067\u51fa\u6765\u3061\u3083\u3063\u305f\uff01\uff01 \u306a\u304a"], "image_paths": ["full/aeb746768436e1b38fd4b48e82384416e5f361ba.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49911.jpg"]}
{"url": ["/htm/mp46/49916.htm"], "text": ["HYPER FETISH \u30cf\u30a4\u30ec\u30b0\u3044\u3084\u3089\u3057\u30af\u30a3\u30fc\u30f3 \u5ddd\u702c\u9ebb\u8863"], "image_paths": ["full/8e4d5fa73cecfcd2a6e8a454589f708995004231.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49916.jpg"]}
{"url": ["/htm/mp46/49915.htm"], "text": ["\u30a4\u30b1\u30a4\u30b1\u30e4\u30ea\u30de\u30f3\u30ae\u30e3\u30eb\u820c\u30d9\u30ed\u30da\u30edM\u7537\u30b6\u30fc\u30e1\u30f3\u72e9\u308a \u4e38\u5c71\u308c\u304a\u306a"], "image_paths": ["full/6b0ac6cae09122e1cb37b370b3fc3622c054d119.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49915.jpg"]}
{"url": ["/htm/mp46/49914.htm"], "text": ["AV\u5f15\u9000\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3 \u9042\u306b\u521d\u89e3\u7981\uff01\uff01\u771f\u6b63\u4e2d\u51fa\u3057\u89e3\u7981 \u304b\u3059\u307f\u679c\u7a42"], "image_paths": ["full/85b3b67b1ec66ace87c38ad8cb0748833d3d33fe.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49914.jpg"]}
{"url": ["/htm/mp46/49913.htm"], "text": ["\u30b7\u30f3\u30ac\u30fc\u306b\u623b\u308a\u305f\u304f\u3066\u2026\u4eba\u751f\u521d\u306e\u771f\u6b63\u4e2d\u51fa\u3057\u89e3\u7981\uff01\uff01\uff01 \u690e\u540d\u305d\u3089"], "image_paths": ["full/c654937ee861b5a73c642a8089afe0c1eeaccdb4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49913.jpg"]}
{"url": ["/htm/mp46/49912.htm"], "text": ["3\u624d\u30685\u624d\u306e\u7537\u306e\u5b50\u3092\u6301\u30642\u5150\u306e\u30de\u30de\u304c\u30013\u4eba\u76ee\u306f\u5973\u306e\u5b50\u304c\u6b32\u3057\u3044\u3068\u6073\u613f\uff01\u65e6\u90a3\u306b\u5185\u7eea\u3067\u3001\u6392\u5375\u65e5\u306b\u5408\u308f\u305b\u3066\u2026\u771f\u6b63\u4e2d\u51fa\u3057\u89e3\u7981 \u4f50\u3005\u6728\u3042\u304d"], "image_paths": ["full/faa903aed94e57fc279e4aaf32f824dde8645d66.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49912.jpg"]}
{"url": ["/htm/mp46/49918.htm"], "text": ["\u300c\u51c4\u3044\u6c17\u6301\u3061\u3044\u3044\u306d\u2026\u30ad\u30b9\u2026\u3002\u300d\u304a\u3058\u3055\u3093\u98df\u580210 \u30ad\u30b9\u3067\u30a4\u30c3\u3061\u3083\u3046\u3093\u3058\u3083\u306a\u3044\u304b\u3063\u3066\u307b\u3069\u611f\u3058\u3084\u3059\u3044\u5965\u3055\u3093\u306e\u624b\u6599\u7406\u3068\u30bb\u30c3\u30af\u30b9\u304c\u4e8c\u3064\u306e\u610f\u5473\u3067\u30aa\u30a4\u30b7\u30a4\u3002 \u4e0a\u539f\u4e9c\u8863"], "image_paths": ["full/986f406f2566f2bab7531a78c57a8d3f92528088.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49918.jpg"]}
{"url": ["/htm/mp46/49917.htm"], "text": ["\u30c1\u25cf\u30dd\u633f\u5165\u3057\u305f\u9014\u7aef\u306b\u6d99\u76eewww \u30de\u30b8\u3063\u3059\u304b\uff01\uff1f \u53ef\u7231\u3044\u8fc7\u304e\u308b\u30e4\u30f3\u30ad\u30fc\u5a18\u30c7\u30d3\u30e5\u30fc\uff01 \u82b1\u604b \u6016\u305d\u3046\u306a\u30aa\u30e9\u30aa\u30e9\u7cfb\u4e0d\u826f\u5a18\u304c\u304a\u3058\u3055\u3093\u3068\u30bb\u30c3\u30af\u30b9\u3059\u308b\u65f6\u306e\u30ae\u30e3\u30c3\u30d7\u304c\u8d85\u30aa\u30c8\u30e1\u3002 \u4e0a\u539f\u82b1\u604b"], "image_paths": ["full/3b2a41a0d527bb94d914200959cfcaaec323477f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49917.jpg"]}
{"url": ["/htm/mp46/49920.htm"], "text": ["\u30cf\u30e1\u30ab\u30f3\u7279\u547d\uff01\u30cf\u30e1\u307e\u304f\u308a\u30ab\u30f3\u30d1\u30cb\u30fc"], "image_paths": ["full/272b9f0ebbfc1dcb9c87cfb58766074da1c2b825.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49920.jpg"]}
{"url": ["/htm/mp46/49924.htm"], "text": ["\u30a2\u30a4\u30a2\u30f3\u30af\u30ea\u30e0\u30be\u30f310 \u897f\u7530\u30ab\u30ea\u30ca"], "image_paths": ["full/b5b2958390be7376dc1660393f7129e3ebba9ac7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49924.jpg"]}
{"url": ["/htm/mp46/49921.htm"], "text": ["\u304b\u3059\u307f\u679c\u7a42 \u30d5\u30a1\u30a4\u30ca\u30eb\u30ad\u30e3\u30ce\u30f3\u30dc\u30fc\u30eb"], "image_paths": ["full/f2012e29030f303991a99dad5b4169f834dc5712.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49921.jpg"]}
{"url": ["/htm/mp46/49922.htm"], "text": ["\u8d35\u65b9\u306e\u4e3a\u306b\u72af\u3055\u308c\u308b\u30cf\u30fc\u30c9\u30aa\u30ca\u30cb\u30fc\u30b5\u30dd\u30fc\u30c8 \u5927\u5c9b\u7f8e\u7eea"], "image_paths": ["full/d5235f6894723954202159349ed05ee817780681.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49922.jpg"]}
{"url": ["/htm/mp46/49926.htm"], "text": ["\u521d\u64ae\u308a\u304a\u3070\u3055\u3093\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 \u693f\u5343\u6625"], "image_paths": ["full/24ced59507697f8ccc6ba0a3b0bb00aeca9cb8fb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49926.jpg"]}
{"url": ["/htm/mp46/49919.htm"], "text": ["\u3046\u3061\u306e\u59bb\u306b\u304b\u304e\u3063\u3066\u2026\u300c\u3042\u306830\u5206\u3067\uff08\u4e3b\u4eba\u304c\uff09\u5e30\u3063\u3066\u304d\u3061\u3083\u3046\u2026\u300d\u6d99\u76ee\u306b\u306a\u308a\u306a\u304c\u3089\u305d\u3046\u8a00\u3046\u3068\u4ec6\u306e\u59bb\u306f\u4ed6\u306e\u7537\u306b\u30ab\u30e9\u30c0\u3092\u8bb8\u3057\u305f \u3010\u5bdd\u53d6\u3089\u308c\u3011\u4eba\u59bb\u4e2d\u51fa\u3057\u3010NTR\u301119 \u5185\u5c71\u307e\u3044"], "image_paths": ["full/87b2d8cb233c804df7e4ea4d69eff381b5f7e2e4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49919.jpg"]}
{"url": ["/htm/mp46/49925.htm"], "text": ["\u606f\u5b50\u306e\u540c\u7ea7\u751f\u306b\u6bce\u65e5\u8f6e\u5978\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u670d\u90e8\u572d\u5b50"], "image_paths": ["full/4e336238bdff616faad70bca0cccebf0dc5a164b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49925.jpg"]}
{"url": ["/htm/mp46/49930.htm"], "text": ["\u30b0\u30e9\u30d3\u30a2\u30e2\u30c7\u30eb\u306b\u306a\u308a\u307e\u305b\u3093\u304b\uff1f\u3068\u58f0\u3092\u304b\u3051\u305f\u6e0b\u8c37\u7d20\u4eba\u5a18\u3092\u30dc\u30c7\u30a3\u30c1\u30a7\u30c3\u30af\u3068\u9a97\u3057\u3066\u8863\u670d\u3092\u8131\u304c\u305b\u3001\u67d0\u6709\u540d\u96d1\u5fd7\u306e\u5c02\u5c5e\u30e2\u30c7\u30eb\u306b\u306a\u308c\u308b\u3068\u30c1\u30e9\u3064\u304b\u305b\u305f\u3089\u51c4\u3044\u30c6\u30af\u30cb\u30c3\u30af\u3067\u7cbe\u5b50\u3092\u3069\u3074\u3085\u3069\u3074\u3085\u69a8\u308a\u53d6\u3063\u3066\u304f\u308c\u3061\u3083\u3044\u307e\u3057\u305f\u3002"], "image_paths": ["full/a1b728e80e34df0cfbecd152cd4fa8173e521b49.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49930.jpg"]}
{"url": ["/htm/mp46/49929.htm"], "text": ["\u7591\u3046\u4e8b\u3092\u77e5\u3089\u306a\u3044\u30d4\u30e5\u30a2\u8fc7\u304e\u308b18\u6b73G\u30ab\u30c3\u30d7\u306e\u73b0\u5f79\u30b0\u30e9\u30d3\u30a2\u30a2\u30a4\u30c9\u30eb\u304c\u68a6\u3092\u8ffd\u3063\u3066\u3044\u308b\u7537\u305f\u3061\u3092\u52a9\u3051\u308b\u4e3a\u306b\u4e00\u808c\u8131\u3044\u3067AV\u30c7\u30d3\u30e5\u30fc\uff01\uff01\u30ca\u30f3\u30d1JAPAN EXPRESS Vol.39"], "image_paths": ["full/347f1ed0881d2092e0d67f9cc7ac8762a6fb0aae.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49929.jpg"]}
{"url": ["/htm/mp46/49931.htm"], "text": ["\u30cf\u30ed\u30a6\u30a3\u30f3\u7d20\u4eba\u4e2d\u51fa\u3057\u30ca\u30f3\u30d1 \u8857\u89d2\u3067\u3072\u3068\u304d\u308f\u76ee\u7acb\u3064\u53ef\u7231\u3044\u5973\u5b50\u3092\u30d1\u30fc\u30c6\u30a3\u30fc\u30eb\u30fc\u30e0\u306b\u8fde\u308c\u8fbc\u3093\u3067\u30ce\u30ea\u3068\u52bf\u3044\u3067\u4e2d\u51fa\u3057SEX\uff01"], "image_paths": ["full/202bda8d338f03c8f859b2d7bb3e92e2247c368a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49931.jpg"]}
{"url": ["/htm/mp46/49928.htm"], "text": ["\u67d0\u304a\u6c5f\u6238\u30c6\u30fc\u30de\u30d1\u30fc\u30af\u3067\u50cd\u304f\u5e7f\u544a\u724c\u5a18\u3092\u30ca\u30f3\u30d1\u3057\u3066\u8131\u304c\u305b\u3066\u307f\u305f\u3089\u3082\u3063\u3061\u308a\u7eaf\u767dGcup\u7f8e\u5de8\u4e73\uff01\u65ad\u308a\u5207\u308c\u306a\u3044\u4f18\u3057\u3044\u5973\u306e\u5b50\u3060\u3063\u305f\u306e\u3067\u3001\u305d\u306e\u307e\u307eAV\u30c7\u30d3\u30e5\u30fc\u3055\u305b\u3061\u3083\u3044\u307e\u3057\u305f\uff01\u30ca\u30f3\u30d1JAPAN EXPRESS Vol.40"], "image_paths": ["full/5083de95cfbf9f0c5b4360f21a369d8bdba4ae8d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49928.jpg"]}
{"url": ["/htm/mp46/49927.htm"], "text": ["\u59bb\u306e\u5165\u9662 \u901a\u3044\u4e49\u6bcd \u9999\u53d6\u3055\u3084\u304b"], "image_paths": ["full/144440af9e616d8b57d527208c8cdb2ebe034bfb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49927.jpg"]}
{"url": ["/htm/mp46/49933.htm"], "text": ["\u6570\u5206\u524d\u307e\u3067\u5927\u5b66\u751f\u3060\u3063\u305f\u5352\u4e1a\u5f0f\u5e30\u308a\u3067\u6d6e\u304b\u308c\u3066\u3044\u308b\u88b4\u5973\u5b50\u3092\u30ca\u30f3\u30d1\uff01\uff01\u795d\u3044\u9152\u3092\u632f\u308b\u821e\u3044\u30db\u30ed\u9154\u3044\u6c17\u5206\u306b\u3055\u305b\u3066\u65b0\u793e\u4f1a\u4eba\u306e\u30de\u25cf\u30b3\u306b\u30d3\u30b8\u30cd\u30b9\u30de\u30ca\u30fc\u3092\u53e9\u304d\u8fbc\u3080\u751f\u30c1\u25cf\u30ddSEX\uff01\uff01"], "image_paths": ["full/d6c8a9983bbfc92dc169d05484402a5457754c2c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49933.jpg"]}
{"url": ["/htm/mp46/49932.htm"], "text": ["\u7d20\u4eba\u30ab\u30c3\u30d7\u30eb\u7231\u60c5\u8bca\u65ad\u4f01\u753b\u300c\u9ad8\u7ea7\u30aa\u30a4\u30eb\u30de\u30c3\u30b5\u30fc\u30b8\u306e\u30e2\u30cb\u30bf\u30fc\u3092\u3057\u3066\u307f\u307e\u305b\u3093\u304b\uff1f\u300d\u3068\u30ab\u30c3\u30d7\u30eb\u3092\u8bf1\u3044\u3053\u307f\u7537\u306f\u30de\u30b8\u30c3\u30af\u30df\u30e9\u30fc\u306e\u5411\u3053\u3046\u4fa7\u306b\u5f85\u673a\u3055\u305b\u3001\u5f7c\u6c0f\u306e\u76ee\u306e\u524d\u3067\u5802\u3005\u3068\u305f\u3063\u3077\u308a\u4e2d\u51fa\u3057\u5bdd\u53d6\u308aFUCK\uff01"], "image_paths": ["full/1d55fb3ae3b5cef1739d353b9031f04e34454326.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49932.jpg"]}
{"url": ["/htm/mp46/49934.htm"], "text": ["\u5973\u76d1\u7763?\u771f\u54b2\u5357\u670b\u306e\u30ec\u30baHunt\uff01\u30bf\u30fc\u30b2\u30c3\u30c8\u306f\u7d20\u4eba\u30ce\u30f3\u30b1\u5973\u5b50\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u300c\u8d39\u7528\u306f\u5168\u3066\u6301\u3064\u306e\u3067\u5199\u771f\u64ae\u3089\u305b\u3066\u304f\u3060\u3055\u3044\uff01\u300d\u3068\u30ec\u30a4\u30e4\u30fc\u5fa1\u7528\u8fbe\u306e\u30ec\u30f3\u30bf\u30eb\u8863\u88c5\u5c4b\u3067\u58f0\u3092\u304b\u3051\u3001\u521d\u5bfe\u9762\u540c\u58eb\u306e\u5973\u306e\u5b50\u305f\u3061\u3092\u30ce\u30ea\u306b\u30ce\u30bb\u3066\u672c\u6c17\u306e\u30ec\u30ba\u30d3\u30a2\u30f3SEX\u307e\u3067\u3055\u305b\u3061\u3083\u3044\u307e\u3057\u305f\uff01"], "image_paths": ["full/12617a7ba256418ce515f148f22c05f37d826211.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49934.jpg"]}
{"url": ["/htm/mp46/49935.htm"], "text": ["\u30cd\u30c3\u30c8\u63b2\u793a\u677fM\u5973\u30ea\u30b5\u30fc\u30c1 \u65e6\u90a3\u306b\u5185\u7eea\u3067\u3054\u4e3b\u4eba\u69d8\u3092\u63a2\u3059M\u6c17\u8d28\u306a\u30a2\u30e9\u30b5\u30fc\u4eba\u59bb\u306e\u80cc\u5fb3\u611f\u3092\u30a8\u30b0\u308a\u7cbe\u795e\u3082\u8089\u4f53\u3082\u8ffd\u3044\u8fbc\u3080\u9634\u6e7f\u30de\u30be\u8c03\u6559\uff01"], "image_paths": ["full/264f1f46da462d31c26a258eefd9bf9305a48339.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49935.jpg"]}
{"url": ["/htm/mp46/49941.htm"], "text": ["\u5a9a\u85ac\u793e\u5185\u75f4\u6c49"], "image_paths": ["full/12454071151f1603883cd9e107520167ef9512ca.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49941.jpg"]}
{"url": ["/htm/mp46/49940.htm"], "text": ["\u4e2d\u51fa\u3057\u4eba\u59bb\u4e0d\u4f26\u65c5\u884c43 \u9752\u53f6\u4f18\u9999"], "image_paths": ["full/ceaff81a583b50192d03d4585422716339e0461f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49940.jpg"]}
{"url": ["/htm/mp46/49943.htm"], "text": ["\u6d53\u539a\u306a\u63a5\u543b\u3068\u672c\u80fd\u3067\u611f\u3058\u308b\u6c41\u307e\u307f\u308c\u6d53\u5bc6\u6027\u4ea4 \u7eea\u5948\u3082\u3048"], "image_paths": ["full/c3d2c2a43a2c8db52188686fc9edb9e162d6e504.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49943.jpg"]}
{"url": ["/htm/mp46/49942.htm"], "text": ["\u7d76\u4f26\u30c7\u30ab\u30c1\u30f3\u7537\u306e\u7cbe\u5b50\u304c\u5c3d\u304d\u679c\u3066\u308b\u307e\u3067\u7f32\u308a\u8fd4\u3055\u308c\u308bSEX \u5409\u5ddd\u3042\u3044\u307f"], "image_paths": ["full/55facd6bb24d358597bc9f1f8142da62e2e3a7b3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49942.jpg"]}
{"url": ["/htm/mp46/49945.htm"], "text": ["\u65b0\u4eba\uff01\u3086\u3044\u304b\u307e\u306akawaii*\u5c02\u5c5eAV\u30c7\u30d3\u30e5\u30fc\uff01\uff01"], "image_paths": ["full/e681a2151976a29cad6a9d4926b3d13d7acbe89a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49945.jpg"]}
{"url": ["/htm/mp46/49944.htm"], "text": ["\u94c3\u6728\u5fc3\u6625\u30ec\u30ba\u89e3\u7981\uff01\uff01\u6781\u7f8e\u5de8\u4e73\u00d7\u9ad8\u8eab\u957f\u30b9\u30ec\u30f3\u30c0\u30fc W\u30b0\u30e9\u30de\u30fc\u30ec\u30ba\u30d3\u30a2\u30f3 \u94c3\u6728\u5fc3\u6625 \u536f\u6c34\u54b2\u6d41"], "image_paths": ["full/5d050656a0c3c339ced7ae992cc6952b59e79547.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49944.jpg"]}
{"url": ["/htm/mp46/49947.htm"], "text": ["\u5243\u6bdb\u89e3\u7981\uff01\uff01\u670d\u5f93\u306e\u7d27\u7f1a\u30d1\u30a4\u30d1\u30f3\u6bcd \u83ca\u6c60\u3048\u308a"], "image_paths": ["full/bd5dfa0de298adced54b30b73e10d4a5462d4817.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49947.jpg"]}
{"url": ["/htm/mp46/49946.htm"], "text": ["\u4e34\u65f6\u5973\u6559\u5e08\u3001\u771f\u7406\u306e\u8bf1\u60d1\u3002 \u5c71\u53e3\u771f\u7406"], "image_paths": ["full/b26f3e2fb811b5928927e4673a626b5be5fa8736.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49946.jpg"]}
{"url": ["/htm/mp46/49949.htm"], "text": ["\u66b4\u98ce\u96e8 \u5144\u8d35\u306e\u5ac1\u3068\u4e8c\u4eba\u3060\u3051\u306e\u591c \u7b71\u7530\u3042\u3086\u307f"], "image_paths": ["full/3b78dbef1643c012d58c5f20975d0346138c50f2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49949.jpg"]}
{"url": ["/htm/mp46/49948.htm"], "text": ["\u53d4\u6bcd\u306e\u8bf1\u60d1\uff5e\u4ec6\u3092\u864f\u306b\u3059\u308b\u719f\u308c\u305f\u9b45\u60d1\u306e\u80a2\u4f53\uff5e \u5b89\u91ce\u7531\u7f8e"], "image_paths": ["full/701cca9432cf56676eb2be32c5cb6a9dc5d6456f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49948.jpg"]}
{"url": ["/htm/mp46/49951.htm"], "text": ["\u4eba\u59bbCA\u4f2a\u308a\u306e\u30d5\u30e9\u30a4\u30c8\uff5e\u592b\u306e\u90e8\u4e0b\u3068\u306e\u5bc6\u304b\u306a\u5173\u7cfb\uff5e \u6210\u7530\u4e3d"], "image_paths": ["full/51dac387103d85a3fb9f3f964c7c44e9cee5f2ec.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49951.jpg"]}
{"url": ["/htm/mp46/49952.htm"], "text": ["\u672c\u7269\u4e2d\u51fa\u3057\u89e3\u7981\uff01\uff01\u7981\u65ad\u306e\u5b55\u307e\u305b\u76f8\u5978 \u540c\u5c45\u3059\u308b\u4e49\u7236\u306b\u4e2d\u51fa\u3057\u3055\u308c\u3066\u2026 \u6625\u5ddd\u305b\u305b\u3089"], "image_paths": ["full/014d351b5531654ce242953c9aa8e4975bb0b1b5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49952.jpg"]}
{"url": ["/htm/mp46/49950.htm"], "text": ["\u90bb\u5bb6\u306e\u592b\u5987\u306e\u6c17\u306b\u306a\u308bSEX\uff5e\u663c\u591c\u3001\u573a\u6240\u3092\u95ee\u308f\u305a\u6027\u6b32\u306e\u307e\u307e\u306b\u4ea4\u308f\u308b\u90bb\u4eba\uff5e \u5c0f\u5d0e\u91cc\u7f8e"], "image_paths": ["full/c5f89c134df78a04066c7bdb6df2c01790481395.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49950.jpg"]}
{"url": ["/htm/mp46/49956.htm"], "text": ["\u3084\u3081\u3089\u308c\u306a\u3044\u6d6e\u6c17\u59bb \u53cb\u4eba\u306e\u65e6\u90a3\u306b\u62b1\u304b\u308c\u3066\u3044\u307e\u3059\u3002 \u767d\u77f3\u3059\u307f\u308c"], "image_paths": ["full/5f63da8f2af821aaeb587d8612e09adf4428956a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49956.jpg"]}
{"url": ["/htm/mp46/49955.htm"], "text": ["Madonna\u53f2\u4e0a\u6700\u9ad8\u306e\u30a8\u30ed\u30dd\u30c6\u30f3\u30b7\u30e3\u30eb \u4eba\u59bb32\u6b73 \u61a7\u308c\u306e\u30c7\u30ab\u30c1\u30f3\u7537\u4f18\u306b\u62b1\u304b\u308c\u305f\u304f\u3066AV\u30c7\u30d3\u30e5\u30fc\uff01\uff01 \u6708\u5c9b\u3086\u3081"], "image_paths": ["full/6f55286dfcbf491c7af7fe84de7a0dc0e8dbc96d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49955.jpg"]}
{"url": ["/htm/mp46/49959.htm"], "text": ["\u5fc5\u64ae\u7f8e\u5c11\u5973 \u89c1\u3064\u3081\u306a\u304c\u3089\u8a00\u308f\u308c\u305f\u3044\u30a8\u30c3\u30c1\u306a\u3053?\u3068?\u3070\u25c6 \u7f8e\u54b2\u3042\u3084"], "image_paths": ["full/31377086346d3166e5c42a505e20ce6da9689625.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49959.jpg"]}
{"url": ["/htm/mp46/49958.htm"], "text": ["\u30df\u30e6\u30e9\u30a4\u30d6\uff01 \u3042\u3044\u306e\u7f8e\u7fbd"], "image_paths": ["full/c4a7cf1526121f726cec3f305dded93bdb42e52b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49958.jpg"]}
{"url": ["/htm/mp46/49965.htm"], "text": ["\u9a6c\u7528\u5174\u594b\u5264\u3092\u996e\u3093\u3060\u7537\u5973\u304c\u4e2d\u51fa\u3057\u3050\u3061\u3087\u3050\u3061\u3087\u79cd\u4ed8\u3051SEX \u795e\u30e6\u30ad"], "image_paths": ["full/def607cf8223b5eb50722ab09a43e1e869f549cb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49965.jpg"]}
{"url": ["/htm/mp46/49970.htm"], "text": ["\u5973\u5b50\u6821\u751f\u30b9\u30af\u30fc\u30eb\u4e2d\u51fa\u3057\u4e71\u4ea4\uff5e\u653e\u8bfe\u540e\u306e\u6559\u5ba4\u3067\u4e71\u4ea4\u3057\u305f\u601d\u3044\u51fa 3\uff5e"], "image_paths": ["full/85ef3e895642175da29842096fb273f55270e1a1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49970.jpg"]}
{"url": ["/htm/mp46/49972.htm"], "text": ["\u51fa\u5f20\u5168\u8eab\u5243\u6bdb\u30b5\u30fc\u30d3\u30b9\uff01\uff01\u901a\u79f0\u30c1\u30f3\u6bdb\u5243\u308a\u5c4b\u3068\u547c\u3070\u308c\u308b\u65b0\u30b5\u30fc\u30d3\u30b9\u4e1a\u3067\u50cd\u304f\u30a8\u30b9\u30c6\u30c6\u30a3\u30b7\u30e3\u30f3\u306f\u751f\u30c1\u30f3\u30dd\u3092\u89c1\u3066\u6211\u6162\u306e\u306a\u3089\u306a\u3044\u6b32\u6c42\u4e0d\u6e80\u306e\u4eba\u59bb\u3070\u304b\u308a\u3068\u306e\u5642\u304c\uff01\uff01\u305d\u3093\u306a\u4eba\u59bb\u8fbe\u306b\u5f3a\u58ee\u52b9\u679c\u306e\u9ad8\u3044\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u306e\u5965\u5730\u3067\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u5a9a\u85ac\u5165\u308a\u304a\u8336\u3092\u996e\u307e\u305b\u3066\u2026"], "image_paths": ["full/8b5db3f8636a87f326208b14312a5a4c2928b8b3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49972.jpg"]}
{"url": ["/htm/mp46/49974.htm"], "text": ["\u672c\u756a\u7981\u6b62\u306e\u30c7\u30ea\u30d8\u30eb\u5b22\u304c\u7b80\u5358\u306b\u30ac\u30c1\u633f\u5165\u3092\u8bb8\u3057\u3066\u304f\u308c\u308b\u9b54\u6cd5\u306e\u8a00\u53f6\u304c\u5b58\u5728\u3059\u308b\u3068\u3044\u3046\u5642\u3092\u691c\u8bc1\u30b9\u30eb\uff01\u8a00\u308f\u306a\u3044\u3088\u308a\u8a00\u3063\u305f\u307b\u3046\u304c\u30e4\u30ec\u308b\u786e\u5909\u7387\u8d85UP\uff01\u300c\u5b9f\u306f\u30dc\u30af\u7ae5\u8d1e\u306a\u3093\u3067\u3059\u2026\u300d\u3068\u544a\u767d\u3057\u3066\u3082\u3001\u6700\u521d\u306f\u300c\u3048\u3063\uff01\u5618\u3067\u3057\u3087\u300d\u306a\u3069\u3068\u771f\u5263\u306b\u3068\u308a\u3042\u3063\u3066\u304f\u308c\u306a\u304b\u3063\u305f\u5973\u306e\u5b50\u304c\u2026"], "image_paths": ["full/96e3c5bd1b3c885561143c602dcbfaf791ac1d06.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49974.jpg"]}
{"url": ["/htm/mp46/49984.htm"], "text": ["\uffe5\u30b8\u30a7\u30cd"], "image_paths": ["full/1ded638ad697acd6bb5c935dd367ac648a52d5b8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49984.jpg"]}
{"url": ["/htm/mp46/49981.htm"], "text": ["\u751f\u4e2d\u51fa\u3057\u82e5\u59bb\u30ca\u30f3\u30d1\uff01 16"], "image_paths": ["full/0f27413afda81096dd59a44a6a7925739d2a2e3d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49981.jpg"]}
{"url": ["/htm/mp46/49954.htm"], "text": ["\u593a\u308f\u308c\u305f\u5144\u5ac1\uff5e\u4e49\u5f1f\u304c\u65bd\u3059\u88ab\u8650\u306e\u5feb\u611f\u306b\u72c2\u308f\u3055\u308c\u3066\uff5e \u767d\u6728\u4f18\u5b50"], "image_paths": ["full/000c0850803089bfc177138cb3f3437e4012ad08.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49954.jpg"]}
{"url": ["/htm/mp46/49953.htm"], "text": ["\u4eba\u751f\u3067\u4e00\u756a\u81a3\u5965\u3092\u8d2f\u304b\u308c\u305f\u3042\u306e\u65e5\u304b\u3089\u2026\u3002 \u5927\u5c9b\u4f18\u9999"], "image_paths": ["full/a2e151feff5ff995c6299bb40573fc5ad8abe033.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49953.jpg"]}
{"url": ["/htm/mp46/49983.htm"], "text": ["\u5168\u56fd\u90fd\u9053\u5e9c\u770c\u9009\u629c\uff01 \u73b0\u5730\u8c03\u8fbe\u3057\u305f\u8d85S\u7ea7\u7d20\u4eba\u5a18 \u4e1c\u5317\u7f16 Part2"], "image_paths": ["full/cb27150824d2743a3b093a7938cf811672dd4ab5.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49983.jpg"]}
{"url": ["/htm/mp46/49982.htm"], "text": ["\u4e1c\u4eac\u8def\u4e0a\u8f6f\u6d3e\uff01\uff013 \u5b66\u751f\u8857\u7a81\u6483\u7f16"], "image_paths": ["full/b342643d40f87e2eede2ec848950e641abaa06c3.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49982.jpg"]}
{"url": ["/htm/mp46/41975.htm"], "text": ["\u4e0e\u767d\u8863\u5929\u4f7f\u7684\u6027\u7231"], "image_paths": ["full/5cfe42cd6d7381db71e98be9fa48e7cbd657b4e9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/41975.jpg"]}
{"url": ["/htm/mp46/41974.htm"], "text": ["\u5973\u6559\u5e08in...\u5ddd\u83dc\u7f8e\u94c3"], "image_paths": ["full/b290a33de5b25fc936b839d5aad910d23ad66fe4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/41974.jpg"]}
{"url": ["/htm/mp46/41973.htm"], "text": ["Dorisha?\u6d25\u5e02\uff01\uff01\u5c24\u5a1c\u767d"], "image_paths": ["full/da45fa6bd9dceab759f83c1978ab6a9a435d7a9b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/41973.jpg"]}
{"url": ["/htm/mp46/49963.htm"], "text": ["\u5f7b\u5e95\u691c\u8bc1\uff01\uff01\u304a\u91d1\u3092\u6255\u3048\u3070\u30ad\u30b9\u3092\u3059\u308b\u77e5\u308a\u5408\u3044\u7537\u5973\u306f\u3001\u30ae\u30e3\u30e9\u30a2\u30c3\u30d7\u3067H\u3082\u3059\u308b\u306e\u304b\uff01\uff1f"], "image_paths": ["full/79492d258071e2f4fe9bb0d15f572bd3f0055423.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49963.jpg"]}
{"url": ["/htm/mp46/49973.htm"], "text": ["\u4eba\u95f4\u63a2\u6c42\u30c9\u30ad\u30e5\u30e1\u30f3\u30bf\u30ea\u30fc\uff01\uff01\u4e16\u25cf\u8c37\u533a\u5728\u4f4f\u989c\u51fa\u3057\u5de8\u4e73\u82e5\u59bb\u9650\u5b9a\uff01\uff01\u521d\u3081\u3066\u306e\u5de8\u30c1\u30f3\u306b\u30cb\u30f3\u30de\u30ea\u3057\u306a\u304c\u3089\u7c97\u30c1\u30f3\u306e\u592b\u3068\u6bd4\u3079\u3066\u30aa\u25cf\u30f3\u30b3\u3092\u6fe1\u3089\u3059\u6b32\u6c42\u4e0d\u6e80\u306e\u30a6\u30d6\u306a\u65e2\u5a5a\u8005\u8fbe\u306f\u4e8c\u4eba\u304d\u308a\u306e\u7a7a\u95f4\u306b\u306a\u3063\u305f\u3089\u6211\u6162\u3067\u304d\u305a\u306b\u751f\u4e2d\u51fa\u3057SEX\u307e\u3067\u3057\u3066\u3057\u307e\u3046\u306e\u304b\uff01\uff1f\u5f7b\u5e95SCOOP\uff01\uff01\uff01\uff01"], "image_paths": ["full/24b5f86b79537f68fa9f135f6a4c6de4165d7b56.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49973.jpg"]}
{"url": ["/htm/mp46/49962.htm"], "text": ["\u4eca\u3059\u3050\u7ed3\u5a5a\u3057\u305f\u3044\uff01\u5a5a\u6d3b\u3067\u51fa\u4f1a\u3063\u305f\u304a\u6c17\u306b\u5165\u308a\u306e\u7537\u6027\u3068\u305d\u306e\u65e5\u306b\u5a5a\u524d\u30ca\u30de\u4ea4\u6e09\uff01\u4e2d\u51fa\u3057\u598a\u5a20SEX\u3067\u30c7\u30ad\u3061\u3083\u3063\u305f\u5a5a\u3092\u72d9\u3046\u5973\uff01"], "image_paths": ["full/050616dd618c18431b7bcbe8991fa344809928cc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49962.jpg"]}
{"url": ["/htm/mp46/49971.htm"], "text": ["\u304a\u306b\u3044\u3061\u3083\u3093\u3001\u3044\u3063\u3057\u3087\u306b\u304a\u98ce\u5415\u306f\u3044\u3063\u3066\u3082\u2026\u3044\u3044\uff1f\uff5e\u65e5\u713c\u3051\u3057\u305f\u59b9\u304c\u672a\u3060\u306b\u65e0\u90aa\u6c17\u306b\u304a\u98ce\u5415\u306b\u5165\u3063\u3066\u304d\u3066\u4ec6\u306f\u2026\uff5e"], "image_paths": ["full/3f1d40bd1c4f291f3bc924d1e6e7e94988decb95.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49971.jpg"]}
{"url": ["/htm/mp46/49968.htm"], "text": ["\u3053\u3053\u307e\u3067\u7f8e\u3057\u3044\u767d\u808c\u306b\u306a\u308b\u3068\u3001\u901a\u5e38\u306e\u30bb\u30c3\u30af\u30b9\u304c\u3059\u3067\u306b\u51cc\u8fb1"], "image_paths": ["full/99aa4db48bc63e28c015d37984f57e21221fa28a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49968.jpg"]}
{"url": ["/htm/mp46/49964.htm"], "text": ["\u5148\u8f88\uff08\u2640\uff09\u3068\u306e\u540c\u884c\u55b6\u4e1a\u4e2d\u306b\u53d7\u3051\u305f\u300c\u65b0\u793e\u4f1a\u4eba\u306e\u610f\u8bc6\u8c03\u67fb\u300d\u306e\u8857\u5934\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u3067\u65b0\u5165\u793e\u5458\uff08\u2642\uff09\u304c\u300c\u5f02\u6027\u3068\u306e\u4ea4\u9645\u7d4c\u9a13\u30bc\u30ed\u3001\u7ae5\u8d1e\u300d\u3092\u30ab\u30df\u30f3\u30b0\u30a2\u30a6\u30c8\uff01\uff01\u307e\u3055\u304b\u306e\u544a\u767d\u306b\u60ca\u304d\u3092\u96a0\u305b\u306a\u3044\u5148\u8f88\u306f\u305d\u3093\u306a\u4e0d\u60af\u306a\u540e\u8f88\u306e\u6210\u957f\u306e\u305f\u3081\u306b\u4e00\u808c\u8131\u3050\u306e\u304b\uff01\uff1f"], "image_paths": ["full/e7e231e02d4129dd7c07ef3d2c5b2786b02bd936.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49964.jpg"]}
{"url": ["/htm/mp46/49980.htm"], "text": ["\u7d20\u4eba\u30ca\u30f3\u30d1\uff01\uff01\u3068\u308a\u3042\u3048\u305a\u7d20\u80a1\u307e\u3067\u304c\u95f4\u8fdd\u3048\u3066\u30c1\u25cf\u30dd\u304c\u30ba\u30dc\u30ea\u30c3\uff01\uff01Part7"], "image_paths": ["full/b31464b07a0ecfc3e6cfec64e3a14d105518b35a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49980.jpg"]}
{"url": ["/htm/mp46/49967.htm"], "text": ["\u304a\u4eba\u5f62\u3055\u3093\u306e\u3088\u3046\u306a\u30b7\u30e5\u30ea\u3061\u3083\u3093\u3001\u771f\u6027\u30c9S\u3060\u304b\u3089\u6c41\u8fbe\u306f\u4eca\u65e5\u3082\u4e0b\u4ec6"], "image_paths": ["full/b1aa1cbebdb0374824780d12e621d588f172c0bd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49967.jpg"]}
{"url": ["/htm/mp46/49960.htm"], "text": ["\u30b0\u30e9\u30c9\u30eb\u304c\u5973\u6027\u7528\u30d0\u30a4\u30a2\u30b0\u30e9\u3068\u5de8\u6839\u3067\u6deb\u4e71\u899a\u9192\uff01\uff1f \u30e8\u30c0\u30ec\u5782\u3089\u3057\u3066\u3068\u306b\u304b\u304f\u30c7\u30ab\u30c1\u30f3\u30dd\u3092\u6b32\u3057\u304c\u308a\u6319\u53e5\u306e\u679c\u3066\u306b\u306f\u30d1\u30a4\u30d1\u30f3\u30aa\u30de\u25cf\u30b3\u306b\u5de8\u6839\u3092\u540c\u65f6\u306b2\u672c\u30d6\u30c1\u8fbc\u307f\u5931\u795e\u95f7\u7d76\u306e130\u5206\uff01\uff01 \u85e4\u672c\u7d2b\u5a9b"], "image_paths": ["full/71d1f26ac16b31668d77662348692e2af32dbeba.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49960.jpg"]}
{"url": ["/htm/mp46/49961.htm"], "text": ["\u97e9\u56fd\u3067\u672c\u756a\u304c\u3067\u304d\u308b\u3068\u5642\u306e\u97e9\u56fd\u5f0f\u30de\u30c3\u30b5\u30fc\u30b8\u5e97\u306b\u6f5c\u5165\u3057\u305f\u3089\u2026\u7f8e\u3057\u3059\u304e\u308b\u97e9\u6d41\u5973\u5b50\u306e\u80f8\u30c1\u30e9\u306b\u305d\u305d\u3089\u308c\u30d5\u30eb\u52c3\u8d77\u72b6\u6001\u306b\u306a\u3063\u305f\u30dc\u30af\u306e\u30d3\u30f3\u30d3\u30f3\u30c1\u25cb\u30dd\u306b\u76ee\u304c\u9489\u4ed8\u3051\u306e\u5f7c\u5973\u3092\u53e3\u8bf4\u3044\u307f\u305f\u3089\u604b\u4eba\u540c\u58eb\u306e\u3088\u3046\u306a\u70ed\u3044\u63a5\u543b\uff06\u5bc6\u7740\u30bb\u30c3\u30af\u30b9\u3092\u6c42\u3081\u3066\u304d\u305f\u2026"], "image_paths": ["full/23a05d75785b6db5c8026fc56b0ffc2e305da38a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49961.jpg"]}
{"url": ["/htm/mp46/49977.htm"], "text": ["\u7d20\u4eba\u7537\u6027\u3055\u3093\u306b\u90fd\u5185\u67d0\u6240AV\u30e1\u30fc\u30ab\u30fc\u306e\u30e4\u30ea\u90e8\u5c4b\u304a\u8d37\u3057\u3057\u307e\u3059\uff01\uff01\u8d35\u65b9\u306e\u53ef\u7231\u3044\u77e5\u308a\u5408\u3044\u306eSEX\u64ae\u5f71\u51fa\u6765\u305f\u3089\u2026\u6027\u4ea4\uff08\uff1f\uff09\u62a5\u916c10\u4e07\u5186\uff01\uff01Vol.3"], "image_paths": ["full/6deb7580a5373e8de47cb796de7f28510d8d0633.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49977.jpg"]}
{"url": ["/htm/mp46/49976.htm"], "text": ["\u30d0\u30ec\u305f\u3089\u7f5a\u91d1100\u4e07\u5186\uff01\uff01\u90fd\u5185\u30c7\u30ea\u30d8\u30eb\u5b8c\u5168\u653b\u7565\uff01\uff01\u6d77\u5916\u304b\u3089\u4ed5\u5165\u308c\u3066\u304d\u305f\u602a\u3057\u3044\u30ae\u30f3\u52c3\u3061\u95f4\u8fdd\u3044\u65e0\u3057\u306e\u52c3\u8d77\u85ac\u3092\u996e\u3093\u30672\u56de\u6226\u3067\u3082\u52c3\u8d77\u89c1\u305b\u3064\u3051\u305f\u3089\u751f\u4e2d\u51fa\u3057\u306f\u53ef\u80fd\u306a\u306e\u304b\u5f7b\u5e95\u691c\u8bc1\uff01\uff01PART2"], "image_paths": ["full/90b7b2f8e62fc196a7655ce57a44c892fe3163cd.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49976.jpg"]}
{"url": ["/htm/mp46/49975.htm"], "text": ["\u602a\u6211\u3092\u8a00\u3044\u8a33\u306b\u5de8\u4e73\u3067\u4f18\u3057\u3044\u6bcd\u3055\u3093\u306e\u59b9\uff08\u53d4\u6bcd\u3055\u3093\uff09\u306b\u30aa\u30ca\u30cb\u30fc\u306e\u624b\u4f1d\u3044\u3092\u6073\u613f\u3057\u305f\u3089\u6de1\u3044\u671f\u5f85\u3067\u30ae\u30f3\u52c3\u3061\u3057\u305f\u7525\u3063\u5b50\u30c1\u25cf\u30dd\u3092\u8fd1\u4eb2\u30aa\u30de\u25cf\u30b3\u3067\u7b14\u4e0b\u308d\u3057\u3066\u304f\u308c\u308b\u306e\u304b\uff1f2"], "image_paths": ["full/c726d2b8250394a478a9eeb2c795c1f3fe9eebde.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49975.jpg"]}
{"url": ["/htm/mp46/50014.htm"], "text": ["Stylish\u30dc\u30c7\u30a3\u30b3\u30f3 \u5996\u8276\u30dc\u30c7\u30a3\u30fc\u3067\u6311\u767a\u3059\u308b\u30b0\u30e9\u30de\u30e9\u30b9\u7f8e\u5973 \u7b71\u7530\u3042\u3086\u307f"], "image_paths": ["full/55611e4f52b11e667cbe7e22a0fa90c09fe3c05e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50014.jpg"]}
{"url": ["/htm/mp46/50013.htm"], "text": ["\u3053\u306e\u5b50\u3068\u300c\u304b\u3093\u3065\u3081\u300d \u6d5c\u5d0e\u771f\u7eea"], "image_paths": ["full/d3fd5a7d184110390f78f952789c90149e1de74a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50013.jpg"]}
{"url": ["/htm/mp46/49979.htm"], "text": ["\u90fd\u5185\u67d0\u6240\u3067\u5f00\u50ac\u3055\u308c\u3066\u3044\u308b\u4eba\u59bb\u30e4\u30ea\u30b3\u30f3\u30d1\u30fc\u30c6\u30a3\u30fc"], "image_paths": ["full/98da760cc85665b69ef1a0627cb64519154c5dd6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49979.jpg"]}
{"url": ["/htm/mp46/49966.htm"], "text": ["\u5168\u3066\u306e\u5973\u6027\u55b6\u4e1a\u304c\u89b3\u3066\u304a\u304d\u305f\u3044 \u30d0\u30ea\u30ad\u30e3\u30ea\u6d41\u4ea4\u9645\u672f"], "image_paths": ["full/b28ba7961deb14512d0d89d072304c0f5806ad90.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49966.jpg"]}
{"url": ["/htm/mp46/50012.htm"], "text": ["\u30bb\u30c4\u30ca\u30a4\u304a\u3072\u3068\u308a\u59bb"], "image_paths": ["full/e77275d9b1126d798a76c1dd96bf1e7389fd55a9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50012.jpg"]}
{"url": ["/htm/mp46/50011.htm"], "text": ["\u65b0?\u7d76\u5bfe\u7684\u7f8e\u5c11\u5973\u3001\u304a\u8d37\u3057\u3057\u307e\u3059\u3002 ACT.57 \u56ed\u7530\u307f\u304a\u3093"], "image_paths": ["full/671a696ee89398150e81278fd68fad06c085fe2e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50011.jpg"]}
{"url": ["/htm/mp46/50010.htm"], "text": ["\u76f8\u5e2d\u5c45\u9152\u5c4b\u3067\u30ca\u30f3\u30d1\u3057\u305f\u4ef2\u826f\u30572\u4eba\u7ec4\u3092\u304a\u6301\u3061\u5e30\u308a\u3002\u30b3\u30bd\u30b3\u30bdH\u3057\u3066\u3044\u308b\u3068\u90bb\u306e\u90e8\u5c4b\u306b\u3044\u308b\u30ac\u30fc\u30c9\u306e\u575a\u3044\u5973\u53cb\u8fbe\u306f\u30e4\u30e9\u305b\u3066\u304f\u308c\u308b\u304b \u5176\u306e\u516b"], "image_paths": ["full/2e13f8fa44041f36384d746cb3f9fef93d0c1358.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50010.jpg"]}
{"url": ["/htm/mp46/50009.htm"], "text": ["\u4e0b\u5317\u6ca2\u306e\u30e9\u30a4\u30d6\u4f1a\u573a\u3067\u89c1\u3064\u3051\u305f\uff01\u30ed\u30c3\u30af\u30d0\u30f3\u30c9\u306e\u30c9\u30e9\u30e0\u30b9\u5973\u5b50\u306b\u97f3\u697d\u5173\u7cfb\u8005\u3060\u3068\u4f2a\u3063\u3066\u53e3\u8bf4\u304d\u843d\u3068\u3057\u3001\u97f3\u54cd\u30b9\u30bf\u30b8\u30aa\u3067\u58f0\u3092\u62bc\u3057\u6740\u3057\u3066SEX\u3057\u3066\u3044\u308b\u5f7c\u5973\u306e\u7d20\u989c\u3092\u5b8c\u5168\u76d7\u64ae\uff01\u672c\u4eba\u5e0c\u671b\u306e\u4e2d\u51fa\u3057\u3067\u30ab\u30fc\u30c6\u30f3\u30b3\u30fc\u30eb\uff01AV\u6d41\u51fa\u30c7\u30d3\u30e5\u30fc \u30c1\u30ab\u3061\u3083\u309322\u6b73"], "image_paths": ["full/221ed251fb9eb37e8849f5c2e0aab2ce41233e72.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50009.jpg"]}
{"url": ["/htm/mp46/50007.htm"], "text": ["\u53ef\u7231\u3044\u5973\u306e\u5b50\u3057\u304b\u5174\u5473\u306e\u65e0\u3044\u79c1\uff08\u2640\uff09\u304c\u3001\u30ce\u30f3\u30b1\u306a\u5973\u53cb\u8fbe\u3092\u90e8\u5c4b\u306b\u6301\u3061\u5e30\u308a\u5f3a\u5f15\u306b\u30ec\u30ba\u3063\u3066\u96a0\u3057\u64ae\u308a7"], "image_paths": ["full/5d9b2b4272f2989da954f28d6e10c25afb372d73.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50007.jpg"]}
{"url": ["/htm/mp46/50008.htm"], "text": ["\u6e0b\u8c37\u767a \u30cd\u30a4\u30eb\u30b5\u30ed\u30f3\u306b\u6765\u5e97\u3057\u305f\u30ae\u30e3\u30eb\u3070\u304b\u308a\u3092\u72d9\u3046\u5a9a\u85ac\u30aa\u30a4\u30eb\u30a8\u30b9\u30c6\u76d7\u64ae3"], "image_paths": ["full/768eb573d1be3248b834611385c32e1db07f0ddb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50008.jpg"]}
{"url": ["/htm/mp46/50006.htm"], "text": ["\u30d5\u30a3\u30c3\u30c8\u30cd\u30b9\u30b8\u30e0\u901a\u3044\u306e\u7f8e\u4eba\u59bb\u3070\u304b\u308a\u3092\u5bdd\u53d6\u308b\u60aa\u5fb3\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc\u76d7\u64ae2"], "image_paths": ["full/e0ab4ad048066936764040db022fd1e0c0f5fcd7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50006.jpg"]}
{"url": ["/htm/mp46/50005.htm"], "text": ["\u6587\u4eac\u533a\u306b\u3042\u308b\u5973\u6559\u5e08\u304c\u901a\u3046\u6574\u4f53\u30bb\u30e9\u30d4\u30fc\u6cbb\u7597\u966211"], "image_paths": ["full/d3f8476be19efd0e47cdaf67173ae27ab47d36ce.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50005.jpg"]}
{"url": ["/htm/mp46/50003.htm"], "text": ["\u76f8\u5e2d\u5c45\u9152\u5c4bR35\u3067\u30ca\u30f3\u30d1\u3057\u305f\u7f8e\u4eba\u5973\u60272\u4eba\u7ec4\u3092\u304a\u6301\u3061\u5e30\u308a\u3002\u77e5\u3089\u306a\u3044\u7537\u306e\u5bb6\u306b\u304a\u90aa\u9b54\u3057\u3066\u30ce\u30ea\u6c17\u3058\u3083\u306a\u3044\u65e2\u5a5a\u5973\u6027\u306f\u592b\u5987\u4ef2\u304c\u30de\u30f3\u30cd\u30ea\u3067\u30bb\u30c3\u30af\u30b9\u30ec\u30b9\u3002\u90bb\u306e\u90e8\u5c4b\u3067H\u306a\u97f3\u304c\u3057\u3066\u3044\u3066\u3082\u8d1e\u6dd1\u3092\u8d2f\u304f\u4e8b\u306f\u30c7\u30ad\u308b\u306e\u304b\uff1f"], "image_paths": ["full/f4583875c4aca4368aaa72366a1bb4e9fb4808c0.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50003.jpg"]}
{"url": ["/htm/mp46/50004.htm"], "text": ["\u5408\u30b3\u30f3\u3067\u304a\u6301\u3061\u5e30\u308a\u3057\u305f\u5973\u5b50\u3092\u96a0\u3057\u64ae\u308a\u3002\u8bb8\u53ef\u65e0\u3057AV\u767a\u58f2\u3002\u5176\u306e\u62fe\u4f0d"], "image_paths": ["full/95c3242c8144bd56af91066a9e9b2f696cf65638.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50004.jpg"]}
{"url": ["/htm/mp46/50002.htm"], "text": ["\u4e16\u7530\u8c37\u533a\u6210\u57ce\u306b\u3042\u308b\u30bb\u30ec\u30d6\u4eba\u59bb\u3092100\uff05\u75c9\u631b\u5931\u795e\u3055\u305b\u4e2d\u51fa\u3057\u6073\u613f\u307e\u3067\u3055\u305b\u3066\u3057\u307e\u3046\u795e\u6280\u30de\u30c3\u30b5\u30fc\u30b8\u5e08\u304c\u3044\u308b\u65bd\u672f\u9662"], "image_paths": ["full/c50a469f7a5096b7488596bc2df668581b6c0866.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50002.jpg"]}
{"url": ["/htm/mp46/50001.htm"], "text": ["\u25cf\u25cf\u4f53\u80b2\u5927\u5b66\u6c34\u6cf3\u90e8\u30b3\u30fc\u30c1\u304b\u3089\u306e\u6295\u7a3f \u5973\u5b50\u7ade\u6cf3\u9009\u624b\u306e\u30de\u30f3\u30b9\u30b8\u3084\u4e73\u9996\u30dd\u30c1\u3092\u9ad8\u753b\u8d28\u76d7\u64ae2"], "image_paths": ["full/13d17565a84f53c60ae08d477fefad9e7cccd18e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50001.jpg"]}
{"url": ["/htm/mp46/50000.htm"], "text": ["\u8857\u30a8\u30ed\u76d7\u64ae \u548c\u5f0f\u30c8\u30a4\u30ec\u653e\u5c3f\u635c\u67fb\u7ebf \u5973\u5b50\u6821\u751f\u7f162"], "image_paths": ["full/6f8866a6a254f4325fd16628b120433243285ddb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/50000.jpg"]}
{"url": ["/htm/mp46/49999.htm"], "text": ["\u803b\u305a\u304b\u3057\u3044\u30ab\u30e9\u30c0 \u304a\u3057\u3083\u3079\u308a\u30c1\u25cf\u30dd \u4e00\u6761\u7eee\u7f8e\u9999"], "image_paths": ["full/09645bae05fd834165d9a5b1efab69361618d314.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49999.jpg"]}
{"url": ["/htm/mp46/49998.htm"], "text": ["\u4e16\u754c\u5f3e\u4e38\u30cf\u30e1\u30c9\u30e9\u30fc \u30d4\u30ea\u30aa\u30c9\u3001\u305d\u3057\u3066\u6625 \u304b\u3059\u307f\u679c\u7a42"], "image_paths": ["full/c2b5a660ed85cef5e3ca13f1b55cc17c8f6a803a.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49998.jpg"]}
{"url": ["/htm/mp46/49997.htm"], "text": ["\u7eaf\u767d\u7f8e\u5c11\u5973\u306e\u3044\u3051\u306a\u3044\u4e2d\u51fa\u3057\u6388\u4e1a\u3002\u3072\u306a\u3053"], "image_paths": ["full/cb00acf5190b59dd878d7c880b647740c8653e10.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49997.jpg"]}
{"url": ["/htm/mp46/49993.htm"], "text": ["\u7f1a\u3089\u308c\u305f\u304c\u308b\u4ec6\u306e\u3044\u3044\u306a\u308a\u59b9 \u51c9\u5bab\u7434\u97f3"], "image_paths": ["full/c563e32ad0aa709c297a90e2c6ccd98861d577d9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49993.jpg"]}
{"url": ["/htm/mp46/49994.htm"], "text": ["\u30d1\u30a4\u30d1\u30f3\u00d7\u4e2d\u51fa\u3057\u00d7\u8d2b\u4e73 \u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc \u5357\u5e0c\u6d77"], "image_paths": ["full/58795b3180687eab673e0e36e311c64733b415c4.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49994.jpg"]}
{"url": ["/htm/mp46/49995.htm"], "text": ["\u5de8\u4e73\u00d7\u7d27\u7f1a \u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc \u5c0f\u897f\u307f\u304b"], "image_paths": ["full/deffc0b12465a85c013f674997980ec4ad2bc180.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49995.jpg"]}
{"url": ["/htm/mp46/49992.htm"], "text": ["\u30de\u30de\u3068\u30d1\u30d1\u3068\u306f\u77e5\u3089\u306a\u3044\u3002\u304a\u5144\u3061\u3083\u3093\u3068\u4e00\u6cca\u4e8c\u65e5\u4e2d\u51fa\u3057\u65b0\u5a5a\u65c5\u884c\u3002\u308a\u307b"], "image_paths": ["full/8af3426db962418fdcdd6cdf8238836a46756e74.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49992.jpg"]}
{"url": ["/htm/mp46/49991.htm"], "text": ["\u30e0\u30c1\u30e0\u30c1\u30d1\u30a4\u30d1\u30f3\u5973\u5b50\u6821\u751f \u8089\u5c3b\u5a18\u3068\u3044\u3044\u306a\u308a\u4e2d\u51fa\u3057\u6027\u4ea4 \u6e05\u51a2\u90a3\u5948"], "image_paths": ["full/3095c6b147485b7d880dfd56d53441f735bee2f2.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49991.jpg"]}
{"url": ["/htm/mp46/49989.htm"], "text": ["\u73b0\u5f79F\u30ab\u30c3\u30d7\u67d0\u6709\u540d\u5973\u5b50\u5927\u751f \u5c31\u804c\u524d\u30011\u672c\u9650\u308a\u306eAV \u65b0\u4eba\u307f\u3086\u3046"], "image_paths": ["full/f0a4e86f1dffb79101f345e0159f87acf147a16f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49989.jpg"]}
{"url": ["/htm/mp46/49990.htm"], "text": ["\u30a4\u30ad\u3063\u3071\u306a\u3057\u300c\u4eca\u307e\u3067\u4e00\u756a\u30a4\u30c3\u3061\u3083\u3063\u305f\u300d \u3042\u3084"], "image_paths": ["full/a9d617bc2f4ea58dadc2c1673068eb251a6dd5d7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49990.jpg"]}
{"url": ["/htm/mp46/49988.htm"], "text": ["JK\u304c\u91cc\u98ce\u4fd7\u306b\u58f2\u3089\u308c\u3066\u5a9a\u85ac\u3067\u30bb\u30c3\u30af\u30b9\u8c03\u6559\u3055\u308c\u4e2d\u51fa\u3057OK\u306e\u8089\u4fbf\u5668\u306b\u306a\u3063\u3061\u3083\u3044\u307e\u3057\u305f\u3002 \u30d1\u30a4\u30d1\u30f3?\u307e\u304a\u3061\u3083\u3093"], "image_paths": ["full/f241f74d4871e481a87b1ea6b65f26b8d779954d.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49988.jpg"]}
{"url": ["/htm/mp46/49996.htm"], "text": ["\u5909\u6001\u306b\u652f\u914d\u3055\u308c\u305f\u6027\u5974\u96b6 \u68ee\u306f\u308b\u3089"], "image_paths": ["full/f63ee73dbec825eaddafb8f647c7ab80d98dbda1.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49996.jpg"]}
{"url": ["/htm/mp46/49985.htm"], "text": ["\u6027\u683c\u30ab\u30ef\u30a4\u30a4AIKA\u306e\u6c17\u6301\u3061\u826f\u3059\u304e\u308b\u8170\u632f\u308a\u3060\u3044\u3057\u3085\u304d\u9a91\u4e57\u4f4d\u30db\u30fc\u30eb\u30c9\u3067\u672c\u80fd\u5265\u304d\u51fa\u3057\u751f\u4e2d\u51fa\u3057\u30bb\u30c3\u30af\u30c1\u30e5"], "image_paths": ["full/ae631382c7f94d276aaeeee0c28a98bc17bc1007.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49985.jpg"]}
{"url": ["/htm/mp46/49987.htm"], "text": ["\u8fd1\u6240\u306e\u30c7\u30ab\u30d1\u30a4\u4eba\u59bb\u306f\u65e0\u9632\u5907\u306b\u5bb6\u3067\u306f\u30ce\u30fc\u30d6\u30e9\uff01\u6b32\u6c42\u4e0d\u6e80\u306a\u306e\u304b\u30dc\u30a4\u30f3\u306e\u8c37\u95f4\u3068\u80f8\u30c1\u30e9\u3067\u4ec6\u3092\u8bf1\u60d1\u3057\u3066\u304d\u305f\u3002\u3082\u3046\u582a\u3089\u3093\u3067\u3059\uff01\uff013 \u4e09\u559c\u672c\u306e\u305e\u307f"], "image_paths": ["full/762e294c154df48d626c6cb3f95a3810daab94e9.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49987.jpg"]}
{"url": ["/htm/mp46/49986.htm"], "text": ["\u5ac1\u3068\u59d1 \u8c01\u306b\u3082\u8a00\u3048\u306a\u3044\u7981\u65ad\u306a\u5173\u7cfb 4 \u6751\u4e0a\u51c9\u5b50 \u83b2\u5b9f\u30af\u30ec\u30a2"], "image_paths": ["full/7a7d92aad5c4968423578502e0134db0532eaf4c.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49986.jpg"]}
{"url": ["/htm/mp46/49957.htm"], "text": ["PREMIUM MAX\u685c\u3059\u3070\u308b \u672a\u516c\u5f00\u6620\u50cf\u4ed8\u304d\u5b8c\u5168\u7248"], "image_paths": ["full/8e4291f6be55eb065e8e31e4bf847b53d8d034fc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49957.jpg"]}
{"url": ["/htm/mp46/49969.htm"], "text": ["\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc \u30a2\u30e1\u30ea\u30a2?\u30a4\u30e4\u30cf\u30fc\u30c8"], "image_paths": ["full/b64cb929fbc06e9b653f291ab4fd8213373e40c8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49969.jpg"]}
{"url": ["/htm/mp46/49937.htm"], "text": ["\u4e0a\u539f\u4e9c\u8863\u306eM\u30b9\u30a4\u30c3\u30c1"], "image_paths": ["full/f5eaf9dd43ca38364504077a5d60ea311b61dffb.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49937.jpg"]}
{"url": ["/htm/mp46/49938.htm"], "text": ["\u626b\u6e9c\u3081\u306e\u5973 \u4ef2\u95f4\u4ee5\u5916\u306b\u5174\u5473\u306e\u65e0\u3044\u50b2\u6162\u5909\u6001DQN\u3092\u597d\u304d\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u6e9c\u307e\u308a\u573a\u306b\u5c45\u3064\u304f\u3088\u3046\u306b\u306a\u3063\u305f\u5b64\u72ec\u306a\u5973\u306e\u5b50\u3002\u7231\u3055\u308c\u3066\u3044\u308b\u3068\u52d8\u8fdd\u3044\u3057\u5c3d\u304f\u3057\u7d9a\u3051\u308b\u304c\u90fd\u5408\u306e\u3088\u3044\u30aa\u30ca\u30db\u30fc\u30eb\u6271\u3044\u3055\u308c\u30cf\u30e1\u64ae\u308a\u3092\u30cd\u30c3\u30c8\u306b\u30a2\u30c3\u30d7\u3057\u3066\u91d1\u3092\u7a3c\u3050\u4e3a\u306e\u9053\u5177\u306b\u2026 \u685c\u4e95\u3042\u3086"], "image_paths": ["full/0443206fe81dcc7df2fdb4ae6b1cdd9b8ce88dd7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49938.jpg"]}
{"url": ["/htm/mp46/49936.htm"], "text": ["\u73b0\u5f79\u770b\u62a4\u5e08\u306e\u5468\u672b\u4e2d\u51fa\u3057\u91cc\u30d0\u30a4\u30c8 \u3068\u3082\u307f"], "image_paths": ["full/1466a7ab9820685e8c3a48c33494adb80565d89f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49936.jpg"]}
{"url": ["/htm/mp46/49923.htm"], "text": ["\u826f\u3044\u5b50\u306e\u67d4\u8f6f\u4f53\u64cd3 \u4f0a\u85e4\u679c\u590f"], "image_paths": ["full/3b2be4b34793f1c8b7e18d1ac59eb3dfe273a5d7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49923.jpg"]}
{"url": ["/htm/mp46/49896.htm"], "text": ["\u672a\u5f00\u767a\u306e\u5973\u5b50\u5927\u751f\u304c\u3001\u7231\u6db2\u304c\u6ef4\u308b\u6d53\u5bc6\u30bb\u30c3\u30af\u30b9\u3067\u300e\u30a4\u30af\u30c3\uff01\u300f \u5742\u4e0b\u91cc\u7f8e"], "image_paths": ["full/77ab498493bc89ec358154e9f49bc77a7d9e1510.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49896.jpg"]}
{"url": ["/htm/mp46/49894.htm"], "text": ["\u56f3\u4e66\u5ba4\u3067\u89c1\u304b\u3051\u305f\u5927\u4eba\u3057\u305d\u3046\u306a\u6587\u7cfb\u5973\u5b50\u3092\u30db\u30c6\u30eb\u306b\u8fde\u308c\u8fbc\u3093\u3060\u3089\u3001\u3082\u306e\u3059\u3054\u3044\u597d\u304d\u3082\u306e\u3067\u30ab\u30e9\u30ab\u30e9\u306b\u306a\u308b\u307e\u3067\u5438\u3044\u53d6\u3089\u308c\u3066\u3057\u307e\u3063\u305f\u3002 \u6238\u7530\u30a8\u30df\u30ea"], "image_paths": ["full/4618a811111dedeab89f442f912031713046ad85.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49894.jpg"]}
{"url": ["/htm/mp46/49876.htm"], "text": ["\u6700\u9ad8\u306b\u30a8\u30c3\u30c1\u3067\u53ef\u7231\u3044\u9022\u5742\u306f\u308b\u306a\u304c\u30a2\u30ca\u30bf\u306e\u59b9\u306b\u306a\u3063\u3066\u30e9\u30d6\u30e9\u30d6\u8fd1\u4eb2\u76f8\u5978\u751f\u6d3b"], "image_paths": ["full/737c2cf530254a182a63ca1dc173f729161a743f.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49876.jpg"]}
{"url": ["/htm/mp46/49871.htm"], "text": ["\u68a6\u306e\u8fd1\u4eb2\u76f8\u5978\uff01\u307e\u3060\u307e\u3060\u30a4\u30b1\u308b\u6bcd\u306e\u30c7\u30ab\u5c3b\u306b\u8f9b\u62b1\u305f\u307e\u3089\u3093\uff01\u30d1\u30d1\u306b\u306f\u5185\u7eea\u3067\u4ec6\u306e\u601d\u6625\u671f\u30c1\u25cb\u30dd\u8bf1\u3063\u3066\u304f\u308b\u3093\u3060\u3082\u3093"], "image_paths": ["full/3f797079c31b482f1d2f7786899fc30b08a11797.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49871.jpg"]}
{"url": ["/htm/mp46/49862.htm"], "text": ["\u59b9\u591c\u8fd9\u3044 \u79cd\u4ed8\u3051\u8fd1\u4eb2\u76f8\u5978 \u304a\u5144\u3061\u3083\u3093\u306e\u7cbe\u5b50\u3067\u5b55\u3093\u3067\u304f\u308c\uff01"], "image_paths": ["full/f654fc0d4ba6a6d8228b4e402518a7bdba95bac8.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49862.jpg"]}
{"url": ["/htm/mp46/49822.htm"], "text": ["\u5927\u69fb\u3072\u3073\u304d\u5f0f\u65e9\u6f0f\u30c1\u25cb\u30dd\u5f3a\u5316\u5408\u5bbf"], "image_paths": ["full/a14518284b381ac90317889575c7a854877d3619.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49822.jpg"]}
{"url": ["/htm/mp46/48901.htm"], "text": ["\u6c34\u91ce\u671d\u9633\u3055\u3093\u306e\u3080\u3063\u3061\u3080\u3061\u306a\u304a\u5c3b\u304c\u3042\u307e\u308a\u306b\u3082\u30a8\u30ed\u8fc7\u304e\u3066\u2026\u6211\u6162\u51fa\u6765\u305a\u306b\u601d\u308f\u305a\u633f\u5165\u3057\u3061\u3083\u3044\u307e\u3057\u305f\u3002"], "image_paths": ["full/ef390ec6ceb5cf60cdfab8482388389f319379a7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48901.jpg"]}
{"url": ["/htm/mp46/49858.htm"], "text": ["\u30ea\u30af\u30eb\u30fc\u30c8\u30ae\u30e3\u30eb\u75f4\u6c49"], "image_paths": ["full/273b972669c18563a36de7b5ebc1f6165ca94c48.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/49858.jpg"]}
{"url": ["/htm/mp46/48900.htm"], "text": ["\u6deb\u8bed\u30a2\u30af\u30e1 \u5f3a\u5236\u75f4\u5973\u5316\u8ba1\u753b \u30a8\u30d4\u30bd\u30fc\u30c902 \u521d\u7f8e\u6c99\u5e0c"], "image_paths": ["full/2c4e5d2fea1fb7217ebc5966854a60757d953254.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48900.jpg"]}
{"url": ["/htm/mp46/48878.htm"], "text": ["\u4eba\u59bb\u6c57\u3060\u304f\u30e9\u30c3\u30b7\u30e5\u30a2\u30ef\u30fc \u72d9\u308f\u308c\u305f\u84b8\u308c\u5de8\u4e73 \u4e03\u539f\u3042\u304b\u308a"], "image_paths": ["full/db96c83844629de7c45ee7d59c1383808b024e53.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48878.jpg"]}
{"url": ["/htm/mp46/48851.htm"], "text": ["\u30b9\u30ed\u30fc\u306a\u30cf\u30f3\u30c9\u30c6\u30af\u3067\u3082\u306e\u51c4\u3044\u5c04\u7cbe\u3001\u30d5\u30eb\u52c3\u8d77\u30a8\u30b9\u30c6\u30b5\u30ed\u30f3 \u536f\u6c34\u54b2\u6d41"], "image_paths": ["full/8941cee7cf5a140b002ffe822201d38804184e12.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48851.jpg"]}
{"url": ["/htm/mp46/48850.htm"], "text": ["\u5730\u5143\u306eDQN\u8fbe\u306b\u5f7c\u5973\u3092\u593a\u308f\u308c\u3066\u4f55\u3082\u51fa\u6765\u306a\u3044\u4ec6\u3002 \u307f\u306a\u307f\u83dc\u3005"], "image_paths": ["full/7f831d4cb0342326ea53a0ef44f4b7f67c9694de.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48850.jpg"]}
{"url": ["/htm/mp46/48820.htm"], "text": ["\u540c\u3058\u30de\u30f3\u30b7\u30e7\u30f3\u306e\u4eba\u59bb\u304c\u9732\u51fa\u5ea6\u9ad8\u3081\u8bf1\u60d1\u786e\u4fe1\u72af\uff01\uff01\u30ce\u30fc\u30d6\u30e9\u4e73\u9996\u30c1\u30e9\u306b\u6211\u6162\u6c41\u304c\u8d85\u30e4\u30d0\u3044\uff01\uff01\u663c\u95f4\u304b\u3089\u306eSEX\u3067\u7279\u6d53\u30b6\u30fc\u30e1\u30f3\u6ce8\u5165\u3059\u308b\u3068\u30a4\u30ad\u72c2\u3046\u6f6e\u5439\u304d\u4e2d\u51fa\u3057\u75c9\u631b"], "image_paths": ["full/648cc3db741aadcacb6fff3832a368bbda35d94e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48820.jpg"]}
{"url": ["/htm/mp46/48836.htm"], "text": ["\u6c61\u308c\u305f\u5b66\u56ed \u5236\u670d\u72e9\u308a \u5f69\u4e43\u306a\u306a"], "image_paths": ["full/646f5dcab1c4f7cba7e0318629e0e6963cec5a6e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48836.jpg"]}
{"url": ["/htm/mp46/48819.htm"], "text": ["\u9ad8\u5b66\u6b74\u3067\u5b8c\u74a7\u4e3b\u4e49\u30d7\u30e9\u30a4\u30c9\u9ad8\u3044\u7f8e\u4eba\u304c\u50b2\u6162\u3067\u5468\u56f2\u3092\u4fae\u8fb1\u4ed5\u8fd4\u3057\u5f3a\u5236\u5373\u30cf\u30e1\u306b\u30a2\u30d8\u989c\u5feb\u611f\u3067\u62b5\u6297\u4e0d\u53ef \u56e0\u679c\u5fdc\u62a5\u306e\u4ed5\u4e0a\u3052\u306f\u300c\u304a\u613f\u3044\u2026\u89c1\u306a\u3044\u3067\u2026\u300d\u5c48\u8fb1\u306e\u62d8\u675f\u653e\u7f6e\u30d0\u30a4\u30d6\u6f6e\u5439\u304d"], "image_paths": ["full/58cf42ff38034ea4a99cb996a609df38223ca490.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48819.jpg"]}
{"url": ["/htm/mp46/48806.htm"], "text": ["\u6170\u5b89\u8bfe\u306f\u539f\u5219\u3068\u3057\u3066\u6d3e\u9063\u306e\u307f"], "image_paths": ["full/4ed77d6006c7ae37fe3677637d824eae36f9dc2e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48806.jpg"]}
{"url": ["/htm/mp46/48797.htm"], "text": ["\u4eba\u95f4\u5ec3\u4e1a\u00d7\u9ed2\u4eba \u5357\u307e\u3086"], "image_paths": ["full/36440412f8a5b727f0f3b6799a594ccf558977bf.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48797.jpg"]}
{"url": ["/htm/mp46/48717.htm"], "text": ["\u82e5\u59bb\u4e0d\u4f26\u63a5\u543b\u6e29\u6cc9 \u592b\u306f\u77e5\u3089\u306a\u3044\u59bb\u306e\u6c64\u3051\u3080\u308a\u5bc6\u4f1a\u73b0\u573a"], "image_paths": ["full/fabe41f6f0f47ed2c94ea752128c8cdc34a17e02.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/48717.jpg"]}
{"url": ["/htm/mp46/47351.htm"], "text": ["\u592b\u5987\u3067\u6df7\u6d74\u4e2d\u306e\u5de8\u4e73\u4eba\u59bb\u306b\u52c3\u8d77\u89c1\u305b\u3064\u3051\uff01\uff01\u3042\u307e\u308a\u306b\u82e5\u304f\u305d\u305d\u308a\u305f\u3063\u305f\u30c1\u25cf\u30b3\u306b\u3001\u719f\u3057\u305f\u30de\u25cf\u30b3\u304b\u3089\u30a8\u30ed\u30a8\u30ad\u30b9\u304c\u3060\u3060\u6f0f\u308c\u72b6\u6001\u3002\u65e6\u90a3\u304c\u3044\u308b\u306b\u3082\u5173\u308f\u3089\u305a\u3001\u6d53\u539aSEX\uff01\uff01\u6700\u540e\u306f\u4e2d\u51fa\u3057\u307e\u3067\u613f\u671b\u3059\u308b\u5909\u6001\u59bb\u8fbe\uff01\uff01"], "image_paths": ["full/ddfbe5f3c45387a76499441d90ce159857d371f7.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47351.jpg"]}
{"url": ["/htm/mp46/47247.htm"], "text": ["\u30b7\u30ed\u30a6\u30c8\u8f6f\u6d3e\u3061\u3083\u3093\u306d\u308bDX"], "image_paths": ["full/ca51eb7f3eaf0d4ee6e03ef139346d083389a33e.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47247.jpg"]}
{"url": ["/htm/mp46/47240.htm"], "text": ["\u91cc\u98ce\u4fd7\u6700\u524d\u7ebf\uff01\uff01\u5bdd\u53d6\u3089\u308c\u613f\u671b\u306e\u4eba\u59bb\u304c\u50cd\u3044\u3066\u3044\u308b\u30c7\u30ea\u30d8\u30eb\u547c\u3093\u3060\u3089\u307e\u3055\u304b\u306e\u592b\u5987\u767b\u573a\uff01\uff01\u30ac\u30c1\u5bdd\u53d6\u308a\u30d7\u30ec\u30a4\u3092\u6073\u613f\uff01\uff01\u7231\u629a\u3060\u3051\u3067\u306f\u6e80\u8db3\u3067\u304d\u305a\u300c\u633f\u308c\u3066\u4e0b\u3055\u3044\u300d\u3068\u751f\u4e2d\u51fa\u3057\u30d7\u30ec\u30a4\u3092\u6c42\u3081\u3066\u304f\u308b\u5642\u306f\u672c\u5f53\u306a\u306e\u304b\uff01\uff1f\u5f7b\u5e95SCOOP\uff01"], "image_paths": ["full/f713879290586c427be486843cf018ef6cd47dad.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47240.jpg"]}
{"url": ["/htm/mp46/47268.htm"], "text": ["\u900f\u304d\u901a\u308b\u8272\u767d\u808c\u3068\u67d4\u3089\u304b\u3044\u7b11\u989c\u306b\u6bcd\u6027\u304c\u6e17\u307f\u51fa\u308b\u3075\u3093\u308f\u308a\u7f8e\u4eba\u4eba\u59bb \u897f\u5188\u5948\u592e 43\u6b73 \u6700\u7ec8\u7ae0 \u4e2d\u51fa\u3057\u4e0d\u4f26\u65c5\u884c \u65e6\u90a3\u306b\u5185\u7eea\u3067\u521d\u3081\u3066\u306e\u5916\u6cca?\u771f\u6b63\u4e2d\u51fa\u3057\u89e3\u7981 \u30c1\u30a7\u30c3\u30af\u30a4\u30f3\u540e\u5373SEX?4P?\u62d8\u675f\u304a\u3082\u3061\u3083\u8d23\u3081?\u9732\u5929SEX \u300e20\u5e74\u3076\u308a\u300f\u306e\u30b6\u30fc\u30e1\u30f3\u6ce8\u5165\u3067\u81a3\u5185\u5c04\u7cbe\u306e\u5feb\u611f\u3092\u5b50\u5bab\u3067\u601d\u3044\u51fa\u3057\u4e71\u308c\u308b"], "image_paths": ["full/d6a4db59dd20582d9a0feda189625d8bee7f9b10.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47268.jpg"]}
{"url": ["/htm/mp46/46054.htm"], "text": ["\u56fd\u7acb\u75c5\u9662\u52e4\u52a1\u6b749\u5e74\uff01\uff0128\u6b73\u82e5\u59bb\u306eH\u30ab\u30c3\u30d7\u73b0\u5f79\u770b\u62a4\u5e08\u3055\u3093AV\u30c7\u30d3\u30e5\u30fc \u30ca\u30f3\u30d1JAPAN EXPRESS Vol.33"], "image_paths": ["full/b5a26c8d6f00152d4cb55bcba8a422567be00009.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/46054.jpg"]}
{"url": ["/htm/mp46/46064.htm"], "text": ["\u25cb\u5fdc\u25cb\u587e\u5927\u5b66\u75c5\u9662\u306e\u5973\u533b\u304c\u901a\u3046\u6307\u5727\u533b\u7597\u30de\u30c3\u30b5\u30fc\u30b8\u65bd\u672f\u96625"], "image_paths": ["full/1976c5887d0a2305ee894f22b91d4b221fe07ff6.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/46064.jpg"]}
{"url": ["/htm/mp46/44475.htm"], "text": ["\u6ee9\u30b8\u30e5\u30f3\u00d7\u7d20\u4eba\u304a\u5b85\u8bbf\u95ee"], "image_paths": ["full/af7f86acdecb271144772939307bd27fcbdd9047.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/44475.jpg"]}
{"url": ["/htm/mp46/44573.htm"], "text": ["\u30b7\u5341\u7269\u8bed\uff5eAV\u5973\u4f18\u306b\u9022\u3044\u305f\u304f\u3066\uff5e"], "image_paths": ["full/64ea4ff1cd4cb48cc3f2c52011603fca94c8be29.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/44573.jpg"]}
{"url": ["/htm/mp46/47253.htm"], "text": ["\u4eba\u95f4\u89b3\u5bdf\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 24"], "image_paths": ["full/e463b053121d35c7020969c89e6c38316b0d95bc.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/47253.jpg"]}
{"url": ["/htm/mp46/42176.htm"], "text": ["\u6fc0\u60c5\u89e3\u7981\uff01\u88ab\u9ed1\u4eba\u7684\u5927\u8089\u68d2\u63d2\u5165 \u7eeb\u702c\u306a\u308b\u307f"], "image_paths": ["full/582f9da50b10a1a3859620fcc76b85d013b4fb47.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/42176.jpg"]}
{"url": ["/htm/mp46/43293.htm"], "text": ["\u30b2\u30b9\u306e\u6781\u307f\u6620\u50cf 15\u4eba\u76ee"], "image_paths": ["full/2fed161ea65bc9ea191363ec6f60bfb238d43877.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/43293.jpg"]}
{"url": ["/htm/mp46/42042.htm"], "text": ["\u6fc0\u60c5\u63d2\u5165 \u661f\u91ce\u30ca\u30df"], "image_paths": ["full/0c83cf66cf2f2b58ee071e6ed07c94c386b9956b.jpg"], "image_urls": ["https://tu.bb164.com/javpic/smallpic/42042.jpg"]}
# Automatically created by: scrapy startproject
#
# For more information about the [deploy] section see:
# https://scrapyd.readthedocs.io/en/latest/deploy.html
[settings]
default = mpWebSpider.settings
[deploy]
#url = http://localhost:6800/
project = mpWebSpider
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment