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 |
生活体验
- 影视欣赏
- 调教
- 决战更衣室
图片欣赏
image
image
image
在线直播网址
[哔哩哔哩弹幕视频网](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);