GAY
- 1.My name is Van, I am an artist, a performance artist, I am hired for people to fulfill their fantasies, their deep dark fantasies.
- I was going to be a movie star, you know, was modeling and acting. After a hundred or two auditions and small parts, you know, I decided.. that I had enough, then I ceded into escort work
Turn-ons
- The Kink requested a lot of fetishies, so...I just decided to go...um, you know, for master, and change my whole entire house into dungeon, um...dungeon master, now with the full dungeon, in my house. And it's going really well
Acting the part
- I don't know if I feel kind of...um naked, 'cause I am looking at myself for the first time I think, well, not myself, but this aspect of my life for the first time.
- And it's...man gosh! three to five years already? And I've never thought about it.
黑暗功德錄
姓名 | 性別 | 金額 | 日期 |
---|---|---|---|
香蕉君 | 男 | 100 | 2020-1-1 |
比利王 | 男 | 200 | 2020-1-2 |
木吉 | 男 | 2000 | 2020-3-8 |
生活體驗(yàn)
- 影視欣賞
- 調(diào)教
- 決戰(zhàn)更衣室
圖片欣賞
在線直播網(wǎng)址
[嗶哩嗶哩彈幕視頻網(wǎng)](www.bilibili.com)
代碼
var Koa = require('koa');
var Router = require('koa-router');
var cors = require('koa-cors')
var bodyParser = require('koa-bodyparser');
var app = new Koa();
const router = new Router();
//跨域
app.use(cors({
origin: '[http://127.0.0.1:8080](http://127.0.0.1:8080/)', // 前端地址
credentials: true
}));
app.use(bodyParser())
router.get('/test', async function (ctx, next) {
ctx.body = {
code: 0,
data: ctx.request.query,
path: ctx.request.path,
header : ctx.request.header
};
})
router.post('/test', async function (ctx, next) {
ctx.body = {
code: 0,
data: ctx.request.body,
path: ctx.request.path,
header: ctx.request.header
};
})
app.use(router.routes()).use(router.allowedMethods());
app.listen(8888);