diff --git a/src/api_s2c/ApiBingo.ts b/src/api_s2c/ApiBingo.ts index 70a8a14..52c00a0 100644 --- a/src/api_s2c/ApiBingo.ts +++ b/src/api_s2c/ApiBingo.ts @@ -1,10 +1,10 @@ -import {ApiCall} from "tsrpc"; -import {HeroFun} from '../public/hero'; -import {PlayerFun} from '../public/player'; -import {defaultUserAppend, UserFun} from '../public/user'; -import {ReqBingo, ResBingo} from "../shared/protocols/PtlBingo"; -import {ReqEmail} from "../monopoly/protocols/PtlEmail"; -import {EmailFun} from "../public/email"; +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../public/hero'; +import { PlayerFun } from '../public/player'; +import { defaultUserAppend, UserFun } from '../public/user'; +import { ReqBingo, ResBingo } from "../shared/protocols/PtlBingo"; +import { ReqEmail } from "../monopoly/protocols/PtlEmail"; +import { EmailFun } from "../public/email"; export default async function (call: ApiCall) { // TODO @@ -72,37 +72,37 @@ export default async function (call: ApiCall) { if (!G.gc.item[shell[1]]) return call.error(`道具id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addItem(call, [{a: 'item', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addItem(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'hero') { if (!G.gc.hero[shell[1]]) return call.error(`英雄id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addHero(call, [{a: 'item', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addHero(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'equip') { if (!G.gc.equip[shell[1]]) return call.error(`装备id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addEquip(call, [{a: 'equip', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addEquip(call, [{ a: 'equip', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'shiwu') { if (!G.gc.shiwu[shell[1]]) return call.error(`饰物id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); if (isNaN(parseInt(shell[3]))) return call.error(`请输入正确的品质`); - await PlayerFun.addShiwu(call, [{a: 'shiwu', t: shell[1], n: parseInt(shell[2]), colour: parseInt(shell[3])}]); + await PlayerFun.addShiwu(call, [{ a: 'shiwu', t: shell[1], n: parseInt(shell[2]), colour: parseInt(shell[3]) }]); } else if (shell[0] == 'peijian') { if (!G.gc.peijian[shell[1]]) return call.error(`配件id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addPeijian(call, [{a: 'peijian', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addPeijian(call, [{ a: 'peijian', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell[0] == 'attr') { if (G.gc.attr[shell[1]] == undefined) return call.error(`道具id不存在:${shell[1]}`); if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); - await PlayerFun.addAttr(call, [{a: 'attr', t: shell[1], n: parseInt(shell[2])}]); + await PlayerFun.addAttr(call, [{ a: 'attr', t: shell[1], n: parseInt(shell[2]) }]); } else if (shell.length == 2) { @@ -141,6 +141,9 @@ export default async function (call: ApiCall) { } if (shell[3]) emailMsg.prize = JSON.parse(shell[3]) EmailFun.addEmail(emailMsg); + } else if (shell[0] == "heroskin") { + PlayerFun.sendPrize(call, [{ a: "heroskin", "t": shell[1], n: 1 }]); } + call.succ('succ'); } \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiTakeOff.ts b/src/api_s2c/heroskin/ApiTakeOff.ts new file mode 100644 index 0000000..08621a9 --- /dev/null +++ b/src/api_s2c/heroskin/ApiTakeOff.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { ReqTakeOff, ResTakeOff } from "../../shared/protocols/heroskin/PtlTakeOff"; +import { HeroFun } from "../../public/hero"; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroOid); + if (!hero) { // 英雄不存在 + call.error(lng.hero_1); + return; + } + + if (!hero.skin) { // 没有穿戴皮肤 + call.error(lng.hero_22); + return; + } + + await HeroFun.changeHeroAttr(call, hero, { skin: "" }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiUplv.ts b/src/api_s2c/heroskin/ApiUplv.ts new file mode 100644 index 0000000..667c448 --- /dev/null +++ b/src/api_s2c/heroskin/ApiUplv.ts @@ -0,0 +1,38 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../public/player"; +import { ReqUplv, ResUplv } from "../../shared/protocols/heroskin/PtlUplv"; +import HeroSkinFun from "../../public/heroskin"; + + +export default async function (call: ApiCall) { + let skin = HeroSkinFun.getHeroSkin(call); + if (!skin[call.req.skid]) {// 皮肤未获得 + call.error(lng.hero_20); + } + + let cur_lv = skin[call.req.skid]; + let skinconf = G.gc.heroSkin[call.req.skid]; + + let need = []; + for (let i = 0; i < call.req.lv; i++) { + need = need.concat( + G.gc.heroSkinLv[skinconf.colour][cur_lv + i].need + ) + let conf = G.gc.heroSkin[call.req.skid]; + need.push({ a: "item", "t": conf.heroId, "n": G.gc.heroSkinLv[skinconf.colour][cur_lv + i].suipian }); + } + + // 检测消耗 + await PlayerFun.checkNeedIsMeet(call, need); + + // 扣除消耗 + await PlayerFun.cutNeed(call, need); + + // 更新等级 + skin[call.req.skid] = cur_lv + call.req.lv; + + // 更新skinlv + await HeroSkinFun.updateHeroSkinLv(call, { [call.req.skid]: cur_lv + call.req.lv }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/heroskin/ApiWear.ts b/src/api_s2c/heroskin/ApiWear.ts new file mode 100644 index 0000000..2523361 --- /dev/null +++ b/src/api_s2c/heroskin/ApiWear.ts @@ -0,0 +1,28 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from "../../public/hero"; +import { ReqWear, ResWear } from "../../shared/protocols/heroskin/PtlWear"; +import HeroSkinFun from "../../public/heroskin"; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroOid); + if (!hero) { // 英雄不存在 + call.error(lng.hero_1); + return; + } + + let skin = HeroSkinFun.getHeroSkin(call); + if (!skin || !skin[call.req.skid]) { // 皮肤不存在 + call.error(lng.hero_20); + return; + } + + let skinconf = G.gc.heroSkin[call.req.skid]; + if (skinconf.heroId != hero.heroId) { // 皮肤不属于该英雄 + call.error(lng.hero_21); + return; + } + + await HeroFun.changeHeroAttr(call, hero, { skin: call.req.skid }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiChangeInfo.ts b/src/api_s2c/user/ApiChangeInfo.ts index 5bfac14..2bc00b3 100644 --- a/src/api_s2c/user/ApiChangeInfo.ts +++ b/src/api_s2c/user/ApiChangeInfo.ts @@ -20,7 +20,8 @@ export default async function (call: ApiCall) { vip: call.conn.gud.vip, lsyx: call.conn.lshd.hero, model: call.conn.gud.model, - active: active + active: active, + heroskin: call.conn.gud.heroskin }); if (!isMeet && call.req.type != 'headFrame' && call.req.type != 'chatFrame') return call.error(globalThis.lng.user_1); diff --git a/src/cross/protocols/serviceProto.ts b/src/cross/protocols/serviceProto.ts index 4dbf718..52471c8 100644 --- a/src/cross/protocols/serviceProto.ts +++ b/src/cross/protocols/serviceProto.ts @@ -1319,7 +1319,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "weiwangbuff", + "name": "heroskin", "type": { "type": "Interface", "indexSignature": { @@ -1721,6 +1721,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, diff --git a/src/json/clsl_com.json5 b/src/json/clsl_com.json5 index c57676d..51137da 100644 --- a/src/json/clsl_com.json5 +++ b/src/json/clsl_com.json5 @@ -1,11 +1,18 @@ { - //赛区划分按照周三23:50的时候王者玩家100个一组 - //赛区划分时间周三23:50 - divideTime: 258600, - //挑战时间周一08:00——周六22:00 + //赛区划分 + divide: [ + { day: [1, 30], group: 0 }, + { day: [31, 60], group: 1 }, + { day: [61, 120], group: 2 }, + { day: [121, 210], group: 3 }, + { day: [211, 99999999], group: 4 }, + ], + //赛区划分时间 + divideTime: 0, + //挑战时间 fightTime: [28800, 511200], - //发奖时间周六22:05 - prizeTime: 511500, + //发奖时间 + prizeTime: 598200, //胜场奖励 fightWinPrize: [ { total: 5, prize: [{ a: 'attr', t: 'clsl_sd', n: 1 },{ a: 'item', t: '37', n: 1 }], star: 1 }, @@ -32,13 +39,13 @@ ], //段位奖励 danPrize: [ - { star: 49, title: "clsl_7", prize: [{ a: 'item', t: '605', n:3 },{ a: 'item', t: '29', n:10 },{ a: 'item', t: '631', n:3 },{ a: 'item', t: '40', n:1 }] }, - { star: 39, title: "clsl_6", prize: [{ a: 'item', t: '605', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:2 }] }, - { star: 29, title: "clsl_5", prize: [{ a: 'item', t: '606', n:3 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:1 }] }, - { star: 21, title: "clsl_4", prize: [{ a: 'item', t: '606', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:1000 }] }, - { star: 13, title: "clsl_3", prize: [{ a: 'item', t: '606', n:1 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:800 }] }, - { star: 7, title: "clsl_2", prize: [{ a: 'item', t: '29', n:10 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:600 }] }, - { star: 0, title: "clsl_1", prize: [{ a: 'item', t: '29', n:5 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:400 }] } + { star: 49, prize: [{ a: 'item', t: '605', n:3 },{ a: 'item', t: '29', n:10 },{ a: 'item', t: '631', n:3 },{ a: 'item', t: '40', n:1 }] }, + { star: 39, prize: [{ a: 'item', t: '605', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:2 }] }, + { star: 29, prize: [{ a: 'item', t: '606', n:3 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '631', n:1 }] }, + { star: 21, prize: [{ a: 'item', t: '606', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:1000 }] }, + { star: 13, prize: [{ a: 'item', t: '606', n:1 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:800 }] }, + { star: 7, prize: [{ a: 'item', t: '29', n:10 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:600 }] }, + { star: 0, prize: [{ a: 'item', t: '29', n:5 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:400 }] } ], //王者排名邮件信息 email_rank: { diff --git a/src/json/huodong.json5 b/src/json/huodong.json5 index d8d2549..0d50fa0 100644 --- a/src/json/huodong.json5 +++ b/src/json/huodong.json5 @@ -8,11 +8,11 @@ "rtime" : 300, // 活动显示结束天数 "etime" : 300, // 活动实际结束 "name": "intr_ychd_title_1", - "icon": "dfry_qhdr", + "icon": "dfry_qhdr", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //模板 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr1: 'intr_yczm_tips_2', intr2: 'intr_yczm_tips_3', @@ -101,153 +101,153 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [[2],5], tasklist:{ - '1': { - '1001': { - 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 5, - 'cond': ['4'], - 'stype': 115, - //任务进度计数是否清零:0-不配 1-清零 - 'zero': 1 + '1': { + '1001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + //任务进度计数是否清零:0-不配 1-清零 + 'zero': 1 + }, + '1002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, }, - '1002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 10, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '2002': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '2003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '2004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, }, - '1003': { - 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 15, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '1004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 25, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - }, - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 600, - 'cond': ['2'], - 'stype': 134 - }, - '2002': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 2000, - 'cond': ['2'], - 'stype': 134 - }, - '2003': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 13000, - 'cond': ['2'], - 'stype': 134 - }, - '2004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 35000, - 'cond': ['2'], - 'stype': 134 - }, - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - }, - '3003': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 5, - 'cond': [], - 'stype': 135 - }, - }, - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + }, + '3003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 5, + 'cond': [], + 'stype': 135 + }, }, + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, } } } @@ -261,9 +261,9 @@ "rtime" : 3, "etime" : 3, "name": "intr_ychd_title_4", - "icon": "dfry_qhdr", + "icon": "dfry_qhdr", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日获得紫色装备 mfmid 1683191 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -341,104 +341,104 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录(一次性任务) 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 5, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, }, - '4002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 10, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 15, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 25, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 600, - 'cond': ['2'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 2000, - 'cond': ['2'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 13000, - 'cond': ['2'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 35000, - 'cond': ['2'], - 'stype': 134 - }, - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } - } } } }, @@ -451,9 +451,9 @@ "rtime" : 6, "etime" : 6, "name": "intr_ychd_title_5", - "icon": "dfry_cscp", + "icon": "dfry_cscp", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日修复胶 mfmid 1683192 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -531,101 +531,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 600, - 'cond': ['21'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 1200, - 'cond': ['21'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 2000, - 'cond': ['21'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3600, - 'cond': ['21'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 5400, - 'cond': ['21'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 7200, - 'cond': ['21'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 9200, - 'cond': ['21'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 12000, - 'cond': ['21'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -637,9 +637,9 @@ "rtime" : 9, // 活动显示结束天数 "etime" : 9, // 活动实际结束 "name": "intr_ychd_title_6", - "icon": "dfry_zswq", + "icon": "dfry_zswq", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日专属材料 mfmid 1683193 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -725,101 +725,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 100, - 'cond': ['10'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 300, - 'cond': ['10'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 500, - 'cond': ['10'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 1000, - 'cond': ['10'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -831,10 +831,10 @@ "rtime" : 12, // 活动显示结束天数 "etime" : 12, // 活动实际结束 "name": "intr_ychd_title_7", - "icon": "dfry_ypj", + "icon": "dfry_ypj", "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日紫色配件 mfmid 1683194 + "data" : { + //每日紫色配件 mfmid 1683194 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr3: 'intr_yczm_tips_5', @@ -911,110 +911,110 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 1, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 2500}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } + }, - '4002': { - 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 6, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '28', 'n': 2500}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 12, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 18, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 40, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4006': { - 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 50, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4007': { - 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 60, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4008': { - 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 70, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - } - - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -1026,10 +1026,10 @@ "rtime" : 15, // 活动显示结束天数 "etime" : 15, // 活动实际结束 "name": "intr_ychd_title_8", - "icon": "dfry_sxzs", + "icon": "dfry_sxzs", "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日装备蓝图 mfmid 1683195 + "data" : { + //每日装备蓝图 mfmid 1683195 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr3: 'intr_yczm_tips_5', @@ -1113,103 +1113,103 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 100, - 'cond': ['18'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 100, + 'cond': ['18'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '18', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 400, + 'cond': ['18'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 900, + 'cond': ['18'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '18', 'n': 80}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 1600, + 'cond': ['18'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '18', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 2500, + 'cond': ['18'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '18', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 3500, + 'cond': ['18'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '627', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 4500, + 'cond': ['18'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 6000, + 'cond': ['18'], + 'stype': 134 + } + }, - '4002': { - 'prize': [{'a': 'item', 't': '18', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 400, - 'cond': ['18'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 900, - 'cond': ['18'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '18', 'n': 80}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 1600, - 'cond': ['18'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '18', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 2500, - 'cond': ['18'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '18', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 3500, - 'cond': ['18'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '627', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 4500, - 'cond': ['18'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 6000, - 'cond': ['18'], - 'stype': 134 - } - - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } } - } }, { "hdid" : 8, // 唯一活动id @@ -1220,10 +1220,10 @@ "rtime" : 18, // 活动显示结束天数 "etime" : 18, // 活动实际结束 "name": "intr_ychd_title_9", - "icon": "dfry_jxtj", + "icon": "dfry_jxtj", "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日装备调校合金 mfmid 1683198 + "data" : { + //每日装备调校合金 mfmid 1683198 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr3: 'intr_yczm_tips_5', @@ -1300,101 +1300,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '19', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 90, - 'cond': ['19'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '19', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 90, + 'cond': ['19'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '19', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 200, + 'cond': ['19'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '19', 'n': 40}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 400, + 'cond': ['19'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '19', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 700, + 'cond': ['19'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '19', 'n': 60}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1000, + 'cond': ['19'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '19', 'n': 70}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1500, + 'cond': ['19'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 2000, + 'cond': ['19'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 3000, + 'cond': ['19'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '19', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 200, - 'cond': ['19'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '19', 'n': 40}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 400, - 'cond': ['19'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '19', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 700, - 'cond': ['19'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '19', 'n': 60}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 1000, - 'cond': ['19'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '19', 'n': 70}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 1500, - 'cond': ['19'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 2000, - 'cond': ['19'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 3000, - 'cond': ['19'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '19', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '19', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '19', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '19', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -1406,10 +1406,10 @@ "rtime" : 21, // 活动显示结束天数 "etime" : 21, // 活动实际结束 "name": "intr_ychd_title_10", - "icon": "dfry_qnbf", + "icon": "dfry_qnbf", "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日人才档案和营养液 mfmid 1683199 + "data" : { + //每日人才档案和营养液 mfmid 1683199 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr3: 'intr_yczm_tips_5', @@ -1493,101 +1493,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 20000, - 'cond': ['27'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 40000, - 'cond': ['27'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 60000, - 'cond': ['27'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 80000, - 'cond': ['27'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 120000, - 'cond': ['27'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 400, - 'cond': ['13'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1000, - 'cond': ['13'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1800, - 'cond': ['13'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -1599,9 +1599,9 @@ "rtime" : 24, // 活动显示结束天数 "etime" : 24, // 活动实际结束 "name": "intr_ychd_title_5", - "icon": "dfry_cscp", + "icon": "dfry_cscp", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日修复胶 mfmid 16831910 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -1679,101 +1679,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 600, - 'cond': ['21'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 1200, - 'cond': ['21'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 2000, - 'cond': ['21'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3600, - 'cond': ['21'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 5400, - 'cond': ['21'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 7200, - 'cond': ['21'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 9200, - 'cond': ['21'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 12000, - 'cond': ['21'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -1785,9 +1785,9 @@ "rtime" : 27, // 活动显示结束天数 "etime" : 27, // 活动实际结束 "name": "intr_ychd_title_6", - "icon": "dfry_zswq", + "icon": "dfry_zswq", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日专属材料 mfmid 16831911 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -1873,101 +1873,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 100, - 'cond': ['10'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 300, - 'cond': ['10'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 500, - 'cond': ['10'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 1000, - 'cond': ['10'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -1979,10 +1979,10 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "intr_ychd_title_7", - "icon": "dfry_ypj", + "icon": "dfry_ypj", "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日紫色配件 mfmid 16831912 + "data" : { + //每日紫色配件 mfmid 16831912 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', intr3: 'intr_yczm_tips_5', @@ -2059,109 +2059,109 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 1, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 6, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 12, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 18, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 40, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4006': { - 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 50, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4007': { - 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 60, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4008': { - 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 70, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -2173,9 +2173,9 @@ "rtime" : 33, // 活动显示结束天数 "etime" : 33, // 活动实际结束 "name": "intr_ychd_title_10", - "icon": "dfry_qnbf", + "icon": "dfry_qnbf", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //每日人才档案和营养液 mfmid 16831915 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr0: 'intr_yczm_tips_1', @@ -2260,101 +2260,101 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [], tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 20000, - 'cond': ['27'], - 'stype': 134 + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } }, - '4002': { - 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 40000, - 'cond': ['27'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 60000, - 'cond': ['27'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 80000, - 'cond': ['27'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 120000, - 'cond': ['27'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 400, - 'cond': ['13'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1000, - 'cond': ['13'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1800, - 'cond': ['13'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } } } - } } }, { @@ -2366,9 +2366,9 @@ "rtime" : 7, // 活动显示结束天数 "etime" : 7, // 活动实际结束 "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", + "icon": "dfry_rcjh", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //轮数抽卡 mfmid 168318 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr2: 'intr_yczm_tips_3', @@ -2436,76 +2436,76 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [[2],5], tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } } - } } } }, - - { + + { "hdid" : 101, // 唯一活动id 人才计划 "htype" : 1, // 后端唯一识别标识(1:养成目标) "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) @@ -2514,9 +2514,9 @@ "rtime" : 21, // 活动显示结束天数 "etime" : 21, // 活动实际结束 "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", + "icon": "dfry_rcjh", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //轮数抽卡 mfmid 168318 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr2: 'intr_yczm_tips_3', @@ -2584,76 +2584,76 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [[2],5], tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } } - } } } }, - - { + + { "hdid" : 102, // 唯一活动id 人才计划 "htype" : 1, // 后端唯一识别标识(1:养成目标) "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) @@ -2662,9 +2662,9 @@ "rtime" : 35, // 活动显示结束天数 "etime" : 35, // 活动实际结束 "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", + "icon": "dfry_rcjh", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //轮数抽卡 mfmid 168318 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr2: 'intr_yczm_tips_3', @@ -2732,75 +2732,75 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [[2],5], tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } } - } } } }, - { + { "hdid" : 103, // 唯一活动id 人才计划 "htype" : 1, // 后端唯一识别标识(1:养成目标) "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) @@ -2809,9 +2809,9 @@ "rtime" : 49, // 活动显示结束天数 "etime" : 49, // 活动实际结束 "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", + "icon": "dfry_rcjh", "showtime" : "仅供参考,会复写正确值", - "data" : { + "data" : { //轮数抽卡 mfmid 168318 //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 intr2: 'intr_yczm_tips_3', @@ -2879,71 +2879,71 @@ //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 maxlun: [[2],5], tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } } - } } } }, @@ -2956,7 +2956,7 @@ "rtime" : 14, // 活动显示结束天数 "etime" : 14, // 活动实际结束 "name": "diaoluoduihuan", - "icon": "icon_ywtx", + "icon": "icon_ywtx", "showtime" : "仅供参考,会复写正确值", "data" : { //对应mfm 14701 @@ -2969,7 +2969,7 @@ p: 10, s: 3600 } - + ], tiaozhuan: 3, event: { @@ -3017,7 +3017,7 @@ "rtime" : 28, // 活动显示结束天数 "etime" : 28, // 活动实际结束 "name": "diaoluoduihuan", - "icon": "icon_ywtx", + "icon": "icon_ywtx", "showtime" : "仅供参考,会复写正确值", "data" : { //对应mfm 14701 @@ -3030,7 +3030,7 @@ p: 10, s: 3600 } - + ], tiaozhuan: 3, event: { @@ -3061,17 +3061,17 @@ ], gift: [ { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_3_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_3_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_3_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_3_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_3_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, ] } } }, - - { + + { "hdid" : 2002, // 唯一活动id 掉落兑换活动 "htype" : 2, // 后端唯一识别标识 "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) @@ -3080,7 +3080,7 @@ "rtime" : 42, // 活动显示结束天数 "etime" : 42, // 活动实际结束 "name": "diaoluoduihuan", - "icon": "icon_ywtx", + "icon": "icon_ywtx", "showtime" : "仅供参考,会复写正确值", "data" : { //对应mfm 14701 @@ -3093,7 +3093,7 @@ p: 10, s: 3600 } - + ], tiaozhuan: 3, event: { @@ -3124,17 +3124,17 @@ ], gift: [ { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_2_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_2_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_2_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_2_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_2_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, ] } } }, - - { + + { "hdid" : 2003, // 唯一活动id 掉落兑换活动 "htype" : 2, // 后端唯一识别标识 "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) @@ -3143,7 +3143,7 @@ "rtime" : 56, // 活动显示结束天数 "etime" : 56, // 活动实际结束 "name": "diaoluoduihuan", - "icon": "icon_ywtx", + "icon": "icon_ywtx", "showtime" : "仅供参考,会复写正确值", "data" : { //对应mfm 14701 @@ -3156,7 +3156,7 @@ p: 10, s: 3600 } - + ], tiaozhuan: 3, event: { @@ -3187,11 +3187,11 @@ ], gift: [ { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_4_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_4_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_4_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_4_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_4_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, ] } } @@ -3206,7 +3206,7 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "xinfupeiyang", - "icon": "icon_qiridenglu", + "icon": "icon_qiridenglu", "showtime" : "仅供参考,会复写正确值", "data" : { //干部id @@ -3237,23 +3237,23 @@ "rtime" : 60, // 活动显示结束天数 "etime" : 60, // 活动实际结束 "name": "xinfupeiyang", - "icon": "icon_qiridenglu", + "icon": "icon_qiridenglu", "showtime" : "仅供参考,会复写正确值", "data" : { //干部id hid: '5002', //任务 task: [ - { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2'}, - { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_1' }, - { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2' }, - { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_1' }, - { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_2' }, - { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_1' }, - { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_2' }, - { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_1' }, - { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_2' }, - { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_1' } + { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -3268,30 +3268,30 @@ "rtime" : 90, // 活动显示结束天数 "etime" : 90, // 活动实际结束 "name": "xinfupeiyang", - "icon": "icon_xfdj", + "icon": "icon_xfdj", "showtime" : "仅供参考,会复写正确值", "data" : { //干部id hid: '5004', //任务 task: [ - { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2'}, - { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_1' }, - { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2' }, - { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_1' }, - { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_2' }, - { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_1' }, - { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_2' }, - { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_1' }, - { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_2' }, - { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_1' } + { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } } }, { - "hdid" : 4000, // 唯一活动id 自选礼包 定制礼包 + "hdid" : 4000, // 唯一活动id 自选礼包 "htype" : 4, // 后端唯一识别标识 "stype" : 400, // 前端唯一识别标识(看前端需要是否修改) "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 @@ -3299,7 +3299,7 @@ "rtime" : 29, // 活动显示结束天数 "etime" : 29, // 活动实际结束 "name": "zixuanlibao", - "icon": "icon_tuisonglibao", + "icon": "icon_tuisonglibao", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { //活动文本描述 @@ -3350,7 +3350,7 @@ { "1":{a: 'item', t: '27', n: 7000}, "2":{a: 'item', t: '1', n: 200000} - } + } ] }, { @@ -3389,7 +3389,7 @@ } ] }, - { + { need: [], free: false, payId: 'zixuanlibao328', @@ -3428,7 +3428,7 @@ ] } }, - + { "hdid" : 5000, // 唯一活动id 累计充值 "htype" : 5, // 后端唯一识别标识 @@ -3438,7 +3438,7 @@ "rtime" : 7, // 活动显示结束天数 "etime" : 7, // 活动实际结束 "name": "leijichongzhi", - "icon": "icon_leijichongzhi", + "icon": "icon_leijichongzhi", "showtime" : "仅供参考,会复写正确值", "data" : { tasks: [ @@ -3449,11 +3449,11 @@ { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5001, // 唯一活动id 累计充值 + ] + } + }, + { + "hdid" : 5001, // 唯一活动id 累计充值 "htype" : 5, // 后端唯一识别标识 "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 @@ -3461,7 +3461,7 @@ "rtime" : 14, // 活动显示结束天数 "etime" : 14, // 活动实际结束 "name": "leijichongzhi", - "icon": "icon_leijichongzhi", + "icon": "icon_leijichongzhi", "showtime" : "仅供参考,会复写正确值", "data" : { tasks: [ @@ -3472,11 +3472,11 @@ { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5002, // 唯一活动id 累计充值 + ] + } + }, + { + "hdid" : 5002, // 唯一活动id 累计充值 "htype" : 5, // 后端唯一识别标识 "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 @@ -3484,7 +3484,7 @@ "rtime" : 21, // 活动显示结束天数 "etime" : 21, // 活动实际结束 "name": "leijichongzhi", - "icon": "icon_leijichongzhi", + "icon": "icon_leijichongzhi", "showtime" : "仅供参考,会复写正确值", "data" : { tasks: [ @@ -3495,11 +3495,11 @@ { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5003, // 唯一活动id 累计充值 + ] + } + }, + { + "hdid" : 5003, // 唯一活动id 累计充值 "htype" : 5, // 后端唯一识别标识 "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 @@ -3507,7 +3507,7 @@ "rtime" : 28, // 活动显示结束天数 "etime" : 28, // 活动实际结束 "name": "leijichongzhi", - "icon": "icon_leijichongzhi", + "icon": "icon_leijichongzhi", "showtime" : "仅供参考,会复写正确值", "data" : { tasks: [ @@ -3518,9 +3518,9 @@ { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, + ] + } + }, { "hdid" : 6000, // 唯一活动id 七日登录 "htype" : 6, // 后端唯一识别标识 @@ -3530,7 +3530,7 @@ "rtime" : 7, // 活动显示结束天数 "etime" : 7, // 活动实际结束 "name": "mainView_txt_huod1450", - "icon": "icon_qiridenglu", + "icon": "icon_qiridenglu", "showtime" : "仅供参考,会复写正确值", "data" : { "arr": [ @@ -3565,7 +3565,7 @@ ] } }, - { + { "hdid" : 7000, // 唯一活动id 开服狂欢 "htype" : 7, // 后端唯一识别标识 "stype" : 700, // 前端唯一识别标识(看前端需要是否修改) @@ -3574,669 +3574,669 @@ "rtime" : 7, // 活动显示结束天数 "etime" : 7, // 活动实际结束 "name": "KFKH", - "icon": "btn_kfkh", + "icon": "btn_kfkh", "showtime" : "仅供参考,会复写正确值", "data" : { - //登陆奖励 - loginPrize: [ - [{ a: 'equip', t: '3003', n: 1 }], - [{ a: 'item', t: '618', n: 1 }], - [{ a: 'item', t: '12', n: 200 }], - [{ a: 'item', t: '2', n: 400 }], - [{ a: 'attr', t: 'rmbmoney', n: 1500 }], - [{ a: 'attr', t: 'jinbi', n: 300000 }], - [{ a: 'item', t: '617', n: 1 }] - ], - //商品 - shop: [ - { buyNum: 1, day: 1, vip: 1, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 400 }], prize: [{ a: 'item', t: '2', n: 1000 }] }, - { buyNum: 1, day: 1, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1200 }], prize: [{ a: 'hero', t: '4010', n: 1 }] }, - { buyNum: 1, day: 2, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 680 }], prize: [{ a: 'item', t: '27', n: 5000 }] }, - { buyNum: 1, day: 2, vip: 3, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '620', n: 1 }] }, - { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '6', n: 20 }] }, - { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '615', n: 1 }] }, - { buyNum: 1, day: 4, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 600 }], prize: [{ a: 'item', t: '12', n: 800 }] }, - { buyNum: 1, day: 4, vip: 5, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, - { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1250 }], prize: [{ a: 'item', t: '1', n: 3000000 }] }, - { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, - { buyNum: 1, day: 6, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 625 }], prize: [{ a: 'attr', t: 'jinbi', n: 10000000 }] }, - { buyNum: 1, day: 6, vip: 6, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4440 }], prize: [{ a: 'item', t: '18', n: 888 }] }, - { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '24', n: 10 }] }, - { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4500 }], prize: [{ a: 'item', t: '617', n: 1 }] }, - { buyNum: 1, day: 7, vip: 7, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '625', n: 1 }] }, - ], - //任务 - taskType: { - '今日登陆': 'toDayLogin_x', - '今日累计充值x元': 'toDayPay_x', - '任意装备强化至x级': 'equip_qh_lv', - '竞技场排名达到x': 'jjc_rank', - '同时出战x名紫色干部': 'fight_hero_colour_4', - '通过黑暗塔关卡': 'zccg_level', - '拥有x件蓝色及以上装备': 'has_equip_color_3', - '拥有x名进阶+1的干部': 'has_hero_jieji_1', - '佣兵助战上阵x个干部 ': 'helpHeros', - '维修厂老实轿车突破到x阶x星 ': 'wxcLv', - '干部羁绊属性激活x条 ': 'hero_jiban', - '玩家等级达到x级': 'lv', - '玩家总战力达到x': 'power', - '主线关卡': 'mapId' - }, - task: { - '1': [ - { taskId:'intr_task_name_444', taskType: 'toDayLogin_1', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_430', taskType: 'toDayPay_1', total: 1000, prize: [{ a:'attr', t:'rmbmoney', n: 500 },{ a:'item', t:'2', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_431', taskType: 'toDayPay_1', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'item', t:'12', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_432', taskType: 'toDayPay_1', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'item', t:'2', n: 2000 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_433', taskType: 'toDayPay_1', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'12', n: 1000 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_434', taskType: 'mapId' , total: 20, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_435', taskType: 'mapId' , total: 30, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_436', taskType: 'mapId' , total: 40, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_437', taskType: 'mapId' , total: 50, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_438', taskType: 'mapId' , total: 60, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_439', taskType: 'equip_qh_lv', total: 10, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_440', taskType: 'equip_qh_lv', total: 20, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_441', taskType: 'equip_qh_lv', total: 30, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_442', taskType: 'equip_qh_lv', total: 40, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_443', taskType: 'equip_qh_lv', total: 50, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '2': [ - { taskId:'intr_task_name_444', taskType: 'toDayLogin_2', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'618', n: 1 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_445', taskType: 'toDayPay_2', total: 2000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_446', taskType: 'toDayPay_2', total: 4000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_447', taskType: 'toDayPay_2', total: 6000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_448', taskType: 'toDayPay_2', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_449', taskType: 'jjc_rank', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 100 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_450', taskType: 'jjc_rank', total: 50, prize: [{ a:'attr', t:'rmbmoney', n: 150 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_451', taskType: 'jjc_rank', total: 20, prize: [{ a:'attr', t:'rmbmoney', n: 200 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_452', taskType: 'jjc_rank', total: 10, prize: [{ a:'attr', t:'rmbmoney', n: 250 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_453', taskType: 'jjc_rank', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_454', taskType: 'fight_hero_colour_4', total: 2, prize: [{ a:'item', t:'2', n: 20 },{ a:'attr', t:'jinbi', n: 10000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_455', taskType: 'fight_hero_colour_4', total: 3, prize: [{ a:'item', t:'2', n: 30 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_456', taskType: 'fight_hero_colour_4', total: 4, prize: [{ a:'item', t:'2', n: 50 },{ a:'attr', t:'jinbi', n: 30000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_457', taskType: 'fight_hero_colour_4', total: 5, prize: [{ a:'item', t:'2', n: 100 },{ a:'attr', t:'jinbi', n: 40000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_458', taskType: 'fight_hero_colour_4', total: 6, prize: [{ a:'item', t:'2', n: 150 },{ a:'attr', t:'jinbi', n: 100000 }],"tiaozhuan": 2 } - ], - '3': [ - { taskId:'intr_task_name_459', taskType: 'toDayLogin_3', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'equip', t:'3003', n: 1 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_460', taskType: 'toDayPay_3', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 1500 },{ a:'item', t:'23', n: 50000 },{ a:'item', t:'601', n: 2 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_461', taskType: 'toDayPay_3', total: 5000, prize: [{ a:'item', t:'12', n: 2500 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'601', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_462', taskType: 'toDayPay_3', total: 10000, prize: [{ a:'item', t:'2', n: 5000 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_463', taskType: 'toDayPay_3', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 2000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'601', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_464', taskType: 'zccg_level', total: 15, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'26', n: 1 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_465', taskType: 'zccg_level', total: 17, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 2 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_466', taskType: 'zccg_level', total: 19, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 3 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_467', taskType: 'zccg_level', total: 22, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 4 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_468', taskType: 'zccg_level', total: 25, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 5 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_469', taskType: 'has_equip_color_3', total: 8, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_470', taskType: 'has_equip_color_3', total: 12, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_471', taskType: 'has_equip_color_4', total: 2, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_472', taskType: 'has_equip_color_4', total: 4, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_473', taskType: 'has_equip_color_4', total: 6, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 8 } - ], - '4': [ - { taskId:'intr_task_name_474', taskType: 'toDayLogin_4', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_475', taskType: 'toDayPay_4', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 2500 },{ a:'item', t:'12', n: 1800 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_476', taskType: 'toDayPay_4', total: 8000, prize: [{ a:'item', t:'12', n: 3000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_477', taskType: 'toDayPay_4', total: 15000, prize: [{ a:'item', t:'9', n: 1250 },{ a:'attr', t:'nexp', n: 200000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_478', taskType: 'toDayPay_4', total: 20000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_479', taskType: 'mapId' , total: 70, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_480', taskType: 'mapId' , total: 75, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_481', taskType: 'mapId' , total: 80, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_482', taskType: 'mapId' , total: 85, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_483', taskType: 'mapId' , total: 90, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_484', taskType: 'has_hero_jieji_1', total: 6, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_485', taskType: 'has_hero_jieji_2', total: 5, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_486', taskType: 'has_hero_jieji_3', total: 3, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_487', taskType: 'has_hero_jieji_4', total: 1, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_488', taskType: 'has_hero_jieji_4', total: 2, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '5': [ - { taskId:'intr_task_name_489', taskType: 'toDayLogin_5', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_490', taskType: 'toDayPay_5', total: 10000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_491', taskType: 'toDayPay_5', total: 15000, prize: [{ a:'item', t:'10', n: 250 },{ a:'attr', t:'nexp', n: 250000 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_492', taskType: 'toDayPay_5', total: 20000, prize: [{ a:'item', t:'9', n: 3000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'6', n: 50 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_493', taskType: 'toDayPay_5', total: 28000, prize: [{ a:'attr', t:'rmbmoney', n: 10000 },{ a:'attr', t:'nexp', n: 500000 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_494', taskType: 'helpHeros', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_495', taskType: 'helpHeros', total: 2, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_496', taskType: 'helpHeros', total: 3, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_497', taskType: 'helpHeros', total: 4, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_498', taskType: 'helpHeros', total: 5, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'70006', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_499', taskType: 'mapId' , total: 100, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_500', taskType: 'mapId' , total: 115, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_501', taskType: 'mapId' , total: 130, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_502', taskType: 'mapId' , total: 150, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_503', taskType: 'mapId' , total: 170, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 } - ], - '6': [ - { taskId:'intr_task_name_504', taskType: 'toDayLogin_6', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 350 },{ a:'attr', t:'jinbi', n: 300000 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_505', taskType: 'toDayPay_6', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_506', taskType: 'toDayPay_6', total: 28000, prize: [{ a:'item', t:'2', n: 4500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_507', taskType: 'toDayPay_6', total: 42000, prize: [{ a:'item', t:'29', n: 800 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_508', taskType: 'toDayPay_6', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_509', taskType: 'wxcLv', total: 22, prize: [{ a:'item', t:'44', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_510', taskType: 'wxcLv', total: 24, prize: [{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_511', taskType: 'wxcLv', total: 26, prize: [{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_512', taskType: 'wxcLv', total: 28, prize: [{ a:'item', t:'44', n: 5 },{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_513', taskType: 'wxcLv', total: 30, prize: [{ a:'item', t:'46', n: 5 },{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_514', taskType: 'hero_jiban', total: 12, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_515', taskType: 'hero_jiban', total: 14, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_516', taskType: 'hero_jiban', total: 16, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_517', taskType: 'hero_jiban', total: 18, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_518', taskType: 'hero_jiban', total: 20, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '7': [ - { taskId:'intr_task_name_519', taskType: 'toDayLogin_7', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 400 },{ a:'item', t:'617', n: 1 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_520', taskType: 'toDayPay_7', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'24', n: 20 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_521', taskType: 'toDayPay_7', total: 28000, prize: [{ a:'item', t:'10', n: 120 },{ a:'item', t:'29', n: 500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_522', taskType: 'toDayPay_7', total: 42000, prize: [{ a:'item', t:'9', n: 2000 },{ a:'item', t:'29', n: 1000 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_523', taskType: 'toDayPay_7', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'20', n: 230 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_524', taskType: 'lv', total: 35, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'6', n: 1 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_525', taskType: 'lv', total: 38, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'6', n: 2 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_526', taskType: 'lv', total: 41, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'6', n: 3 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_527', taskType: 'lv', total: 44, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'6', n: 4 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_528', taskType: 'lv', total: 47, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'6', n: 5 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_529', taskType: 'power' , total: 200000, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_530', taskType: 'power' , total: 400000, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_531', taskType: 'power' , total: 600000, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_532', taskType: 'power' , total: 1200000, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_533', taskType: 'power' , total: 1800000, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 1 } - ], - }, - //宝箱奖励 - taskBoxPrize: [ - { total: 60, prize: [{ a: 'attr', t: 'rmbmoney', n: 100 },{ a: 'item', t: '12', n: 200 },{ a: 'item', t: '2', n: 100 }] }, - { total: 70, prize: [{ a: 'attr', t: 'rmbmoney', n: 200 },{ a: 'item', t: '21', n: 200 },{ a: 'attr', t: 'jinbi', n: 2000000 }] }, - { total: 80, prize: [{ a: 'attr', t: 'rmbmoney', n: 300 },{ a: 'item', t: '10', n: 30 },{ a: 'item', t: '9', n: 200 }] }, - { total: 90, prize: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '19', n: 30 },{ a: 'item', t: '2', n: 300 }] }, - { total: 95, prize: [{ a: 'attr', t: 'rmbmoney', n: 1000 },{ a: 'item', t: '12', n: 500 },{ a: 'item', t: '28', n: 3000 },{ a: 'item', t: '6', n: 10 }] }, - { total: 100, prize: [{ a: 'attr', t: 'rmbmoney', n: 2000 },{ a: 'item', t: '12', n: 1000 },{ a: 'item', t: '609', n: 1 },{ a: 'item', t: '625', n: 1 },{ a: 'item', t: '50008', n: 1 }] }, - ], - //补发奖励邮件 - email: { - title: 'email_title_kfkh', - content: 'email_content_kfkh' - }, - //持续时间(秒数) - cxtime: 604800 - } + //登陆奖励 + loginPrize: [ + [{ a: 'equip', t: '3003', n: 1 }], + [{ a: 'item', t: '618', n: 1 }], + [{ a: 'item', t: '12', n: 200 }], + [{ a: 'item', t: '2', n: 400 }], + [{ a: 'attr', t: 'rmbmoney', n: 1500 }], + [{ a: 'attr', t: 'jinbi', n: 300000 }], + [{ a: 'item', t: '617', n: 1 }] + ], + //商品 + shop: [ + { buyNum: 1, day: 1, vip: 1, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 400 }], prize: [{ a: 'item', t: '2', n: 1000 }] }, + { buyNum: 1, day: 1, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1200 }], prize: [{ a: 'hero', t: '4010', n: 1 }] }, + { buyNum: 1, day: 2, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 680 }], prize: [{ a: 'item', t: '27', n: 5000 }] }, + { buyNum: 1, day: 2, vip: 3, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '620', n: 1 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '6', n: 20 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '615', n: 1 }] }, + { buyNum: 1, day: 4, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 600 }], prize: [{ a: 'item', t: '12', n: 800 }] }, + { buyNum: 1, day: 4, vip: 5, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1250 }], prize: [{ a: 'item', t: '1', n: 3000000 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 6, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 625 }], prize: [{ a: 'attr', t: 'jinbi', n: 10000000 }] }, + { buyNum: 1, day: 6, vip: 6, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4440 }], prize: [{ a: 'item', t: '18', n: 888 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '24', n: 10 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4500 }], prize: [{ a: 'item', t: '617', n: 1 }] }, + { buyNum: 1, day: 7, vip: 7, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '625', n: 1 }] }, + ], + //任务 + taskType: { + '今日登陆': 'toDayLogin_x', + '今日累计充值x元': 'toDayPay_x', + '任意装备强化至x级': 'equip_qh_lv', + '竞技场排名达到x': 'jjc_rank', + '同时出战x名紫色干部': 'fight_hero_colour_4', + '通过黑暗塔关卡': 'zccg_level', + '拥有x件蓝色及以上装备': 'has_equip_color_3', + '拥有x名进阶+1的干部': 'has_hero_jieji_1', + '佣兵助战上阵x个干部 ': 'helpHeros', + '维修厂老实轿车突破到x阶x星 ': 'wxcLv', + '干部羁绊属性激活x条 ': 'hero_jiban', + '玩家等级达到x级': 'lv', + '玩家总战力达到x': 'power', + '主线关卡': 'mapId' + }, + task: { + '1': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_1', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_430', taskType: 'toDayPay_1', total: 1000, prize: [{ a:'attr', t:'rmbmoney', n: 500 },{ a:'item', t:'2', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_431', taskType: 'toDayPay_1', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'item', t:'12', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_432', taskType: 'toDayPay_1', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'item', t:'2', n: 2000 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_433', taskType: 'toDayPay_1', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'12', n: 1000 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_434', taskType: 'mapId' , total: 20, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_435', taskType: 'mapId' , total: 30, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_436', taskType: 'mapId' , total: 40, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_437', taskType: 'mapId' , total: 50, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_438', taskType: 'mapId' , total: 60, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_439', taskType: 'equip_qh_lv', total: 10, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_440', taskType: 'equip_qh_lv', total: 20, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_441', taskType: 'equip_qh_lv', total: 30, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_442', taskType: 'equip_qh_lv', total: 40, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_443', taskType: 'equip_qh_lv', total: 50, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '2': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_2', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'618', n: 1 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_445', taskType: 'toDayPay_2', total: 2000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_446', taskType: 'toDayPay_2', total: 4000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_447', taskType: 'toDayPay_2', total: 6000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_448', taskType: 'toDayPay_2', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_449', taskType: 'jjc_rank', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 100 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_450', taskType: 'jjc_rank', total: 50, prize: [{ a:'attr', t:'rmbmoney', n: 150 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_451', taskType: 'jjc_rank', total: 20, prize: [{ a:'attr', t:'rmbmoney', n: 200 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_452', taskType: 'jjc_rank', total: 10, prize: [{ a:'attr', t:'rmbmoney', n: 250 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_453', taskType: 'jjc_rank', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_454', taskType: 'fight_hero_colour_4', total: 2, prize: [{ a:'item', t:'2', n: 20 },{ a:'attr', t:'jinbi', n: 10000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_455', taskType: 'fight_hero_colour_4', total: 3, prize: [{ a:'item', t:'2', n: 30 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_456', taskType: 'fight_hero_colour_4', total: 4, prize: [{ a:'item', t:'2', n: 50 },{ a:'attr', t:'jinbi', n: 30000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_457', taskType: 'fight_hero_colour_4', total: 5, prize: [{ a:'item', t:'2', n: 100 },{ a:'attr', t:'jinbi', n: 40000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_458', taskType: 'fight_hero_colour_4', total: 6, prize: [{ a:'item', t:'2', n: 150 },{ a:'attr', t:'jinbi', n: 100000 }],"tiaozhuan": 2 } + ], + '3': [ + { taskId:'intr_task_name_459', taskType: 'toDayLogin_3', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'equip', t:'3003', n: 1 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_460', taskType: 'toDayPay_3', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 1500 },{ a:'item', t:'23', n: 50000 },{ a:'item', t:'601', n: 2 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_461', taskType: 'toDayPay_3', total: 5000, prize: [{ a:'item', t:'12', n: 2500 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'601', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_462', taskType: 'toDayPay_3', total: 10000, prize: [{ a:'item', t:'2', n: 5000 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_463', taskType: 'toDayPay_3', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 2000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'601', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_464', taskType: 'zccg_level', total: 15, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'26', n: 1 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_465', taskType: 'zccg_level', total: 17, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 2 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_466', taskType: 'zccg_level', total: 19, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 3 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_467', taskType: 'zccg_level', total: 22, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 4 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_468', taskType: 'zccg_level', total: 25, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 5 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_469', taskType: 'has_equip_color_3', total: 8, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_470', taskType: 'has_equip_color_3', total: 12, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_471', taskType: 'has_equip_color_4', total: 2, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_472', taskType: 'has_equip_color_4', total: 4, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_473', taskType: 'has_equip_color_4', total: 6, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 8 } + ], + '4': [ + { taskId:'intr_task_name_474', taskType: 'toDayLogin_4', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_475', taskType: 'toDayPay_4', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 2500 },{ a:'item', t:'12', n: 1800 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_476', taskType: 'toDayPay_4', total: 8000, prize: [{ a:'item', t:'12', n: 3000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_477', taskType: 'toDayPay_4', total: 15000, prize: [{ a:'item', t:'9', n: 1250 },{ a:'attr', t:'nexp', n: 200000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_478', taskType: 'toDayPay_4', total: 20000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_479', taskType: 'mapId' , total: 70, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_480', taskType: 'mapId' , total: 75, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_481', taskType: 'mapId' , total: 80, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_482', taskType: 'mapId' , total: 85, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_483', taskType: 'mapId' , total: 90, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_484', taskType: 'has_hero_jieji_1', total: 6, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_485', taskType: 'has_hero_jieji_2', total: 5, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_486', taskType: 'has_hero_jieji_3', total: 3, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_487', taskType: 'has_hero_jieji_4', total: 1, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_488', taskType: 'has_hero_jieji_4', total: 2, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '5': [ + { taskId:'intr_task_name_489', taskType: 'toDayLogin_5', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_490', taskType: 'toDayPay_5', total: 10000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_491', taskType: 'toDayPay_5', total: 15000, prize: [{ a:'item', t:'10', n: 250 },{ a:'attr', t:'nexp', n: 250000 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_492', taskType: 'toDayPay_5', total: 20000, prize: [{ a:'item', t:'9', n: 3000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'6', n: 50 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_493', taskType: 'toDayPay_5', total: 28000, prize: [{ a:'attr', t:'rmbmoney', n: 10000 },{ a:'attr', t:'nexp', n: 500000 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_494', taskType: 'helpHeros', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_495', taskType: 'helpHeros', total: 2, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_496', taskType: 'helpHeros', total: 3, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_497', taskType: 'helpHeros', total: 4, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_498', taskType: 'helpHeros', total: 5, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'70006', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_499', taskType: 'mapId' , total: 100, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_500', taskType: 'mapId' , total: 115, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_501', taskType: 'mapId' , total: 130, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_502', taskType: 'mapId' , total: 150, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_503', taskType: 'mapId' , total: 170, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 } + ], + '6': [ + { taskId:'intr_task_name_504', taskType: 'toDayLogin_6', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 350 },{ a:'attr', t:'jinbi', n: 300000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_505', taskType: 'toDayPay_6', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_506', taskType: 'toDayPay_6', total: 28000, prize: [{ a:'item', t:'2', n: 4500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_507', taskType: 'toDayPay_6', total: 42000, prize: [{ a:'item', t:'29', n: 800 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_508', taskType: 'toDayPay_6', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_509', taskType: 'wxcLv', total: 22, prize: [{ a:'item', t:'44', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_510', taskType: 'wxcLv', total: 24, prize: [{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_511', taskType: 'wxcLv', total: 26, prize: [{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_512', taskType: 'wxcLv', total: 28, prize: [{ a:'item', t:'44', n: 5 },{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_513', taskType: 'wxcLv', total: 30, prize: [{ a:'item', t:'46', n: 5 },{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_514', taskType: 'hero_jiban', total: 12, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_515', taskType: 'hero_jiban', total: 14, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_516', taskType: 'hero_jiban', total: 16, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_517', taskType: 'hero_jiban', total: 18, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_518', taskType: 'hero_jiban', total: 20, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '7': [ + { taskId:'intr_task_name_519', taskType: 'toDayLogin_7', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 400 },{ a:'item', t:'617', n: 1 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_520', taskType: 'toDayPay_7', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'24', n: 20 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_521', taskType: 'toDayPay_7', total: 28000, prize: [{ a:'item', t:'10', n: 120 },{ a:'item', t:'29', n: 500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_522', taskType: 'toDayPay_7', total: 42000, prize: [{ a:'item', t:'9', n: 2000 },{ a:'item', t:'29', n: 1000 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_523', taskType: 'toDayPay_7', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'20', n: 230 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_524', taskType: 'lv', total: 35, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'6', n: 1 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_525', taskType: 'lv', total: 38, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'6', n: 2 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_526', taskType: 'lv', total: 41, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'6', n: 3 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_527', taskType: 'lv', total: 44, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'6', n: 4 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_528', taskType: 'lv', total: 47, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'6', n: 5 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_529', taskType: 'power' , total: 200000, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_530', taskType: 'power' , total: 400000, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_531', taskType: 'power' , total: 600000, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_532', taskType: 'power' , total: 1200000, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_533', taskType: 'power' , total: 1800000, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 1 } + ], + }, + //宝箱奖励 + taskBoxPrize: [ + { total: 60, prize: [{ a: 'attr', t: 'rmbmoney', n: 100 },{ a: 'item', t: '12', n: 200 },{ a: 'item', t: '2', n: 100 }] }, + { total: 70, prize: [{ a: 'attr', t: 'rmbmoney', n: 200 },{ a: 'item', t: '21', n: 200 },{ a: 'attr', t: 'jinbi', n: 2000000 }] }, + { total: 80, prize: [{ a: 'attr', t: 'rmbmoney', n: 300 },{ a: 'item', t: '10', n: 30 },{ a: 'item', t: '9', n: 200 }] }, + { total: 90, prize: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '19', n: 30 },{ a: 'item', t: '2', n: 300 }] }, + { total: 95, prize: [{ a: 'attr', t: 'rmbmoney', n: 1000 },{ a: 'item', t: '12', n: 500 },{ a: 'item', t: '28', n: 3000 },{ a: 'item', t: '6', n: 10 }] }, + { total: 100, prize: [{ a: 'attr', t: 'rmbmoney', n: 2000 },{ a: 'item', t: '12', n: 1000 },{ a: 'item', t: '609', n: 1 },{ a: 'item', t: '625', n: 1 },{ a: 'item', t: '50008', n: 1 }] }, + ], + //补发奖励邮件 + email: { + title: 'email_title_kfkh', + content: 'email_content_kfkh' + }, + //持续时间(秒数) + cxtime: 604800 + } }, - { - "hdid" : 8000, // 唯一活动id 圣诞活动 - "htype" : 8, - "stype" : 800, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "sdhd_tips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //任务 - "task" : { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, + { + "hdid" : 8000, // 唯一活动id 圣诞活动 + "htype" : 8, + "stype" : 800, + "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 60, + "rtime" : 90, + "etime" : 90, + "name" : "sdhd_tips_1", + "icon" : "icon_xfdj", + "showtime" : "根据玩家注册时间,游戏返回时复写", + "data" : { + //任务 + "task" : { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" }, - //玩游戏需要消耗 - "gameneed": [{"a": "attr", "t":"shengdanBullet", "n": 1}], - //玩游戏拿分 - "game": [5,10,20,30,50], - //免费玩游戏次数 - "gamefree": 3, - //战令 - "zhanling":[ - { - "val": 2500, - "pt": [{"a": "item", "t":"1", "n": 200000}], - "gj": [{"a": "item", "t":"50009", "n": 1},{"a": "item", "t":"1", "n": 500000}] - }, - { - "val": 5000, - "pt": [{"a": "attr", "t":"rmbmoney", "n": 500}], - "gj": [{"a": "item", "t":"23", "n": 2000},{"a": "item", "t":"1", "n": 500000}] - }, - { - "val": 7500, - "pt": [{"a": "item", "t":"50104", "n": 1}], - "gj": [{"a": "item", "t":"9", "n": 100},{"a": "item", "t":"10", "n": 800}] - }, - { - "val": 10000, - "pt": [{"a": "item", "t":"4", "n": 10}], - "gj": [{"a": "item", "t":"28", "n": 5000},{"a": "item", "t":"605", "n": 2}] - }, - { - "val": 12500, - "pt": [{"a": "item", "t":"2", "n": 500}], - "gj": [{"a": "item", "t":"9", "n": 150},{"a": "item", "t":"10", "n": 1500}] - }, - { - "val": 15000, - "pt": [{"a": "item", "t":"600", "n": 10}], - "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 10000}] - }, - { - "val": 17500, - "pt": [{"a": "item", "t":"600", "n": 10}], - "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 20000}] - }, - { - "val": 20000, - "pt": [{"a": "item", "t":"10", "n": 800}], - "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] - }, - { - "val": 22500, - "pt": [{"a": "attr", "t":"rmbmoney", "n": 2000}], - "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] - } - ], - "zlpayid":"ycmb_1_1", - //活动礼包 - "libao": { - "1": { - "payid": "", - "buynum": 1, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} - } - ] - }, - "2": { - "payid": "pay_name_sdhd_libao_2", - "buynum": 2, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ - { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} - }, - { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} - } - ] - }, - "3": { - "payid": "pay_name_sdhd_libao_3", - "buynum": 2, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - } - ] - }, - "4": { - "payid": "pay_name_sdhd_libao_4", - "buynum": 5, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - } - ] - }, - "5": { - "payid": "pay_name_sdhd_libao_5", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - "6": { - "payid": "pay_name_sdhd_libao_6", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - } - ] - }, - "7": { - "payid": "pay_name_sdhd_libao_7", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} - } - ] - }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" }, - //签到奖励 - "qiandao": [ - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "attr", "t":"rmbmoney", "n": 300},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"12", "n": 300},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"9", "n": 200},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"2", "n": 400},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"27", "n": 5000},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], - ] - } - }, - { + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + //玩游戏需要消耗 + "gameneed": [{"a": "attr", "t":"shengdanBullet", "n": 1}], + //玩游戏拿分 + "game": [5,10,20,30,50], + //免费玩游戏次数 + "gamefree": 3, + //战令 + "zhanling":[ + { + "val": 2500, + "pt": [{"a": "item", "t":"1", "n": 200000}], + "gj": [{"a": "item", "t":"50009", "n": 1},{"a": "item", "t":"1", "n": 500000}] + }, + { + "val": 5000, + "pt": [{"a": "attr", "t":"rmbmoney", "n": 500}], + "gj": [{"a": "item", "t":"23", "n": 2000},{"a": "item", "t":"1", "n": 500000}] + }, + { + "val": 7500, + "pt": [{"a": "item", "t":"50104", "n": 1}], + "gj": [{"a": "item", "t":"9", "n": 100},{"a": "item", "t":"10", "n": 800}] + }, + { + "val": 10000, + "pt": [{"a": "item", "t":"4", "n": 10}], + "gj": [{"a": "item", "t":"28", "n": 5000},{"a": "item", "t":"605", "n": 2}] + }, + { + "val": 12500, + "pt": [{"a": "item", "t":"2", "n": 500}], + "gj": [{"a": "item", "t":"9", "n": 150},{"a": "item", "t":"10", "n": 1500}] + }, + { + "val": 15000, + "pt": [{"a": "item", "t":"600", "n": 10}], + "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 10000}] + }, + { + "val": 17500, + "pt": [{"a": "item", "t":"600", "n": 10}], + "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 20000}] + }, + { + "val": 20000, + "pt": [{"a": "item", "t":"10", "n": 800}], + "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] + }, + { + "val": 22500, + "pt": [{"a": "attr", "t":"rmbmoney", "n": 2000}], + "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] + } + ], + "zlpayid":"ycmb_1_1", + //活动礼包 + "libao": { + "1": { + "payid": "", + "buynum": 1, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 100}], + "des" : "intr_cszl_des_10", + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 100000}, + "2": {"a": "item", "t":"1", "n": 50000} + } + ] + }, + "2": { + "payid": "pay_name_sdhd_libao_2", + "buynum": 2, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 120}], + "des" : "intr_cszl_des_11", + "dlz": [ + { + "1": {"a": "item", "t":"2", "n": 400}, + "2": {"a": "item", "t":"12", "n": 200} + }, + { + "1": {"a": "attr", "t":"jinbi", "n": 1000000}, + "2": {"a": "item", "t":"1", "n": 500000} + } + ] + }, + "3": { + "payid": "pay_name_sdhd_libao_3", + "buynum": 2, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 300}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + } + ] + }, + "4": { + "payid": "pay_name_sdhd_libao_4", + "buynum": 5, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 680}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + } + ] + }, + "5": { + "payid": "pay_name_sdhd_libao_5", + "buynum": 9, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 1280}], + "des" : "intr_cszl_des_13", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"1", "n": 5000000}, + "2": {"a": "attr", "t":"jinbi", "n": 10000000} + } + ] + }, + "6": { + "payid": "pay_name_sdhd_libao_6", + "buynum": 9, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 3280}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"1", "n": 10000000}, + "2": {"a": "item", "t":"12", "n": 1000}, + "3": {"a": "item", "t":"2", "n": 2000}, + "4": {"a": "item", "t":"18", "n": 500} + } + ] + }, + "7": { + "payid": "pay_name_sdhd_libao_7", + "buynum": 9, + "basep": [{"a": "attr", "t":"rmbmoney", "n": 6480}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"605", "n": 4}, + "2": {"a": "item", "t":"606", "n": 2}, + "3": {"a": "item", "t":"18", "n": 1000}, + "4": {"a": "item", "t":"23", "n": 1000000} + } + ] + }, + }, + //签到奖励 + "qiandao": [ + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "attr", "t":"rmbmoney", "n": 300},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"12", "n": 300},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"9", "n": 200},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"2", "n": 400},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"27", "n": 5000},{"a": "item", "t":"1", "n": 300000}], + [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], + ] + } + }, + { "hdid" : 9000, // 唯一活动id 周末礼包 "htype" : 9, // 后端唯一识别标识 "stype" : 900, // 前端唯一识别标识(看前端需要是否修改) @@ -4245,42 +4245,45 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "wkdlibao", - "icon": "icon_tuisonglibao", + "icon": "icon_tuisonglibao", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { + //活动文本描述 + intr: "wkdtips_1", + intr: "wkdtips_2", //礼包 gift: [ { id: '1', - name: 'wkdtips_4', - need: [], + name: 'wkdtips_4', + need: [], free: true, payId: '', buyNum: 1, prize: [{'a': 'item', 't': '13', 'n': 600}] }, { - id: '2', + id: '2', name: 'wkdtips_5', - need: [], + need: [], free: false, payId: 'wkdlibao_1', buyNum: 1, prize: [{'a': 'item', 't': '4', 'n': 1},{'a': 'item', 't': '13', 'n': 800},{'a': 'item', 't': '2', 'n': 1000},{'a': 'item', 't': '1', 'n': 1000}] }, { - id: '3', + id: '3', name: 'wkdtips_6', - need: [], + need: [], free: false, payId: 'wkdlibao_2', buyNum: 2, prize: [{'a': 'item', 't': '4', 'n': 2},{'a': 'item', 't': '13', 'n': 1000},{'a': 'item', 't': '2', 'n': 1200},{'a': 'item', 't': '1', 'n': 1200}] }, { - id: '4', + id: '4', name: 'wkdtips_7', - need: [], + need: [], free: false, payId: 'wkdlibao_3', buyNum: 2, @@ -4290,7 +4293,7 @@ } }, { - "hdid" : 10000, // 唯一活动id 超值好礼 破冰礼包 + "hdid" : 10000, // 唯一活动id 超值好礼 "htype" : 10, // 后端唯一识别标识 "stype" : 1000, // 前端唯一识别标识(看前端需要是否修改) "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 @@ -4298,141 +4301,142 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "czlibao", - "icon": "icon_czlibao", + "icon": "icon_czlibao", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { //活动文本描述 intr: "czlbtips_1", - intr2: "czlbtips_2", + intr: "czlbtips_2", + //礼包 //礼包 gift: [ { id: '1', - name: 'czlbtips_4', - need: [], + name: 'czlbtips_4', + need: [], free: false, payId: 'czlb_1', buyNum: 1, equal: 15000, prize: [ - { - "a": "item", - "t": "13", - "n": 601 - } + { + "a": "item", + "t": "13", + "n": 601 + } ], "recPrize1": [ - { - "a": "item", - "t": "12", - "n": 600 - }, - { - "a": "attr", - "t": "rmbmoney", - "n": 333 - } + { + "a": "item", + "t": "12", + "n": 600 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 333 + } ], "recPrize2": [ - { - "a": "item", - "t": "4", - "n": 10 - } + { + "a": "item", + "t": "4", + "n": 10 + } ] }, { - id: '2', + id: '2', name: 'czlbtips_5', - need: [], + need: [], free: false, payId: 'czlb_2', buyNum: 1, equal: 35000, prize: [ - { - "a": "item", - "t": "1", - "n": 1200 - } + { + "a": "item", + "t": "1", + "n": 1200 + } ], "recPrize1": [ - { - "a": "item", - "t": "2", - "n": 4400 - } + { + "a": "item", + "t": "2", + "n": 4400 + } ], "recPrize2": [ - { - "a": "item", - "t": "9", - "n": 63300 - }, - { - "a": "attr", - "t": "jinbi", - "n": 114514 - }, - { - "a": "attr", - "t": "rmbmoney", - "n": 31313 - }, - { - "a": "item", - "t": "2", - "n": 111 - }, - { - "a": "item", - "t": "13", - "n": 515 - },{ - "a": "item", - "t": "601", - "n": 1 - }, - { - "a": "item", - "t": "633", - "n": 2 - }, - { - "a": "hero", - "t": "5001", - "n": 1 - } + { + "a": "item", + "t": "9", + "n": 63300 + }, + { + "a": "attr", + "t": "jinbi", + "n": 114514 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 31313 + }, + { + "a": "item", + "t": "2", + "n": 111 + }, + { + "a": "item", + "t": "13", + "n": 515 + },{ + "a": "item", + "t": "601", + "n": 1 + }, + { + "a": "item", + "t": "633", + "n": 2 + }, + { + "a": "hero", + "t": "5001", + "n": 1 + } ] }, { - id: '3', + id: '3', name: 'czlbtips_6', - need: [], + need: [], free: false, payId: 'czlb_3', buyNum: 1, equal: 65000, prize: [ - { - "a": "item", - "t": "13", - "n": 123 - } + { + "a": "item", + "t": "13", + "n": 123 + } ], "recPrize1": [ - { - "a": "item", - "t": "13", - "n": 321 - } + { + "a": "item", + "t": "13", + "n": 321 + } ], "recPrize2": [ - { - "a": "item", - "t": "13", - "n": 548 - } + { + "a": "item", + "t": "13", + "n": 548 + } ] } ] @@ -4447,58 +4451,58 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "xfjs", - "icon": "icon_xfjs", + "icon": "icon_xfjs", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { //活动文本描述 intr: "xfjstips_1", intr2: "xfjstips_2", //奖励邮件标题 - mailTitle: "intr_xfjs_mailTitle", - //奖励邮件内容 - mailDes: "intr_xfjs_mailDes", - //排名 + mailTitle: "intr_xfjs_mailTitle", + //奖励邮件内容 + mailDes: "intr_xfjs_mailDes", + //排名 rank: [ { id: '1', - name: 'xfjstips_3', + name: 'xfjstips_3', rank:[1,1], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 20000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 20000}], prize: [{'a': 'item', 't': '13', 'n': 600}] }, { id: '2', - name: 'xfjstips_4', + name: 'xfjstips_4', rank:[2,2], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 18000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 18000}], prize: [{'a': 'item', 't': '13', 'n': 600}] }, { id: '3', - name: 'xfjstips_5', + name: 'xfjstips_5', rank:[3,3], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 16000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 16000}], prize: [{'a': 'item', 't': '13', 'n': 600}] }, { id: '4', - name: 'xfjstips_6', + name: 'xfjstips_6', rank:[4,10], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 14000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 14000}], prize: [{'a': 'item', 't': '13', 'n': 600}] }, { id: '5', - name: 'xfjstips_7', + name: 'xfjstips_7', rank:[11,30], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], prize: [{'a': 'item', 't': '13', 'n': 600}] }, - { + { id: '6', - name: 'xfjstips_8', + name: 'xfjstips_8', rank:[31,9999], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], + need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], prize: [{'a': 'item', 't': '13', 'n': 600}] } ] @@ -4513,143 +4517,143 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "ljlibao", - "icon": "icon_ljlibao", + "icon": "icon_ljlibao", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { //礼包 gift: [ { id: '1', - need:[], - free: false, + need:[], + free: false, payId: 'ljlibao_1', - //返利比 - scale: 200, + //返利比 + scale: 200, buynum: 1, prize:[ - { - "a": "item", - "t": "13", - "n": 123 - } - ] + { + "a": "item", + "t": "13", + "n": 123 + } + ] }, { id: '2', need:[], - free: false, + free: false, payId: 'ljlibao_2', buynum: 1, - scale: 201, + scale: 201, prize:[ - { - "a": "item", - "t": "12", - "n": 111 - } - ] + { + "a": "item", + "t": "12", + "n": 111 + } + ] }, { id: '3', need:[], - free: false, + free: false, payId: 'ljlibao_3', buynum: 1, - scale: 203, + scale: 203, prize:[ - { - "a": "item", - "t": "1", - "n": 111111 - } - ] + { + "a": "item", + "t": "1", + "n": 111111 + } + ] }, { id: '4', need:[], - free: false, + free: false, payId: 'ljlibao_4', buynum: 1, - scale: 204, + scale: 204, prize:[ - { - "a": "item", - "t": "13", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] + { + "a": "item", + "t": "13", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] }, { id: '5', need:[], - free: false, + free: false, payId: 'ljlibao_5', buynum: 1, - scale: 201, + scale: 201, prize:[ - { - "a": "item", - "t": "13", - "n": 12 - }, - { - "a": "item", - "t": "1", - "n": 31 - } - ] + { + "a": "item", + "t": "13", + "n": 12 + }, + { + "a": "item", + "t": "1", + "n": 31 + } + ] }, { id: '6', need:[], - free: false, + free: false, payId: 'ljlibao_6', buynum: 1, - scale: 200, + scale: 200, prize:[ - { - "a": "item", - "t": "1", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] + { + "a": "item", + "t": "1", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] }, { id: '7', need:[], - free: false, + free: false, payId: 'ljlibao_7', buynum: 1, - scale: 300, + scale: 300, prize:[ - { - "a": "item", - "t": "4", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] + { + "a": "item", + "t": "4", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] }, ], - //买X次可以领大奖 - payRewardNum: 5, + //买X次可以领大奖 + payRewardNum: 5, //自选框掉落池 - //配几组就显示有几个格子 - //配置的是可选的道具 + //配几组就显示有几个格子 + //配置的是可选的道具 dlz: [ { "1": {"a": "item", "t":"600", "n": 20}, @@ -4695,7 +4699,7 @@ ] } }, - { + { "hdid" : 13000, // 唯一活动id 充值分红包 "htype" : 13, // 后端唯一识别标识 "stype" : 1300, // 前端唯一识别标识(看前端需要是否修改) @@ -4704,64 +4708,922 @@ "rtime" : 30, // 活动显示结束天数 "etime" : 30, // 活动实际结束 "name": "fenhongbao", - "icon": "icon_fenhongbao", + "icon": "icon_fenhongbao", "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 "data" : { //活动文本描述 intr: "zuanshihongbao_5", //分红包所需最低钻石数 - price: 1000, - reset: 0, - //奖池总数量 - totalmoney: 100000, - groupConf: { - //档位 - base: { - loglimit:2000, - arr:[ - { - //权重 - "weight": 50, - //获得范围 - "numrange": [1000,1500] - }, - { - //权重 - "weight": 30, - //获得范围 - "numrange": [1500,2000] - }, - { - //权重 - "weight": 15, - //获得范围 - "numrange": [2000,3000] - }, - { - //权重 - "weight": 5, - //获得范围 - "numrange": [3000,8000] - } - ] - } - } + price: 1000, + reset: 0, + //奖池总数量 + totalmoney: 100000, + groupConf: { + //档位 + base: { + loglimit:2000, + arr:[ + { + //权重 + "weight": 50, + //获得范围 + "numrange": [1000,1500] + }, + { + //权重 + "weight": 30, + //获得范围 + "numrange": [1500,2000] + }, + { + //权重 + "weight": 15, + //获得范围 + "numrange": [2000,3000] + }, + { + //权重 + "weight": 5, + //获得范围 + "numrange": [3000,8000] + } + ] + } + } } }, - { - "hdid" : 14000, // 唯一活动id 元旦活动 - "htype" : 14, - "stype" : 1400, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "xnhd_tips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //任务 - "task" : { + { + "hdid" : 14000, // 唯一活动id 元旦活动 + "htype" : 14, + "stype" : 1400, + "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 60, + "rtime" : 90, + "etime" : 90, + "name" : "xnhd_tips_1", + "icon" : "icon_xfdj", + "showtime" : "根据玩家注册时间,游戏返回时复写", + "data" : { + //任务 + "task" : { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + //玩游戏需要消耗 + "gameneed": [{"a": "attr", "t":"yuandanyouxi", "n": 1}], + //游戏奖品池 + "game": [ + //P是权重 + //gailv是显示的概率 + {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, + {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, + {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} + ], + //免费玩游戏次数 + "gamefree": 3, + //钻石兑换 + "duihuan": [ + {id:1, need: [{a: 'attr', t: 'rmbmoney', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, + {id:2, need: [{a: 'attr', t: 'rmbmoney', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, + {id:3, need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, + {id:4, need: [{a: 'attr', t: 'rmbmoney', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, + {id:5, need: [{a: 'attr', t: 'rmbmoney', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, + {id:6, need: [{a: 'attr', t: 'rmbmoney', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } + ], + //活动礼包 + "gift": [ + { + "id": 1, + "free": true, + "payId": "", + "buynum": 1, + //固定奖励 + "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], + "des" : "intr_cszl_des_10", + //自选池 + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 100000}, + "2": {"a": "item", "t":"1", "n": 50000} + } + ] + }, + { + "id": 2, + "free": false, + "payId": "xnhd_libao_1", + "buynum": 2, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], + "des" : "intr_cszl_des_11", + "dlz": [ + { + "1": {"a": "item", "t":"2", "n": 400}, + "2": {"a": "item", "t":"12", "n": 200} + }, + { + "1": {"a": "attr", "t":"jinbi", "n": 1000000}, + "2": {"a": "item", "t":"1", "n": 500000} + } + ] + }, + { + "id": 3, + "free": false, + "payId": "xnhd_libao_2", + "buynum": 2, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + } + ] + }, + { + "id": 4, + "free": false, + "payId": "xnhd_libao_3", + "buynum": 5, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + } + ] + }, + { + "id": 5, + "free": false, + "payId": "xnhd_libao_4", + "buynum": 9, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], + "des" : "intr_cszl_des_13", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"1", "n": 5000000}, + "2": {"a": "attr", "t":"jinbi", "n": 10000000} + } + ] + }, + { + "id": 6, + "free": false, + "payId": "xnhd_libao_5", + "buynum": 9, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"1", "n": 10000000}, + "2": {"a": "item", "t":"12", "n": 1000}, + "3": {"a": "item", "t":"2", "n": 2000}, + "4": {"a": "item", "t":"18", "n": 500} + } + ] + }, + { + "id": 7, + "free": false, + "payId": "xnhd_libao_6", + "buynum": 9, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"605", "n": 4}, + "2": {"a": "item", "t":"606", "n": 2}, + "3": {"a": "item", "t":"18", "n": 1000}, + "4": {"a": "item", "t":"23", "n": 1000000} + } + ] + }, + ], + //签到奖励 + "qiandao": { + "1": { + //固定奖励 + "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], + "des" : "intr_cszl_des_10", + //自选池 + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 100000}, + "2": {"a": "item", "t":"1", "n": 50000} + } + ] + }, + "2": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], + "des" : "intr_cszl_des_11", + "dlz": [ + { + "1": {"a": "item", "t":"2", "n": 400}, + "2": {"a": "item", "t":"12", "n": 200} + }, + { + "1": {"a": "attr", "t":"jinbi", "n": 1000000}, + "2": {"a": "item", "t":"1", "n": 500000} + } + ] + }, + "3": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + }, + { + "1": {"a": "item", "t":"9", "n": 500}, + "2": {"a": "item", "t":"10", "n": 100} + } + ] + }, + "4": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], + "des" : "intr_cszl_des_12", + "dlz": [ + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + }, + { + "1": {"a": "item", "t":"615", "n": 1}, + "2": {"a": "item", "t":"18", "n": 200} + } + ] + }, + "5": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], + "des" : "intr_cszl_des_13", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"600", "n": 10}, + "2": {"a": "item", "t":"605", "n": 2}, + "3": {"a": "item", "t":"606", "n": 1} + }, + { + "1": {"a": "item", "t":"1", "n": 5000000}, + "2": {"a": "attr", "t":"jinbi", "n": 10000000} + } + ] + }, + "6": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"600", "n": 20}, + "2": {"a": "item", "t":"5002", "n": 10}, + "3": {"a": "item", "t":"5004", "n": 10} + }, + { + "1": {"a": "item", "t":"1", "n": 10000000}, + "2": {"a": "item", "t":"12", "n": 1000}, + "3": {"a": "item", "t":"2", "n": 2000}, + "4": {"a": "item", "t":"18", "n": 500} + } + ] + }, + "7": { + "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], + "des" : "intr_cszl_des_14", + "dlz": [ + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"600", "n": 30}, + "2": {"a": "item", "t":"5002", "n": 20}, + "3": {"a": "item", "t":"5004", "n": 20} + }, + { + "1": {"a": "item", "t":"605", "n": 4}, + "2": {"a": "item", "t":"606", "n": 2}, + "3": {"a": "item", "t":"18", "n": 1000}, + "4": {"a": "item", "t":"23", "n": 1000000} + } + ] + } + } + } + }, + { + "hdid" : 15000, // 唯一活动id 黄旗酒馆(活动结束需要清掉货币) + "htype" : 15, + "stype" : 1500, + "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 60, + "rtime" : 90, + "etime" : 90, + "name" : "hqjgtips_1", + "icon" : "icon_xfdj", + "showtime" : "根据玩家注册时间,游戏返回时复写", + "data" : { + //展示干部皮肤ID + "show": 1, + //任务 + "task" : { + "day1" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + } + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day2" : + { "1": { "pval" : 1, "stype" : "128", @@ -5024,1876 +5886,1455 @@ "des" : "intr_cszl_des_9" }, }, - //玩游戏需要消耗 - "gameneed": [{"a": "attr", "t":"yuandanyouxi", "n": 1}], - //游戏奖品池 - "game": [ - //P是权重 - //gailv是显示的概率 - {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, - {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, - {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} - ], - //免费玩游戏次数 - "gamefree": 3, - //钻石兑换 - "duihuan": [ - {id:1, need: [{a: 'attr', t: 'rmbmoney', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, - {id:2, need: [{a: 'attr', t: 'rmbmoney', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, - {id:3, need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, - {id:4, need: [{a: 'attr', t: 'rmbmoney', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, - {id:5, need: [{a: 'attr', t: 'rmbmoney', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, - {id:6, need: [{a: 'attr', t: 'rmbmoney', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } - ], - //活动礼包 - "gift": [ + "day3" : { - "id": 1, - "free": true, - "payId": "", - "buynum": 1, - //固定奖励 - "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - //自选池 - "dlz": [ + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] + ], + "des" : "intr_cszl_des_1" }, - { - "id": 2, - "free": false, - "payId": "xnhd_libao_1", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 }, { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 } - ] + ], + "des" : "intr_cszl_des_2" }, - { - "id": 3, - "free": false, - "payId": "xnhd_libao_2", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 }, { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 }, { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 } - ] + ], + "des" : "intr_cszl_des_3" }, - { - "id": 4, - "free": false, - "payId": "xnhd_libao_3", - "buynum": 5, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 }, { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 }, { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_4" }, - { - "id": 5, - "free": false, - "payId": "xnhd_libao_4", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 }, { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 }, { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_5" }, - { - "id": 6, - "free": false, - "payId": "xnhd_libao_5", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 }, { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 }, { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_6" }, - { - "id": 7, - "free": false, - "payId": "xnhd_libao_6", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 }, { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 }, { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] + ], + "des" : "intr_cszl_des_7" }, - ], - //签到奖励 - "qiandao": { - "1": { - //固定奖励 - "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - //自选池 - "dlz": [ + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] + ], + "des" : "intr_cszl_des_8" }, - "2": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 }, { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] - }, - "3": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - } - ] - }, - "4": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - } - ] - }, - "5": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - "6": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - } - ] - }, - "7": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} - } - ] - } - } - } - }, - { - "hdid" : 15000, // 唯一活动id 黄旗酒馆(活动结束需要清掉货币) - "htype" : 15, - "stype" : 1500, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "hqjgtips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //展示干部皮肤ID - "show": 50011, - //任务 - "task" : { - day1: { - '1': { - pval: 1, - stype: '128', - cond: [], - tiaozhuan: 4, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_1', - }, - '2': { - pval: 300, - stype: '116', - cond: [], - tiaozhuan: 5, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 3, - }, - { - a: 'item', - t: '600', - n: 5, - }, - { - a: 'item', - t: '1', - n: 500000, - }, - ], - des: 'intr_cszl_des_2', - }, - '3': { - pval: 1000, - stype: '116', - cond: [], - tiaozhuan: 2, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 300, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 5, - }, - { - a: 'item', - t: '600', - n: 10, - }, - { - a: 'item', - t: '1', - n: 1000000, - }, - ], - des: 'intr_cszl_des_3', - }, - '4': { - pval: 2000, - stype: '116', - cond: [], - tiaozhuan: 1, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 150, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '6', - n: 10, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_4', - }, - '5': { - pval: 3, - stype: '142', - cond: [ - 2, - ], - tiaozhuan: 6, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '2', - n: 500, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_5', - }, - '6': { - pval: 3, - stype: '122', - cond: [], - tiaozhuan: 7, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '12', - n: 400, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_6', - }, - '7': { - pval: 1, - stype: '155', - cond: [], - tiaozhuan: 8, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_7', - }, - '8': { - pval: 1, - stype: '127', - cond: [], - tiaozhuan: 10, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '21', - n: 50, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_8', - }, - '9': { - pval: 1, - stype: '154', - cond: [], - tiaozhuan: 11, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'jinbi', - n: 100000, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_9', - }, - }, - day2: { - '1': { - pval: 1, - stype: '128', - cond: [], - tiaozhuan: 4, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_1', - }, - '2': { - pval: 300, - stype: '116', - cond: [], - tiaozhuan: 5, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 3, - }, - { - a: 'item', - t: '600', - n: 5, - }, - { - a: 'item', - t: '1', - n: 500000, - }, - ], - des: 'intr_cszl_des_2', - }, - '3': { - pval: 1000, - stype: '116', - cond: [], - tiaozhuan: 2, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 300, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 5, - }, - { - a: 'item', - t: '600', - n: 10, - }, - { - a: 'item', - t: '1', - n: 1000000, - }, - ], - des: 'intr_cszl_des_3', - }, - '4': { - pval: 2000, - stype: '116', - cond: [], - tiaozhuan: 1, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 150, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '6', - n: 10, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_4', - }, - '5': { - pval: 3, - stype: '142', - cond: [ - 2, - ], - tiaozhuan: 6, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '2', - n: 500, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_5', - }, - '6': { - pval: 3, - stype: '122', - cond: [], - tiaozhuan: 7, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '12', - n: 400, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_6', - }, - '7': { - pval: 1, - stype: '155', - cond: [], - tiaozhuan: 8, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_7', - }, - '8': { - pval: 1, - stype: '127', - cond: [], - tiaozhuan: 10, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '21', - n: 50, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_8', - }, - '9': { - pval: 1, - stype: '154', - cond: [], - tiaozhuan: 11, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'jinbi', - n: 100000, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_9', - }, - }, - day3: { - '1': { - pval: 1, - stype: '128', - cond: [], - tiaozhuan: 4, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_1', - }, - '2': { - pval: 300, - stype: '116', - cond: [], - tiaozhuan: 5, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 3, - }, - { - a: 'item', - t: '600', - n: 5, - }, - { - a: 'item', - t: '1', - n: 500000, - }, - ], - des: 'intr_cszl_des_2', - }, - '3': { - pval: 1000, - stype: '116', - cond: [], - tiaozhuan: 2, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 300, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 5, - }, - { - a: 'item', - t: '600', - n: 10, - }, - { - a: 'item', - t: '1', - n: 1000000, - }, - ], - des: 'intr_cszl_des_3', - }, - '4': { - pval: 2000, - stype: '116', - cond: [], - tiaozhuan: 1, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 150, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '6', - n: 10, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_4', - }, - '5': { - pval: 3, - stype: '142', - cond: [ - 2, - ], - tiaozhuan: 6, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '2', - n: 500, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_5', - }, - '6': { - pval: 3, - stype: '122', - cond: [], - tiaozhuan: 7, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '12', - n: 400, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_6', - }, - '7': { - pval: 1, - stype: '155', - cond: [], - tiaozhuan: 8, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_7', - }, - '8': { - pval: 1, - stype: '127', - cond: [], - tiaozhuan: 10, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '21', - n: 50, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_8', - }, - '9': { - pval: 1, - stype: '154', - cond: [], - tiaozhuan: 11, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'jinbi', - n: 100000, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_9', - }, - }, - day4: { - '1': { - pval: 1, - stype: '128', - cond: [], - tiaozhuan: 4, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_1', - }, - '2': { - pval: 300, - stype: '116', - cond: [], - tiaozhuan: 5, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 3, - }, - { - a: 'item', - t: '600', - n: 5, - }, - { - a: 'item', - t: '1', - n: 500000, - }, - ], - des: 'intr_cszl_des_2', - }, - '3': { - pval: 1000, - stype: '116', - cond: [], - tiaozhuan: 2, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 300, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 5, - }, - { - a: 'item', - t: '600', - n: 10, - }, - { - a: 'item', - t: '1', - n: 1000000, - }, - ], - des: 'intr_cszl_des_3', - }, - '4': { - pval: 2000, - stype: '116', - cond: [], - tiaozhuan: 1, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 150, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '6', - n: 10, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_4', - }, - '5': { - pval: 3, - stype: '142', - cond: [ - 2, - ], - tiaozhuan: 6, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '2', - n: 500, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_5', - }, - '6': { - pval: 3, - stype: '122', - cond: [], - tiaozhuan: 7, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '12', - n: 400, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_6', - }, - '7': { - pval: 1, - stype: '155', - cond: [], - tiaozhuan: 8, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_7', - }, - '8': { - pval: 1, - stype: '127', - cond: [], - tiaozhuan: 10, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '21', - n: 50, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_8', - }, - '9': { - pval: 1, - stype: '154', - cond: [], - tiaozhuan: 11, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'jinbi', - n: 100000, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_9', - }, - }, - day5: { - '1': { - pval: 1, - stype: '128', - cond: [], - tiaozhuan: 4, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_1', - }, - '2': { - pval: 300, - stype: '116', - cond: [], - tiaozhuan: 5, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 3, - }, - { - a: 'item', - t: '600', - n: 5, - }, - { - a: 'item', - t: '1', - n: 500000, - }, - ], - des: 'intr_cszl_des_2', - }, - '3': { - pval: 1000, - stype: '116', - cond: [], - tiaozhuan: 2, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 300, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 5, - }, - { - a: 'item', - t: '600', - n: 10, - }, - { - a: 'item', - t: '1', - n: 1000000, - }, - ], - des: 'intr_cszl_des_3', - }, - '4': { - pval: 2000, - stype: '116', - cond: [], - tiaozhuan: 1, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 150, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '6', - n: 10, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_4', - }, - '5': { - pval: 3, - stype: '142', - cond: [ - 2, - ], - tiaozhuan: 6, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '2', - n: 500, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_5', - }, - '6': { - pval: 3, - stype: '122', - cond: [], - tiaozhuan: 7, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 200, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '12', - n: 400, - }, - { - a: 'item', - t: '1', - n: 200000, - }, - ], - des: 'intr_cszl_des_6', - }, - '7': { - pval: 1, - stype: '155', - cond: [], - tiaozhuan: 8, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'rmbmoney', - n: 200, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_7', - }, - '8': { - pval: 1, - stype: '127', - cond: [], - tiaozhuan: 10, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'item', - t: '21', - n: 50, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_8', - }, - '9': { - pval: 1, - stype: '154', - cond: [], - tiaozhuan: 11, - prize: [ - { - a: 'attr', - t: 'shengdanExp', - n: 100, - }, - { - a: 'attr', - t: 'shengdanBullet', - n: 2, - }, - { - a: 'attr', - t: 'jinbi', - n: 100000, - }, - { - a: 'item', - t: '1', - n: 100000, - }, - ], - des: 'intr_cszl_des_9', - }, + ], + "des" : "intr_cszl_des_9" }, }, - //抽卡 - "chouka": [ - //P是权重 - //gailv是显示的概率 - //cishu是达到多少抽后才开始掉落 - {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10, "cishu": 0}, - {"a": "heroskin", "t":"50011", "n": 400, "p": 5, "gailv": 10, "cishu": 100}, - ], - //抽卡货币 - "huobi": {"a": "attr", "t":"huangqijinbi", "n": 1}, - //抽卡次数奖励 - "choukajiangli": [ - {"num": 30, - "prize":[ + "day4" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ { - "a": "item", "t":"1", "n": 10000000 + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] + ], + "des" : "intr_cszl_des_1" }, - {"num": 40, - "dlz": [ + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 } - ] + ], + "des" : "intr_cszl_des_2" }, - {"num": 50, - "dlz": [ + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ { - "1": {"a": "attr", "t":"jinbi", "n": 200000}, - "2": {"a": "item", "t":"1", "n": 40000} + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 } - ] + ], + "des" : "intr_cszl_des_3" }, - {"num": 60, - "prize":[ + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ { - "a": "item", "t":"1", "n": 10000000 + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_4" }, - {"num": 70, - "dlz": [ + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ { - "1": {"a": "attr", "t":"jinbi", "n": 130000}, - "2": {"a": "item", "t":"1", "n": 60000} + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_5" }, - ], - //抽卡保底 - "baodi": [ - {"num": 20, - "prize":[ + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ { - "a": "heroskin", "t":"50011", "n": 1 + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 } - ] + ], + "des" : "intr_cszl_des_6" }, - {"num": 55, - "prize":[ + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ { - "a": "heroskin", "t":"50011", "n": 1 + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 } - ] - } - ], - //保底显示 - "baodi_display": - {"num": 20, - "prize":[ + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day5" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day6" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + }, + "day7" : + { + "1": { + "pval" : 1, + "stype" : "128", + "cond": [], + "tiaozhuan": 4, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_1" + }, + "2": { + "pval" : 300, + "stype" : "116", + "cond": [], + "tiaozhuan": 5, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 3 + }, + { + "a" : "item", + "t" : "600", + "n" : 5 + }, + { + "a" : "item", + "t" : "1", + "n" : 500000 + } + ], + "des" : "intr_cszl_des_2" + }, + "3": { + "pval" : 1000, + "stype" : "116", + "cond": [], + "tiaozhuan": 2, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 300 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 5 + }, + { + "a" : "item", + "t" : "600", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 1000000 + } + ], + "des" : "intr_cszl_des_3" + }, + "4": { + "pval" : 2000, + "stype" : "116", + "cond": [], + "tiaozhuan": 1, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 150 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "6", + "n" : 10 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_4" + }, + "5": { + "pval" : 3, + "stype" : "142", + "cond": [2], + "tiaozhuan": 6, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "2", + "n" : 500 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_5" + }, + "6": { + "pval" : 3, + "stype" : "122", + "cond": [], + "tiaozhuan": 7, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 200 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "12", + "n" : 400 + }, + { + "a" : "item", + "t" : "1", + "n" : 200000 + } + ], + "des" : "intr_cszl_des_6" + }, + "7": { + "pval" : 1, + "stype" : "155", + "cond": [], + "tiaozhuan": 8, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "rmbmoney", + "n" : 200 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_7" + }, + "8": { + "pval" : 1, + "stype" : "127", + "cond": [], + "tiaozhuan": 10, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "item", + "t" : "21", + "n" : 50 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_8" + }, + "9": { + "pval" : 1, + "stype" : "154", + "cond": [], + "tiaozhuan": 11, + "prize" : [ + { + "a" : "attr", + "t" : "shengdanExp", + "n" : 100 + }, + { + "a" : "attr", + "t" : "shengdanBullet", + "n" : 2 + }, + { + "a" : "attr", + "t" : "jinbi", + "n" : 100000 + }, + { + "a" : "item", + "t" : "1", + "n" : 100000 + } + ], + "des" : "intr_cszl_des_9" + }, + } + }, + //抽卡 + "chouka": [ + //P是权重 + //gailv是显示的概率 + {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, + {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, + {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, + {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} + ], + //抽卡货币 + "huobi": {"a": "attr", "t":"huangqijiuguan", "n": 1}, + //抽卡次数奖励 + "choukajiangli": [ + {"num": 30, + "prize":[ { - "a": "heroskin", "t":"50011", "n": 1 + "a": "item", "t":"1", "n": 10000000 } ] }, - //黄旗礼包 - "gift": [ - { - "id": 1, - "free": true, - "payId": "", - "buynum": 1, - //固定奖励 - "prize": [{"a": "attr", "t":"rmbmoney", "n": 5}], - //自选奖励 - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - { - "id": 2, - "free": false, - "payId": "hqjg_libao_1", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 10},{"a": "item", "t":"1", "n": 100}], - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - { - "id": 3, - "free": false, - "payId": "hqjg_libao_2", - "buynum": 3, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 50},{"a": "item", "t":"1", "n": 30}], - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - { - "id": 4, - "free": false, - "payId": "hqjg_libao_3", - "buynum": 5, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1000},{"a": "item", "t":"2", "n": 100}], - }, - { - "id": 5, - "free": false, - "payId": "hqjg_libao_4", - "buynum": 10, - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - ], - //兑换商店 - //sell是打X折,显示用 - "duihuan": [ - {id:1, need: [{a: 'attr', t: 'huangqiduihuan', n: 1000}], prize: [{a: 'item', t: '610', n: 1}], buyNum: 2}, - {id:2, need: [{a: 'attr', t: 'huangqiduihuan', n: 2000}], prize: [{a: 'item', t: '610', n: 2}], buyNum: 1, sell: 90}, - {id:3, need: [{a: 'attr', t: 'huangqiduihuan', n: 3000}], prize: [{a: 'item', t: '610', n: 3}], buyNum: 1, sell: 80}, - {id:4, need: [{a: 'attr', t: 'huangqiduihuan', n: 4000}], prize: [{a: 'item', t: '610', n: 4}], buyNum: 3, sell: 75}, - {id:5, need: [{a: 'attr', t: 'huangqiduihuan', n: 5000}], prize: [{a: 'item', t: '610', n: 5}], buyNum: 5}, - {id:6, need: [{a: 'attr', t: 'huangqiduihuan', n: 6000}], prize: [{a: 'item', t: '610', n: 6}], buyNum: 6} - ], - //boss战配置 - //npcId读NPC表 - //img是战斗地图(写死) - "boss": {npcId: 17004, img:"bg_fight_jg"}, - //boss挑战等级奖励(每日,0点结算发邮件) - "bossLvReward": [ - {lv:1, "need": 10000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}]}, - {lv:2, "need": 20000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}]}, - {lv:3, "need": 50000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}]}, - {lv:4, "need": 100000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}]}, - {lv:5, "need": 1000000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}]}, - {lv:6, "need": 10000000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}]} - ], - //boss挑战等级奖励邮件标题 - "bossLvReward_title": "email_title_hqjg_dps", - //boss挑战等级奖励邮件内容 - "bossLvReward_des": "email_content_hqjg_dps", - //boss挑战任务(活动期间一次) - "bossTask": [ + {"num": 40, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 100000}, + "2": {"a": "item", "t":"1", "n": 50000} + } + ] + }, + {"num": 50, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 200000}, + "2": {"a": "item", "t":"1", "n": 40000} + } + ] + }, + {"num": 60, + "prize":[ + { + "a": "item", "t":"1", "n": 10000000 + } + ] + }, + {"num": 70, + "dlz": [ + { + "1": {"a": "attr", "t":"jinbi", "n": 130000}, + "2": {"a": "item", "t":"1", "n": 60000} + } + ] + }, + ], + //抽卡保底 + "baodi": + {"num": 20, + "prize":[ + { + "a": "item", "t":"1", "n": 123456 + } + ] + }, + //黄旗礼包 + "gift": [ + { + "id": 1, + "free": true, + "payId": "", + "buynum": 1, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 5}] + }, + { + "id": 2, + "free": false, + "payId": "hqjg_libao_1", + "buynum": 2, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 10},{"a": "item", "t":"1", "n": 100}] + }, + { + "id": 3, + "free": false, + "payId": "hqjg_libao_2", + "buynum": 3, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 50},{"a": "item", "t":"1", "n": 30}] + }, + { + "id": 4, + "free": false, + "payId": "hqjg_libao_3", + "buynum": 5, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 1000},{"a": "item", "t":"2", "n": 100}] + }, + { + "id": 5, + "free": false, + "payId": "hqjg_libao_4", + "buynum": 10, + "prize": [{"a": "attr", "t":"rmbmoney", "n": 10000},{"a": "item", "t":"1", "n": 50}] + }, + ], + //兑换商店 + "duihuan": [ + {id:1, need: [{a: 'attr', t: 'huangqiduihuan', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, + {id:2, need: [{a: 'attr', t: 'huangqiduihuan', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, + {id:3, need: [{a: 'attr', t: 'huangqiduihuan', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, + {id:4, need: [{a: 'attr', t: 'huangqiduihuan', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, + {id:5, need: [{a: 'attr', t: 'huangqiduihuan', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, + {id:6, need: [{a: 'attr', t: 'huangqiduihuan', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } + ], + //boss表的ID + "bossId": 17001, + //boss挑战等级奖励 + "bossLvReward": [ + {lv:1, "need": 10000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}]}, + {lv:2, "need": 20000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}]}, + {lv:3, "need": 50000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}]}, + {lv:4, "need": 100000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}]}, + {lv:5, "need": 1000000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}]}, + {lv:6, "need": 10000000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}]} + ], + //boss挑战等级奖励邮件标题 + "bossLvReward_title": "email_title_hqjg_dps", + //boss挑战等级奖励邮件内容 + "bossLvReward_des": "email_content_hqjg_dps", + //boss挑战任务(每日刷新) + "bossTask": [ {id:1, "need": 100000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 100},{a: 'item', t: '1', n: 1000}]}, {id:2, "need": 200000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 200},{a: 'item', t: '1', n: 2000}]}, {id:3, "need": 300000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 300},{a: 'item', t: '1', n: 3000}]}, @@ -6903,78 +7344,54 @@ {id:7, "need": 700000, prize: [{a: 'item', t: '610', n: 7},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 7000}]}, {id:8, "need": 800000, prize: [{a: 'item', t: '610', n: 8},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 8000}]} ], - //BOSS挑战排行奖励 - "bossRank": [ + //BOSS挑战排行奖励 + "bossRank": [ { id: '1', rank:[1,1], prize: [{'a': 'item', 't': '13', 'n': 600}, - {'a': 'item', 't': '1', 'n': 100} - ] + {'a': 'item', 't': '1', 'n': 100} + ] }, { id: '2', rank:[2,2], prize: [{'a': 'item', 't': '13', 'n': 700}, - {'a': 'item', 't': '1', 'n': 200} - ] + {'a': 'item', 't': '1', 'n': 200} + ] }, { id: '3', rank:[3,3], prize: [{'a': 'item', 't': '13', 'n': 800}, - {'a': 'item', 't': '1', 'n': 300} - ] + {'a': 'item', 't': '1', 'n': 300} + ] }, { id: '4', rank:[4,10], prize: [{'a': 'item', 't': '13', 'n': 900}, - {'a': 'item', 't': '1', 'n': 400} - ] + {'a': 'item', 't': '1', 'n': 400} + ] }, { id: '5', rank:[11,30], prize: [{'a': 'item', 't': '13', 'n': 1000}, - {'a': 'item', 't': '1', 'n': 500} - ] + {'a': 'item', 't': '1', 'n': 500} + ] }, - { + { id: '6', rank:[31,9999], prize: [{'a': 'item', 't': '13', 'n': 50}, - {'a': 'item', 't': '1', 'n': 600} - ] + {'a': 'item', 't': '1', 'n': 600} + ] } ], - //boss排行邮件标题 - "bossRank_title": "email_title_hqjg_rank", - //boss排行邮件内容 - "bossRank_des": "email_content_hqjg_rank", - //活动时间结束后道具转换 - "zhuanhuan": [ - { - "start": { - 'a': 'attr', 't': 'huangqijinbi', 'n': 1 - }, - "end": { - 'a': 'attr', 't': 'jinbi', 'n': 10000 - } - }, - { - "start": { - 'a': 'attr', 't': 'huangqiduihuan', 'n': 1 - }, - "end": { - 'a': 'attr', 't': 'jinbi', 'n': 5000 - } - } - ], - //活动结算转换货币邮件标题 - "end_mail_title": "email_title_hqjg_end", - //活动结算转换货币邮件内容 - "end_mail_des": "email_content_hqjg_end" - } - } + //boss排行邮件标题 + "bossRank_title": "email_title_hqjg_rank", + //boss排行邮件内容 + "bossRank_des": "email_content_hqjg_rank" + } ] \ No newline at end of file diff --git a/src/json/renown_level.json b/src/json/renown_level.json index 8e6503f..e48ecf2 100644 --- a/src/json/renown_level.json +++ b/src/json/renown_level.json @@ -317,286 +317,172 @@ "22": { "id": 22, "renownlevel": 22, - "maxlevel": 62500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 25 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 7 + "maxlevel": 5000, + "cost": 54, + "atk": 14, + "def": 7, + "hp": 23 }, "23": { "id": 23, "renownlevel": 23, - "maxlevel": 67500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 30 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 7 + "maxlevel": 5000, + "cost": 57, + "atk": 16, + "def": 8, + "hp": 24 }, "24": { "id": 24, "renownlevel": 24, - "maxlevel": 72500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 35 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 7 + "maxlevel": 5000, + "cost": 60, + "atk": 16, + "def": 8, + "hp": 24 }, "25": { "id": 25, "renownlevel": 25, - "maxlevel": 77500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 40 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 7 + "maxlevel": 5000, + "cost": 63, + "atk": 16, + "def": 8, + "hp": 24 }, "26": { "id": 26, "renownlevel": 26, - "maxlevel": 82500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 45 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 66, + "atk": 16, + "def": 8, + "hp": 24 }, "27": { "id": 27, "renownlevel": 27, - "maxlevel": 87500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 50 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 69, + "atk": 16, + "def": 8, + "hp": 24 }, "28": { "id": 28, "renownlevel": 28, - "maxlevel": 92500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 60 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 72, + "atk": 18, + "def": 9, + "hp": 25 }, "29": { "id": 29, "renownlevel": 29, - "maxlevel": 97500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 80 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 75, + "atk": 18, + "def": 9, + "hp": 25 }, "30": { "id": 30, "renownlevel": 30, - "maxlevel": 102500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 100 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 78, + "atk": 18, + "def": 9, + "hp": 25 }, "31": { "id": 31, "renownlevel": 31, - "maxlevel": 107500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 120 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 81, + "atk": 18, + "def": 9, + "hp": 25 }, "32": { "id": 32, "renownlevel": 32, - "maxlevel": 112500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 140 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 84, + "atk": 18, + "def": 9, + "hp": 25 }, "33": { "id": 33, "renownlevel": 33, - "maxlevel": 117500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 180 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 87, + "atk": 18, + "def": 10, + "hp": 25 }, "34": { "id": 34, "renownlevel": 34, - "maxlevel": 122500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 220 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 90, + "atk": 18, + "def": 10, + "hp": 25 }, "35": { "id": 35, "renownlevel": 35, - "maxlevel": 127500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 260 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 93, + "atk": 18, + "def": 10, + "hp": 25 }, "36": { "id": 36, "renownlevel": 36, - "maxlevel": 132500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 300 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 97, + "atk": 18, + "def": 10, + "hp": 25 }, "37": { "id": 37, "renownlevel": 37, - "maxlevel": 137500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 350 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 101, + "atk": 18, + "def": 10, + "hp": 25 }, "38": { "id": 38, "renownlevel": 38, - "maxlevel": 142500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 400 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 105, + "atk": 18, + "def": 10, + "hp": 25 }, "39": { "id": 39, "renownlevel": 39, - "maxlevel": 147500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 450 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 109, + "atk": 18, + "def": 10, + "hp": 25 }, "40": { "id": 40, "renownlevel": 40, - "maxlevel": 152500, - "cost": [ - { - "a": "attr", - "t": "weiwang", - "n": 500 - } - ], - "atk": 1.4, - "def": 1.2, - "hp": 8 + "maxlevel": 5000, + "cost": 113, + "atk": 18, + "def": 10, + "hp": 25 } } \ No newline at end of file diff --git a/src/json/tanxian.json b/src/json/tanxian.json index f7a9e3e..d9ed972 100644 --- a/src/json/tanxian.json +++ b/src/json/tanxian.json @@ -10,17 +10,17 @@ { "a": "attr", "t": "jinbi", - "n": 162 + "n": 27 }, { "a": "attr", "t": "nexp", - "n": 12.3 + "n": 2.05 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -62,17 +62,17 @@ { "a": "attr", "t": "jinbi", - "n": 166.2 + "n": 27.7 }, { "a": "attr", "t": "nexp", - "n": 18.06 + "n": 3.01 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -114,17 +114,17 @@ { "a": "attr", "t": "jinbi", - "n": 170.4 + "n": 28.4 }, { "a": "attr", "t": "nexp", - "n": 23.82 + "n": 3.97 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -164,17 +164,17 @@ { "a": "attr", "t": "jinbi", - "n": 174.6 + "n": 29.1 }, { "a": "attr", "t": "nexp", - "n": 29.58 + "n": 4.93 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -214,17 +214,17 @@ { "a": "attr", "t": "jinbi", - "n": 178.8 + "n": 29.8 }, { "a": "attr", "t": "nexp", - "n": 35.34 + "n": 5.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -264,17 +264,17 @@ { "a": "attr", "t": "jinbi", - "n": 183 + "n": 30.5 }, { "a": "attr", "t": "nexp", - "n": 41.1 + "n": 6.85 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -314,17 +314,17 @@ { "a": "attr", "t": "jinbi", - "n": 187.2 + "n": 31.2 }, { "a": "attr", "t": "nexp", - "n": 46.86 + "n": 7.81 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -364,17 +364,17 @@ { "a": "attr", "t": "jinbi", - "n": 191.4 + "n": 31.9 }, { "a": "attr", "t": "nexp", - "n": 52.62 + "n": 8.77 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -414,17 +414,17 @@ { "a": "attr", "t": "jinbi", - "n": 195.6 + "n": 32.6 }, { "a": "attr", "t": "nexp", - "n": 58.38 + "n": 9.73 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -464,17 +464,17 @@ { "a": "attr", "t": "jinbi", - "n": 199.8 + "n": 33.3 }, { "a": "attr", "t": "nexp", - "n": 64.14 + "n": 10.69 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -514,17 +514,17 @@ { "a": "attr", "t": "jinbi", - "n": 204 + "n": 34 }, { "a": "attr", "t": "nexp", - "n": 69.9 + "n": 11.65 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -566,17 +566,17 @@ { "a": "attr", "t": "jinbi", - "n": 208.2 + "n": 34.7 }, { "a": "attr", "t": "nexp", - "n": 75.66 + "n": 12.61 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -618,17 +618,17 @@ { "a": "attr", "t": "jinbi", - "n": 212.4 + "n": 35.4 }, { "a": "attr", "t": "nexp", - "n": 84.42 + "n": 14.07 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -670,17 +670,17 @@ { "a": "attr", "t": "jinbi", - "n": 216.6 + "n": 36.1 }, { "a": "attr", "t": "nexp", - "n": 93.18 + "n": 15.53 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -723,17 +723,17 @@ { "a": "attr", "t": "jinbi", - "n": 220.8 + "n": 36.8 }, { "a": "attr", "t": "nexp", - "n": 101.94 + "n": 16.99 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -776,17 +776,17 @@ { "a": "attr", "t": "jinbi", - "n": 225 + "n": 37.5 }, { "a": "attr", "t": "nexp", - "n": 110.7 + "n": 18.45 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -829,17 +829,17 @@ { "a": "attr", "t": "jinbi", - "n": 229.2 + "n": 38.2 }, { "a": "attr", "t": "nexp", - "n": 119.46 + "n": 19.91 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -882,17 +882,17 @@ { "a": "attr", "t": "jinbi", - "n": 233.4 + "n": 38.9 }, { "a": "attr", "t": "nexp", - "n": 128.22 + "n": 21.37 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -935,17 +935,17 @@ { "a": "attr", "t": "jinbi", - "n": 237.6 + "n": 39.6 }, { "a": "attr", "t": "nexp", - "n": 136.98 + "n": 22.83 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -988,17 +988,17 @@ { "a": "attr", "t": "jinbi", - "n": 241.8 + "n": 40.3 }, { "a": "attr", "t": "nexp", - "n": 145.74 + "n": 24.29 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1041,17 +1041,17 @@ { "a": "attr", "t": "jinbi", - "n": 246 + "n": 41 }, { "a": "attr", "t": "nexp", - "n": 160.5 + "n": 26.75 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1095,17 +1095,17 @@ { "a": "attr", "t": "jinbi", - "n": 250.2 + "n": 41.7 }, { "a": "attr", "t": "nexp", - "n": 175.26 + "n": 29.21 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1149,17 +1149,17 @@ { "a": "attr", "t": "jinbi", - "n": 254.4 + "n": 42.4 }, { "a": "attr", "t": "nexp", - "n": 190.02 + "n": 31.67 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1203,17 +1203,17 @@ { "a": "attr", "t": "jinbi", - "n": 258.6 + "n": 43.1 }, { "a": "attr", "t": "nexp", - "n": 204.78 + "n": 34.13 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1257,17 +1257,17 @@ { "a": "attr", "t": "jinbi", - "n": 262.8 + "n": 43.8 }, { "a": "attr", "t": "nexp", - "n": 219.54 + "n": 36.59 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1311,17 +1311,17 @@ { "a": "attr", "t": "jinbi", - "n": 267 + "n": 44.5 }, { "a": "attr", "t": "nexp", - "n": 234.3 + "n": 39.05 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1365,17 +1365,17 @@ { "a": "attr", "t": "jinbi", - "n": 271.2 + "n": 45.2 }, { "a": "attr", "t": "nexp", - "n": 249.06 + "n": 41.51 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1419,17 +1419,17 @@ { "a": "attr", "t": "jinbi", - "n": 275.4 + "n": 45.9 }, { "a": "attr", "t": "nexp", - "n": 263.82 + "n": 43.97 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1473,17 +1473,17 @@ { "a": "attr", "t": "jinbi", - "n": 279.6 + "n": 46.6 }, { "a": "attr", "t": "nexp", - "n": 278.58 + "n": 46.43 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1527,17 +1527,17 @@ { "a": "attr", "t": "jinbi", - "n": 283.8 + "n": 47.3 }, { "a": "attr", "t": "nexp", - "n": 293.34 + "n": 48.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1581,17 +1581,17 @@ { "a": "attr", "t": "jinbi", - "n": 288 + "n": 48 }, { "a": "attr", "t": "nexp", - "n": 308.1 + "n": 51.35 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1635,17 +1635,17 @@ { "a": "attr", "t": "jinbi", - "n": 292.2 + "n": 48.7 }, { "a": "attr", "t": "nexp", - "n": 322.86 + "n": 53.81 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1689,17 +1689,17 @@ { "a": "attr", "t": "jinbi", - "n": 296.4 + "n": 49.4 }, { "a": "attr", "t": "nexp", - "n": 337.62 + "n": 56.27 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1743,17 +1743,17 @@ { "a": "attr", "t": "jinbi", - "n": 300.6 + "n": 50.1 }, { "a": "attr", "t": "nexp", - "n": 352.38 + "n": 58.73 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1797,17 +1797,17 @@ { "a": "attr", "t": "jinbi", - "n": 304.8 + "n": 50.8 }, { "a": "attr", "t": "nexp", - "n": 365.46 + "n": 60.91 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1851,17 +1851,17 @@ { "a": "attr", "t": "jinbi", - "n": 309 + "n": 51.5 }, { "a": "attr", "t": "nexp", - "n": 379.38 + "n": 63.23 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1905,17 +1905,17 @@ { "a": "attr", "t": "jinbi", - "n": 313.2 + "n": 52.2 }, { "a": "attr", "t": "nexp", - "n": 383.64 + "n": 63.94 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -1959,17 +1959,17 @@ { "a": "attr", "t": "jinbi", - "n": 317.4 + "n": 52.9 }, { "a": "attr", "t": "nexp", - "n": 388.02 + "n": 64.67 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2013,17 +2013,17 @@ { "a": "attr", "t": "jinbi", - "n": 321.6 + "n": 53.6 }, { "a": "attr", "t": "nexp", - "n": 393.18 + "n": 65.53 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2067,17 +2067,17 @@ { "a": "attr", "t": "jinbi", - "n": 325.8 + "n": 54.3 }, { "a": "attr", "t": "nexp", - "n": 407.04 + "n": 67.84 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2121,17 +2121,17 @@ { "a": "attr", "t": "jinbi", - "n": 330 + "n": 55 }, { "a": "attr", "t": "nexp", - "n": 420.96 + "n": 70.16 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2175,17 +2175,17 @@ { "a": "attr", "t": "jinbi", - "n": 334.2 + "n": 55.7 }, { "a": "attr", "t": "nexp", - "n": 434.82 + "n": 72.47 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2229,17 +2229,17 @@ { "a": "attr", "t": "jinbi", - "n": 338.4 + "n": 56.4 }, { "a": "attr", "t": "nexp", - "n": 448.62 + "n": 74.77 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2283,17 +2283,17 @@ { "a": "attr", "t": "jinbi", - "n": 342.6 + "n": 57.1 }, { "a": "attr", "t": "nexp", - "n": 462.54 + "n": 77.09 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2337,17 +2337,17 @@ { "a": "attr", "t": "jinbi", - "n": 346.8 + "n": 57.8 }, { "a": "attr", "t": "nexp", - "n": 476.4 + "n": 79.4 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2391,17 +2391,17 @@ { "a": "attr", "t": "jinbi", - "n": 351 + "n": 58.5 }, { "a": "attr", "t": "nexp", - "n": 490.26 + "n": 81.71 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2445,17 +2445,17 @@ { "a": "attr", "t": "jinbi", - "n": 355.2 + "n": 59.2 }, { "a": "attr", "t": "nexp", - "n": 504.18 + "n": 84.03 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2499,17 +2499,17 @@ { "a": "attr", "t": "jinbi", - "n": 359.4 + "n": 59.9 }, { "a": "attr", "t": "nexp", - "n": 517.98 + "n": 86.33 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2553,17 +2553,17 @@ { "a": "attr", "t": "jinbi", - "n": 363.6 + "n": 60.6 }, { "a": "attr", "t": "nexp", - "n": 531.84 + "n": 88.64 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2607,17 +2607,17 @@ { "a": "attr", "t": "jinbi", - "n": 367.8 + "n": 61.3 }, { "a": "attr", "t": "nexp", - "n": 545.76 + "n": 90.96 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2661,17 +2661,17 @@ { "a": "attr", "t": "jinbi", - "n": 372 + "n": 62 }, { "a": "attr", "t": "nexp", - "n": 559.62 + "n": 93.27 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2715,17 +2715,17 @@ { "a": "attr", "t": "jinbi", - "n": 376.2 + "n": 62.7 }, { "a": "attr", "t": "nexp", - "n": 573.42 + "n": 95.57 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2769,17 +2769,17 @@ { "a": "attr", "t": "jinbi", - "n": 380.4 + "n": 63.4 }, { "a": "attr", "t": "nexp", - "n": 587.34 + "n": 97.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2823,17 +2823,17 @@ { "a": "attr", "t": "jinbi", - "n": 384.6 + "n": 64.1 }, { "a": "attr", "t": "nexp", - "n": 601.2 + "n": 100.2 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2877,17 +2877,17 @@ { "a": "attr", "t": "jinbi", - "n": 388.8 + "n": 64.8 }, { "a": "attr", "t": "nexp", - "n": 615.06 + "n": 102.51 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2931,17 +2931,17 @@ { "a": "attr", "t": "jinbi", - "n": 393 + "n": 65.5 }, { "a": "attr", "t": "nexp", - "n": 628.98 + "n": 104.83 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -2985,17 +2985,17 @@ { "a": "attr", "t": "jinbi", - "n": 397.2 + "n": 66.2 }, { "a": "attr", "t": "nexp", - "n": 642.78 + "n": 107.13 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3039,17 +3039,17 @@ { "a": "attr", "t": "jinbi", - "n": 401.4 + "n": 66.9 }, { "a": "attr", "t": "nexp", - "n": 656.64 + "n": 109.44 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3093,17 +3093,17 @@ { "a": "attr", "t": "jinbi", - "n": 405.6 + "n": 67.6 }, { "a": "attr", "t": "nexp", - "n": 670.56 + "n": 111.76 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3147,17 +3147,17 @@ { "a": "attr", "t": "jinbi", - "n": 409.8 + "n": 68.3 }, { "a": "attr", "t": "nexp", - "n": 682.62 + "n": 113.77 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3201,17 +3201,17 @@ { "a": "attr", "t": "jinbi", - "n": 414 + "n": 69 }, { "a": "attr", "t": "nexp", - "n": 691.38 + "n": 115.23 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3255,17 +3255,17 @@ { "a": "attr", "t": "jinbi", - "n": 418.2 + "n": 69.7 }, { "a": "attr", "t": "nexp", - "n": 700.02 + "n": 116.67 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3309,17 +3309,17 @@ { "a": "attr", "t": "jinbi", - "n": 422.4 + "n": 70.4 }, { "a": "attr", "t": "nexp", - "n": 708.66 + "n": 118.11 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3363,17 +3363,17 @@ { "a": "attr", "t": "jinbi", - "n": 426.6 + "n": 71.1 }, { "a": "attr", "t": "nexp", - "n": 717.36 + "n": 119.56 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3417,17 +3417,17 @@ { "a": "attr", "t": "jinbi", - "n": 430.8 + "n": 71.8 }, { "a": "attr", "t": "nexp", - "n": 726 + "n": 121 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3471,17 +3471,17 @@ { "a": "attr", "t": "jinbi", - "n": 435 + "n": 72.5 }, { "a": "attr", "t": "nexp", - "n": 734.64 + "n": 122.44 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3525,17 +3525,17 @@ { "a": "attr", "t": "jinbi", - "n": 439.2 + "n": 73.2 }, { "a": "attr", "t": "nexp", - "n": 743.34 + "n": 123.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3579,17 +3579,17 @@ { "a": "attr", "t": "jinbi", - "n": 443.4 + "n": 73.9 }, { "a": "attr", "t": "nexp", - "n": 751.98 + "n": 125.33 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3633,17 +3633,17 @@ { "a": "attr", "t": "jinbi", - "n": 447.6 + "n": 74.6 }, { "a": "attr", "t": "nexp", - "n": 760.62 + "n": 126.77 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3687,17 +3687,17 @@ { "a": "attr", "t": "jinbi", - "n": 451.8 + "n": 75.3 }, { "a": "attr", "t": "nexp", - "n": 769.38 + "n": 128.23 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3741,17 +3741,17 @@ { "a": "attr", "t": "jinbi", - "n": 456 + "n": 76 }, { "a": "attr", "t": "nexp", - "n": 778.02 + "n": 129.67 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3795,17 +3795,17 @@ { "a": "attr", "t": "jinbi", - "n": 460.2 + "n": 76.7 }, { "a": "attr", "t": "nexp", - "n": 786.66 + "n": 131.11 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3849,17 +3849,17 @@ { "a": "attr", "t": "jinbi", - "n": 464.4 + "n": 77.4 }, { "a": "attr", "t": "nexp", - "n": 795.36 + "n": 132.56 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3903,17 +3903,17 @@ { "a": "attr", "t": "jinbi", - "n": 468.6 + "n": 78.1 }, { "a": "attr", "t": "nexp", - "n": 804 + "n": 134 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -3957,17 +3957,17 @@ { "a": "attr", "t": "jinbi", - "n": 472.8 + "n": 78.8 }, { "a": "attr", "t": "nexp", - "n": 812.64 + "n": 135.44 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4011,17 +4011,17 @@ { "a": "attr", "t": "jinbi", - "n": 477 + "n": 79.5 }, { "a": "attr", "t": "nexp", - "n": 821.34 + "n": 136.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4065,17 +4065,17 @@ { "a": "attr", "t": "jinbi", - "n": 481.2 + "n": 80.2 }, { "a": "attr", "t": "nexp", - "n": 829.98 + "n": 138.33 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4119,17 +4119,17 @@ { "a": "attr", "t": "jinbi", - "n": 485.4 + "n": 80.9 }, { "a": "attr", "t": "nexp", - "n": 838.62 + "n": 139.77 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4173,17 +4173,17 @@ { "a": "attr", "t": "jinbi", - "n": 489.6 + "n": 81.6 }, { "a": "attr", "t": "nexp", - "n": 847.32 + "n": 141.22 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4227,17 +4227,17 @@ { "a": "attr", "t": "jinbi", - "n": 493.8 + "n": 82.3 }, { "a": "attr", "t": "nexp", - "n": 855.96 + "n": 142.66 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4281,17 +4281,17 @@ { "a": "attr", "t": "jinbi", - "n": 498 + "n": 83 }, { "a": "attr", "t": "nexp", - "n": 864.6 + "n": 144.1 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4335,17 +4335,17 @@ { "a": "attr", "t": "jinbi", - "n": 502.2 + "n": 83.7 }, { "a": "attr", "t": "nexp", - "n": 873.24 + "n": 145.54 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4389,17 +4389,17 @@ { "a": "attr", "t": "jinbi", - "n": 506.4 + "n": 84.4 }, { "a": "attr", "t": "nexp", - "n": 881.94 + "n": 146.99 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4443,17 +4443,17 @@ { "a": "attr", "t": "jinbi", - "n": 510.6 + "n": 85.1 }, { "a": "attr", "t": "nexp", - "n": 890.58 + "n": 148.43 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4497,17 +4497,17 @@ { "a": "attr", "t": "jinbi", - "n": 514.8 + "n": 85.8 }, { "a": "attr", "t": "nexp", - "n": 899.22 + "n": 149.87 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4551,17 +4551,17 @@ { "a": "attr", "t": "jinbi", - "n": 519 + "n": 86.5 }, { "a": "attr", "t": "nexp", - "n": 907.92 + "n": 151.32 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4605,17 +4605,17 @@ { "a": "attr", "t": "jinbi", - "n": 523.2 + "n": 87.2 }, { "a": "attr", "t": "nexp", - "n": 916.56 + "n": 152.76 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4659,17 +4659,17 @@ { "a": "attr", "t": "jinbi", - "n": 527.4 + "n": 87.9 }, { "a": "attr", "t": "nexp", - "n": 925.2 + "n": 154.2 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4713,17 +4713,17 @@ { "a": "attr", "t": "jinbi", - "n": 531.6 + "n": 88.6 }, { "a": "attr", "t": "nexp", - "n": 933.9 + "n": 155.65 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4767,17 +4767,17 @@ { "a": "attr", "t": "jinbi", - "n": 535.8 + "n": 89.3 }, { "a": "attr", "t": "nexp", - "n": 942.54 + "n": 157.09 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4821,17 +4821,17 @@ { "a": "attr", "t": "jinbi", - "n": 540 + "n": 90 }, { "a": "attr", "t": "nexp", - "n": 951.18 + "n": 158.53 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4875,17 +4875,17 @@ { "a": "attr", "t": "jinbi", - "n": 544.2 + "n": 90.7 }, { "a": "attr", "t": "nexp", - "n": 959.82 + "n": 159.97 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4929,17 +4929,17 @@ { "a": "attr", "t": "jinbi", - "n": 548.4 + "n": 91.4 }, { "a": "attr", "t": "nexp", - "n": 968.52 + "n": 161.42 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -4983,17 +4983,17 @@ { "a": "attr", "t": "jinbi", - "n": 552.6 + "n": 92.1 }, { "a": "attr", "t": "nexp", - "n": 977.16 + "n": 162.86 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5037,17 +5037,17 @@ { "a": "attr", "t": "jinbi", - "n": 556.8 + "n": 92.8 }, { "a": "attr", "t": "nexp", - "n": 985.8 + "n": 164.3 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5091,17 +5091,17 @@ { "a": "attr", "t": "jinbi", - "n": 561 + "n": 93.5 }, { "a": "attr", "t": "nexp", - "n": 994.5 + "n": 165.75 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5145,17 +5145,17 @@ { "a": "attr", "t": "jinbi", - "n": 565.2 + "n": 94.2 }, { "a": "attr", "t": "nexp", - "n": 1003.14 + "n": 167.19 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5199,17 +5199,17 @@ { "a": "attr", "t": "jinbi", - "n": 569.4 + "n": 94.9 }, { "a": "attr", "t": "nexp", - "n": 1011.78 + "n": 168.63 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5253,17 +5253,17 @@ { "a": "attr", "t": "jinbi", - "n": 573.6 + "n": 95.6 }, { "a": "attr", "t": "nexp", - "n": 1020.48 + "n": 170.08 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5307,17 +5307,17 @@ { "a": "attr", "t": "jinbi", - "n": 577.8 + "n": 96.3 }, { "a": "attr", "t": "nexp", - "n": 1029.12 + "n": 171.52 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5361,17 +5361,17 @@ { "a": "attr", "t": "jinbi", - "n": 582 + "n": 97 }, { "a": "attr", "t": "nexp", - "n": 1037.76 + "n": 172.96 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5415,17 +5415,17 @@ { "a": "attr", "t": "jinbi", - "n": 586.2 + "n": 97.7 }, { "a": "attr", "t": "nexp", - "n": 1046.4 + "n": 174.4 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5469,17 +5469,17 @@ { "a": "attr", "t": "jinbi", - "n": 590.4 + "n": 98.4 }, { "a": "attr", "t": "nexp", - "n": 1055.1 + "n": 175.85 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5523,17 +5523,17 @@ { "a": "attr", "t": "jinbi", - "n": 594.6 + "n": 99.1 }, { "a": "attr", "t": "nexp", - "n": 1063.74 + "n": 177.29 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5577,17 +5577,17 @@ { "a": "attr", "t": "jinbi", - "n": 598.8 + "n": 99.8 }, { "a": "attr", "t": "nexp", - "n": 1067.64 + "n": 177.94 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5631,17 +5631,17 @@ { "a": "attr", "t": "jinbi", - "n": 603 + "n": 100.5 }, { "a": "attr", "t": "nexp", - "n": 1071.54 + "n": 178.59 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5685,17 +5685,17 @@ { "a": "attr", "t": "jinbi", - "n": 607.2 + "n": 101.2 }, { "a": "attr", "t": "nexp", - "n": 1075.44 + "n": 179.24 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5739,17 +5739,17 @@ { "a": "attr", "t": "jinbi", - "n": 611.4 + "n": 101.9 }, { "a": "attr", "t": "nexp", - "n": 1079.34 + "n": 179.89 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5793,17 +5793,17 @@ { "a": "attr", "t": "jinbi", - "n": 615.6 + "n": 102.6 }, { "a": "attr", "t": "nexp", - "n": 1083.24 + "n": 180.54 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5847,17 +5847,17 @@ { "a": "attr", "t": "jinbi", - "n": 619.8 + "n": 103.3 }, { "a": "attr", "t": "nexp", - "n": 1087.14 + "n": 181.19 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5901,17 +5901,17 @@ { "a": "attr", "t": "jinbi", - "n": 624 + "n": 104 }, { "a": "attr", "t": "nexp", - "n": 1091.04 + "n": 181.84 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -5955,17 +5955,17 @@ { "a": "attr", "t": "jinbi", - "n": 628.2 + "n": 104.7 }, { "a": "attr", "t": "nexp", - "n": 1094.94 + "n": 182.49 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6009,17 +6009,17 @@ { "a": "attr", "t": "jinbi", - "n": 632.4 + "n": 105.4 }, { "a": "attr", "t": "nexp", - "n": 1098.84 + "n": 183.14 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6063,17 +6063,17 @@ { "a": "attr", "t": "jinbi", - "n": 636.6 + "n": 106.1 }, { "a": "attr", "t": "nexp", - "n": 1102.74 + "n": 183.79 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6117,17 +6117,17 @@ { "a": "attr", "t": "jinbi", - "n": 640.8 + "n": 106.8 }, { "a": "attr", "t": "nexp", - "n": 1106.64 + "n": 184.44 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6171,17 +6171,17 @@ { "a": "attr", "t": "jinbi", - "n": 645 + "n": 107.5 }, { "a": "attr", "t": "nexp", - "n": 1110.54 + "n": 185.09 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6225,17 +6225,17 @@ { "a": "attr", "t": "jinbi", - "n": 649.2 + "n": 108.2 }, { "a": "attr", "t": "nexp", - "n": 1114.44 + "n": 185.74 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6279,17 +6279,17 @@ { "a": "attr", "t": "jinbi", - "n": 653.4 + "n": 108.9 }, { "a": "attr", "t": "nexp", - "n": 1118.34 + "n": 186.39 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6333,17 +6333,17 @@ { "a": "attr", "t": "jinbi", - "n": 657.6 + "n": 109.6 }, { "a": "attr", "t": "nexp", - "n": 1122.24 + "n": 187.04 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6387,17 +6387,17 @@ { "a": "attr", "t": "jinbi", - "n": 661.8 + "n": 110.3 }, { "a": "attr", "t": "nexp", - "n": 1126.14 + "n": 187.69 }, { "a": "attr", "t": "weiwang", - "n": 6 + "n": 0.1 } ], "dlz": [], @@ -6441,17 +6441,17 @@ { "a": "attr", "t": "jinbi", - "n": 666 + "n": 111 }, { "a": "attr", "t": "nexp", - "n": 1130.04 + "n": 188.34 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6495,17 +6495,17 @@ { "a": "attr", "t": "jinbi", - "n": 670.2 + "n": 111.7 }, { "a": "attr", "t": "nexp", - "n": 1133.94 + "n": 188.99 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6549,17 +6549,17 @@ { "a": "attr", "t": "jinbi", - "n": 674.4 + "n": 112.4 }, { "a": "attr", "t": "nexp", - "n": 1137.84 + "n": 189.64 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6603,17 +6603,17 @@ { "a": "attr", "t": "jinbi", - "n": 678.6 + "n": 113.1 }, { "a": "attr", "t": "nexp", - "n": 1141.74 + "n": 190.29 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6657,17 +6657,17 @@ { "a": "attr", "t": "jinbi", - "n": 682.8 + "n": 113.8 }, { "a": "attr", "t": "nexp", - "n": 1145.64 + "n": 190.94 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6711,17 +6711,17 @@ { "a": "attr", "t": "jinbi", - "n": 687 + "n": 114.5 }, { "a": "attr", "t": "nexp", - "n": 1149.54 + "n": 191.59 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6765,17 +6765,17 @@ { "a": "attr", "t": "jinbi", - "n": 691.2 + "n": 115.2 }, { "a": "attr", "t": "nexp", - "n": 1153.44 + "n": 192.24 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6819,17 +6819,17 @@ { "a": "attr", "t": "jinbi", - "n": 695.4 + "n": 115.9 }, { "a": "attr", "t": "nexp", - "n": 1157.34 + "n": 192.89 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6873,17 +6873,17 @@ { "a": "attr", "t": "jinbi", - "n": 699.6 + "n": 116.6 }, { "a": "attr", "t": "nexp", - "n": 1161.24 + "n": 193.54 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6927,17 +6927,17 @@ { "a": "attr", "t": "jinbi", - "n": 703.8 + "n": 117.3 }, { "a": "attr", "t": "nexp", - "n": 1165.14 + "n": 194.19 }, { "a": "attr", "t": "weiwang", - "n": 7.2 + "n": 0.12 } ], "dlz": [], @@ -6981,17 +6981,17 @@ { "a": "attr", "t": "jinbi", - "n": 708 + "n": 118 }, { "a": "attr", "t": "nexp", - "n": 1169.04 + "n": 194.84 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7035,17 +7035,17 @@ { "a": "attr", "t": "jinbi", - "n": 712.2 + "n": 118.7 }, { "a": "attr", "t": "nexp", - "n": 1172.94 + "n": 195.49 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7089,17 +7089,17 @@ { "a": "attr", "t": "jinbi", - "n": 716.4 + "n": 119.4 }, { "a": "attr", "t": "nexp", - "n": 1176.84 + "n": 196.14 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7143,17 +7143,17 @@ { "a": "attr", "t": "jinbi", - "n": 720.6 + "n": 120.1 }, { "a": "attr", "t": "nexp", - "n": 1180.74 + "n": 196.79 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7197,17 +7197,17 @@ { "a": "attr", "t": "jinbi", - "n": 724.8 + "n": 120.8 }, { "a": "attr", "t": "nexp", - "n": 1184.64 + "n": 197.44 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7251,17 +7251,17 @@ { "a": "attr", "t": "jinbi", - "n": 729 + "n": 121.5 }, { "a": "attr", "t": "nexp", - "n": 1188.54 + "n": 198.09 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7305,17 +7305,17 @@ { "a": "attr", "t": "jinbi", - "n": 733.2 + "n": 122.2 }, { "a": "attr", "t": "nexp", - "n": 1192.44 + "n": 198.74 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7359,17 +7359,17 @@ { "a": "attr", "t": "jinbi", - "n": 737.4 + "n": 122.9 }, { "a": "attr", "t": "nexp", - "n": 1196.34 + "n": 199.39 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7413,17 +7413,17 @@ { "a": "attr", "t": "jinbi", - "n": 741.6 + "n": 123.6 }, { "a": "attr", "t": "nexp", - "n": 1200.24 + "n": 200.04 }, { "a": "attr", "t": "weiwang", - "n": 8.4 + "n": 0.14 } ], "dlz": [], @@ -7467,17 +7467,17 @@ { "a": "attr", "t": "jinbi", - "n": 745.8 + "n": 124.3 }, { "a": "attr", "t": "nexp", - "n": 1204.14 + "n": 200.69 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7521,17 +7521,17 @@ { "a": "attr", "t": "jinbi", - "n": 750 + "n": 125 }, { "a": "attr", "t": "nexp", - "n": 1208.04 + "n": 201.34 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7575,17 +7575,17 @@ { "a": "attr", "t": "jinbi", - "n": 754.2 + "n": 125.7 }, { "a": "attr", "t": "nexp", - "n": 1211.94 + "n": 201.99 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7629,17 +7629,17 @@ { "a": "attr", "t": "jinbi", - "n": 758.4 + "n": 126.4 }, { "a": "attr", "t": "nexp", - "n": 1215.84 + "n": 202.64 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7683,17 +7683,17 @@ { "a": "attr", "t": "jinbi", - "n": 762.6 + "n": 127.1 }, { "a": "attr", "t": "nexp", - "n": 1219.74 + "n": 203.29 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7737,17 +7737,17 @@ { "a": "attr", "t": "jinbi", - "n": 766.8 + "n": 127.8 }, { "a": "attr", "t": "nexp", - "n": 1223.64 + "n": 203.94 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7791,17 +7791,17 @@ { "a": "attr", "t": "jinbi", - "n": 771 + "n": 128.5 }, { "a": "attr", "t": "nexp", - "n": 1227.54 + "n": 204.59 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7845,17 +7845,17 @@ { "a": "attr", "t": "jinbi", - "n": 775.2 + "n": 129.2 }, { "a": "attr", "t": "nexp", - "n": 1231.44 + "n": 205.24 }, { "a": "attr", "t": "weiwang", - "n": 9.6 + "n": 0.16 } ], "dlz": [], @@ -7899,17 +7899,17 @@ { "a": "attr", "t": "jinbi", - "n": 779.4 + "n": 129.9 }, { "a": "attr", "t": "nexp", - "n": 1235.34 + "n": 205.89 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -7953,17 +7953,17 @@ { "a": "attr", "t": "jinbi", - "n": 783.6 + "n": 130.6 }, { "a": "attr", "t": "nexp", - "n": 1239.24 + "n": 206.54 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8007,17 +8007,17 @@ { "a": "attr", "t": "jinbi", - "n": 787.8 + "n": 131.3 }, { "a": "attr", "t": "nexp", - "n": 1243.14 + "n": 207.19 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8061,17 +8061,17 @@ { "a": "attr", "t": "jinbi", - "n": 792 + "n": 132 }, { "a": "attr", "t": "nexp", - "n": 1247.04 + "n": 207.84 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8115,17 +8115,17 @@ { "a": "attr", "t": "jinbi", - "n": 796.2 + "n": 132.7 }, { "a": "attr", "t": "nexp", - "n": 1250.94 + "n": 208.49 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8169,17 +8169,17 @@ { "a": "attr", "t": "jinbi", - "n": 800.4 + "n": 133.4 }, { "a": "attr", "t": "nexp", - "n": 1254.84 + "n": 209.14 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8223,17 +8223,17 @@ { "a": "attr", "t": "jinbi", - "n": 804.6 + "n": 134.1 }, { "a": "attr", "t": "nexp", - "n": 1258.74 + "n": 209.79 }, { "a": "attr", "t": "weiwang", - "n": 10.8 + "n": 0.18 } ], "dlz": [], @@ -8277,17 +8277,17 @@ { "a": "attr", "t": "jinbi", - "n": 808.8 + "n": 134.8 }, { "a": "attr", "t": "nexp", - "n": 1262.64 + "n": 210.44 }, { "a": "attr", "t": "weiwang", - "n": 12 + "n": 0.2 } ], "dlz": [], @@ -8331,17 +8331,17 @@ { "a": "attr", "t": "jinbi", - "n": 813 + "n": 135.5 }, { "a": "attr", "t": "nexp", - "n": 1266.54 + "n": 211.09 }, { "a": "attr", "t": "weiwang", - "n": 12 + "n": 0.2 } ], "dlz": [], @@ -8385,17 +8385,17 @@ { "a": "attr", "t": "jinbi", - "n": 817.2 + "n": 136.2 }, { "a": "attr", "t": "nexp", - "n": 1270.44 + "n": 211.74 }, { "a": "attr", "t": "weiwang", - "n": 12 + "n": 0.2 } ], "dlz": [], @@ -8439,17 +8439,17 @@ { "a": "attr", "t": "jinbi", - "n": 821.4 + "n": 136.9 }, { "a": "attr", "t": "nexp", - "n": 1274.34 + "n": 212.39 }, { "a": "attr", "t": "weiwang", - "n": 12 + "n": 0.2 } ], "dlz": [], @@ -8493,17 +8493,17 @@ { "a": "attr", "t": "jinbi", - "n": 825.6 + "n": 137.6 }, { "a": "attr", "t": "nexp", - "n": 1278.24 + "n": 213.04 }, { "a": "attr", "t": "weiwang", - "n": 12 + "n": 0.2 } ], "dlz": [], @@ -8547,17 +8547,17 @@ { "a": "attr", "t": "jinbi", - "n": 829.8 + "n": 138.3 }, { "a": "attr", "t": "nexp", - "n": 1282.14 + "n": 213.69 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8601,17 +8601,17 @@ { "a": "attr", "t": "jinbi", - "n": 834 + "n": 139 }, { "a": "attr", "t": "nexp", - "n": 1286.04 + "n": 214.34 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8655,17 +8655,17 @@ { "a": "attr", "t": "jinbi", - "n": 838.2 + "n": 139.7 }, { "a": "attr", "t": "nexp", - "n": 1289.94 + "n": 214.99 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8709,17 +8709,17 @@ { "a": "attr", "t": "jinbi", - "n": 842.4 + "n": 140.4 }, { "a": "attr", "t": "nexp", - "n": 1293.84 + "n": 215.64 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8763,17 +8763,17 @@ { "a": "attr", "t": "jinbi", - "n": 846.6 + "n": 141.1 }, { "a": "attr", "t": "nexp", - "n": 1297.74 + "n": 216.29 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8817,17 +8817,17 @@ { "a": "attr", "t": "jinbi", - "n": 850.8 + "n": 141.8 }, { "a": "attr", "t": "nexp", - "n": 1301.64 + "n": 216.94 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8871,17 +8871,17 @@ { "a": "attr", "t": "jinbi", - "n": 855 + "n": 142.5 }, { "a": "attr", "t": "nexp", - "n": 1305.54 + "n": 217.59 }, { "a": "attr", "t": "weiwang", - "n": 13.8 + "n": 0.23 } ], "dlz": [], @@ -8925,17 +8925,17 @@ { "a": "attr", "t": "jinbi", - "n": 859.2 + "n": 143.2 }, { "a": "attr", "t": "nexp", - "n": 1309.44 + "n": 218.24 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -8979,17 +8979,17 @@ { "a": "attr", "t": "jinbi", - "n": 863.4 + "n": 143.9 }, { "a": "attr", "t": "nexp", - "n": 1313.34 + "n": 218.89 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9033,17 +9033,17 @@ { "a": "attr", "t": "jinbi", - "n": 867.6 + "n": 144.6 }, { "a": "attr", "t": "nexp", - "n": 1317.24 + "n": 219.54 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9087,17 +9087,17 @@ { "a": "attr", "t": "jinbi", - "n": 871.8 + "n": 145.3 }, { "a": "attr", "t": "nexp", - "n": 1321.14 + "n": 220.19 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9141,17 +9141,17 @@ { "a": "attr", "t": "jinbi", - "n": 876 + "n": 146 }, { "a": "attr", "t": "nexp", - "n": 1325.04 + "n": 220.84 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9195,17 +9195,17 @@ { "a": "attr", "t": "jinbi", - "n": 880.2 + "n": 146.7 }, { "a": "attr", "t": "nexp", - "n": 1328.94 + "n": 221.49 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9249,17 +9249,17 @@ { "a": "attr", "t": "jinbi", - "n": 884.4 + "n": 147.4 }, { "a": "attr", "t": "nexp", - "n": 1332.84 + "n": 222.14 }, { "a": "attr", "t": "weiwang", - "n": 15 + "n": 0.25 } ], "dlz": [], @@ -9303,17 +9303,17 @@ { "a": "attr", "t": "jinbi", - "n": 888.6 + "n": 148.1 }, { "a": "attr", "t": "nexp", - "n": 1336.74 + "n": 222.79 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9357,17 +9357,17 @@ { "a": "attr", "t": "jinbi", - "n": 892.8 + "n": 148.8 }, { "a": "attr", "t": "nexp", - "n": 1340.64 + "n": 223.44 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9411,17 +9411,17 @@ { "a": "attr", "t": "jinbi", - "n": 897 + "n": 149.5 }, { "a": "attr", "t": "nexp", - "n": 1344.54 + "n": 224.09 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9465,17 +9465,17 @@ { "a": "attr", "t": "jinbi", - "n": 901.2 + "n": 150.2 }, { "a": "attr", "t": "nexp", - "n": 1348.44 + "n": 224.74 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9519,17 +9519,17 @@ { "a": "attr", "t": "jinbi", - "n": 905.4 + "n": 150.9 }, { "a": "attr", "t": "nexp", - "n": 1352.34 + "n": 225.39 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9573,17 +9573,17 @@ { "a": "attr", "t": "jinbi", - "n": 909.6 + "n": 151.6 }, { "a": "attr", "t": "nexp", - "n": 1356.24 + "n": 226.04 }, { "a": "attr", "t": "weiwang", - "n": 16.2 + "n": 0.27 } ], "dlz": [], @@ -9627,17 +9627,17 @@ { "a": "attr", "t": "jinbi", - "n": 913.8 + "n": 152.3 }, { "a": "attr", "t": "nexp", - "n": 1360.14 + "n": 226.69 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9681,17 +9681,17 @@ { "a": "attr", "t": "jinbi", - "n": 918 + "n": 153 }, { "a": "attr", "t": "nexp", - "n": 1364.04 + "n": 227.34 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9735,17 +9735,17 @@ { "a": "attr", "t": "jinbi", - "n": 922.2 + "n": 153.7 }, { "a": "attr", "t": "nexp", - "n": 1367.94 + "n": 227.99 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9789,17 +9789,17 @@ { "a": "attr", "t": "jinbi", - "n": 926.4 + "n": 154.4 }, { "a": "attr", "t": "nexp", - "n": 1371.84 + "n": 228.64 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9843,17 +9843,17 @@ { "a": "attr", "t": "jinbi", - "n": 930.6 + "n": 155.1 }, { "a": "attr", "t": "nexp", - "n": 1375.74 + "n": 229.29 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9897,17 +9897,17 @@ { "a": "attr", "t": "jinbi", - "n": 934.8 + "n": 155.8 }, { "a": "attr", "t": "nexp", - "n": 1379.64 + "n": 229.94 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -9951,17 +9951,17 @@ { "a": "attr", "t": "jinbi", - "n": 939 + "n": 156.5 }, { "a": "attr", "t": "nexp", - "n": 1383.54 + "n": 230.59 }, { "a": "attr", "t": "weiwang", - "n": 18 + "n": 0.3 } ], "dlz": [], @@ -10005,17 +10005,17 @@ { "a": "attr", "t": "jinbi", - "n": 943.2 + "n": 157.2 }, { "a": "attr", "t": "nexp", - "n": 1387.44 + "n": 231.24 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10059,17 +10059,17 @@ { "a": "attr", "t": "jinbi", - "n": 947.4 + "n": 157.9 }, { "a": "attr", "t": "nexp", - "n": 1391.34 + "n": 231.89 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10113,17 +10113,17 @@ { "a": "attr", "t": "jinbi", - "n": 951.6 + "n": 158.6 }, { "a": "attr", "t": "nexp", - "n": 1395.24 + "n": 232.54 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10167,17 +10167,17 @@ { "a": "attr", "t": "jinbi", - "n": 955.8 + "n": 159.3 }, { "a": "attr", "t": "nexp", - "n": 1399.14 + "n": 233.19 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10221,17 +10221,17 @@ { "a": "attr", "t": "jinbi", - "n": 960 + "n": 160 }, { "a": "attr", "t": "nexp", - "n": 1403.04 + "n": 233.84 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10275,17 +10275,17 @@ { "a": "attr", "t": "jinbi", - "n": 964.2 + "n": 160.7 }, { "a": "attr", "t": "nexp", - "n": 1406.94 + "n": 234.49 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10329,17 +10329,17 @@ { "a": "attr", "t": "jinbi", - "n": 968.4 + "n": 161.4 }, { "a": "attr", "t": "nexp", - "n": 1410.84 + "n": 235.14 }, { "a": "attr", "t": "weiwang", - "n": 19.2 + "n": 0.32 } ], "dlz": [], @@ -10383,17 +10383,17 @@ { "a": "attr", "t": "jinbi", - "n": 972.6 + "n": 162.1 }, { "a": "attr", "t": "nexp", - "n": 1414.74 + "n": 235.79 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10437,17 +10437,17 @@ { "a": "attr", "t": "jinbi", - "n": 976.8 + "n": 162.8 }, { "a": "attr", "t": "nexp", - "n": 1418.64 + "n": 236.44 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10491,17 +10491,17 @@ { "a": "attr", "t": "jinbi", - "n": 981 + "n": 163.5 }, { "a": "attr", "t": "nexp", - "n": 1422.54 + "n": 237.09 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10545,17 +10545,17 @@ { "a": "attr", "t": "jinbi", - "n": 985.2 + "n": 164.2 }, { "a": "attr", "t": "nexp", - "n": 1426.44 + "n": 237.74 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10599,17 +10599,17 @@ { "a": "attr", "t": "jinbi", - "n": 989.4 + "n": 164.9 }, { "a": "attr", "t": "nexp", - "n": 1430.34 + "n": 238.39 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10653,17 +10653,17 @@ { "a": "attr", "t": "jinbi", - "n": 993.6 + "n": 165.6 }, { "a": "attr", "t": "nexp", - "n": 1434.24 + "n": 239.04 }, { "a": "attr", "t": "weiwang", - "n": 20.4 + "n": 0.34 } ], "dlz": [], @@ -10707,17 +10707,17 @@ { "a": "attr", "t": "jinbi", - "n": 997.8 + "n": 166.3 }, { "a": "attr", "t": "nexp", - "n": 1438.14 + "n": 239.69 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -10761,17 +10761,17 @@ { "a": "attr", "t": "jinbi", - "n": 1006.8 + "n": 167.8 }, { "a": "attr", "t": "nexp", - "n": 1442.04 + "n": 240.34 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -10815,17 +10815,17 @@ { "a": "attr", "t": "jinbi", - "n": 1016.4 + "n": 169.4 }, { "a": "attr", "t": "nexp", - "n": 1445.94 + "n": 240.99 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -10869,17 +10869,17 @@ { "a": "attr", "t": "jinbi", - "n": 1025.4 + "n": 170.9 }, { "a": "attr", "t": "nexp", - "n": 1449.84 + "n": 241.64 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -10923,17 +10923,17 @@ { "a": "attr", "t": "jinbi", - "n": 1035 + "n": 172.5 }, { "a": "attr", "t": "nexp", - "n": 1453.74 + "n": 242.29 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -10977,17 +10977,17 @@ { "a": "attr", "t": "jinbi", - "n": 1044 + "n": 174 }, { "a": "attr", "t": "nexp", - "n": 1457.64 + "n": 242.94 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -11031,17 +11031,17 @@ { "a": "attr", "t": "jinbi", - "n": 1053.6 + "n": 175.6 }, { "a": "attr", "t": "nexp", - "n": 1461.54 + "n": 243.59 }, { "a": "attr", "t": "weiwang", - "n": 21.6 + "n": 0.36 } ], "dlz": [], @@ -11085,17 +11085,17 @@ { "a": "attr", "t": "jinbi", - "n": 1063.2 + "n": 177.2 }, { "a": "attr", "t": "nexp", - "n": 1465.44 + "n": 244.24 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11139,17 +11139,17 @@ { "a": "attr", "t": "jinbi", - "n": 1072.8 + "n": 178.8 }, { "a": "attr", "t": "nexp", - "n": 1469.34 + "n": 244.89 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11193,17 +11193,17 @@ { "a": "attr", "t": "jinbi", - "n": 1082.4 + "n": 180.4 }, { "a": "attr", "t": "nexp", - "n": 1473.24 + "n": 245.54 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11247,17 +11247,17 @@ { "a": "attr", "t": "jinbi", - "n": 1092 + "n": 182 }, { "a": "attr", "t": "nexp", - "n": 1477.14 + "n": 246.19 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11301,17 +11301,17 @@ { "a": "attr", "t": "jinbi", - "n": 1101.6 + "n": 183.6 }, { "a": "attr", "t": "nexp", - "n": 1481.04 + "n": 246.84 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11355,17 +11355,17 @@ { "a": "attr", "t": "jinbi", - "n": 1111.2 + "n": 185.2 }, { "a": "attr", "t": "nexp", - "n": 1484.94 + "n": 247.49 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11409,17 +11409,17 @@ { "a": "attr", "t": "jinbi", - "n": 1120.8 + "n": 186.8 }, { "a": "attr", "t": "nexp", - "n": 1488.84 + "n": 248.14 }, { "a": "attr", "t": "weiwang", - "n": 22.8 + "n": 0.38 } ], "dlz": [], @@ -11463,17 +11463,17 @@ { "a": "attr", "t": "jinbi", - "n": 1130.4 + "n": 188.4 }, { "a": "attr", "t": "nexp", - "n": 1492.74 + "n": 248.79 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11517,17 +11517,17 @@ { "a": "attr", "t": "jinbi", - "n": 1140.6 + "n": 190.1 }, { "a": "attr", "t": "nexp", - "n": 1496.64 + "n": 249.44 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11571,17 +11571,17 @@ { "a": "attr", "t": "jinbi", - "n": 1150.2 + "n": 191.7 }, { "a": "attr", "t": "nexp", - "n": 1500.54 + "n": 250.09 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11625,17 +11625,17 @@ { "a": "attr", "t": "jinbi", - "n": 1159.8 + "n": 193.3 }, { "a": "attr", "t": "nexp", - "n": 1504.44 + "n": 250.74 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11679,17 +11679,17 @@ { "a": "attr", "t": "jinbi", - "n": 1170 + "n": 195 }, { "a": "attr", "t": "nexp", - "n": 1508.34 + "n": 251.39 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11733,17 +11733,17 @@ { "a": "attr", "t": "jinbi", - "n": 1180.2 + "n": 196.7 }, { "a": "attr", "t": "nexp", - "n": 1512.24 + "n": 252.04 }, { "a": "attr", "t": "weiwang", - "n": 24 + "n": 0.4 } ], "dlz": [], @@ -11787,17 +11787,17 @@ { "a": "attr", "t": "jinbi", - "n": 1189.8 + "n": 198.3 }, { "a": "attr", "t": "nexp", - "n": 1516.14 + "n": 252.69 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -11841,17 +11841,17 @@ { "a": "attr", "t": "jinbi", - "n": 1200 + "n": 200 }, { "a": "attr", "t": "nexp", - "n": 1520.04 + "n": 253.34 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -11895,17 +11895,17 @@ { "a": "attr", "t": "jinbi", - "n": 1210.2 + "n": 201.7 }, { "a": "attr", "t": "nexp", - "n": 1523.94 + "n": 253.99 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -11949,17 +11949,17 @@ { "a": "attr", "t": "jinbi", - "n": 1220.4 + "n": 203.4 }, { "a": "attr", "t": "nexp", - "n": 1527.84 + "n": 254.64 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -12003,17 +12003,17 @@ { "a": "attr", "t": "jinbi", - "n": 1230.6 + "n": 205.1 }, { "a": "attr", "t": "nexp", - "n": 1531.74 + "n": 255.29 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -12057,17 +12057,17 @@ { "a": "attr", "t": "jinbi", - "n": 1240.8 + "n": 206.8 }, { "a": "attr", "t": "nexp", - "n": 1535.64 + "n": 255.94 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -12111,17 +12111,17 @@ { "a": "attr", "t": "jinbi", - "n": 1251 + "n": 208.5 }, { "a": "attr", "t": "nexp", - "n": 1539.54 + "n": 256.59 }, { "a": "attr", "t": "weiwang", - "n": 25.8 + "n": 0.43 } ], "dlz": [], @@ -12165,17 +12165,17 @@ { "a": "attr", "t": "jinbi", - "n": 1261.2 + "n": 210.2 }, { "a": "attr", "t": "nexp", - "n": 1543.44 + "n": 257.24 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12219,17 +12219,17 @@ { "a": "attr", "t": "jinbi", - "n": 1271.4 + "n": 211.9 }, { "a": "attr", "t": "nexp", - "n": 1547.34 + "n": 257.89 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12273,17 +12273,17 @@ { "a": "attr", "t": "jinbi", - "n": 1282.2 + "n": 213.7 }, { "a": "attr", "t": "nexp", - "n": 1551.24 + "n": 258.54 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12327,17 +12327,17 @@ { "a": "attr", "t": "jinbi", - "n": 1292.4 + "n": 215.4 }, { "a": "attr", "t": "nexp", - "n": 1555.14 + "n": 259.19 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12381,17 +12381,17 @@ { "a": "attr", "t": "jinbi", - "n": 1302.6 + "n": 217.1 }, { "a": "attr", "t": "nexp", - "n": 1559.04 + "n": 259.84 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12435,17 +12435,17 @@ { "a": "attr", "t": "jinbi", - "n": 1313.4 + "n": 218.9 }, { "a": "attr", "t": "nexp", - "n": 1562.94 + "n": 260.49 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12489,17 +12489,17 @@ { "a": "attr", "t": "jinbi", - "n": 1324.2 + "n": 220.7 }, { "a": "attr", "t": "nexp", - "n": 1566.84 + "n": 261.14 }, { "a": "attr", "t": "weiwang", - "n": 27 + "n": 0.45 } ], "dlz": [], @@ -12543,17 +12543,17 @@ { "a": "attr", "t": "jinbi", - "n": 1334.4 + "n": 222.4 }, { "a": "attr", "t": "nexp", - "n": 1570.74 + "n": 261.79 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12597,17 +12597,17 @@ { "a": "attr", "t": "jinbi", - "n": 1345.2 + "n": 224.2 }, { "a": "attr", "t": "nexp", - "n": 1574.64 + "n": 262.44 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12651,17 +12651,17 @@ { "a": "attr", "t": "jinbi", - "n": 1356 + "n": 226 }, { "a": "attr", "t": "nexp", - "n": 1578.54 + "n": 263.09 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12705,17 +12705,17 @@ { "a": "attr", "t": "jinbi", - "n": 1366.8 + "n": 227.8 }, { "a": "attr", "t": "nexp", - "n": 1582.44 + "n": 263.74 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12759,17 +12759,17 @@ { "a": "attr", "t": "jinbi", - "n": 1377.6 + "n": 229.6 }, { "a": "attr", "t": "nexp", - "n": 1586.34 + "n": 264.39 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12813,17 +12813,17 @@ { "a": "attr", "t": "jinbi", - "n": 1388.4 + "n": 231.4 }, { "a": "attr", "t": "nexp", - "n": 1590.24 + "n": 265.04 }, { "a": "attr", "t": "weiwang", - "n": 28.2 + "n": 0.47 } ], "dlz": [], @@ -12867,17 +12867,17 @@ { "a": "attr", "t": "jinbi", - "n": 1399.2 + "n": 233.2 }, { "a": "attr", "t": "nexp", - "n": 1594.14 + "n": 265.69 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -12921,17 +12921,17 @@ { "a": "attr", "t": "jinbi", - "n": 1410 + "n": 235 }, { "a": "attr", "t": "nexp", - "n": 1598.04 + "n": 266.34 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -12975,17 +12975,17 @@ { "a": "attr", "t": "jinbi", - "n": 1420.8 + "n": 236.8 }, { "a": "attr", "t": "nexp", - "n": 1601.94 + "n": 266.99 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13029,17 +13029,17 @@ { "a": "attr", "t": "jinbi", - "n": 1431.6 + "n": 238.6 }, { "a": "attr", "t": "nexp", - "n": 1605.84 + "n": 267.64 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13083,17 +13083,17 @@ { "a": "attr", "t": "jinbi", - "n": 1443 + "n": 240.5 }, { "a": "attr", "t": "nexp", - "n": 1609.74 + "n": 268.29 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13137,17 +13137,17 @@ { "a": "attr", "t": "jinbi", - "n": 1453.8 + "n": 242.3 }, { "a": "attr", "t": "nexp", - "n": 1613.64 + "n": 268.94 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13191,17 +13191,17 @@ { "a": "attr", "t": "jinbi", - "n": 1465.2 + "n": 244.2 }, { "a": "attr", "t": "nexp", - "n": 1617.54 + "n": 269.59 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13245,17 +13245,17 @@ { "a": "attr", "t": "jinbi", - "n": 1476 + "n": 246 }, { "a": "attr", "t": "nexp", - "n": 1621.44 + "n": 270.24 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13299,17 +13299,17 @@ { "a": "attr", "t": "jinbi", - "n": 1487.4 + "n": 247.9 }, { "a": "attr", "t": "nexp", - "n": 1625.34 + "n": 270.89 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13353,17 +13353,17 @@ { "a": "attr", "t": "jinbi", - "n": 1498.2 + "n": 249.7 }, { "a": "attr", "t": "nexp", - "n": 1629.24 + "n": 271.54 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13407,17 +13407,17 @@ { "a": "attr", "t": "jinbi", - "n": 1509.6 + "n": 251.6 }, { "a": "attr", "t": "nexp", - "n": 1633.14 + "n": 272.19 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13461,17 +13461,17 @@ { "a": "attr", "t": "jinbi", - "n": 1521 + "n": 253.5 }, { "a": "attr", "t": "nexp", - "n": 1637.04 + "n": 272.84 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13515,17 +13515,17 @@ { "a": "attr", "t": "jinbi", - "n": 1532.4 + "n": 255.4 }, { "a": "attr", "t": "nexp", - "n": 1640.94 + "n": 273.49 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13569,17 +13569,17 @@ { "a": "attr", "t": "jinbi", - "n": 1543.8 + "n": 257.3 }, { "a": "attr", "t": "nexp", - "n": 1644.84 + "n": 274.14 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13623,17 +13623,17 @@ { "a": "attr", "t": "jinbi", - "n": 1555.2 + "n": 259.2 }, { "a": "attr", "t": "nexp", - "n": 1648.74 + "n": 274.79 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13677,17 +13677,17 @@ { "a": "attr", "t": "jinbi", - "n": 1566.6 + "n": 261.1 }, { "a": "attr", "t": "nexp", - "n": 1652.64 + "n": 275.44 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13731,17 +13731,17 @@ { "a": "attr", "t": "jinbi", - "n": 1578 + "n": 263 }, { "a": "attr", "t": "nexp", - "n": 1656.54 + "n": 276.09 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13785,17 +13785,17 @@ { "a": "attr", "t": "jinbi", - "n": 1590 + "n": 265 }, { "a": "attr", "t": "nexp", - "n": 1660.44 + "n": 276.74 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13839,17 +13839,17 @@ { "a": "attr", "t": "jinbi", - "n": 1601.4 + "n": 266.9 }, { "a": "attr", "t": "nexp", - "n": 1664.34 + "n": 277.39 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13893,17 +13893,17 @@ { "a": "attr", "t": "jinbi", - "n": 1612.8 + "n": 268.8 }, { "a": "attr", "t": "nexp", - "n": 1668.24 + "n": 278.04 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -13947,17 +13947,17 @@ { "a": "attr", "t": "jinbi", - "n": 1624.8 + "n": 270.8 }, { "a": "attr", "t": "nexp", - "n": 1672.14 + "n": 278.69 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14001,17 +14001,17 @@ { "a": "attr", "t": "jinbi", - "n": 1636.2 + "n": 272.7 }, { "a": "attr", "t": "nexp", - "n": 1676.04 + "n": 279.34 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14055,17 +14055,17 @@ { "a": "attr", "t": "jinbi", - "n": 1648.2 + "n": 274.7 }, { "a": "attr", "t": "nexp", - "n": 1679.94 + "n": 279.99 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14109,17 +14109,17 @@ { "a": "attr", "t": "jinbi", - "n": 1660.2 + "n": 276.7 }, { "a": "attr", "t": "nexp", - "n": 1683.84 + "n": 280.64 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14163,17 +14163,17 @@ { "a": "attr", "t": "jinbi", - "n": 1672.2 + "n": 278.7 }, { "a": "attr", "t": "nexp", - "n": 1687.74 + "n": 281.29 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14217,17 +14217,17 @@ { "a": "attr", "t": "jinbi", - "n": 1683.6 + "n": 280.6 }, { "a": "attr", "t": "nexp", - "n": 1691.64 + "n": 281.94 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14271,17 +14271,17 @@ { "a": "attr", "t": "jinbi", - "n": 1695.6 + "n": 282.6 }, { "a": "attr", "t": "nexp", - "n": 1695.54 + "n": 282.59 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14325,17 +14325,17 @@ { "a": "attr", "t": "jinbi", - "n": 1707.6 + "n": 284.6 }, { "a": "attr", "t": "nexp", - "n": 1699.44 + "n": 283.24 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14379,17 +14379,17 @@ { "a": "attr", "t": "jinbi", - "n": 1719.6 + "n": 286.6 }, { "a": "attr", "t": "nexp", - "n": 1703.34 + "n": 283.89 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14433,17 +14433,17 @@ { "a": "attr", "t": "jinbi", - "n": 1731.6 + "n": 288.6 }, { "a": "attr", "t": "nexp", - "n": 1707.24 + "n": 284.54 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14487,17 +14487,17 @@ { "a": "attr", "t": "jinbi", - "n": 1744.2 + "n": 290.7 }, { "a": "attr", "t": "nexp", - "n": 1711.14 + "n": 285.19 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14541,17 +14541,17 @@ { "a": "attr", "t": "jinbi", - "n": 1756.2 + "n": 292.7 }, { "a": "attr", "t": "nexp", - "n": 1715.04 + "n": 285.84 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14595,17 +14595,17 @@ { "a": "attr", "t": "jinbi", - "n": 1768.2 + "n": 294.7 }, { "a": "attr", "t": "nexp", - "n": 1718.94 + "n": 286.49 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14649,17 +14649,17 @@ { "a": "attr", "t": "jinbi", - "n": 1780.8 + "n": 296.8 }, { "a": "attr", "t": "nexp", - "n": 1722.84 + "n": 287.14 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14703,17 +14703,17 @@ { "a": "attr", "t": "jinbi", - "n": 1792.8 + "n": 298.8 }, { "a": "attr", "t": "nexp", - "n": 1726.74 + "n": 287.79 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14757,17 +14757,17 @@ { "a": "attr", "t": "jinbi", - "n": 1805.4 + "n": 300.9 }, { "a": "attr", "t": "nexp", - "n": 1730.64 + "n": 288.44 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14811,17 +14811,17 @@ { "a": "attr", "t": "jinbi", - "n": 1817.4 + "n": 302.9 }, { "a": "attr", "t": "nexp", - "n": 1734.54 + "n": 289.09 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14865,17 +14865,17 @@ { "a": "attr", "t": "jinbi", - "n": 1830 + "n": 305 }, { "a": "attr", "t": "nexp", - "n": 1738.44 + "n": 289.74 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14919,17 +14919,17 @@ { "a": "attr", "t": "jinbi", - "n": 1842.6 + "n": 307.1 }, { "a": "attr", "t": "nexp", - "n": 1742.34 + "n": 290.39 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -14973,17 +14973,17 @@ { "a": "attr", "t": "jinbi", - "n": 1854.6 + "n": 309.1 }, { "a": "attr", "t": "nexp", - "n": 1746.24 + "n": 291.04 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15027,17 +15027,17 @@ { "a": "attr", "t": "jinbi", - "n": 1867.2 + "n": 311.2 }, { "a": "attr", "t": "nexp", - "n": 1750.14 + "n": 291.69 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15081,17 +15081,17 @@ { "a": "attr", "t": "jinbi", - "n": 1879.8 + "n": 313.3 }, { "a": "attr", "t": "nexp", - "n": 1754.04 + "n": 292.34 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15135,17 +15135,17 @@ { "a": "attr", "t": "jinbi", - "n": 1892.4 + "n": 315.4 }, { "a": "attr", "t": "nexp", - "n": 1757.94 + "n": 292.99 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15189,17 +15189,17 @@ { "a": "attr", "t": "jinbi", - "n": 1905 + "n": 317.5 }, { "a": "attr", "t": "nexp", - "n": 1761.84 + "n": 293.64 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15243,17 +15243,17 @@ { "a": "attr", "t": "jinbi", - "n": 1917.6 + "n": 319.6 }, { "a": "attr", "t": "nexp", - "n": 1765.74 + "n": 294.29 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15297,17 +15297,17 @@ { "a": "attr", "t": "jinbi", - "n": 1930.8 + "n": 321.8 }, { "a": "attr", "t": "nexp", - "n": 1769.64 + "n": 294.94 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15351,17 +15351,17 @@ { "a": "attr", "t": "jinbi", - "n": 1943.4 + "n": 323.9 }, { "a": "attr", "t": "nexp", - "n": 1773.54 + "n": 295.59 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15405,17 +15405,17 @@ { "a": "attr", "t": "jinbi", - "n": 1956 + "n": 326 }, { "a": "attr", "t": "nexp", - "n": 1777.44 + "n": 296.24 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15459,17 +15459,17 @@ { "a": "attr", "t": "jinbi", - "n": 1969.2 + "n": 328.2 }, { "a": "attr", "t": "nexp", - "n": 1781.34 + "n": 296.89 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15513,17 +15513,17 @@ { "a": "attr", "t": "jinbi", - "n": 1981.8 + "n": 330.3 }, { "a": "attr", "t": "nexp", - "n": 1785.24 + "n": 297.54 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15567,17 +15567,17 @@ { "a": "attr", "t": "jinbi", - "n": 1995 + "n": 332.5 }, { "a": "attr", "t": "nexp", - "n": 1789.14 + "n": 298.19 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15621,17 +15621,17 @@ { "a": "attr", "t": "jinbi", - "n": 2008.2 + "n": 334.7 }, { "a": "attr", "t": "nexp", - "n": 1793.04 + "n": 298.84 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15675,17 +15675,17 @@ { "a": "attr", "t": "jinbi", - "n": 2020.8 + "n": 336.8 }, { "a": "attr", "t": "nexp", - "n": 1796.94 + "n": 299.49 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15729,17 +15729,17 @@ { "a": "attr", "t": "jinbi", - "n": 2034 + "n": 339 }, { "a": "attr", "t": "nexp", - "n": 1800.84 + "n": 300.14 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15783,17 +15783,17 @@ { "a": "attr", "t": "jinbi", - "n": 2047.2 + "n": 341.2 }, { "a": "attr", "t": "nexp", - "n": 1804.74 + "n": 300.79 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15837,17 +15837,17 @@ { "a": "attr", "t": "jinbi", - "n": 2060.4 + "n": 343.4 }, { "a": "attr", "t": "nexp", - "n": 1808.64 + "n": 301.44 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15891,17 +15891,17 @@ { "a": "attr", "t": "jinbi", - "n": 2073.6 + "n": 345.6 }, { "a": "attr", "t": "nexp", - "n": 1812.54 + "n": 302.09 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15945,17 +15945,17 @@ { "a": "attr", "t": "jinbi", - "n": 2086.8 + "n": 347.8 }, { "a": "attr", "t": "nexp", - "n": 1816.44 + "n": 302.74 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -15999,17 +15999,17 @@ { "a": "attr", "t": "jinbi", - "n": 2100 + "n": 350 }, { "a": "attr", "t": "nexp", - "n": 1820.34 + "n": 303.39 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -16053,17 +16053,17 @@ { "a": "attr", "t": "jinbi", - "n": 2113.2 + "n": 352.2 }, { "a": "attr", "t": "nexp", - "n": 1824.24 + "n": 304.04 }, { "a": "attr", "t": "weiwang", - "n": 30 + "n": 0.5 } ], "dlz": [], @@ -16107,17 +16107,17 @@ { "a": "attr", "t": "jinbi", - "n": 2127 + "n": 354.5 }, { "a": "attr", "t": "nexp", - "n": 1828.14 + "n": 304.69 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16161,17 +16161,17 @@ { "a": "attr", "t": "jinbi", - "n": 2140.2 + "n": 356.7 }, { "a": "attr", "t": "nexp", - "n": 1832.04 + "n": 305.34 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16215,17 +16215,17 @@ { "a": "attr", "t": "jinbi", - "n": 2153.4 + "n": 358.9 }, { "a": "attr", "t": "nexp", - "n": 1835.94 + "n": 305.99 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16269,17 +16269,17 @@ { "a": "attr", "t": "jinbi", - "n": 2167.2 + "n": 361.2 }, { "a": "attr", "t": "nexp", - "n": 1839.84 + "n": 306.64 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16323,17 +16323,17 @@ { "a": "attr", "t": "jinbi", - "n": 2180.4 + "n": 363.4 }, { "a": "attr", "t": "nexp", - "n": 1843.74 + "n": 307.29 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16377,17 +16377,17 @@ { "a": "attr", "t": "jinbi", - "n": 2194.2 + "n": 365.7 }, { "a": "attr", "t": "nexp", - "n": 1847.64 + "n": 307.94 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16431,17 +16431,17 @@ { "a": "attr", "t": "jinbi", - "n": 2208 + "n": 368 }, { "a": "attr", "t": "nexp", - "n": 1851.54 + "n": 308.59 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16485,17 +16485,17 @@ { "a": "attr", "t": "jinbi", - "n": 2221.2 + "n": 370.2 }, { "a": "attr", "t": "nexp", - "n": 1855.44 + "n": 309.24 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16539,17 +16539,17 @@ { "a": "attr", "t": "jinbi", - "n": 2235 + "n": 372.5 }, { "a": "attr", "t": "nexp", - "n": 1859.34 + "n": 309.89 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16593,17 +16593,17 @@ { "a": "attr", "t": "jinbi", - "n": 2248.8 + "n": 374.8 }, { "a": "attr", "t": "nexp", - "n": 1863.24 + "n": 310.54 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16647,17 +16647,17 @@ { "a": "attr", "t": "jinbi", - "n": 2262.6 + "n": 377.1 }, { "a": "attr", "t": "nexp", - "n": 1867.14 + "n": 311.19 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16701,17 +16701,17 @@ { "a": "attr", "t": "jinbi", - "n": 2276.4 + "n": 379.4 }, { "a": "attr", "t": "nexp", - "n": 1871.04 + "n": 311.84 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16755,17 +16755,17 @@ { "a": "attr", "t": "jinbi", - "n": 2290.2 + "n": 381.7 }, { "a": "attr", "t": "nexp", - "n": 1874.94 + "n": 312.49 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16809,17 +16809,17 @@ { "a": "attr", "t": "jinbi", - "n": 2304.6 + "n": 384.1 }, { "a": "attr", "t": "nexp", - "n": 1878.84 + "n": 313.14 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16863,17 +16863,17 @@ { "a": "attr", "t": "jinbi", - "n": 2318.4 + "n": 386.4 }, { "a": "attr", "t": "nexp", - "n": 1882.74 + "n": 313.79 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16917,17 +16917,17 @@ { "a": "attr", "t": "jinbi", - "n": 2332.2 + "n": 388.7 }, { "a": "attr", "t": "nexp", - "n": 1886.64 + "n": 314.44 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -16971,17 +16971,17 @@ { "a": "attr", "t": "jinbi", - "n": 2346.6 + "n": 391.1 }, { "a": "attr", "t": "nexp", - "n": 1890.54 + "n": 315.09 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17025,17 +17025,17 @@ { "a": "attr", "t": "jinbi", - "n": 2360.4 + "n": 393.4 }, { "a": "attr", "t": "nexp", - "n": 1894.44 + "n": 315.74 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17079,17 +17079,17 @@ { "a": "attr", "t": "jinbi", - "n": 2374.8 + "n": 395.8 }, { "a": "attr", "t": "nexp", - "n": 1898.34 + "n": 316.39 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17133,17 +17133,17 @@ { "a": "attr", "t": "jinbi", - "n": 2388.6 + "n": 398.1 }, { "a": "attr", "t": "nexp", - "n": 1902.24 + "n": 317.04 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17187,17 +17187,17 @@ { "a": "attr", "t": "jinbi", - "n": 2403 + "n": 400.5 }, { "a": "attr", "t": "nexp", - "n": 1906.14 + "n": 317.69 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17241,17 +17241,17 @@ { "a": "attr", "t": "jinbi", - "n": 2417.4 + "n": 402.9 }, { "a": "attr", "t": "nexp", - "n": 1910.04 + "n": 318.34 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17295,17 +17295,17 @@ { "a": "attr", "t": "jinbi", - "n": 2431.2 + "n": 405.2 }, { "a": "attr", "t": "nexp", - "n": 1913.94 + "n": 318.99 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17349,17 +17349,17 @@ { "a": "attr", "t": "jinbi", - "n": 2445.6 + "n": 407.6 }, { "a": "attr", "t": "nexp", - "n": 1917.84 + "n": 319.64 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17403,17 +17403,17 @@ { "a": "attr", "t": "jinbi", - "n": 2460 + "n": 410 }, { "a": "attr", "t": "nexp", - "n": 1921.74 + "n": 320.29 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17457,17 +17457,17 @@ { "a": "attr", "t": "jinbi", - "n": 2474.4 + "n": 412.4 }, { "a": "attr", "t": "nexp", - "n": 1925.64 + "n": 320.94 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17511,17 +17511,17 @@ { "a": "attr", "t": "jinbi", - "n": 2488.8 + "n": 414.8 }, { "a": "attr", "t": "nexp", - "n": 1929.54 + "n": 321.59 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17565,17 +17565,17 @@ { "a": "attr", "t": "jinbi", - "n": 2503.8 + "n": 417.3 }, { "a": "attr", "t": "nexp", - "n": 1933.44 + "n": 322.24 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17619,17 +17619,17 @@ { "a": "attr", "t": "jinbi", - "n": 2518.2 + "n": 419.7 }, { "a": "attr", "t": "nexp", - "n": 1937.34 + "n": 322.89 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17673,17 +17673,17 @@ { "a": "attr", "t": "jinbi", - "n": 2532.6 + "n": 422.1 }, { "a": "attr", "t": "nexp", - "n": 1941.24 + "n": 323.54 }, { "a": "attr", "t": "weiwang", - "n": 30.6 + "n": 0.51 } ], "dlz": [], @@ -17727,17 +17727,17 @@ { "a": "attr", "t": "jinbi", - "n": 2547 + "n": 424.5 }, { "a": "attr", "t": "nexp", - "n": 1945.14 + "n": 324.19 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -17781,17 +17781,17 @@ { "a": "attr", "t": "jinbi", - "n": 2562 + "n": 427 }, { "a": "attr", "t": "nexp", - "n": 1949.04 + "n": 324.84 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -17835,17 +17835,17 @@ { "a": "attr", "t": "jinbi", - "n": 2576.4 + "n": 429.4 }, { "a": "attr", "t": "nexp", - "n": 1952.94 + "n": 325.49 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -17889,17 +17889,17 @@ { "a": "attr", "t": "jinbi", - "n": 2591.4 + "n": 431.9 }, { "a": "attr", "t": "nexp", - "n": 1956.84 + "n": 326.14 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -17943,17 +17943,17 @@ { "a": "attr", "t": "jinbi", - "n": 2606.4 + "n": 434.4 }, { "a": "attr", "t": "nexp", - "n": 1960.74 + "n": 326.79 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -17997,17 +17997,17 @@ { "a": "attr", "t": "jinbi", - "n": 2620.8 + "n": 436.8 }, { "a": "attr", "t": "nexp", - "n": 1964.64 + "n": 327.44 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18051,17 +18051,17 @@ { "a": "attr", "t": "jinbi", - "n": 2635.8 + "n": 439.3 }, { "a": "attr", "t": "nexp", - "n": 1968.54 + "n": 328.09 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18105,17 +18105,17 @@ { "a": "attr", "t": "jinbi", - "n": 2650.8 + "n": 441.8 }, { "a": "attr", "t": "nexp", - "n": 1972.44 + "n": 328.74 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18159,17 +18159,17 @@ { "a": "attr", "t": "jinbi", - "n": 2665.8 + "n": 444.3 }, { "a": "attr", "t": "nexp", - "n": 1976.34 + "n": 329.39 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18213,17 +18213,17 @@ { "a": "attr", "t": "jinbi", - "n": 2680.8 + "n": 446.8 }, { "a": "attr", "t": "nexp", - "n": 1980.24 + "n": 330.04 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18267,17 +18267,17 @@ { "a": "attr", "t": "jinbi", - "n": 2695.8 + "n": 449.3 }, { "a": "attr", "t": "nexp", - "n": 1984.14 + "n": 330.69 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18321,17 +18321,17 @@ { "a": "attr", "t": "jinbi", - "n": 2710.8 + "n": 451.8 }, { "a": "attr", "t": "nexp", - "n": 1988.04 + "n": 331.34 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18375,17 +18375,17 @@ { "a": "attr", "t": "jinbi", - "n": 2725.8 + "n": 454.3 }, { "a": "attr", "t": "nexp", - "n": 1991.94 + "n": 331.99 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18429,17 +18429,17 @@ { "a": "attr", "t": "jinbi", - "n": 2741.4 + "n": 456.9 }, { "a": "attr", "t": "nexp", - "n": 1995.84 + "n": 332.64 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18483,17 +18483,17 @@ { "a": "attr", "t": "jinbi", - "n": 2756.4 + "n": 459.4 }, { "a": "attr", "t": "nexp", - "n": 1999.74 + "n": 333.29 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18537,17 +18537,17 @@ { "a": "attr", "t": "jinbi", - "n": 2772 + "n": 462 }, { "a": "attr", "t": "nexp", - "n": 2003.64 + "n": 333.94 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18591,17 +18591,17 @@ { "a": "attr", "t": "jinbi", - "n": 2787 + "n": 464.5 }, { "a": "attr", "t": "nexp", - "n": 2007.54 + "n": 334.59 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18645,17 +18645,17 @@ { "a": "attr", "t": "jinbi", - "n": 2802.6 + "n": 467.1 }, { "a": "attr", "t": "nexp", - "n": 2011.44 + "n": 335.24 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18699,17 +18699,17 @@ { "a": "attr", "t": "jinbi", - "n": 2817.6 + "n": 469.6 }, { "a": "attr", "t": "nexp", - "n": 2015.34 + "n": 335.89 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18753,17 +18753,17 @@ { "a": "attr", "t": "jinbi", - "n": 2833.2 + "n": 472.2 }, { "a": "attr", "t": "nexp", - "n": 2019.24 + "n": 336.54 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18807,17 +18807,17 @@ { "a": "attr", "t": "jinbi", - "n": 2848.8 + "n": 474.8 }, { "a": "attr", "t": "nexp", - "n": 2023.14 + "n": 337.19 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18861,17 +18861,17 @@ { "a": "attr", "t": "jinbi", - "n": 2864.4 + "n": 477.4 }, { "a": "attr", "t": "nexp", - "n": 2027.04 + "n": 337.84 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18915,17 +18915,17 @@ { "a": "attr", "t": "jinbi", - "n": 2880 + "n": 480 }, { "a": "attr", "t": "nexp", - "n": 2030.94 + "n": 338.49 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -18969,17 +18969,17 @@ { "a": "attr", "t": "jinbi", - "n": 2895.6 + "n": 482.6 }, { "a": "attr", "t": "nexp", - "n": 2034.84 + "n": 339.14 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19023,17 +19023,17 @@ { "a": "attr", "t": "jinbi", - "n": 2911.2 + "n": 485.2 }, { "a": "attr", "t": "nexp", - "n": 2038.74 + "n": 339.79 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19077,17 +19077,17 @@ { "a": "attr", "t": "jinbi", - "n": 2926.8 + "n": 487.8 }, { "a": "attr", "t": "nexp", - "n": 2042.64 + "n": 340.44 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19131,17 +19131,17 @@ { "a": "attr", "t": "jinbi", - "n": 2942.4 + "n": 490.4 }, { "a": "attr", "t": "nexp", - "n": 2046.54 + "n": 341.09 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19185,17 +19185,17 @@ { "a": "attr", "t": "jinbi", - "n": 2958 + "n": 493 }, { "a": "attr", "t": "nexp", - "n": 2050.44 + "n": 341.74 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19239,17 +19239,17 @@ { "a": "attr", "t": "jinbi", - "n": 2974.2 + "n": 495.7 }, { "a": "attr", "t": "nexp", - "n": 2054.34 + "n": 342.39 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19293,17 +19293,17 @@ { "a": "attr", "t": "jinbi", - "n": 2989.8 + "n": 498.3 }, { "a": "attr", "t": "nexp", - "n": 2058.24 + "n": 343.04 }, { "a": "attr", "t": "weiwang", - "n": 31.2 + "n": 0.52 } ], "dlz": [], @@ -19347,17 +19347,17 @@ { "a": "attr", "t": "jinbi", - "n": 3005.4 + "n": 500.9 }, { "a": "attr", "t": "nexp", - "n": 2062.14 + "n": 343.69 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19401,17 +19401,17 @@ { "a": "attr", "t": "jinbi", - "n": 3021.6 + "n": 503.6 }, { "a": "attr", "t": "nexp", - "n": 2066.04 + "n": 344.34 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19455,17 +19455,17 @@ { "a": "attr", "t": "jinbi", - "n": 3037.8 + "n": 506.3 }, { "a": "attr", "t": "nexp", - "n": 2069.94 + "n": 344.99 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19509,17 +19509,17 @@ { "a": "attr", "t": "jinbi", - "n": 3053.4 + "n": 508.9 }, { "a": "attr", "t": "nexp", - "n": 2073.84 + "n": 345.64 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19563,17 +19563,17 @@ { "a": "attr", "t": "jinbi", - "n": 3069.6 + "n": 511.6 }, { "a": "attr", "t": "nexp", - "n": 2077.74 + "n": 346.29 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19617,17 +19617,17 @@ { "a": "attr", "t": "jinbi", - "n": 3085.8 + "n": 514.3 }, { "a": "attr", "t": "nexp", - "n": 2081.64 + "n": 346.94 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19671,17 +19671,17 @@ { "a": "attr", "t": "jinbi", - "n": 3102 + "n": 517 }, { "a": "attr", "t": "nexp", - "n": 2085.54 + "n": 347.59 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19725,17 +19725,17 @@ { "a": "attr", "t": "jinbi", - "n": 3118.2 + "n": 519.7 }, { "a": "attr", "t": "nexp", - "n": 2089.44 + "n": 348.24 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19779,17 +19779,17 @@ { "a": "attr", "t": "jinbi", - "n": 3134.4 + "n": 522.4 }, { "a": "attr", "t": "nexp", - "n": 2093.34 + "n": 348.89 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19833,17 +19833,17 @@ { "a": "attr", "t": "jinbi", - "n": 3150.6 + "n": 525.1 }, { "a": "attr", "t": "nexp", - "n": 2097.24 + "n": 349.54 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19887,17 +19887,17 @@ { "a": "attr", "t": "jinbi", - "n": 3166.8 + "n": 527.8 }, { "a": "attr", "t": "nexp", - "n": 2101.14 + "n": 350.19 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19941,17 +19941,17 @@ { "a": "attr", "t": "jinbi", - "n": 3183 + "n": 530.5 }, { "a": "attr", "t": "nexp", - "n": 2105.04 + "n": 350.84 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -19995,17 +19995,17 @@ { "a": "attr", "t": "jinbi", - "n": 3199.8 + "n": 533.3 }, { "a": "attr", "t": "nexp", - "n": 2108.94 + "n": 351.49 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20049,17 +20049,17 @@ { "a": "attr", "t": "jinbi", - "n": 3216 + "n": 536 }, { "a": "attr", "t": "nexp", - "n": 2112.84 + "n": 352.14 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20103,17 +20103,17 @@ { "a": "attr", "t": "jinbi", - "n": 3232.2 + "n": 538.7 }, { "a": "attr", "t": "nexp", - "n": 2116.74 + "n": 352.79 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20157,17 +20157,17 @@ { "a": "attr", "t": "jinbi", - "n": 3249 + "n": 541.5 }, { "a": "attr", "t": "nexp", - "n": 2120.64 + "n": 353.44 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20211,17 +20211,17 @@ { "a": "attr", "t": "jinbi", - "n": 3265.8 + "n": 544.3 }, { "a": "attr", "t": "nexp", - "n": 2124.54 + "n": 354.09 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20265,17 +20265,17 @@ { "a": "attr", "t": "jinbi", - "n": 3282 + "n": 547 }, { "a": "attr", "t": "nexp", - "n": 2128.44 + "n": 354.74 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20319,17 +20319,17 @@ { "a": "attr", "t": "jinbi", - "n": 3298.8 + "n": 549.8 }, { "a": "attr", "t": "nexp", - "n": 2132.34 + "n": 355.39 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20373,17 +20373,17 @@ { "a": "attr", "t": "jinbi", - "n": 3315.6 + "n": 552.6 }, { "a": "attr", "t": "nexp", - "n": 2136.24 + "n": 356.04 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20427,17 +20427,17 @@ { "a": "attr", "t": "jinbi", - "n": 3332.4 + "n": 555.4 }, { "a": "attr", "t": "nexp", - "n": 2140.14 + "n": 356.69 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20481,17 +20481,17 @@ { "a": "attr", "t": "jinbi", - "n": 3349.2 + "n": 558.2 }, { "a": "attr", "t": "nexp", - "n": 2144.04 + "n": 357.34 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20535,17 +20535,17 @@ { "a": "attr", "t": "jinbi", - "n": 3366 + "n": 561 }, { "a": "attr", "t": "nexp", - "n": 2147.94 + "n": 357.99 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20589,17 +20589,17 @@ { "a": "attr", "t": "jinbi", - "n": 3382.8 + "n": 563.8 }, { "a": "attr", "t": "nexp", - "n": 2151.84 + "n": 358.64 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20643,17 +20643,17 @@ { "a": "attr", "t": "jinbi", - "n": 3399.6 + "n": 566.6 }, { "a": "attr", "t": "nexp", - "n": 2155.74 + "n": 359.29 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20697,17 +20697,17 @@ { "a": "attr", "t": "jinbi", - "n": 3416.4 + "n": 569.4 }, { "a": "attr", "t": "nexp", - "n": 2159.64 + "n": 359.94 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20751,17 +20751,17 @@ { "a": "attr", "t": "jinbi", - "n": 3433.2 + "n": 572.2 }, { "a": "attr", "t": "nexp", - "n": 2163.54 + "n": 360.59 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20805,17 +20805,17 @@ { "a": "attr", "t": "jinbi", - "n": 3450.6 + "n": 575.1 }, { "a": "attr", "t": "nexp", - "n": 2167.44 + "n": 361.24 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20859,17 +20859,17 @@ { "a": "attr", "t": "jinbi", - "n": 3467.4 + "n": 577.9 }, { "a": "attr", "t": "nexp", - "n": 2171.34 + "n": 361.89 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20913,17 +20913,17 @@ { "a": "attr", "t": "jinbi", - "n": 3484.8 + "n": 580.8 }, { "a": "attr", "t": "nexp", - "n": 2175.24 + "n": 362.54 }, { "a": "attr", "t": "weiwang", - "n": 31.8 + "n": 0.53 } ], "dlz": [], @@ -20967,17 +20967,17 @@ { "a": "attr", "t": "jinbi", - "n": 3501.6 + "n": 583.6 }, { "a": "attr", "t": "nexp", - "n": 2179.14 + "n": 363.19 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21021,17 +21021,17 @@ { "a": "attr", "t": "jinbi", - "n": 3519 + "n": 586.5 }, { "a": "attr", "t": "nexp", - "n": 2183.04 + "n": 363.84 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21075,17 +21075,17 @@ { "a": "attr", "t": "jinbi", - "n": 3536.4 + "n": 589.4 }, { "a": "attr", "t": "nexp", - "n": 2186.94 + "n": 364.49 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21129,17 +21129,17 @@ { "a": "attr", "t": "jinbi", - "n": 3553.8 + "n": 592.3 }, { "a": "attr", "t": "nexp", - "n": 2190.84 + "n": 365.14 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21183,17 +21183,17 @@ { "a": "attr", "t": "jinbi", - "n": 3570.6 + "n": 595.1 }, { "a": "attr", "t": "nexp", - "n": 2194.74 + "n": 365.79 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21237,17 +21237,17 @@ { "a": "attr", "t": "jinbi", - "n": 3588 + "n": 598 }, { "a": "attr", "t": "nexp", - "n": 2198.64 + "n": 366.44 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21291,17 +21291,17 @@ { "a": "attr", "t": "jinbi", - "n": 3605.4 + "n": 600.9 }, { "a": "attr", "t": "nexp", - "n": 2202.54 + "n": 367.09 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21345,17 +21345,17 @@ { "a": "attr", "t": "jinbi", - "n": 3622.8 + "n": 603.8 }, { "a": "attr", "t": "nexp", - "n": 2206.44 + "n": 367.74 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21399,17 +21399,17 @@ { "a": "attr", "t": "jinbi", - "n": 3640.8 + "n": 606.8 }, { "a": "attr", "t": "nexp", - "n": 2210.34 + "n": 368.39 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21453,17 +21453,17 @@ { "a": "attr", "t": "jinbi", - "n": 3658.2 + "n": 609.7 }, { "a": "attr", "t": "nexp", - "n": 2214.24 + "n": 369.04 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21507,17 +21507,17 @@ { "a": "attr", "t": "jinbi", - "n": 3675.6 + "n": 612.6 }, { "a": "attr", "t": "nexp", - "n": 2218.14 + "n": 369.69 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21561,17 +21561,17 @@ { "a": "attr", "t": "jinbi", - "n": 3693 + "n": 615.5 }, { "a": "attr", "t": "nexp", - "n": 2222.04 + "n": 370.34 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21615,17 +21615,17 @@ { "a": "attr", "t": "jinbi", - "n": 3711 + "n": 618.5 }, { "a": "attr", "t": "nexp", - "n": 2225.94 + "n": 370.99 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21669,17 +21669,17 @@ { "a": "attr", "t": "jinbi", - "n": 3728.4 + "n": 621.4 }, { "a": "attr", "t": "nexp", - "n": 2229.84 + "n": 371.64 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21723,17 +21723,17 @@ { "a": "attr", "t": "jinbi", - "n": 3746.4 + "n": 624.4 }, { "a": "attr", "t": "nexp", - "n": 2233.74 + "n": 372.29 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21777,17 +21777,17 @@ { "a": "attr", "t": "jinbi", - "n": 3763.8 + "n": 627.3 }, { "a": "attr", "t": "nexp", - "n": 2237.64 + "n": 372.94 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21831,17 +21831,17 @@ { "a": "attr", "t": "jinbi", - "n": 3781.8 + "n": 630.3 }, { "a": "attr", "t": "nexp", - "n": 2241.54 + "n": 373.59 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21885,17 +21885,17 @@ { "a": "attr", "t": "jinbi", - "n": 3799.8 + "n": 633.3 }, { "a": "attr", "t": "nexp", - "n": 2245.44 + "n": 374.24 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21939,17 +21939,17 @@ { "a": "attr", "t": "jinbi", - "n": 3817.8 + "n": 636.3 }, { "a": "attr", "t": "nexp", - "n": 2249.34 + "n": 374.89 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -21993,17 +21993,17 @@ { "a": "attr", "t": "jinbi", - "n": 3835.8 + "n": 639.3 }, { "a": "attr", "t": "nexp", - "n": 2253.24 + "n": 375.54 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22047,17 +22047,17 @@ { "a": "attr", "t": "jinbi", - "n": 3853.8 + "n": 642.3 }, { "a": "attr", "t": "nexp", - "n": 2257.14 + "n": 376.19 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22101,17 +22101,17 @@ { "a": "attr", "t": "jinbi", - "n": 3871.8 + "n": 645.3 }, { "a": "attr", "t": "nexp", - "n": 2261.04 + "n": 376.84 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22155,17 +22155,17 @@ { "a": "attr", "t": "jinbi", - "n": 3889.8 + "n": 648.3 }, { "a": "attr", "t": "nexp", - "n": 2264.94 + "n": 377.49 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22209,17 +22209,17 @@ { "a": "attr", "t": "jinbi", - "n": 3907.8 + "n": 651.3 }, { "a": "attr", "t": "nexp", - "n": 2268.84 + "n": 378.14 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22263,17 +22263,17 @@ { "a": "attr", "t": "jinbi", - "n": 3925.8 + "n": 654.3 }, { "a": "attr", "t": "nexp", - "n": 2272.74 + "n": 378.79 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22317,17 +22317,17 @@ { "a": "attr", "t": "jinbi", - "n": 3944.4 + "n": 657.4 }, { "a": "attr", "t": "nexp", - "n": 2276.64 + "n": 379.44 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22371,17 +22371,17 @@ { "a": "attr", "t": "jinbi", - "n": 3962.4 + "n": 660.4 }, { "a": "attr", "t": "nexp", - "n": 2280.54 + "n": 380.09 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22425,17 +22425,17 @@ { "a": "attr", "t": "jinbi", - "n": 3980.4 + "n": 663.4 }, { "a": "attr", "t": "nexp", - "n": 2284.44 + "n": 380.74 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22479,17 +22479,17 @@ { "a": "attr", "t": "jinbi", - "n": 3999 + "n": 666.5 }, { "a": "attr", "t": "nexp", - "n": 2288.34 + "n": 381.39 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22533,17 +22533,17 @@ { "a": "attr", "t": "jinbi", - "n": 4017.6 + "n": 669.6 }, { "a": "attr", "t": "nexp", - "n": 2292.24 + "n": 382.04 }, { "a": "attr", "t": "weiwang", - "n": 32.4 + "n": 0.54 } ], "dlz": [], @@ -22587,17 +22587,17 @@ { "a": "attr", "t": "jinbi", - "n": 4035.6 + "n": 672.6 }, { "a": "attr", "t": "nexp", - "n": 2296.14 + "n": 382.69 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22641,17 +22641,17 @@ { "a": "attr", "t": "jinbi", - "n": 4054.2 + "n": 675.7 }, { "a": "attr", "t": "nexp", - "n": 2300.04 + "n": 383.34 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22695,17 +22695,17 @@ { "a": "attr", "t": "jinbi", - "n": 4072.8 + "n": 678.8 }, { "a": "attr", "t": "nexp", - "n": 2303.94 + "n": 383.99 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22749,17 +22749,17 @@ { "a": "attr", "t": "jinbi", - "n": 4091.4 + "n": 681.9 }, { "a": "attr", "t": "nexp", - "n": 2307.84 + "n": 384.64 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22803,17 +22803,17 @@ { "a": "attr", "t": "jinbi", - "n": 4110 + "n": 685 }, { "a": "attr", "t": "nexp", - "n": 2311.74 + "n": 385.29 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22857,17 +22857,17 @@ { "a": "attr", "t": "jinbi", - "n": 4128.6 + "n": 688.1 }, { "a": "attr", "t": "nexp", - "n": 2315.64 + "n": 385.94 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22911,17 +22911,17 @@ { "a": "attr", "t": "jinbi", - "n": 4147.2 + "n": 691.2 }, { "a": "attr", "t": "nexp", - "n": 2319.54 + "n": 386.59 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -22965,17 +22965,17 @@ { "a": "attr", "t": "jinbi", - "n": 4165.8 + "n": 694.3 }, { "a": "attr", "t": "nexp", - "n": 2323.44 + "n": 387.24 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23019,17 +23019,17 @@ { "a": "attr", "t": "jinbi", - "n": 4184.4 + "n": 697.4 }, { "a": "attr", "t": "nexp", - "n": 2327.34 + "n": 387.89 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23073,17 +23073,17 @@ { "a": "attr", "t": "jinbi", - "n": 4203.6 + "n": 700.6 }, { "a": "attr", "t": "nexp", - "n": 2331.24 + "n": 388.54 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23127,17 +23127,17 @@ { "a": "attr", "t": "jinbi", - "n": 4222.2 + "n": 703.7 }, { "a": "attr", "t": "nexp", - "n": 2335.14 + "n": 389.19 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23181,17 +23181,17 @@ { "a": "attr", "t": "jinbi", - "n": 4240.8 + "n": 706.8 }, { "a": "attr", "t": "nexp", - "n": 2339.04 + "n": 389.84 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23235,17 +23235,17 @@ { "a": "attr", "t": "jinbi", - "n": 4260 + "n": 710 }, { "a": "attr", "t": "nexp", - "n": 2342.94 + "n": 390.49 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23289,17 +23289,17 @@ { "a": "attr", "t": "jinbi", - "n": 4279.2 + "n": 713.2 }, { "a": "attr", "t": "nexp", - "n": 2346.84 + "n": 391.14 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23343,17 +23343,17 @@ { "a": "attr", "t": "jinbi", - "n": 4297.8 + "n": 716.3 }, { "a": "attr", "t": "nexp", - "n": 2350.74 + "n": 391.79 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23397,17 +23397,17 @@ { "a": "attr", "t": "jinbi", - "n": 4317 + "n": 719.5 }, { "a": "attr", "t": "nexp", - "n": 2354.64 + "n": 392.44 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23451,17 +23451,17 @@ { "a": "attr", "t": "jinbi", - "n": 4336.2 + "n": 722.7 }, { "a": "attr", "t": "nexp", - "n": 2358.54 + "n": 393.09 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23505,17 +23505,17 @@ { "a": "attr", "t": "jinbi", - "n": 4355.4 + "n": 725.9 }, { "a": "attr", "t": "nexp", - "n": 2362.44 + "n": 393.74 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23559,17 +23559,17 @@ { "a": "attr", "t": "jinbi", - "n": 4374.6 + "n": 729.1 }, { "a": "attr", "t": "nexp", - "n": 2366.34 + "n": 394.39 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23613,17 +23613,17 @@ { "a": "attr", "t": "jinbi", - "n": 4393.8 + "n": 732.3 }, { "a": "attr", "t": "nexp", - "n": 2370.24 + "n": 395.04 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23667,17 +23667,17 @@ { "a": "attr", "t": "jinbi", - "n": 4413 + "n": 735.5 }, { "a": "attr", "t": "nexp", - "n": 2374.14 + "n": 395.69 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23721,17 +23721,17 @@ { "a": "attr", "t": "jinbi", - "n": 4432.2 + "n": 738.7 }, { "a": "attr", "t": "nexp", - "n": 2378.04 + "n": 396.34 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23775,17 +23775,17 @@ { "a": "attr", "t": "jinbi", - "n": 4451.4 + "n": 741.9 }, { "a": "attr", "t": "nexp", - "n": 2381.94 + "n": 396.99 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23829,17 +23829,17 @@ { "a": "attr", "t": "jinbi", - "n": 4470.6 + "n": 745.1 }, { "a": "attr", "t": "nexp", - "n": 2385.84 + "n": 397.64 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23883,17 +23883,17 @@ { "a": "attr", "t": "jinbi", - "n": 4490.4 + "n": 748.4 }, { "a": "attr", "t": "nexp", - "n": 2389.74 + "n": 398.29 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23937,17 +23937,17 @@ { "a": "attr", "t": "jinbi", - "n": 4509.6 + "n": 751.6 }, { "a": "attr", "t": "nexp", - "n": 2393.64 + "n": 398.94 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -23991,17 +23991,17 @@ { "a": "attr", "t": "jinbi", - "n": 4529.4 + "n": 754.9 }, { "a": "attr", "t": "nexp", - "n": 2397.54 + "n": 399.59 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -24045,17 +24045,17 @@ { "a": "attr", "t": "jinbi", - "n": 4548.6 + "n": 758.1 }, { "a": "attr", "t": "nexp", - "n": 2401.44 + "n": 400.24 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -24099,17 +24099,17 @@ { "a": "attr", "t": "jinbi", - "n": 4568.4 + "n": 761.4 }, { "a": "attr", "t": "nexp", - "n": 2405.34 + "n": 400.89 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -24153,17 +24153,17 @@ { "a": "attr", "t": "jinbi", - "n": 4587.6 + "n": 764.6 }, { "a": "attr", "t": "nexp", - "n": 2409.24 + "n": 401.54 }, { "a": "attr", "t": "weiwang", - "n": 33 + "n": 0.55 } ], "dlz": [], @@ -24207,17 +24207,17 @@ { "a": "attr", "t": "jinbi", - "n": 4607.4 + "n": 767.9 }, { "a": "attr", "t": "nexp", - "n": 2413.14 + "n": 402.19 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24261,17 +24261,17 @@ { "a": "attr", "t": "jinbi", - "n": 4627.2 + "n": 771.2 }, { "a": "attr", "t": "nexp", - "n": 2417.04 + "n": 402.84 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24315,17 +24315,17 @@ { "a": "attr", "t": "jinbi", - "n": 4647 + "n": 774.5 }, { "a": "attr", "t": "nexp", - "n": 2420.94 + "n": 403.49 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24369,17 +24369,17 @@ { "a": "attr", "t": "jinbi", - "n": 4666.8 + "n": 777.8 }, { "a": "attr", "t": "nexp", - "n": 2424.84 + "n": 404.14 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24423,17 +24423,17 @@ { "a": "attr", "t": "jinbi", - "n": 4686.6 + "n": 781.1 }, { "a": "attr", "t": "nexp", - "n": 2428.74 + "n": 404.79 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24477,17 +24477,17 @@ { "a": "attr", "t": "jinbi", - "n": 4706.4 + "n": 784.4 }, { "a": "attr", "t": "nexp", - "n": 2432.64 + "n": 405.44 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24531,17 +24531,17 @@ { "a": "attr", "t": "jinbi", - "n": 4726.2 + "n": 787.7 }, { "a": "attr", "t": "nexp", - "n": 2436.54 + "n": 406.09 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24585,17 +24585,17 @@ { "a": "attr", "t": "jinbi", - "n": 4746.6 + "n": 791.1 }, { "a": "attr", "t": "nexp", - "n": 2440.44 + "n": 406.74 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24639,17 +24639,17 @@ { "a": "attr", "t": "jinbi", - "n": 4766.4 + "n": 794.4 }, { "a": "attr", "t": "nexp", - "n": 2444.34 + "n": 407.39 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24693,17 +24693,17 @@ { "a": "attr", "t": "jinbi", - "n": 4786.2 + "n": 797.7 }, { "a": "attr", "t": "nexp", - "n": 2448.24 + "n": 408.04 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24747,17 +24747,17 @@ { "a": "attr", "t": "jinbi", - "n": 4806.6 + "n": 801.1 }, { "a": "attr", "t": "nexp", - "n": 2452.14 + "n": 408.69 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24801,17 +24801,17 @@ { "a": "attr", "t": "jinbi", - "n": 4826.4 + "n": 804.4 }, { "a": "attr", "t": "nexp", - "n": 2456.04 + "n": 409.34 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24855,17 +24855,17 @@ { "a": "attr", "t": "jinbi", - "n": 4846.8 + "n": 807.8 }, { "a": "attr", "t": "nexp", - "n": 2459.94 + "n": 409.99 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24909,17 +24909,17 @@ { "a": "attr", "t": "jinbi", - "n": 4867.2 + "n": 811.2 }, { "a": "attr", "t": "nexp", - "n": 2463.84 + "n": 410.64 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -24963,17 +24963,17 @@ { "a": "attr", "t": "jinbi", - "n": 4887.6 + "n": 814.6 }, { "a": "attr", "t": "nexp", - "n": 2467.74 + "n": 411.29 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25017,17 +25017,17 @@ { "a": "attr", "t": "jinbi", - "n": 4907.4 + "n": 817.9 }, { "a": "attr", "t": "nexp", - "n": 2471.64 + "n": 411.94 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25071,17 +25071,17 @@ { "a": "attr", "t": "jinbi", - "n": 4927.8 + "n": 821.3 }, { "a": "attr", "t": "nexp", - "n": 2475.54 + "n": 412.59 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25125,17 +25125,17 @@ { "a": "attr", "t": "jinbi", - "n": 4948.2 + "n": 824.7 }, { "a": "attr", "t": "nexp", - "n": 2479.44 + "n": 413.24 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25179,17 +25179,17 @@ { "a": "attr", "t": "jinbi", - "n": 4968.6 + "n": 828.1 }, { "a": "attr", "t": "nexp", - "n": 2483.34 + "n": 413.89 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25233,17 +25233,17 @@ { "a": "attr", "t": "jinbi", - "n": 4989 + "n": 831.5 }, { "a": "attr", "t": "nexp", - "n": 2487.24 + "n": 414.54 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25287,17 +25287,17 @@ { "a": "attr", "t": "jinbi", - "n": 5010 + "n": 835 }, { "a": "attr", "t": "nexp", - "n": 2491.14 + "n": 415.19 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25341,17 +25341,17 @@ { "a": "attr", "t": "jinbi", - "n": 5030.4 + "n": 838.4 }, { "a": "attr", "t": "nexp", - "n": 2495.04 + "n": 415.84 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25395,17 +25395,17 @@ { "a": "attr", "t": "jinbi", - "n": 5050.8 + "n": 841.8 }, { "a": "attr", "t": "nexp", - "n": 2498.94 + "n": 416.49 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25449,17 +25449,17 @@ { "a": "attr", "t": "jinbi", - "n": 5071.8 + "n": 845.3 }, { "a": "attr", "t": "nexp", - "n": 2502.84 + "n": 417.14 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25503,17 +25503,17 @@ { "a": "attr", "t": "jinbi", - "n": 5092.2 + "n": 848.7 }, { "a": "attr", "t": "nexp", - "n": 2506.74 + "n": 417.79 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25557,17 +25557,17 @@ { "a": "attr", "t": "jinbi", - "n": 5113.2 + "n": 852.2 }, { "a": "attr", "t": "nexp", - "n": 2510.64 + "n": 418.44 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25611,17 +25611,17 @@ { "a": "attr", "t": "jinbi", - "n": 5133.6 + "n": 855.6 }, { "a": "attr", "t": "nexp", - "n": 2514.54 + "n": 419.09 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25665,17 +25665,17 @@ { "a": "attr", "t": "jinbi", - "n": 5154.6 + "n": 859.1 }, { "a": "attr", "t": "nexp", - "n": 2518.44 + "n": 419.74 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25719,17 +25719,17 @@ { "a": "attr", "t": "jinbi", - "n": 5175.6 + "n": 862.6 }, { "a": "attr", "t": "nexp", - "n": 2522.34 + "n": 420.39 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25773,17 +25773,17 @@ { "a": "attr", "t": "jinbi", - "n": 5196 + "n": 866 }, { "a": "attr", "t": "nexp", - "n": 2526.24 + "n": 421.04 }, { "a": "attr", "t": "weiwang", - "n": 33.6 + "n": 0.56 } ], "dlz": [], @@ -25827,17 +25827,17 @@ { "a": "attr", "t": "jinbi", - "n": 5217 + "n": 869.5 }, { "a": "attr", "t": "nexp", - "n": 2530.14 + "n": 421.69 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -25881,17 +25881,17 @@ { "a": "attr", "t": "jinbi", - "n": 5238 + "n": 873 }, { "a": "attr", "t": "nexp", - "n": 2534.04 + "n": 422.34 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -25935,17 +25935,17 @@ { "a": "attr", "t": "jinbi", - "n": 5259 + "n": 876.5 }, { "a": "attr", "t": "nexp", - "n": 2537.94 + "n": 422.99 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -25989,17 +25989,17 @@ { "a": "attr", "t": "jinbi", - "n": 5280 + "n": 880 }, { "a": "attr", "t": "nexp", - "n": 2541.84 + "n": 423.64 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26043,17 +26043,17 @@ { "a": "attr", "t": "jinbi", - "n": 5301 + "n": 883.5 }, { "a": "attr", "t": "nexp", - "n": 2545.74 + "n": 424.29 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26097,17 +26097,17 @@ { "a": "attr", "t": "jinbi", - "n": 5322.6 + "n": 887.1 }, { "a": "attr", "t": "nexp", - "n": 2549.64 + "n": 424.94 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26151,17 +26151,17 @@ { "a": "attr", "t": "jinbi", - "n": 5343.6 + "n": 890.6 }, { "a": "attr", "t": "nexp", - "n": 2553.54 + "n": 425.59 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26205,17 +26205,17 @@ { "a": "attr", "t": "jinbi", - "n": 5364.6 + "n": 894.1 }, { "a": "attr", "t": "nexp", - "n": 2557.44 + "n": 426.24 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26259,17 +26259,17 @@ { "a": "attr", "t": "jinbi", - "n": 5386.2 + "n": 897.7 }, { "a": "attr", "t": "nexp", - "n": 2561.34 + "n": 426.89 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26313,17 +26313,17 @@ { "a": "attr", "t": "jinbi", - "n": 5407.2 + "n": 901.2 }, { "a": "attr", "t": "nexp", - "n": 2565.24 + "n": 427.54 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26367,17 +26367,17 @@ { "a": "attr", "t": "jinbi", - "n": 5428.8 + "n": 904.8 }, { "a": "attr", "t": "nexp", - "n": 2569.14 + "n": 428.19 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26421,17 +26421,17 @@ { "a": "attr", "t": "jinbi", - "n": 5450.4 + "n": 908.4 }, { "a": "attr", "t": "nexp", - "n": 2573.04 + "n": 428.84 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26475,17 +26475,17 @@ { "a": "attr", "t": "jinbi", - "n": 5471.4 + "n": 911.9 }, { "a": "attr", "t": "nexp", - "n": 2576.94 + "n": 429.49 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26529,17 +26529,17 @@ { "a": "attr", "t": "jinbi", - "n": 5493 + "n": 915.5 }, { "a": "attr", "t": "nexp", - "n": 2580.84 + "n": 430.14 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26583,17 +26583,17 @@ { "a": "attr", "t": "jinbi", - "n": 5514.6 + "n": 919.1 }, { "a": "attr", "t": "nexp", - "n": 2584.74 + "n": 430.79 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26637,17 +26637,17 @@ { "a": "attr", "t": "jinbi", - "n": 5536.2 + "n": 922.7 }, { "a": "attr", "t": "nexp", - "n": 2588.64 + "n": 431.44 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26691,17 +26691,17 @@ { "a": "attr", "t": "jinbi", - "n": 5557.8 + "n": 926.3 }, { "a": "attr", "t": "nexp", - "n": 2592.54 + "n": 432.09 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26745,17 +26745,17 @@ { "a": "attr", "t": "jinbi", - "n": 5579.4 + "n": 929.9 }, { "a": "attr", "t": "nexp", - "n": 2596.44 + "n": 432.74 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26799,17 +26799,17 @@ { "a": "attr", "t": "jinbi", - "n": 5601 + "n": 933.5 }, { "a": "attr", "t": "nexp", - "n": 2600.34 + "n": 433.39 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26853,17 +26853,17 @@ { "a": "attr", "t": "jinbi", - "n": 5622.6 + "n": 937.1 }, { "a": "attr", "t": "nexp", - "n": 2604.24 + "n": 434.04 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26907,17 +26907,17 @@ { "a": "attr", "t": "jinbi", - "n": 5644.8 + "n": 940.8 }, { "a": "attr", "t": "nexp", - "n": 2608.14 + "n": 434.69 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -26961,17 +26961,17 @@ { "a": "attr", "t": "jinbi", - "n": 5666.4 + "n": 944.4 }, { "a": "attr", "t": "nexp", - "n": 2612.04 + "n": 435.34 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27015,17 +27015,17 @@ { "a": "attr", "t": "jinbi", - "n": 5688 + "n": 948 }, { "a": "attr", "t": "nexp", - "n": 2615.94 + "n": 435.99 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27069,17 +27069,17 @@ { "a": "attr", "t": "jinbi", - "n": 5710.2 + "n": 951.7 }, { "a": "attr", "t": "nexp", - "n": 2619.84 + "n": 436.64 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27123,17 +27123,17 @@ { "a": "attr", "t": "jinbi", - "n": 5731.8 + "n": 955.3 }, { "a": "attr", "t": "nexp", - "n": 2623.74 + "n": 437.29 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27177,17 +27177,17 @@ { "a": "attr", "t": "jinbi", - "n": 5754 + "n": 959 }, { "a": "attr", "t": "nexp", - "n": 2627.64 + "n": 437.94 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27231,17 +27231,17 @@ { "a": "attr", "t": "jinbi", - "n": 5776.2 + "n": 962.7 }, { "a": "attr", "t": "nexp", - "n": 2631.54 + "n": 438.59 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27285,17 +27285,17 @@ { "a": "attr", "t": "jinbi", - "n": 5797.8 + "n": 966.3 }, { "a": "attr", "t": "nexp", - "n": 2635.44 + "n": 439.24 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27339,17 +27339,17 @@ { "a": "attr", "t": "jinbi", - "n": 5820 + "n": 970 }, { "a": "attr", "t": "nexp", - "n": 2639.34 + "n": 439.89 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27393,17 +27393,17 @@ { "a": "attr", "t": "jinbi", - "n": 5842.2 + "n": 973.7 }, { "a": "attr", "t": "nexp", - "n": 2643.24 + "n": 440.54 }, { "a": "attr", "t": "weiwang", - "n": 34.2 + "n": 0.57 } ], "dlz": [], @@ -27447,17 +27447,17 @@ { "a": "attr", "t": "jinbi", - "n": 5864.4 + "n": 977.4 }, { "a": "attr", "t": "nexp", - "n": 2647.14 + "n": 441.19 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27501,17 +27501,17 @@ { "a": "attr", "t": "jinbi", - "n": 5886.6 + "n": 981.1 }, { "a": "attr", "t": "nexp", - "n": 2651.04 + "n": 441.84 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27555,17 +27555,17 @@ { "a": "attr", "t": "jinbi", - "n": 5908.8 + "n": 984.8 }, { "a": "attr", "t": "nexp", - "n": 2654.94 + "n": 442.49 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27609,17 +27609,17 @@ { "a": "attr", "t": "jinbi", - "n": 5931.6 + "n": 988.6 }, { "a": "attr", "t": "nexp", - "n": 2658.84 + "n": 443.14 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27663,17 +27663,17 @@ { "a": "attr", "t": "jinbi", - "n": 5953.8 + "n": 992.3 }, { "a": "attr", "t": "nexp", - "n": 2662.74 + "n": 443.79 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27717,17 +27717,17 @@ { "a": "attr", "t": "jinbi", - "n": 5976 + "n": 996 }, { "a": "attr", "t": "nexp", - "n": 2666.64 + "n": 444.44 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27771,17 +27771,17 @@ { "a": "attr", "t": "jinbi", - "n": 5998.8 + "n": 999.8 }, { "a": "attr", "t": "nexp", - "n": 2670.54 + "n": 445.09 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27825,17 +27825,17 @@ { "a": "attr", "t": "jinbi", - "n": 6021 + "n": 1003.5 }, { "a": "attr", "t": "nexp", - "n": 2674.44 + "n": 445.74 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27879,17 +27879,17 @@ { "a": "attr", "t": "jinbi", - "n": 6043.8 + "n": 1007.3 }, { "a": "attr", "t": "nexp", - "n": 2678.34 + "n": 446.39 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27933,17 +27933,17 @@ { "a": "attr", "t": "jinbi", - "n": 6066 + "n": 1011 }, { "a": "attr", "t": "nexp", - "n": 2682.24 + "n": 447.04 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -27987,17 +27987,17 @@ { "a": "attr", "t": "jinbi", - "n": 6088.8 + "n": 1014.8 }, { "a": "attr", "t": "nexp", - "n": 2686.14 + "n": 447.69 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28041,17 +28041,17 @@ { "a": "attr", "t": "jinbi", - "n": 6111.6 + "n": 1018.6 }, { "a": "attr", "t": "nexp", - "n": 3497.05 + "n": 582.84 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28095,17 +28095,17 @@ { "a": "attr", "t": "jinbi", - "n": 6133.8 + "n": 1022.3 }, { "a": "attr", "t": "nexp", - "n": 3502.12 + "n": 583.69 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28149,17 +28149,17 @@ { "a": "attr", "t": "jinbi", - "n": 6156.6 + "n": 1026.1 }, { "a": "attr", "t": "nexp", - "n": 3507.19 + "n": 584.53 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28203,17 +28203,17 @@ { "a": "attr", "t": "jinbi", - "n": 6179.4 + "n": 1029.9 }, { "a": "attr", "t": "nexp", - "n": 3512.26 + "n": 585.38 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28257,17 +28257,17 @@ { "a": "attr", "t": "jinbi", - "n": 6202.2 + "n": 1033.7 }, { "a": "attr", "t": "nexp", - "n": 3517.33 + "n": 586.22 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28311,17 +28311,17 @@ { "a": "attr", "t": "jinbi", - "n": 6225 + "n": 1037.5 }, { "a": "attr", "t": "nexp", - "n": 3522.4 + "n": 587.07 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28365,17 +28365,17 @@ { "a": "attr", "t": "jinbi", - "n": 6248.4 + "n": 1041.4 }, { "a": "attr", "t": "nexp", - "n": 3527.47 + "n": 587.91 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28419,17 +28419,17 @@ { "a": "attr", "t": "jinbi", - "n": 6271.2 + "n": 1045.2 }, { "a": "attr", "t": "nexp", - "n": 3532.54 + "n": 588.76 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28473,17 +28473,17 @@ { "a": "attr", "t": "jinbi", - "n": 6294 + "n": 1049 }, { "a": "attr", "t": "nexp", - "n": 3537.61 + "n": 589.6 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28527,17 +28527,17 @@ { "a": "attr", "t": "jinbi", - "n": 6316.8 + "n": 1052.8 }, { "a": "attr", "t": "nexp", - "n": 3542.68 + "n": 590.45 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28581,17 +28581,17 @@ { "a": "attr", "t": "jinbi", - "n": 6340.2 + "n": 1056.7 }, { "a": "attr", "t": "nexp", - "n": 3547.75 + "n": 591.29 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28635,17 +28635,17 @@ { "a": "attr", "t": "jinbi", - "n": 6363 + "n": 1060.5 }, { "a": "attr", "t": "nexp", - "n": 3552.82 + "n": 592.14 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28689,17 +28689,17 @@ { "a": "attr", "t": "jinbi", - "n": 6386.4 + "n": 1064.4 }, { "a": "attr", "t": "nexp", - "n": 3557.89 + "n": 592.98 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28743,17 +28743,17 @@ { "a": "attr", "t": "jinbi", - "n": 6409.8 + "n": 1068.3 }, { "a": "attr", "t": "nexp", - "n": 3562.96 + "n": 593.83 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28797,17 +28797,17 @@ { "a": "attr", "t": "jinbi", - "n": 6432.6 + "n": 1072.1 }, { "a": "attr", "t": "nexp", - "n": 3568.03 + "n": 594.67 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28851,17 +28851,17 @@ { "a": "attr", "t": "jinbi", - "n": 6456 + "n": 1076 }, { "a": "attr", "t": "nexp", - "n": 3573.1 + "n": 595.52 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28905,17 +28905,17 @@ { "a": "attr", "t": "jinbi", - "n": 6479.4 + "n": 1079.9 }, { "a": "attr", "t": "nexp", - "n": 3715.79 + "n": 619.3 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -28959,17 +28959,17 @@ { "a": "attr", "t": "jinbi", - "n": 6502.8 + "n": 1083.8 }, { "a": "attr", "t": "nexp", - "n": 3721.06 + "n": 620.18 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -29013,17 +29013,17 @@ { "a": "attr", "t": "jinbi", - "n": 6526.2 + "n": 1087.7 }, { "a": "attr", "t": "nexp", - "n": 3726.32 + "n": 621.05 }, { "a": "attr", "t": "weiwang", - "n": 34.8 + "n": 0.58 } ], "dlz": [], @@ -29067,17 +29067,17 @@ { "a": "attr", "t": "jinbi", - "n": 6549.6 + "n": 1091.6 }, { "a": "attr", "t": "nexp", - "n": 3731.59 + "n": 621.93 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29121,17 +29121,17 @@ { "a": "attr", "t": "jinbi", - "n": 6573 + "n": 1095.5 }, { "a": "attr", "t": "nexp", - "n": 3736.85 + "n": 622.81 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29175,17 +29175,17 @@ { "a": "attr", "t": "jinbi", - "n": 6596.4 + "n": 1099.4 }, { "a": "attr", "t": "nexp", - "n": 3742.12 + "n": 623.69 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29229,17 +29229,17 @@ { "a": "attr", "t": "jinbi", - "n": 6620.4 + "n": 1103.4 }, { "a": "attr", "t": "nexp", - "n": 3747.38 + "n": 624.56 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29283,17 +29283,17 @@ { "a": "attr", "t": "jinbi", - "n": 6643.8 + "n": 1107.3 }, { "a": "attr", "t": "nexp", - "n": 3752.65 + "n": 625.44 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29337,17 +29337,17 @@ { "a": "attr", "t": "jinbi", - "n": 6667.8 + "n": 1111.3 }, { "a": "attr", "t": "nexp", - "n": 3757.91 + "n": 626.32 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29391,17 +29391,17 @@ { "a": "attr", "t": "jinbi", - "n": 6691.2 + "n": 1115.2 }, { "a": "attr", "t": "nexp", - "n": 3763.18 + "n": 627.2 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29445,17 +29445,17 @@ { "a": "attr", "t": "jinbi", - "n": 6715.2 + "n": 1119.2 }, { "a": "attr", "t": "nexp", - "n": 3768.44 + "n": 628.07 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29499,17 +29499,17 @@ { "a": "attr", "t": "jinbi", - "n": 6738.6 + "n": 1123.1 }, { "a": "attr", "t": "nexp", - "n": 3773.71 + "n": 628.95 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29553,17 +29553,17 @@ { "a": "attr", "t": "jinbi", - "n": 6762.6 + "n": 1127.1 }, { "a": "attr", "t": "nexp", - "n": 3778.97 + "n": 629.83 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29607,17 +29607,17 @@ { "a": "attr", "t": "jinbi", - "n": 6786.6 + "n": 1131.1 }, { "a": "attr", "t": "nexp", - "n": 3784.24 + "n": 630.71 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29661,17 +29661,17 @@ { "a": "attr", "t": "jinbi", - "n": 6810.6 + "n": 1135.1 }, { "a": "attr", "t": "nexp", - "n": 3789.5 + "n": 631.58 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29715,17 +29715,17 @@ { "a": "attr", "t": "jinbi", - "n": 6834.6 + "n": 1139.1 }, { "a": "attr", "t": "nexp", - "n": 3794.77 + "n": 632.46 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29769,17 +29769,17 @@ { "a": "attr", "t": "jinbi", - "n": 6858.6 + "n": 1143.1 }, { "a": "attr", "t": "nexp", - "n": 3940.78 + "n": 656.8 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29823,17 +29823,17 @@ { "a": "attr", "t": "jinbi", - "n": 6882.6 + "n": 1147.1 }, { "a": "attr", "t": "nexp", - "n": 3946.24 + "n": 657.71 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29877,17 +29877,17 @@ { "a": "attr", "t": "jinbi", - "n": 6906.6 + "n": 1151.1 }, { "a": "attr", "t": "nexp", - "n": 3951.7 + "n": 658.62 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29931,17 +29931,17 @@ { "a": "attr", "t": "jinbi", - "n": 6930.6 + "n": 1155.1 }, { "a": "attr", "t": "nexp", - "n": 3957.16 + "n": 659.53 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -29985,17 +29985,17 @@ { "a": "attr", "t": "jinbi", - "n": 6954.6 + "n": 1159.1 }, { "a": "attr", "t": "nexp", - "n": 3962.62 + "n": 660.44 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30039,17 +30039,17 @@ { "a": "attr", "t": "jinbi", - "n": 6979.2 + "n": 1163.2 }, { "a": "attr", "t": "nexp", - "n": 3968.08 + "n": 661.35 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30093,17 +30093,17 @@ { "a": "attr", "t": "jinbi", - "n": 7003.2 + "n": 1167.2 }, { "a": "attr", "t": "nexp", - "n": 3973.54 + "n": 662.26 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30147,17 +30147,17 @@ { "a": "attr", "t": "jinbi", - "n": 7027.2 + "n": 1171.2 }, { "a": "attr", "t": "nexp", - "n": 3979 + "n": 663.17 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30201,17 +30201,17 @@ { "a": "attr", "t": "jinbi", - "n": 7051.8 + "n": 1175.3 }, { "a": "attr", "t": "nexp", - "n": 3984.46 + "n": 664.08 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30255,17 +30255,17 @@ { "a": "attr", "t": "jinbi", - "n": 7076.4 + "n": 1179.4 }, { "a": "attr", "t": "nexp", - "n": 3989.92 + "n": 664.99 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30309,17 +30309,17 @@ { "a": "attr", "t": "jinbi", - "n": 7100.4 + "n": 1183.4 }, { "a": "attr", "t": "nexp", - "n": 3995.38 + "n": 665.9 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30363,17 +30363,17 @@ { "a": "attr", "t": "jinbi", - "n": 7125 + "n": 1187.5 }, { "a": "attr", "t": "nexp", - "n": 4000.84 + "n": 666.81 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30417,17 +30417,17 @@ { "a": "attr", "t": "jinbi", - "n": 7149.6 + "n": 1191.6 }, { "a": "attr", "t": "nexp", - "n": 4006.3 + "n": 667.72 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30471,17 +30471,17 @@ { "a": "attr", "t": "jinbi", - "n": 7174.2 + "n": 1195.7 }, { "a": "attr", "t": "nexp", - "n": 4011.76 + "n": 668.63 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30525,17 +30525,17 @@ { "a": "attr", "t": "jinbi", - "n": 7198.8 + "n": 1199.8 }, { "a": "attr", "t": "nexp", - "n": 4017.22 + "n": 669.54 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30579,17 +30579,17 @@ { "a": "attr", "t": "jinbi", - "n": 7223.4 + "n": 1203.9 }, { "a": "attr", "t": "nexp", - "n": 4022.68 + "n": 670.45 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30633,17 +30633,17 @@ { "a": "attr", "t": "jinbi", - "n": 7248 + "n": 1208 }, { "a": "attr", "t": "nexp", - "n": 4172 + "n": 695.33 }, { "a": "attr", "t": "weiwang", - "n": 35.4 + "n": 0.59 } ], "dlz": [], @@ -30687,17 +30687,17 @@ { "a": "attr", "t": "jinbi", - "n": 7272.6 + "n": 1212.1 }, { "a": "attr", "t": "nexp", - "n": 4177.65 + "n": 696.28 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -30741,17 +30741,17 @@ { "a": "attr", "t": "jinbi", - "n": 7297.2 + "n": 1216.2 }, { "a": "attr", "t": "nexp", - "n": 4183.31 + "n": 697.22 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -30795,17 +30795,17 @@ { "a": "attr", "t": "jinbi", - "n": 7322.4 + "n": 1220.4 }, { "a": "attr", "t": "nexp", - "n": 4188.96 + "n": 698.16 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -30849,17 +30849,17 @@ { "a": "attr", "t": "jinbi", - "n": 7347 + "n": 1224.5 }, { "a": "attr", "t": "nexp", - "n": 4194.62 + "n": 699.1 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -30903,17 +30903,17 @@ { "a": "attr", "t": "jinbi", - "n": 7371.6 + "n": 1228.6 }, { "a": "attr", "t": "nexp", - "n": 4200.27 + "n": 700.05 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -30957,17 +30957,17 @@ { "a": "attr", "t": "jinbi", - "n": 7396.8 + "n": 1232.8 }, { "a": "attr", "t": "nexp", - "n": 4205.93 + "n": 700.99 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31011,17 +31011,17 @@ { "a": "attr", "t": "jinbi", - "n": 7422 + "n": 1237 }, { "a": "attr", "t": "nexp", - "n": 4211.58 + "n": 701.93 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31065,17 +31065,17 @@ { "a": "attr", "t": "jinbi", - "n": 7446.6 + "n": 1241.1 }, { "a": "attr", "t": "nexp", - "n": 4217.24 + "n": 702.87 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31119,17 +31119,17 @@ { "a": "attr", "t": "jinbi", - "n": 7471.8 + "n": 1245.3 }, { "a": "attr", "t": "nexp", - "n": 4222.89 + "n": 703.82 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31173,17 +31173,17 @@ { "a": "attr", "t": "jinbi", - "n": 7497 + "n": 1249.5 }, { "a": "attr", "t": "nexp", - "n": 4228.55 + "n": 704.76 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31227,17 +31227,17 @@ { "a": "attr", "t": "jinbi", - "n": 7522.2 + "n": 1253.7 }, { "a": "attr", "t": "nexp", - "n": 4234.2 + "n": 705.7 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31281,17 +31281,17 @@ { "a": "attr", "t": "jinbi", - "n": 7547.4 + "n": 1257.9 }, { "a": "attr", "t": "nexp", - "n": 4239.86 + "n": 706.64 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31335,17 +31335,17 @@ { "a": "attr", "t": "jinbi", - "n": 7572.6 + "n": 1262.1 }, { "a": "attr", "t": "nexp", - "n": 4245.51 + "n": 707.59 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31389,17 +31389,17 @@ { "a": "attr", "t": "jinbi", - "n": 7597.8 + "n": 1266.3 }, { "a": "attr", "t": "nexp", - "n": 4251.17 + "n": 708.53 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31443,17 +31443,17 @@ { "a": "attr", "t": "jinbi", - "n": 7623 + "n": 1270.5 }, { "a": "attr", "t": "nexp", - "n": 4256.82 + "n": 709.47 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31497,17 +31497,17 @@ { "a": "attr", "t": "jinbi", - "n": 7648.2 + "n": 1274.7 }, { "a": "attr", "t": "nexp", - "n": 4409.46 + "n": 734.91 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31551,17 +31551,17 @@ { "a": "attr", "t": "jinbi", - "n": 7673.4 + "n": 1278.9 }, { "a": "attr", "t": "nexp", - "n": 4415.31 + "n": 735.89 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31605,17 +31605,17 @@ { "a": "attr", "t": "jinbi", - "n": 7699.2 + "n": 1283.2 }, { "a": "attr", "t": "nexp", - "n": 4421.16 + "n": 736.86 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31659,17 +31659,17 @@ { "a": "attr", "t": "jinbi", - "n": 7724.4 + "n": 1287.4 }, { "a": "attr", "t": "nexp", - "n": 4427.01 + "n": 737.84 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31713,17 +31713,17 @@ { "a": "attr", "t": "jinbi", - "n": 7750.2 + "n": 1291.7 }, { "a": "attr", "t": "nexp", - "n": 4432.86 + "n": 738.81 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31767,17 +31767,17 @@ { "a": "attr", "t": "jinbi", - "n": 7775.4 + "n": 1295.9 }, { "a": "attr", "t": "nexp", - "n": 4438.71 + "n": 739.79 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31821,17 +31821,17 @@ { "a": "attr", "t": "jinbi", - "n": 7801.2 + "n": 1300.2 }, { "a": "attr", "t": "nexp", - "n": 4444.56 + "n": 740.76 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31875,17 +31875,17 @@ { "a": "attr", "t": "jinbi", - "n": 7827 + "n": 1304.5 }, { "a": "attr", "t": "nexp", - "n": 4450.41 + "n": 741.74 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31929,17 +31929,17 @@ { "a": "attr", "t": "jinbi", - "n": 7852.8 + "n": 1308.8 }, { "a": "attr", "t": "nexp", - "n": 4456.26 + "n": 742.71 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -31983,17 +31983,17 @@ { "a": "attr", "t": "jinbi", - "n": 7878 + "n": 1313 }, { "a": "attr", "t": "nexp", - "n": 4462.11 + "n": 743.69 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32037,17 +32037,17 @@ { "a": "attr", "t": "jinbi", - "n": 7903.8 + "n": 1317.3 }, { "a": "attr", "t": "nexp", - "n": 4467.96 + "n": 744.66 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32091,17 +32091,17 @@ { "a": "attr", "t": "jinbi", - "n": 7929.6 + "n": 1321.6 }, { "a": "attr", "t": "nexp", - "n": 4473.81 + "n": 745.64 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32145,17 +32145,17 @@ { "a": "attr", "t": "jinbi", - "n": 7955.4 + "n": 1325.9 }, { "a": "attr", "t": "nexp", - "n": 4479.66 + "n": 746.61 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32199,17 +32199,17 @@ { "a": "attr", "t": "jinbi", - "n": 7981.8 + "n": 1330.3 }, { "a": "attr", "t": "nexp", - "n": 4485.51 + "n": 747.59 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32253,17 +32253,17 @@ { "a": "attr", "t": "jinbi", - "n": 8007.6 + "n": 1334.6 }, { "a": "attr", "t": "nexp", - "n": 4491.36 + "n": 748.56 }, { "a": "attr", "t": "weiwang", - "n": 36 + "n": 0.6 } ], "dlz": [], @@ -32307,17 +32307,17 @@ { "a": "attr", "t": "jinbi", - "n": 8033.4 + "n": 1338.9 }, { "a": "attr", "t": "nexp", - "n": 4497.21 + "n": 749.54 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32361,17 +32361,17 @@ { "a": "attr", "t": "jinbi", - "n": 8059.2 + "n": 1343.2 }, { "a": "attr", "t": "nexp", - "n": 4503.06 + "n": 750.51 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32415,17 +32415,17 @@ { "a": "attr", "t": "jinbi", - "n": 8085.6 + "n": 1347.6 }, { "a": "attr", "t": "nexp", - "n": 4659.21 + "n": 776.53 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32469,17 +32469,17 @@ { "a": "attr", "t": "jinbi", - "n": 8111.4 + "n": 1351.9 }, { "a": "attr", "t": "nexp", - "n": 4665.25 + "n": 777.54 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32523,17 +32523,17 @@ { "a": "attr", "t": "jinbi", - "n": 8137.8 + "n": 1356.3 }, { "a": "attr", "t": "nexp", - "n": 4671.3 + "n": 778.55 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32577,17 +32577,17 @@ { "a": "attr", "t": "jinbi", - "n": 8163.6 + "n": 1360.6 }, { "a": "attr", "t": "nexp", - "n": 4677.34 + "n": 779.56 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32631,17 +32631,17 @@ { "a": "attr", "t": "jinbi", - "n": 8190 + "n": 1365 }, { "a": "attr", "t": "nexp", - "n": 4683.39 + "n": 780.56 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32685,17 +32685,17 @@ { "a": "attr", "t": "jinbi", - "n": 8216.4 + "n": 1369.4 }, { "a": "attr", "t": "nexp", - "n": 4689.43 + "n": 781.57 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32739,17 +32739,17 @@ { "a": "attr", "t": "jinbi", - "n": 8242.8 + "n": 1373.8 }, { "a": "attr", "t": "nexp", - "n": 4695.48 + "n": 782.58 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32793,17 +32793,17 @@ { "a": "attr", "t": "jinbi", - "n": 8269.2 + "n": 1378.2 }, { "a": "attr", "t": "nexp", - "n": 4701.52 + "n": 783.59 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32847,17 +32847,17 @@ { "a": "attr", "t": "jinbi", - "n": 8295.6 + "n": 1382.6 }, { "a": "attr", "t": "nexp", - "n": 4707.57 + "n": 784.59 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32901,17 +32901,17 @@ { "a": "attr", "t": "jinbi", - "n": 8322 + "n": 1387 }, { "a": "attr", "t": "nexp", - "n": 4713.61 + "n": 785.6 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -32955,17 +32955,17 @@ { "a": "attr", "t": "jinbi", - "n": 8348.4 + "n": 1391.4 }, { "a": "attr", "t": "nexp", - "n": 4719.66 + "n": 786.61 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33009,17 +33009,17 @@ { "a": "attr", "t": "jinbi", - "n": 8374.8 + "n": 1395.8 }, { "a": "attr", "t": "nexp", - "n": 4725.7 + "n": 787.62 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33063,17 +33063,17 @@ { "a": "attr", "t": "jinbi", - "n": 8401.2 + "n": 1400.2 }, { "a": "attr", "t": "nexp", - "n": 4731.75 + "n": 788.62 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33117,17 +33117,17 @@ { "a": "attr", "t": "jinbi", - "n": 8428.2 + "n": 1404.7 }, { "a": "attr", "t": "nexp", - "n": 4737.79 + "n": 789.63 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33171,17 +33171,17 @@ { "a": "attr", "t": "jinbi", - "n": 8454.6 + "n": 1409.1 }, { "a": "attr", "t": "nexp", - "n": 4743.84 + "n": 790.64 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33225,17 +33225,17 @@ { "a": "attr", "t": "jinbi", - "n": 8481 + "n": 1413.5 }, { "a": "attr", "t": "nexp", - "n": 4903.1 + "n": 817.18 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33279,17 +33279,17 @@ { "a": "attr", "t": "jinbi", - "n": 8508 + "n": 1418 }, { "a": "attr", "t": "nexp", - "n": 4909.34 + "n": 818.22 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33333,17 +33333,17 @@ { "a": "attr", "t": "jinbi", - "n": 8535 + "n": 1422.5 }, { "a": "attr", "t": "nexp", - "n": 4915.58 + "n": 819.26 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33387,17 +33387,17 @@ { "a": "attr", "t": "jinbi", - "n": 8561.4 + "n": 1426.9 }, { "a": "attr", "t": "nexp", - "n": 4921.82 + "n": 820.3 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33441,17 +33441,17 @@ { "a": "attr", "t": "jinbi", - "n": 8588.4 + "n": 1431.4 }, { "a": "attr", "t": "nexp", - "n": 4928.06 + "n": 821.34 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33495,17 +33495,17 @@ { "a": "attr", "t": "jinbi", - "n": 8615.4 + "n": 1435.9 }, { "a": "attr", "t": "nexp", - "n": 4934.3 + "n": 822.38 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33549,17 +33549,17 @@ { "a": "attr", "t": "jinbi", - "n": 8642.4 + "n": 1440.4 }, { "a": "attr", "t": "nexp", - "n": 4940.54 + "n": 823.42 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33603,17 +33603,17 @@ { "a": "attr", "t": "jinbi", - "n": 8669.4 + "n": 1444.9 }, { "a": "attr", "t": "nexp", - "n": 4946.78 + "n": 824.46 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33657,17 +33657,17 @@ { "a": "attr", "t": "jinbi", - "n": 8696.4 + "n": 1449.4 }, { "a": "attr", "t": "nexp", - "n": 4953.02 + "n": 825.5 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33711,17 +33711,17 @@ { "a": "attr", "t": "jinbi", - "n": 8723.4 + "n": 1453.9 }, { "a": "attr", "t": "nexp", - "n": 4959.26 + "n": 826.54 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33765,17 +33765,17 @@ { "a": "attr", "t": "jinbi", - "n": 8750.4 + "n": 1458.4 }, { "a": "attr", "t": "nexp", - "n": 4965.5 + "n": 827.58 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33819,17 +33819,17 @@ { "a": "attr", "t": "jinbi", - "n": 8777.4 + "n": 1462.9 }, { "a": "attr", "t": "nexp", - "n": 4971.74 + "n": 828.62 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33873,17 +33873,17 @@ { "a": "attr", "t": "jinbi", - "n": 8805 + "n": 1467.5 }, { "a": "attr", "t": "nexp", - "n": 4977.98 + "n": 829.66 }, { "a": "attr", "t": "weiwang", - "n": 36.6 + "n": 0.61 } ], "dlz": [], @@ -33927,17 +33927,17 @@ { "a": "attr", "t": "jinbi", - "n": 8832 + "n": 1472 }, { "a": "attr", "t": "nexp", - "n": 4984.22 + "n": 830.7 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -33981,17 +33981,17 @@ { "a": "attr", "t": "jinbi", - "n": 8859 + "n": 1476.5 }, { "a": "attr", "t": "nexp", - "n": 4990.46 + "n": 831.74 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34035,17 +34035,17 @@ { "a": "attr", "t": "jinbi", - "n": 8886.6 + "n": 1481.1 }, { "a": "attr", "t": "nexp", - "n": 4996.7 + "n": 832.78 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34089,17 +34089,17 @@ { "a": "attr", "t": "jinbi", - "n": 8914.2 + "n": 1485.7 }, { "a": "attr", "t": "nexp", - "n": 5159.29 + "n": 859.88 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34143,17 +34143,17 @@ { "a": "attr", "t": "jinbi", - "n": 8941.2 + "n": 1490.2 }, { "a": "attr", "t": "nexp", - "n": 5165.72 + "n": 860.95 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34197,17 +34197,17 @@ { "a": "attr", "t": "jinbi", - "n": 8968.8 + "n": 1494.8 }, { "a": "attr", "t": "nexp", - "n": 5172.16 + "n": 862.03 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34251,17 +34251,17 @@ { "a": "attr", "t": "jinbi", - "n": 8996.4 + "n": 1499.4 }, { "a": "attr", "t": "nexp", - "n": 5178.59 + "n": 863.1 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34305,17 +34305,17 @@ { "a": "attr", "t": "jinbi", - "n": 9024 + "n": 1504 }, { "a": "attr", "t": "nexp", - "n": 5185.03 + "n": 864.17 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34359,17 +34359,17 @@ { "a": "attr", "t": "jinbi", - "n": 9051.6 + "n": 1508.6 }, { "a": "attr", "t": "nexp", - "n": 5191.46 + "n": 865.24 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34413,17 +34413,17 @@ { "a": "attr", "t": "jinbi", - "n": 9079.2 + "n": 1513.2 }, { "a": "attr", "t": "nexp", - "n": 5197.9 + "n": 866.32 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34467,17 +34467,17 @@ { "a": "attr", "t": "jinbi", - "n": 9106.8 + "n": 1517.8 }, { "a": "attr", "t": "nexp", - "n": 5204.33 + "n": 867.39 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34521,17 +34521,17 @@ { "a": "attr", "t": "jinbi", - "n": 9134.4 + "n": 1522.4 }, { "a": "attr", "t": "nexp", - "n": 5210.77 + "n": 868.46 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34575,17 +34575,17 @@ { "a": "attr", "t": "jinbi", - "n": 9162 + "n": 1527 }, { "a": "attr", "t": "nexp", - "n": 5217.2 + "n": 869.53 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34629,17 +34629,17 @@ { "a": "attr", "t": "jinbi", - "n": 9189.6 + "n": 1531.6 }, { "a": "attr", "t": "nexp", - "n": 5223.64 + "n": 870.61 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34683,17 +34683,17 @@ { "a": "attr", "t": "jinbi", - "n": 9217.8 + "n": 1536.3 }, { "a": "attr", "t": "nexp", - "n": 5230.07 + "n": 871.68 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34737,17 +34737,17 @@ { "a": "attr", "t": "jinbi", - "n": 9245.4 + "n": 1540.9 }, { "a": "attr", "t": "nexp", - "n": 5236.51 + "n": 872.75 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34791,17 +34791,17 @@ { "a": "attr", "t": "jinbi", - "n": 9273.6 + "n": 1545.6 }, { "a": "attr", "t": "nexp", - "n": 5242.94 + "n": 873.82 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34845,17 +34845,17 @@ { "a": "attr", "t": "jinbi", - "n": 9301.2 + "n": 1550.2 }, { "a": "attr", "t": "nexp", - "n": 5249.38 + "n": 874.9 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34899,17 +34899,17 @@ { "a": "attr", "t": "jinbi", - "n": 9329.4 + "n": 1554.9 }, { "a": "attr", "t": "nexp", - "n": 5255.81 + "n": 875.97 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -34953,17 +34953,17 @@ { "a": "attr", "t": "jinbi", - "n": 9357 + "n": 1559.5 }, { "a": "attr", "t": "nexp", - "n": 5421.71 + "n": 903.62 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35007,17 +35007,17 @@ { "a": "attr", "t": "jinbi", - "n": 9385.2 + "n": 1564.2 }, { "a": "attr", "t": "nexp", - "n": 5428.34 + "n": 904.72 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35061,17 +35061,17 @@ { "a": "attr", "t": "jinbi", - "n": 9413.4 + "n": 1568.9 }, { "a": "attr", "t": "nexp", - "n": 5434.97 + "n": 905.83 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35115,17 +35115,17 @@ { "a": "attr", "t": "jinbi", - "n": 9441.6 + "n": 1573.6 }, { "a": "attr", "t": "nexp", - "n": 5441.6 + "n": 906.93 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35169,17 +35169,17 @@ { "a": "attr", "t": "jinbi", - "n": 9469.8 + "n": 1578.3 }, { "a": "attr", "t": "nexp", - "n": 5448.23 + "n": 908.04 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35223,17 +35223,17 @@ { "a": "attr", "t": "jinbi", - "n": 9498 + "n": 1583 }, { "a": "attr", "t": "nexp", - "n": 5454.86 + "n": 909.14 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35277,17 +35277,17 @@ { "a": "attr", "t": "jinbi", - "n": 9526.2 + "n": 1587.7 }, { "a": "attr", "t": "nexp", - "n": 5461.49 + "n": 910.25 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35331,17 +35331,17 @@ { "a": "attr", "t": "jinbi", - "n": 9554.4 + "n": 1592.4 }, { "a": "attr", "t": "nexp", - "n": 5468.12 + "n": 911.35 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35385,17 +35385,17 @@ { "a": "attr", "t": "jinbi", - "n": 9583.2 + "n": 1597.2 }, { "a": "attr", "t": "nexp", - "n": 5474.75 + "n": 912.46 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35439,17 +35439,17 @@ { "a": "attr", "t": "jinbi", - "n": 9611.4 + "n": 1601.9 }, { "a": "attr", "t": "nexp", - "n": 5481.38 + "n": 913.56 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35493,17 +35493,17 @@ { "a": "attr", "t": "jinbi", - "n": 9639.6 + "n": 1606.6 }, { "a": "attr", "t": "nexp", - "n": 5488.01 + "n": 914.67 }, { "a": "attr", "t": "weiwang", - "n": 37.2 + "n": 0.62 } ], "dlz": [], @@ -35547,17 +35547,17 @@ { "a": "attr", "t": "jinbi", - "n": 9668.4 + "n": 1611.4 }, { "a": "attr", "t": "nexp", - "n": 5494.64 + "n": 915.77 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35601,17 +35601,17 @@ { "a": "attr", "t": "jinbi", - "n": 9696.6 + "n": 1616.1 }, { "a": "attr", "t": "nexp", - "n": 5501.27 + "n": 916.88 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35655,17 +35655,17 @@ { "a": "attr", "t": "jinbi", - "n": 9725.4 + "n": 1620.9 }, { "a": "attr", "t": "nexp", - "n": 5507.9 + "n": 917.98 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35709,17 +35709,17 @@ { "a": "attr", "t": "jinbi", - "n": 9754.2 + "n": 1625.7 }, { "a": "attr", "t": "nexp", - "n": 5514.53 + "n": 919.09 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35763,17 +35763,17 @@ { "a": "attr", "t": "jinbi", - "n": 9783 + "n": 1630.5 }, { "a": "attr", "t": "nexp", - "n": 5521.16 + "n": 920.19 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35817,17 +35817,17 @@ { "a": "attr", "t": "jinbi", - "n": 9811.2 + "n": 1635.2 }, { "a": "attr", "t": "nexp", - "n": 5592.82 + "n": 932.14 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35871,17 +35871,17 @@ { "a": "attr", "t": "jinbi", - "n": 9840 + "n": 1640 }, { "a": "attr", "t": "nexp", - "n": 5599.53 + "n": 933.25 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35925,17 +35925,17 @@ { "a": "attr", "t": "jinbi", - "n": 9868.8 + "n": 1644.8 }, { "a": "attr", "t": "nexp", - "n": 5606.24 + "n": 934.37 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -35979,17 +35979,17 @@ { "a": "attr", "t": "jinbi", - "n": 9897.6 + "n": 1649.6 }, { "a": "attr", "t": "nexp", - "n": 5612.94 + "n": 935.49 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36033,17 +36033,17 @@ { "a": "attr", "t": "jinbi", - "n": 9926.4 + "n": 1654.4 }, { "a": "attr", "t": "nexp", - "n": 5619.65 + "n": 936.61 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36087,17 +36087,17 @@ { "a": "attr", "t": "jinbi", - "n": 9955.8 + "n": 1659.3 }, { "a": "attr", "t": "nexp", - "n": 5626.36 + "n": 937.73 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36141,17 +36141,17 @@ { "a": "attr", "t": "jinbi", - "n": 9984.6 + "n": 1664.1 }, { "a": "attr", "t": "nexp", - "n": 5633.07 + "n": 938.84 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36195,17 +36195,17 @@ { "a": "attr", "t": "jinbi", - "n": 10013.4 + "n": 1668.9 }, { "a": "attr", "t": "nexp", - "n": 5639.78 + "n": 939.96 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36249,17 +36249,17 @@ { "a": "attr", "t": "jinbi", - "n": 10042.8 + "n": 1673.8 }, { "a": "attr", "t": "nexp", - "n": 5646.48 + "n": 941.08 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36303,17 +36303,17 @@ { "a": "attr", "t": "jinbi", - "n": 10071.6 + "n": 1678.6 }, { "a": "attr", "t": "nexp", - "n": 5653.19 + "n": 942.2 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36357,17 +36357,17 @@ { "a": "attr", "t": "jinbi", - "n": 10101 + "n": 1683.5 }, { "a": "attr", "t": "nexp", - "n": 5659.9 + "n": 943.32 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36411,17 +36411,17 @@ { "a": "attr", "t": "jinbi", - "n": 10129.8 + "n": 1688.3 }, { "a": "attr", "t": "nexp", - "n": 5666.61 + "n": 944.43 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36465,17 +36465,17 @@ { "a": "attr", "t": "jinbi", - "n": 10159.2 + "n": 1693.2 }, { "a": "attr", "t": "nexp", - "n": 5673.32 + "n": 945.55 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36519,17 +36519,17 @@ { "a": "attr", "t": "jinbi", - "n": 10188.6 + "n": 1698.1 }, { "a": "attr", "t": "nexp", - "n": 5680.02 + "n": 946.67 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36573,17 +36573,17 @@ { "a": "attr", "t": "jinbi", - "n": 10217.4 + "n": 1702.9 }, { "a": "attr", "t": "nexp", - "n": 5686.73 + "n": 947.79 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36627,17 +36627,17 @@ { "a": "attr", "t": "jinbi", - "n": 10246.8 + "n": 1707.8 }, { "a": "attr", "t": "nexp", - "n": 5693.44 + "n": 948.91 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36681,17 +36681,17 @@ { "a": "attr", "t": "jinbi", - "n": 10276.2 + "n": 1712.7 }, { "a": "attr", "t": "nexp", - "n": 5766.43 + "n": 961.07 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36735,17 +36735,17 @@ { "a": "attr", "t": "jinbi", - "n": 10305.6 + "n": 1717.6 }, { "a": "attr", "t": "nexp", - "n": 5773.22 + "n": 962.2 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36789,17 +36789,17 @@ { "a": "attr", "t": "jinbi", - "n": 10335 + "n": 1722.5 }, { "a": "attr", "t": "nexp", - "n": 5780 + "n": 963.33 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36843,17 +36843,17 @@ { "a": "attr", "t": "jinbi", - "n": 10364.4 + "n": 1727.4 }, { "a": "attr", "t": "nexp", - "n": 5786.79 + "n": 964.46 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36897,17 +36897,17 @@ { "a": "attr", "t": "jinbi", - "n": 10394.4 + "n": 1732.4 }, { "a": "attr", "t": "nexp", - "n": 5793.57 + "n": 965.6 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -36951,17 +36951,17 @@ { "a": "attr", "t": "jinbi", - "n": 10423.8 + "n": 1737.3 }, { "a": "attr", "t": "nexp", - "n": 5800.36 + "n": 966.73 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -37005,17 +37005,17 @@ { "a": "attr", "t": "jinbi", - "n": 10453.2 + "n": 1742.2 }, { "a": "attr", "t": "nexp", - "n": 5807.15 + "n": 967.86 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -37059,17 +37059,17 @@ { "a": "attr", "t": "jinbi", - "n": 10483.2 + "n": 1747.2 }, { "a": "attr", "t": "nexp", - "n": 5813.93 + "n": 968.99 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -37113,17 +37113,17 @@ { "a": "attr", "t": "jinbi", - "n": 10512.6 + "n": 1752.1 }, { "a": "attr", "t": "nexp", - "n": 5820.72 + "n": 970.12 }, { "a": "attr", "t": "weiwang", - "n": 37.8 + "n": 0.63 } ], "dlz": [], @@ -37167,17 +37167,17 @@ { "a": "attr", "t": "jinbi", - "n": 10542.6 + "n": 1757.1 }, { "a": "attr", "t": "nexp", - "n": 5827.5 + "n": 971.25 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37221,17 +37221,17 @@ { "a": "attr", "t": "jinbi", - "n": 10572.6 + "n": 1762.1 }, { "a": "attr", "t": "nexp", - "n": 5834.29 + "n": 972.38 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37275,17 +37275,17 @@ { "a": "attr", "t": "jinbi", - "n": 10602 + "n": 1767 }, { "a": "attr", "t": "nexp", - "n": 5841.08 + "n": 973.51 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37329,17 +37329,17 @@ { "a": "attr", "t": "jinbi", - "n": 10632 + "n": 1772 }, { "a": "attr", "t": "nexp", - "n": 5847.86 + "n": 974.64 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37383,17 +37383,17 @@ { "a": "attr", "t": "jinbi", - "n": 10662 + "n": 1777 }, { "a": "attr", "t": "nexp", - "n": 5854.65 + "n": 975.77 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37437,17 +37437,17 @@ { "a": "attr", "t": "jinbi", - "n": 10692 + "n": 1782 }, { "a": "attr", "t": "nexp", - "n": 5861.43 + "n": 976.91 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37491,17 +37491,17 @@ { "a": "attr", "t": "jinbi", - "n": 10722 + "n": 1787 }, { "a": "attr", "t": "nexp", - "n": 5868.22 + "n": 978.04 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37545,17 +37545,17 @@ { "a": "attr", "t": "jinbi", - "n": 10752 + "n": 1792 }, { "a": "attr", "t": "nexp", - "n": 5942.53 + "n": 990.42 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37599,17 +37599,17 @@ { "a": "attr", "t": "jinbi", - "n": 10782 + "n": 1797 }, { "a": "attr", "t": "nexp", - "n": 5949.4 + "n": 991.57 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37653,17 +37653,17 @@ { "a": "attr", "t": "jinbi", - "n": 10812 + "n": 1802 }, { "a": "attr", "t": "nexp", - "n": 5956.26 + "n": 992.71 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37707,17 +37707,17 @@ { "a": "attr", "t": "jinbi", - "n": 10842.6 + "n": 1807.1 }, { "a": "attr", "t": "nexp", - "n": 5963.13 + "n": 993.85 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37761,17 +37761,17 @@ { "a": "attr", "t": "jinbi", - "n": 10872.6 + "n": 1812.1 }, { "a": "attr", "t": "nexp", - "n": 5969.99 + "n": 995 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37815,17 +37815,17 @@ { "a": "attr", "t": "jinbi", - "n": 10902.6 + "n": 1817.1 }, { "a": "attr", "t": "nexp", - "n": 5976.85 + "n": 996.14 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37869,17 +37869,17 @@ { "a": "attr", "t": "jinbi", - "n": 10933.2 + "n": 1822.2 }, { "a": "attr", "t": "nexp", - "n": 5983.72 + "n": 997.29 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37923,17 +37923,17 @@ { "a": "attr", "t": "jinbi", - "n": 10963.2 + "n": 1827.2 }, { "a": "attr", "t": "nexp", - "n": 5990.58 + "n": 998.43 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -37977,17 +37977,17 @@ { "a": "attr", "t": "jinbi", - "n": 10993.8 + "n": 1832.3 }, { "a": "attr", "t": "nexp", - "n": 5997.45 + "n": 999.57 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38031,17 +38031,17 @@ { "a": "attr", "t": "jinbi", - "n": 11024.4 + "n": 1837.4 }, { "a": "attr", "t": "nexp", - "n": 6004.31 + "n": 1000.72 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38085,17 +38085,17 @@ { "a": "attr", "t": "jinbi", - "n": 11054.4 + "n": 1842.4 }, { "a": "attr", "t": "nexp", - "n": 6011.17 + "n": 1001.86 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38139,17 +38139,17 @@ { "a": "attr", "t": "jinbi", - "n": 11085 + "n": 1847.5 }, { "a": "attr", "t": "nexp", - "n": 6018.04 + "n": 1003.01 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38193,17 +38193,17 @@ { "a": "attr", "t": "jinbi", - "n": 11115.6 + "n": 1852.6 }, { "a": "attr", "t": "nexp", - "n": 6024.9 + "n": 1004.15 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38247,17 +38247,17 @@ { "a": "attr", "t": "jinbi", - "n": 11146.2 + "n": 1857.7 }, { "a": "attr", "t": "nexp", - "n": 6031.77 + "n": 1005.29 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38301,17 +38301,17 @@ { "a": "attr", "t": "jinbi", - "n": 11176.8 + "n": 1862.8 }, { "a": "attr", "t": "nexp", - "n": 6038.63 + "n": 1006.44 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38355,17 +38355,17 @@ { "a": "attr", "t": "jinbi", - "n": 11207.4 + "n": 1867.9 }, { "a": "attr", "t": "nexp", - "n": 6045.49 + "n": 1007.58 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38409,17 +38409,17 @@ { "a": "attr", "t": "jinbi", - "n": 11237.64 + "n": 1872.9 }, { "a": "attr", "t": "nexp", - "n": 6121.14 + "n": 1020.19 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38463,17 +38463,17 @@ { "a": "attr", "t": "jinbi", - "n": 11268.12 + "n": 1878 }, { "a": "attr", "t": "nexp", - "n": 6128.08 + "n": 1021.35 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38517,17 +38517,17 @@ { "a": "attr", "t": "jinbi", - "n": 11298.6 + "n": 1883.1 }, { "a": "attr", "t": "nexp", - "n": 6135.02 + "n": 1022.5 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38571,17 +38571,17 @@ { "a": "attr", "t": "jinbi", - "n": 11329.08 + "n": 1888.2 }, { "a": "attr", "t": "nexp", - "n": 6141.96 + "n": 1023.66 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38625,17 +38625,17 @@ { "a": "attr", "t": "jinbi", - "n": 11359.56 + "n": 1893.3 }, { "a": "attr", "t": "nexp", - "n": 6148.9 + "n": 1024.82 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38679,17 +38679,17 @@ { "a": "attr", "t": "jinbi", - "n": 11390.04 + "n": 1898.3 }, { "a": "attr", "t": "nexp", - "n": 6155.85 + "n": 1025.97 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38733,17 +38733,17 @@ { "a": "attr", "t": "jinbi", - "n": 11420.52 + "n": 1903.4 }, { "a": "attr", "t": "nexp", - "n": 6162.79 + "n": 1027.13 }, { "a": "attr", "t": "weiwang", - "n": 38.4 + "n": 0.64 } ], "dlz": [], @@ -38787,17 +38787,17 @@ { "a": "attr", "t": "jinbi", - "n": 11451 + "n": 1908.5 }, { "a": "attr", "t": "nexp", - "n": 6169.73 + "n": 1028.29 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -38841,17 +38841,17 @@ { "a": "attr", "t": "jinbi", - "n": 11481.48 + "n": 1913.6 }, { "a": "attr", "t": "nexp", - "n": 6176.67 + "n": 1029.45 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -38895,17 +38895,17 @@ { "a": "attr", "t": "jinbi", - "n": 11511.96 + "n": 1918.7 }, { "a": "attr", "t": "nexp", - "n": 6183.61 + "n": 1030.6 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -38949,17 +38949,17 @@ { "a": "attr", "t": "jinbi", - "n": 11542.44 + "n": 1923.7 }, { "a": "attr", "t": "nexp", - "n": 6190.56 + "n": 1031.76 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39003,17 +39003,17 @@ { "a": "attr", "t": "jinbi", - "n": 11572.92 + "n": 1928.8 }, { "a": "attr", "t": "nexp", - "n": 6197.5 + "n": 1032.92 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39057,17 +39057,17 @@ { "a": "attr", "t": "jinbi", - "n": 11603.4 + "n": 1933.9 }, { "a": "attr", "t": "nexp", - "n": 6204.44 + "n": 1034.07 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39111,17 +39111,17 @@ { "a": "attr", "t": "jinbi", - "n": 11633.88 + "n": 1939 }, { "a": "attr", "t": "nexp", - "n": 6211.38 + "n": 1035.23 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39165,17 +39165,17 @@ { "a": "attr", "t": "jinbi", - "n": 11664.36 + "n": 1944.1 }, { "a": "attr", "t": "nexp", - "n": 6218.32 + "n": 1036.39 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39219,17 +39219,17 @@ { "a": "attr", "t": "jinbi", - "n": 11694.84 + "n": 1949.1 }, { "a": "attr", "t": "nexp", - "n": 6225.27 + "n": 1037.54 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39273,17 +39273,17 @@ { "a": "attr", "t": "jinbi", - "n": 11725.32 + "n": 1954.2 }, { "a": "attr", "t": "nexp", - "n": 6232.21 + "n": 1038.7 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39327,17 +39327,17 @@ { "a": "attr", "t": "jinbi", - "n": 11755.8 + "n": 1959.3 }, { "a": "attr", "t": "nexp", - "n": 6239.15 + "n": 1039.86 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39381,17 +39381,17 @@ { "a": "attr", "t": "jinbi", - "n": 11786.28 + "n": 1964.4 }, { "a": "attr", "t": "nexp", - "n": 6246.09 + "n": 1041.02 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39435,17 +39435,17 @@ { "a": "attr", "t": "jinbi", - "n": 11816.76 + "n": 1969.5 }, { "a": "attr", "t": "nexp", - "n": 6253.03 + "n": 1042.17 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39489,17 +39489,17 @@ { "a": "attr", "t": "jinbi", - "n": 11847.24 + "n": 1974.5 }, { "a": "attr", "t": "nexp", - "n": 6259.98 + "n": 1043.33 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39543,17 +39543,17 @@ { "a": "attr", "t": "jinbi", - "n": 11877.72 + "n": 1979.6 }, { "a": "attr", "t": "nexp", - "n": 6266.92 + "n": 1044.49 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39597,17 +39597,17 @@ { "a": "attr", "t": "jinbi", - "n": 11908.2 + "n": 1984.7 }, { "a": "attr", "t": "nexp", - "n": 6273.86 + "n": 1045.64 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39651,17 +39651,17 @@ { "a": "attr", "t": "jinbi", - "n": 11938.68 + "n": 1989.8 }, { "a": "attr", "t": "nexp", - "n": 6280.8 + "n": 1046.8 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39705,17 +39705,17 @@ { "a": "attr", "t": "jinbi", - "n": 11969.16 + "n": 1994.9 }, { "a": "attr", "t": "nexp", - "n": 6287.74 + "n": 1047.96 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39759,17 +39759,17 @@ { "a": "attr", "t": "jinbi", - "n": 11999.64 + "n": 1999.9 }, { "a": "attr", "t": "nexp", - "n": 6294.69 + "n": 1049.11 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39813,17 +39813,17 @@ { "a": "attr", "t": "jinbi", - "n": 12030.12 + "n": 2005 }, { "a": "attr", "t": "nexp", - "n": 6301.63 + "n": 1050.27 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39867,17 +39867,17 @@ { "a": "attr", "t": "jinbi", - "n": 12060.6 + "n": 2010.1 }, { "a": "attr", "t": "nexp", - "n": 6308.57 + "n": 1051.43 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39921,17 +39921,17 @@ { "a": "attr", "t": "jinbi", - "n": 12091.08 + "n": 2015.2 }, { "a": "attr", "t": "nexp", - "n": 6315.51 + "n": 1052.59 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -39975,17 +39975,17 @@ { "a": "attr", "t": "jinbi", - "n": 12121.56 + "n": 2020.3 }, { "a": "attr", "t": "nexp", - "n": 6322.45 + "n": 1053.74 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40029,17 +40029,17 @@ { "a": "attr", "t": "jinbi", - "n": 12152.04 + "n": 2025.3 }, { "a": "attr", "t": "nexp", - "n": 6329.4 + "n": 1054.9 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40083,17 +40083,17 @@ { "a": "attr", "t": "jinbi", - "n": 12182.52 + "n": 2030.4 }, { "a": "attr", "t": "nexp", - "n": 6336.34 + "n": 1056.06 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40137,17 +40137,17 @@ { "a": "attr", "t": "jinbi", - "n": 12213 + "n": 2035.5 }, { "a": "attr", "t": "nexp", - "n": 6343.28 + "n": 1057.21 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40191,17 +40191,17 @@ { "a": "attr", "t": "jinbi", - "n": 12243.48 + "n": 2040.6 }, { "a": "attr", "t": "nexp", - "n": 6350.22 + "n": 1058.37 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40245,17 +40245,17 @@ { "a": "attr", "t": "jinbi", - "n": 12273.96 + "n": 2045.7 }, { "a": "attr", "t": "nexp", - "n": 6357.16 + "n": 1059.53 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40299,17 +40299,17 @@ { "a": "attr", "t": "jinbi", - "n": 12304.44 + "n": 2050.7 }, { "a": "attr", "t": "nexp", - "n": 6364.11 + "n": 1060.68 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40353,17 +40353,17 @@ { "a": "attr", "t": "jinbi", - "n": 12334.92 + "n": 2055.8 }, { "a": "attr", "t": "nexp", - "n": 6371.05 + "n": 1061.84 }, { "a": "attr", "t": "weiwang", - "n": 39 + "n": 0.65 } ], "dlz": [], @@ -40407,17 +40407,17 @@ { "a": "attr", "t": "jinbi", - "n": 12365.4 + "n": 2060.9 }, { "a": "attr", "t": "nexp", - "n": 6377.99 + "n": 1063 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40461,17 +40461,17 @@ { "a": "attr", "t": "jinbi", - "n": 12395.88 + "n": 2066 }, { "a": "attr", "t": "nexp", - "n": 6384.93 + "n": 1064.16 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40515,17 +40515,17 @@ { "a": "attr", "t": "jinbi", - "n": 12426.36 + "n": 2071.1 }, { "a": "attr", "t": "nexp", - "n": 6391.87 + "n": 1065.31 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40569,17 +40569,17 @@ { "a": "attr", "t": "jinbi", - "n": 12456.84 + "n": 2076.1 }, { "a": "attr", "t": "nexp", - "n": 6398.82 + "n": 1066.47 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40623,17 +40623,17 @@ { "a": "attr", "t": "jinbi", - "n": 12487.32 + "n": 2081.2 }, { "a": "attr", "t": "nexp", - "n": 6405.76 + "n": 1067.63 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40677,17 +40677,17 @@ { "a": "attr", "t": "jinbi", - "n": 12517.8 + "n": 2086.3 }, { "a": "attr", "t": "nexp", - "n": 6412.7 + "n": 1068.78 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40731,17 +40731,17 @@ { "a": "attr", "t": "jinbi", - "n": 12548.28 + "n": 2091.4 }, { "a": "attr", "t": "nexp", - "n": 6419.64 + "n": 1069.94 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40785,17 +40785,17 @@ { "a": "attr", "t": "jinbi", - "n": 12578.76 + "n": 2096.5 }, { "a": "attr", "t": "nexp", - "n": 6426.58 + "n": 1071.1 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40839,17 +40839,17 @@ { "a": "attr", "t": "jinbi", - "n": 12609.24 + "n": 2101.5 }, { "a": "attr", "t": "nexp", - "n": 6433.53 + "n": 1072.25 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40893,17 +40893,17 @@ { "a": "attr", "t": "jinbi", - "n": 12639.72 + "n": 2106.6 }, { "a": "attr", "t": "nexp", - "n": 6440.47 + "n": 1073.41 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -40947,17 +40947,17 @@ { "a": "attr", "t": "jinbi", - "n": 12670.2 + "n": 2111.7 }, { "a": "attr", "t": "nexp", - "n": 6447.41 + "n": 1074.57 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41001,17 +41001,17 @@ { "a": "attr", "t": "jinbi", - "n": 12700.68 + "n": 2116.8 }, { "a": "attr", "t": "nexp", - "n": 6454.35 + "n": 1075.73 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41055,17 +41055,17 @@ { "a": "attr", "t": "jinbi", - "n": 12731.16 + "n": 2121.9 }, { "a": "attr", "t": "nexp", - "n": 6461.29 + "n": 1076.88 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41109,17 +41109,17 @@ { "a": "attr", "t": "jinbi", - "n": 12761.64 + "n": 2126.9 }, { "a": "attr", "t": "nexp", - "n": 6468.24 + "n": 1078.04 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41163,17 +41163,17 @@ { "a": "attr", "t": "jinbi", - "n": 12792.12 + "n": 2132 }, { "a": "attr", "t": "nexp", - "n": 6475.18 + "n": 1079.2 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41217,17 +41217,17 @@ { "a": "attr", "t": "jinbi", - "n": 12822.6 + "n": 2137.1 }, { "a": "attr", "t": "nexp", - "n": 6482.12 + "n": 1080.35 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41271,17 +41271,17 @@ { "a": "attr", "t": "jinbi", - "n": 12853.08 + "n": 2142.2 }, { "a": "attr", "t": "nexp", - "n": 6489.06 + "n": 1081.51 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41325,17 +41325,17 @@ { "a": "attr", "t": "jinbi", - "n": 12883.56 + "n": 2147.3 }, { "a": "attr", "t": "nexp", - "n": 6496 + "n": 1082.67 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41379,17 +41379,17 @@ { "a": "attr", "t": "jinbi", - "n": 12914.04 + "n": 2152.3 }, { "a": "attr", "t": "nexp", - "n": 6502.95 + "n": 1083.82 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41433,17 +41433,17 @@ { "a": "attr", "t": "jinbi", - "n": 12944.52 + "n": 2157.4 }, { "a": "attr", "t": "nexp", - "n": 6509.89 + "n": 1084.98 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41487,17 +41487,17 @@ { "a": "attr", "t": "jinbi", - "n": 12975 + "n": 2162.5 }, { "a": "attr", "t": "nexp", - "n": 6516.83 + "n": 1086.14 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41541,17 +41541,17 @@ { "a": "attr", "t": "jinbi", - "n": 13005.48 + "n": 2167.6 }, { "a": "attr", "t": "nexp", - "n": 6523.77 + "n": 1087.3 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41595,17 +41595,17 @@ { "a": "attr", "t": "jinbi", - "n": 13035.96 + "n": 2172.7 }, { "a": "attr", "t": "nexp", - "n": 6530.71 + "n": 1088.45 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41649,17 +41649,17 @@ { "a": "attr", "t": "jinbi", - "n": 13066.44 + "n": 2177.7 }, { "a": "attr", "t": "nexp", - "n": 6537.66 + "n": 1089.61 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41703,17 +41703,17 @@ { "a": "attr", "t": "jinbi", - "n": 13096.92 + "n": 2182.8 }, { "a": "attr", "t": "nexp", - "n": 6544.6 + "n": 1090.77 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41757,17 +41757,17 @@ { "a": "attr", "t": "jinbi", - "n": 13127.4 + "n": 2187.9 }, { "a": "attr", "t": "nexp", - "n": 6551.54 + "n": 1091.92 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41811,17 +41811,17 @@ { "a": "attr", "t": "jinbi", - "n": 13157.88 + "n": 2193 }, { "a": "attr", "t": "nexp", - "n": 6558.48 + "n": 1093.08 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41865,17 +41865,17 @@ { "a": "attr", "t": "jinbi", - "n": 13188.36 + "n": 2198.1 }, { "a": "attr", "t": "nexp", - "n": 6565.42 + "n": 1094.24 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41919,17 +41919,17 @@ { "a": "attr", "t": "jinbi", - "n": 13218.84 + "n": 2203.1 }, { "a": "attr", "t": "nexp", - "n": 6572.37 + "n": 1095.39 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -41973,17 +41973,17 @@ { "a": "attr", "t": "jinbi", - "n": 13249.32 + "n": 2208.2 }, { "a": "attr", "t": "nexp", - "n": 6579.31 + "n": 1096.55 }, { "a": "attr", "t": "weiwang", - "n": 39.6 + "n": 0.66 } ], "dlz": [], @@ -42027,17 +42027,17 @@ { "a": "attr", "t": "jinbi", - "n": 13279.8 + "n": 2213.3 }, { "a": "attr", "t": "nexp", - "n": 6586.25 + "n": 1097.71 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42081,17 +42081,17 @@ { "a": "attr", "t": "jinbi", - "n": 13310.28 + "n": 2218.4 }, { "a": "attr", "t": "nexp", - "n": 6593.19 + "n": 1098.87 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42135,17 +42135,17 @@ { "a": "attr", "t": "jinbi", - "n": 13340.76 + "n": 2223.5 }, { "a": "attr", "t": "nexp", - "n": 6600.13 + "n": 1100.02 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42189,17 +42189,17 @@ { "a": "attr", "t": "jinbi", - "n": 13371.24 + "n": 2228.5 }, { "a": "attr", "t": "nexp", - "n": 6607.08 + "n": 1101.18 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42243,17 +42243,17 @@ { "a": "attr", "t": "jinbi", - "n": 13401.72 + "n": 2233.6 }, { "a": "attr", "t": "nexp", - "n": 6614.02 + "n": 1102.34 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42297,17 +42297,17 @@ { "a": "attr", "t": "jinbi", - "n": 13432.2 + "n": 2238.7 }, { "a": "attr", "t": "nexp", - "n": 6620.96 + "n": 1103.49 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42351,17 +42351,17 @@ { "a": "attr", "t": "jinbi", - "n": 13462.68 + "n": 2243.8 }, { "a": "attr", "t": "nexp", - "n": 6627.9 + "n": 1104.65 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42405,17 +42405,17 @@ { "a": "attr", "t": "jinbi", - "n": 13493.16 + "n": 2248.9 }, { "a": "attr", "t": "nexp", - "n": 6634.84 + "n": 1105.81 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42459,17 +42459,17 @@ { "a": "attr", "t": "jinbi", - "n": 13523.64 + "n": 2253.9 }, { "a": "attr", "t": "nexp", - "n": 6641.79 + "n": 1106.96 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42513,17 +42513,17 @@ { "a": "attr", "t": "jinbi", - "n": 13554.12 + "n": 2259 }, { "a": "attr", "t": "nexp", - "n": 6648.73 + "n": 1108.12 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42567,17 +42567,17 @@ { "a": "attr", "t": "jinbi", - "n": 13584.6 + "n": 2264.1 }, { "a": "attr", "t": "nexp", - "n": 6655.67 + "n": 1109.28 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42621,17 +42621,17 @@ { "a": "attr", "t": "jinbi", - "n": 13615.08 + "n": 2269.2 }, { "a": "attr", "t": "nexp", - "n": 6662.61 + "n": 1110.44 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42675,17 +42675,17 @@ { "a": "attr", "t": "jinbi", - "n": 13645.56 + "n": 2274.3 }, { "a": "attr", "t": "nexp", - "n": 6669.55 + "n": 1111.59 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42729,17 +42729,17 @@ { "a": "attr", "t": "jinbi", - "n": 13676.04 + "n": 2279.3 }, { "a": "attr", "t": "nexp", - "n": 6676.5 + "n": 1112.75 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42783,17 +42783,17 @@ { "a": "attr", "t": "jinbi", - "n": 13706.52 + "n": 2284.4 }, { "a": "attr", "t": "nexp", - "n": 6683.44 + "n": 1113.91 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42837,17 +42837,17 @@ { "a": "attr", "t": "jinbi", - "n": 13737 + "n": 2289.5 }, { "a": "attr", "t": "nexp", - "n": 6690.38 + "n": 1115.06 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42891,17 +42891,17 @@ { "a": "attr", "t": "jinbi", - "n": 13767.48 + "n": 2294.6 }, { "a": "attr", "t": "nexp", - "n": 6697.32 + "n": 1116.22 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42945,17 +42945,17 @@ { "a": "attr", "t": "jinbi", - "n": 13797.96 + "n": 2299.7 }, { "a": "attr", "t": "nexp", - "n": 6704.26 + "n": 1117.38 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -42999,17 +42999,17 @@ { "a": "attr", "t": "jinbi", - "n": 13828.44 + "n": 2304.7 }, { "a": "attr", "t": "nexp", - "n": 6711.21 + "n": 1118.53 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43053,17 +43053,17 @@ { "a": "attr", "t": "jinbi", - "n": 13858.92 + "n": 2309.8 }, { "a": "attr", "t": "nexp", - "n": 6718.15 + "n": 1119.69 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43107,17 +43107,17 @@ { "a": "attr", "t": "jinbi", - "n": 13889.4 + "n": 2314.9 }, { "a": "attr", "t": "nexp", - "n": 6725.09 + "n": 1120.85 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43161,17 +43161,17 @@ { "a": "attr", "t": "jinbi", - "n": 13919.88 + "n": 2320 }, { "a": "attr", "t": "nexp", - "n": 6732.03 + "n": 1122.01 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43215,17 +43215,17 @@ { "a": "attr", "t": "jinbi", - "n": 13950.36 + "n": 2325.1 }, { "a": "attr", "t": "nexp", - "n": 6738.97 + "n": 1123.16 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43269,17 +43269,17 @@ { "a": "attr", "t": "jinbi", - "n": 13980.84 + "n": 2330.1 }, { "a": "attr", "t": "nexp", - "n": 6745.92 + "n": 1124.32 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43323,17 +43323,17 @@ { "a": "attr", "t": "jinbi", - "n": 14011.32 + "n": 2335.2 }, { "a": "attr", "t": "nexp", - "n": 6752.86 + "n": 1125.48 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43377,17 +43377,17 @@ { "a": "attr", "t": "jinbi", - "n": 14041.8 + "n": 2340.3 }, { "a": "attr", "t": "nexp", - "n": 6759.8 + "n": 1126.63 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43431,17 +43431,17 @@ { "a": "attr", "t": "jinbi", - "n": 14072.28 + "n": 2345.4 }, { "a": "attr", "t": "nexp", - "n": 6766.74 + "n": 1127.79 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43485,17 +43485,17 @@ { "a": "attr", "t": "jinbi", - "n": 14102.76 + "n": 2350.5 }, { "a": "attr", "t": "nexp", - "n": 6773.68 + "n": 1128.95 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43539,17 +43539,17 @@ { "a": "attr", "t": "jinbi", - "n": 14133.24 + "n": 2355.5 }, { "a": "attr", "t": "nexp", - "n": 6780.63 + "n": 1130.1 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43593,17 +43593,17 @@ { "a": "attr", "t": "jinbi", - "n": 14163.72 + "n": 2360.6 }, { "a": "attr", "t": "nexp", - "n": 6787.57 + "n": 1131.26 }, { "a": "attr", "t": "weiwang", - "n": 40.2 + "n": 0.67 } ], "dlz": [], @@ -43647,17 +43647,17 @@ { "a": "attr", "t": "jinbi", - "n": 14194.2 + "n": 2365.7 }, { "a": "attr", "t": "nexp", - "n": 6794.51 + "n": 1132.42 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43701,17 +43701,17 @@ { "a": "attr", "t": "jinbi", - "n": 14224.68 + "n": 2370.8 }, { "a": "attr", "t": "nexp", - "n": 6801.45 + "n": 1133.58 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43755,17 +43755,17 @@ { "a": "attr", "t": "jinbi", - "n": 14255.16 + "n": 2375.9 }, { "a": "attr", "t": "nexp", - "n": 6808.39 + "n": 1134.73 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43809,17 +43809,17 @@ { "a": "attr", "t": "jinbi", - "n": 14285.64 + "n": 2380.9 }, { "a": "attr", "t": "nexp", - "n": 6815.34 + "n": 1135.89 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43863,17 +43863,17 @@ { "a": "attr", "t": "jinbi", - "n": 14316.12 + "n": 2386 }, { "a": "attr", "t": "nexp", - "n": 6822.28 + "n": 1137.05 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43917,17 +43917,17 @@ { "a": "attr", "t": "jinbi", - "n": 14346.6 + "n": 2391.1 }, { "a": "attr", "t": "nexp", - "n": 6829.22 + "n": 1138.2 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -43971,17 +43971,17 @@ { "a": "attr", "t": "jinbi", - "n": 14377.08 + "n": 2396.2 }, { "a": "attr", "t": "nexp", - "n": 6836.16 + "n": 1139.36 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44025,17 +44025,17 @@ { "a": "attr", "t": "jinbi", - "n": 14407.56 + "n": 2401.3 }, { "a": "attr", "t": "nexp", - "n": 6843.1 + "n": 1140.52 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44079,17 +44079,17 @@ { "a": "attr", "t": "jinbi", - "n": 14438.04 + "n": 2406.3 }, { "a": "attr", "t": "nexp", - "n": 6850.05 + "n": 1141.67 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44133,17 +44133,17 @@ { "a": "attr", "t": "jinbi", - "n": 14468.52 + "n": 2411.4 }, { "a": "attr", "t": "nexp", - "n": 6856.99 + "n": 1142.83 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44187,17 +44187,17 @@ { "a": "attr", "t": "jinbi", - "n": 14499 + "n": 2416.5 }, { "a": "attr", "t": "nexp", - "n": 6863.93 + "n": 1143.99 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44241,17 +44241,17 @@ { "a": "attr", "t": "jinbi", - "n": 14529.48 + "n": 2421.6 }, { "a": "attr", "t": "nexp", - "n": 6870.87 + "n": 1145.15 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44295,17 +44295,17 @@ { "a": "attr", "t": "jinbi", - "n": 14559.96 + "n": 2426.7 }, { "a": "attr", "t": "nexp", - "n": 6877.81 + "n": 1146.3 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44349,17 +44349,17 @@ { "a": "attr", "t": "jinbi", - "n": 14590.44 + "n": 2431.7 }, { "a": "attr", "t": "nexp", - "n": 6884.76 + "n": 1147.46 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44403,17 +44403,17 @@ { "a": "attr", "t": "jinbi", - "n": 14620.92 + "n": 2436.8 }, { "a": "attr", "t": "nexp", - "n": 6891.7 + "n": 1148.62 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44457,17 +44457,17 @@ { "a": "attr", "t": "jinbi", - "n": 14651.4 + "n": 2441.9 }, { "a": "attr", "t": "nexp", - "n": 6898.64 + "n": 1149.77 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44511,17 +44511,17 @@ { "a": "attr", "t": "jinbi", - "n": 14681.88 + "n": 2447 }, { "a": "attr", "t": "nexp", - "n": 6905.58 + "n": 1150.93 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44565,17 +44565,17 @@ { "a": "attr", "t": "jinbi", - "n": 14712.36 + "n": 2452.1 }, { "a": "attr", "t": "nexp", - "n": 6912.52 + "n": 1152.09 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44619,17 +44619,17 @@ { "a": "attr", "t": "jinbi", - "n": 14742.84 + "n": 2457.1 }, { "a": "attr", "t": "nexp", - "n": 6919.47 + "n": 1153.24 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44673,17 +44673,17 @@ { "a": "attr", "t": "jinbi", - "n": 14773.32 + "n": 2462.2 }, { "a": "attr", "t": "nexp", - "n": 6926.41 + "n": 1154.4 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44727,17 +44727,17 @@ { "a": "attr", "t": "jinbi", - "n": 14803.8 + "n": 2467.3 }, { "a": "attr", "t": "nexp", - "n": 6933.35 + "n": 1155.56 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44781,17 +44781,17 @@ { "a": "attr", "t": "jinbi", - "n": 14834.28 + "n": 2472.4 }, { "a": "attr", "t": "nexp", - "n": 6940.29 + "n": 1156.72 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44835,17 +44835,17 @@ { "a": "attr", "t": "jinbi", - "n": 14864.76 + "n": 2477.5 }, { "a": "attr", "t": "nexp", - "n": 6947.23 + "n": 1157.87 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44889,17 +44889,17 @@ { "a": "attr", "t": "jinbi", - "n": 14895.24 + "n": 2482.5 }, { "a": "attr", "t": "nexp", - "n": 6954.18 + "n": 1159.03 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44943,17 +44943,17 @@ { "a": "attr", "t": "jinbi", - "n": 14925.72 + "n": 2487.6 }, { "a": "attr", "t": "nexp", - "n": 6961.12 + "n": 1160.19 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -44997,17 +44997,17 @@ { "a": "attr", "t": "jinbi", - "n": 14956.2 + "n": 2492.7 }, { "a": "attr", "t": "nexp", - "n": 6968.06 + "n": 1161.34 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -45051,17 +45051,17 @@ { "a": "attr", "t": "jinbi", - "n": 14986.68 + "n": 2497.8 }, { "a": "attr", "t": "nexp", - "n": 6975 + "n": 1162.5 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -45105,17 +45105,17 @@ { "a": "attr", "t": "jinbi", - "n": 15017.16 + "n": 2502.9 }, { "a": "attr", "t": "nexp", - "n": 6981.94 + "n": 1163.66 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -45159,17 +45159,17 @@ { "a": "attr", "t": "jinbi", - "n": 15047.64 + "n": 2507.9 }, { "a": "attr", "t": "nexp", - "n": 6988.89 + "n": 1164.81 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -45213,17 +45213,17 @@ { "a": "attr", "t": "jinbi", - "n": 15078.12 + "n": 2513 }, { "a": "attr", "t": "nexp", - "n": 6995.83 + "n": 1165.97 }, { "a": "attr", "t": "weiwang", - "n": 40.8 + "n": 0.68 } ], "dlz": [], @@ -45267,17 +45267,17 @@ { "a": "attr", "t": "jinbi", - "n": 15108.6 + "n": 2518.1 }, { "a": "attr", "t": "nexp", - "n": 7002.77 + "n": 1167.13 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45321,17 +45321,17 @@ { "a": "attr", "t": "jinbi", - "n": 15139.08 + "n": 2523.2 }, { "a": "attr", "t": "nexp", - "n": 7009.71 + "n": 1168.29 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45375,17 +45375,17 @@ { "a": "attr", "t": "jinbi", - "n": 15169.56 + "n": 2528.3 }, { "a": "attr", "t": "nexp", - "n": 7016.65 + "n": 1169.44 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45429,17 +45429,17 @@ { "a": "attr", "t": "jinbi", - "n": 15200.04 + "n": 2533.3 }, { "a": "attr", "t": "nexp", - "n": 7023.6 + "n": 1170.6 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45483,17 +45483,17 @@ { "a": "attr", "t": "jinbi", - "n": 15230.52 + "n": 2538.4 }, { "a": "attr", "t": "nexp", - "n": 7030.54 + "n": 1171.76 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45537,17 +45537,17 @@ { "a": "attr", "t": "jinbi", - "n": 15261 + "n": 2543.5 }, { "a": "attr", "t": "nexp", - "n": 7037.48 + "n": 1172.91 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45591,17 +45591,17 @@ { "a": "attr", "t": "jinbi", - "n": 15291.48 + "n": 2548.6 }, { "a": "attr", "t": "nexp", - "n": 7044.42 + "n": 1174.07 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45645,17 +45645,17 @@ { "a": "attr", "t": "jinbi", - "n": 15321.96 + "n": 2553.7 }, { "a": "attr", "t": "nexp", - "n": 7051.36 + "n": 1175.23 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45699,17 +45699,17 @@ { "a": "attr", "t": "jinbi", - "n": 15352.44 + "n": 2558.7 }, { "a": "attr", "t": "nexp", - "n": 7058.31 + "n": 1176.38 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45753,17 +45753,17 @@ { "a": "attr", "t": "jinbi", - "n": 15382.92 + "n": 2563.8 }, { "a": "attr", "t": "nexp", - "n": 7065.25 + "n": 1177.54 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45807,17 +45807,17 @@ { "a": "attr", "t": "jinbi", - "n": 15413.4 + "n": 2568.9 }, { "a": "attr", "t": "nexp", - "n": 7072.19 + "n": 1178.7 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45861,17 +45861,17 @@ { "a": "attr", "t": "jinbi", - "n": 15443.88 + "n": 2574 }, { "a": "attr", "t": "nexp", - "n": 7079.13 + "n": 1179.86 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45915,17 +45915,17 @@ { "a": "attr", "t": "jinbi", - "n": 15474.36 + "n": 2579.1 }, { "a": "attr", "t": "nexp", - "n": 7086.07 + "n": 1181.01 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -45969,17 +45969,17 @@ { "a": "attr", "t": "jinbi", - "n": 15504.84 + "n": 2584.1 }, { "a": "attr", "t": "nexp", - "n": 7093.02 + "n": 1182.17 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46023,17 +46023,17 @@ { "a": "attr", "t": "jinbi", - "n": 15535.32 + "n": 2589.2 }, { "a": "attr", "t": "nexp", - "n": 7099.96 + "n": 1183.33 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46077,17 +46077,17 @@ { "a": "attr", "t": "jinbi", - "n": 15565.8 + "n": 2594.3 }, { "a": "attr", "t": "nexp", - "n": 7106.9 + "n": 1184.48 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46131,17 +46131,17 @@ { "a": "attr", "t": "jinbi", - "n": 15596.28 + "n": 2599.4 }, { "a": "attr", "t": "nexp", - "n": 7113.84 + "n": 1185.64 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46185,17 +46185,17 @@ { "a": "attr", "t": "jinbi", - "n": 15626.76 + "n": 2604.5 }, { "a": "attr", "t": "nexp", - "n": 7120.78 + "n": 1186.8 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46239,17 +46239,17 @@ { "a": "attr", "t": "jinbi", - "n": 15657.24 + "n": 2609.5 }, { "a": "attr", "t": "nexp", - "n": 7127.73 + "n": 1187.95 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46293,17 +46293,17 @@ { "a": "attr", "t": "jinbi", - "n": 15687.72 + "n": 2614.6 }, { "a": "attr", "t": "nexp", - "n": 7134.67 + "n": 1189.11 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46347,17 +46347,17 @@ { "a": "attr", "t": "jinbi", - "n": 15718.2 + "n": 2619.7 }, { "a": "attr", "t": "nexp", - "n": 7141.61 + "n": 1190.27 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46401,17 +46401,17 @@ { "a": "attr", "t": "jinbi", - "n": 15748.68 + "n": 2624.8 }, { "a": "attr", "t": "nexp", - "n": 7148.55 + "n": 1191.43 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46455,17 +46455,17 @@ { "a": "attr", "t": "jinbi", - "n": 15779.16 + "n": 2629.9 }, { "a": "attr", "t": "nexp", - "n": 7155.49 + "n": 1192.58 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46509,17 +46509,17 @@ { "a": "attr", "t": "jinbi", - "n": 15809.64 + "n": 2634.9 }, { "a": "attr", "t": "nexp", - "n": 7162.44 + "n": 1193.74 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46563,17 +46563,17 @@ { "a": "attr", "t": "jinbi", - "n": 15840.12 + "n": 2640 }, { "a": "attr", "t": "nexp", - "n": 7169.38 + "n": 1194.9 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46617,17 +46617,17 @@ { "a": "attr", "t": "jinbi", - "n": 15870.6 + "n": 2645.1 }, { "a": "attr", "t": "nexp", - "n": 7176.32 + "n": 1196.05 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46671,17 +46671,17 @@ { "a": "attr", "t": "jinbi", - "n": 15901.08 + "n": 2650.2 }, { "a": "attr", "t": "nexp", - "n": 7183.26 + "n": 1197.21 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46725,17 +46725,17 @@ { "a": "attr", "t": "jinbi", - "n": 15931.56 + "n": 2655.3 }, { "a": "attr", "t": "nexp", - "n": 7190.2 + "n": 1198.37 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46779,17 +46779,17 @@ { "a": "attr", "t": "jinbi", - "n": 15962.04 + "n": 2660.3 }, { "a": "attr", "t": "nexp", - "n": 7197.15 + "n": 1199.52 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46833,17 +46833,17 @@ { "a": "attr", "t": "jinbi", - "n": 15992.52 + "n": 2665.4 }, { "a": "attr", "t": "nexp", - "n": 7204.09 + "n": 1200.68 }, { "a": "attr", "t": "weiwang", - "n": 41.4 + "n": 0.69 } ], "dlz": [], @@ -46887,17 +46887,17 @@ { "a": "attr", "t": "jinbi", - "n": 16023 + "n": 2670.5 }, { "a": "attr", "t": "nexp", - "n": 7211.03 + "n": 1201.84 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -46941,17 +46941,17 @@ { "a": "attr", "t": "jinbi", - "n": 16053.48 + "n": 2675.6 }, { "a": "attr", "t": "nexp", - "n": 7217.97 + "n": 1203 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -46995,17 +46995,17 @@ { "a": "attr", "t": "jinbi", - "n": 16083.96 + "n": 2680.7 }, { "a": "attr", "t": "nexp", - "n": 7224.91 + "n": 1204.15 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47049,17 +47049,17 @@ { "a": "attr", "t": "jinbi", - "n": 16114.44 + "n": 2685.7 }, { "a": "attr", "t": "nexp", - "n": 7231.86 + "n": 1205.31 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47103,17 +47103,17 @@ { "a": "attr", "t": "jinbi", - "n": 16144.92 + "n": 2690.8 }, { "a": "attr", "t": "nexp", - "n": 7238.8 + "n": 1206.47 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47157,17 +47157,17 @@ { "a": "attr", "t": "jinbi", - "n": 16175.4 + "n": 2695.9 }, { "a": "attr", "t": "nexp", - "n": 7245.74 + "n": 1207.62 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47211,17 +47211,17 @@ { "a": "attr", "t": "jinbi", - "n": 16205.88 + "n": 2701 }, { "a": "attr", "t": "nexp", - "n": 7252.68 + "n": 1208.78 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47265,17 +47265,17 @@ { "a": "attr", "t": "jinbi", - "n": 16236.36 + "n": 2706.1 }, { "a": "attr", "t": "nexp", - "n": 7259.62 + "n": 1209.94 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47319,17 +47319,17 @@ { "a": "attr", "t": "jinbi", - "n": 16266.84 + "n": 2711.1 }, { "a": "attr", "t": "nexp", - "n": 7266.57 + "n": 1211.09 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47373,17 +47373,17 @@ { "a": "attr", "t": "jinbi", - "n": 16297.32 + "n": 2716.2 }, { "a": "attr", "t": "nexp", - "n": 7273.51 + "n": 1212.25 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47427,17 +47427,17 @@ { "a": "attr", "t": "jinbi", - "n": 16327.8 + "n": 2721.3 }, { "a": "attr", "t": "nexp", - "n": 7280.45 + "n": 1213.41 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47481,17 +47481,17 @@ { "a": "attr", "t": "jinbi", - "n": 16358.28 + "n": 2726.4 }, { "a": "attr", "t": "nexp", - "n": 7287.39 + "n": 1214.57 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47535,17 +47535,17 @@ { "a": "attr", "t": "jinbi", - "n": 16388.76 + "n": 2731.5 }, { "a": "attr", "t": "nexp", - "n": 7294.33 + "n": 1215.72 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47589,17 +47589,17 @@ { "a": "attr", "t": "jinbi", - "n": 16419.24 + "n": 2736.5 }, { "a": "attr", "t": "nexp", - "n": 7301.28 + "n": 1216.88 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47643,17 +47643,17 @@ { "a": "attr", "t": "jinbi", - "n": 16449.72 + "n": 2741.6 }, { "a": "attr", "t": "nexp", - "n": 7308.22 + "n": 1218.04 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47697,17 +47697,17 @@ { "a": "attr", "t": "jinbi", - "n": 16480.2 + "n": 2746.7 }, { "a": "attr", "t": "nexp", - "n": 7315.16 + "n": 1219.19 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47751,17 +47751,17 @@ { "a": "attr", "t": "jinbi", - "n": 16510.68 + "n": 2751.8 }, { "a": "attr", "t": "nexp", - "n": 7322.1 + "n": 1220.35 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47805,17 +47805,17 @@ { "a": "attr", "t": "jinbi", - "n": 16541.16 + "n": 2756.9 }, { "a": "attr", "t": "nexp", - "n": 7329.04 + "n": 1221.51 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47859,17 +47859,17 @@ { "a": "attr", "t": "jinbi", - "n": 16571.64 + "n": 2761.9 }, { "a": "attr", "t": "nexp", - "n": 7335.99 + "n": 1222.66 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47913,17 +47913,17 @@ { "a": "attr", "t": "jinbi", - "n": 16602.12 + "n": 2767 }, { "a": "attr", "t": "nexp", - "n": 7342.93 + "n": 1223.82 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -47967,17 +47967,17 @@ { "a": "attr", "t": "jinbi", - "n": 16632.6 + "n": 2772.1 }, { "a": "attr", "t": "nexp", - "n": 7349.87 + "n": 1224.98 }, { "a": "attr", "t": "weiwang", - "n": 42 + "n": 0.7 } ], "dlz": [], @@ -48021,17 +48021,17 @@ { "a": "attr", "t": "jinbi", - "n": 16663.08 + "n": 2777.2 }, { "a": "attr", "t": "nexp", - "n": 7356.81 + "n": 1226.14 }, { "a": "attr", "t": "weiwang", - "n": 42.6 + "n": 0.71 } ], "dlz": [], @@ -48075,17 +48075,17 @@ { "a": "attr", "t": "jinbi", - "n": 16693.56 + "n": 2782.3 }, { "a": "attr", "t": "nexp", - "n": 7363.75 + "n": 1227.29 }, { "a": "attr", "t": "weiwang", - "n": 42.6 + "n": 0.71 } ], "dlz": [], @@ -48129,17 +48129,17 @@ { "a": "attr", "t": "jinbi", - "n": 16724.04 + "n": 2787.3 }, { "a": "attr", "t": "nexp", - "n": 7370.7 + "n": 1228.45 }, { "a": "attr", "t": "weiwang", - "n": 42.6 + "n": 0.71 } ], "dlz": [], @@ -48183,17 +48183,17 @@ { "a": "attr", "t": "jinbi", - "n": 16754.52 + "n": 2792.4 }, { "a": "attr", "t": "nexp", - "n": 7377.64 + "n": 1229.61 }, { "a": "attr", "t": "weiwang", - "n": 42.6 + "n": 0.71 } ], "dlz": [], @@ -48237,17 +48237,17 @@ { "a": "attr", "t": "jinbi", - "n": 16785 + "n": 2797.5 }, { "a": "attr", "t": "nexp", - "n": 7384.58 + "n": 1230.76 }, { "a": "attr", "t": "weiwang", - "n": 42.6 + "n": 0.71 } ], "dlz": [], @@ -48291,17 +48291,17 @@ { "a": "attr", "t": "jinbi", - "n": 16815.48 + "n": 2802.6 }, { "a": "attr", "t": "nexp", - "n": 7391.52 + "n": 1231.92 }, { "a": "attr", "t": "weiwang", - "n": 43.2 + "n": 0.72 } ], "dlz": [], @@ -48345,17 +48345,17 @@ { "a": "attr", "t": "jinbi", - "n": 16845.96 + "n": 2807.7 }, { "a": "attr", "t": "nexp", - "n": 7398.46 + "n": 1233.08 }, { "a": "attr", "t": "weiwang", - "n": 43.2 + "n": 0.72 } ], "dlz": [], @@ -48399,17 +48399,17 @@ { "a": "attr", "t": "jinbi", - "n": 16876.44 + "n": 2812.7 }, { "a": "attr", "t": "nexp", - "n": 7405.41 + "n": 1234.23 }, { "a": "attr", "t": "weiwang", - "n": 43.2 + "n": 0.72 } ], "dlz": [], @@ -48453,17 +48453,17 @@ { "a": "attr", "t": "jinbi", - "n": 16906.92 + "n": 2817.8 }, { "a": "attr", "t": "nexp", - "n": 7412.35 + "n": 1235.39 }, { "a": "attr", "t": "weiwang", - "n": 43.2 + "n": 0.72 } ], "dlz": [], @@ -48507,17 +48507,17 @@ { "a": "attr", "t": "jinbi", - "n": 16937.4 + "n": 2822.9 }, { "a": "attr", "t": "nexp", - "n": 7419.29 + "n": 1236.55 }, { "a": "attr", "t": "weiwang", - "n": 43.2 + "n": 0.72 } ], "dlz": [], @@ -48561,17 +48561,17 @@ { "a": "attr", "t": "jinbi", - "n": 16967.88 + "n": 2828 }, { "a": "attr", "t": "nexp", - "n": 7426.23 + "n": 1237.71 }, { "a": "attr", "t": "weiwang", - "n": 43.8 + "n": 0.73 } ], "dlz": [], @@ -48615,17 +48615,17 @@ { "a": "attr", "t": "jinbi", - "n": 16998.36 + "n": 2833.1 }, { "a": "attr", "t": "nexp", - "n": 7433.17 + "n": 1238.86 }, { "a": "attr", "t": "weiwang", - "n": 43.8 + "n": 0.73 } ], "dlz": [], @@ -48669,17 +48669,17 @@ { "a": "attr", "t": "jinbi", - "n": 17028.84 + "n": 2838.1 }, { "a": "attr", "t": "nexp", - "n": 7440.12 + "n": 1240.02 }, { "a": "attr", "t": "weiwang", - "n": 43.8 + "n": 0.73 } ], "dlz": [], @@ -48723,17 +48723,17 @@ { "a": "attr", "t": "jinbi", - "n": 17059.32 + "n": 2843.2 }, { "a": "attr", "t": "nexp", - "n": 7447.06 + "n": 1241.18 }, { "a": "attr", "t": "weiwang", - "n": 43.8 + "n": 0.73 } ], "dlz": [], @@ -48777,17 +48777,17 @@ { "a": "attr", "t": "jinbi", - "n": 17089.8 + "n": 2848.3 }, { "a": "attr", "t": "nexp", - "n": 7454 + "n": 1242.33 }, { "a": "attr", "t": "weiwang", - "n": 43.8 + "n": 0.73 } ], "dlz": [], @@ -48831,17 +48831,17 @@ { "a": "attr", "t": "jinbi", - "n": 17120.28 + "n": 2853.4 }, { "a": "attr", "t": "nexp", - "n": 7460.94 + "n": 1243.49 }, { "a": "attr", "t": "weiwang", - "n": 44.4 + "n": 0.74 } ], "dlz": [], @@ -48885,17 +48885,17 @@ { "a": "attr", "t": "jinbi", - "n": 17150.76 + "n": 2858.5 }, { "a": "attr", "t": "nexp", - "n": 7467.88 + "n": 1244.65 }, { "a": "attr", "t": "weiwang", - "n": 44.4 + "n": 0.74 } ], "dlz": [], @@ -48939,17 +48939,17 @@ { "a": "attr", "t": "jinbi", - "n": 17181.24 + "n": 2863.5 }, { "a": "attr", "t": "nexp", - "n": 7474.83 + "n": 1245.8 }, { "a": "attr", "t": "weiwang", - "n": 44.4 + "n": 0.74 } ], "dlz": [], @@ -48993,17 +48993,17 @@ { "a": "attr", "t": "jinbi", - "n": 17211.72 + "n": 2868.6 }, { "a": "attr", "t": "nexp", - "n": 7481.77 + "n": 1246.96 }, { "a": "attr", "t": "weiwang", - "n": 44.4 + "n": 0.74 } ], "dlz": [], @@ -49047,17 +49047,17 @@ { "a": "attr", "t": "jinbi", - "n": 17242.2 + "n": 2873.7 }, { "a": "attr", "t": "nexp", - "n": 7488.71 + "n": 1248.12 }, { "a": "attr", "t": "weiwang", - "n": 44.4 + "n": 0.74 } ], "dlz": [], @@ -49101,17 +49101,17 @@ { "a": "attr", "t": "jinbi", - "n": 17272.68 + "n": 2878.8 }, { "a": "attr", "t": "nexp", - "n": 7495.65 + "n": 1249.28 }, { "a": "attr", "t": "weiwang", - "n": 45 + "n": 0.75 } ], "dlz": [], @@ -49155,17 +49155,17 @@ { "a": "attr", "t": "jinbi", - "n": 17303.16 + "n": 2883.9 }, { "a": "attr", "t": "nexp", - "n": 7502.59 + "n": 1250.43 }, { "a": "attr", "t": "weiwang", - "n": 45 + "n": 0.75 } ], "dlz": [], @@ -49209,17 +49209,17 @@ { "a": "attr", "t": "jinbi", - "n": 17333.64 + "n": 2888.9 }, { "a": "attr", "t": "nexp", - "n": 7509.54 + "n": 1251.59 }, { "a": "attr", "t": "weiwang", - "n": 45 + "n": 0.75 } ], "dlz": [], @@ -49263,17 +49263,17 @@ { "a": "attr", "t": "jinbi", - "n": 17364.12 + "n": 2894 }, { "a": "attr", "t": "nexp", - "n": 7516.48 + "n": 1252.75 }, { "a": "attr", "t": "weiwang", - "n": 45 + "n": 0.75 } ], "dlz": [], @@ -49317,17 +49317,17 @@ { "a": "attr", "t": "jinbi", - "n": 17394.6 + "n": 2899.1 }, { "a": "attr", "t": "nexp", - "n": 7523.42 + "n": 1253.9 }, { "a": "attr", "t": "weiwang", - "n": 45 + "n": 0.75 } ], "dlz": [], @@ -49371,17 +49371,17 @@ { "a": "attr", "t": "jinbi", - "n": 17425.08 + "n": 2904.2 }, { "a": "attr", "t": "nexp", - "n": 7530.36 + "n": 1255.06 }, { "a": "attr", "t": "weiwang", - "n": 45.6 + "n": 0.76 } ], "dlz": [], @@ -49425,17 +49425,17 @@ { "a": "attr", "t": "jinbi", - "n": 17455.56 + "n": 2909.3 }, { "a": "attr", "t": "nexp", - "n": 7537.3 + "n": 1256.22 }, { "a": "attr", "t": "weiwang", - "n": 45.6 + "n": 0.76 } ], "dlz": [], @@ -49479,17 +49479,17 @@ { "a": "attr", "t": "jinbi", - "n": 17486.04 + "n": 2914.3 }, { "a": "attr", "t": "nexp", - "n": 7544.25 + "n": 1257.37 }, { "a": "attr", "t": "weiwang", - "n": 45.6 + "n": 0.76 } ], "dlz": [], @@ -49533,17 +49533,17 @@ { "a": "attr", "t": "jinbi", - "n": 17516.52 + "n": 2919.4 }, { "a": "attr", "t": "nexp", - "n": 7551.19 + "n": 1258.53 }, { "a": "attr", "t": "weiwang", - "n": 45.6 + "n": 0.76 } ], "dlz": [], @@ -49587,17 +49587,17 @@ { "a": "attr", "t": "jinbi", - "n": 17547 + "n": 2924.5 }, { "a": "attr", "t": "nexp", - "n": 7558.13 + "n": 1259.69 }, { "a": "attr", "t": "weiwang", - "n": 45.6 + "n": 0.76 } ], "dlz": [], @@ -49641,17 +49641,17 @@ { "a": "attr", "t": "jinbi", - "n": 17577.48 + "n": 2929.6 }, { "a": "attr", "t": "nexp", - "n": 7565.07 + "n": 1260.85 }, { "a": "attr", "t": "weiwang", - "n": 46.2 + "n": 0.77 } ], "dlz": [], @@ -49695,17 +49695,17 @@ { "a": "attr", "t": "jinbi", - "n": 17607.96 + "n": 2934.7 }, { "a": "attr", "t": "nexp", - "n": 7572.01 + "n": 1262 }, { "a": "attr", "t": "weiwang", - "n": 46.2 + "n": 0.77 } ], "dlz": [], @@ -49749,17 +49749,17 @@ { "a": "attr", "t": "jinbi", - "n": 17638.44 + "n": 2939.7 }, { "a": "attr", "t": "nexp", - "n": 7578.96 + "n": 1263.16 }, { "a": "attr", "t": "weiwang", - "n": 46.2 + "n": 0.77 } ], "dlz": [], @@ -49803,17 +49803,17 @@ { "a": "attr", "t": "jinbi", - "n": 17668.92 + "n": 2944.8 }, { "a": "attr", "t": "nexp", - "n": 7585.9 + "n": 1264.32 }, { "a": "attr", "t": "weiwang", - "n": 46.2 + "n": 0.77 } ], "dlz": [], @@ -49857,17 +49857,17 @@ { "a": "attr", "t": "jinbi", - "n": 17699.4 + "n": 2949.9 }, { "a": "attr", "t": "nexp", - "n": 7592.84 + "n": 1265.47 }, { "a": "attr", "t": "weiwang", - "n": 46.2 + "n": 0.77 } ], "dlz": [], @@ -49911,17 +49911,17 @@ { "a": "attr", "t": "jinbi", - "n": 17729.88 + "n": 2955 }, { "a": "attr", "t": "nexp", - "n": 7599.78 + "n": 1266.63 }, { "a": "attr", "t": "weiwang", - "n": 46.8 + "n": 0.78 } ], "dlz": [], @@ -49965,17 +49965,17 @@ { "a": "attr", "t": "jinbi", - "n": 17760.36 + "n": 2960.1 }, { "a": "attr", "t": "nexp", - "n": 7606.72 + "n": 1267.79 }, { "a": "attr", "t": "weiwang", - "n": 46.8 + "n": 0.78 } ], "dlz": [], @@ -50019,17 +50019,17 @@ { "a": "attr", "t": "jinbi", - "n": 17790.84 + "n": 2965.1 }, { "a": "attr", "t": "nexp", - "n": 7613.67 + "n": 1268.94 }, { "a": "attr", "t": "weiwang", - "n": 46.8 + "n": 0.78 } ], "dlz": [], @@ -50073,17 +50073,17 @@ { "a": "attr", "t": "jinbi", - "n": 17821.32 + "n": 2970.2 }, { "a": "attr", "t": "nexp", - "n": 7620.61 + "n": 1270.1 }, { "a": "attr", "t": "weiwang", - "n": 46.8 + "n": 0.78 } ], "dlz": [], @@ -50127,17 +50127,17 @@ { "a": "attr", "t": "jinbi", - "n": 17851.8 + "n": 2975.3 }, { "a": "attr", "t": "nexp", - "n": 7627.55 + "n": 1271.26 }, { "a": "attr", "t": "weiwang", - "n": 46.8 + "n": 0.78 } ], "dlz": [], @@ -50181,17 +50181,17 @@ { "a": "attr", "t": "jinbi", - "n": 17882.28 + "n": 2980.4 }, { "a": "attr", "t": "nexp", - "n": 7634.49 + "n": 1272.42 }, { "a": "attr", "t": "weiwang", - "n": 47.4 + "n": 0.79 } ], "dlz": [], @@ -50235,17 +50235,17 @@ { "a": "attr", "t": "jinbi", - "n": 17912.76 + "n": 2985.5 }, { "a": "attr", "t": "nexp", - "n": 7641.43 + "n": 1273.57 }, { "a": "attr", "t": "weiwang", - "n": 47.4 + "n": 0.79 } ], "dlz": [], @@ -50289,17 +50289,17 @@ { "a": "attr", "t": "jinbi", - "n": 17943.24 + "n": 2990.5 }, { "a": "attr", "t": "nexp", - "n": 7648.38 + "n": 1274.73 }, { "a": "attr", "t": "weiwang", - "n": 47.4 + "n": 0.79 } ], "dlz": [], @@ -50343,17 +50343,17 @@ { "a": "attr", "t": "jinbi", - "n": 17973.72 + "n": 2995.6 }, { "a": "attr", "t": "nexp", - "n": 7655.32 + "n": 1275.89 }, { "a": "attr", "t": "weiwang", - "n": 47.4 + "n": 0.79 } ], "dlz": [], @@ -50397,17 +50397,17 @@ { "a": "attr", "t": "jinbi", - "n": 18004.2 + "n": 3000.7 }, { "a": "attr", "t": "nexp", - "n": 7662.26 + "n": 1277.04 }, { "a": "attr", "t": "weiwang", - "n": 47.4 + "n": 0.79 } ], "dlz": [], @@ -50451,17 +50451,17 @@ { "a": "attr", "t": "jinbi", - "n": 18034.68 + "n": 3005.8 }, { "a": "attr", "t": "nexp", - "n": 7669.2 + "n": 1278.2 }, { "a": "attr", "t": "weiwang", - "n": 48 + "n": 0.8 } ], "dlz": [], @@ -50505,17 +50505,17 @@ { "a": "attr", "t": "jinbi", - "n": 18065.16 + "n": 3010.9 }, { "a": "attr", "t": "nexp", - "n": 7676.14 + "n": 1279.36 }, { "a": "attr", "t": "weiwang", - "n": 48 + "n": 0.8 } ], "dlz": [], @@ -50559,17 +50559,17 @@ { "a": "attr", "t": "jinbi", - "n": 18095.64 + "n": 3015.9 }, { "a": "attr", "t": "nexp", - "n": 7683.09 + "n": 1280.51 }, { "a": "attr", "t": "weiwang", - "n": 48 + "n": 0.8 } ], "dlz": [], @@ -50613,17 +50613,17 @@ { "a": "attr", "t": "jinbi", - "n": 18126.12 + "n": 3021 }, { "a": "attr", "t": "nexp", - "n": 7690.03 + "n": 1281.67 }, { "a": "attr", "t": "weiwang", - "n": 48 + "n": 0.8 } ], "dlz": [], @@ -50667,17 +50667,17 @@ { "a": "attr", "t": "jinbi", - "n": 18156.6 + "n": 3026.1 }, { "a": "attr", "t": "nexp", - "n": 7696.97 + "n": 1282.83 }, { "a": "attr", "t": "weiwang", - "n": 48 + "n": 0.8 } ], "dlz": [], @@ -50721,17 +50721,17 @@ { "a": "attr", "t": "jinbi", - "n": 18187.08 + "n": 3031.2 }, { "a": "attr", "t": "nexp", - "n": 7703.91 + "n": 1283.99 }, { "a": "attr", "t": "weiwang", - "n": 48.6 + "n": 0.81 } ], "dlz": [], @@ -50775,17 +50775,17 @@ { "a": "attr", "t": "jinbi", - "n": 18217.56 + "n": 3036.3 }, { "a": "attr", "t": "nexp", - "n": 7710.85 + "n": 1285.14 }, { "a": "attr", "t": "weiwang", - "n": 48.6 + "n": 0.81 } ], "dlz": [], @@ -50829,17 +50829,17 @@ { "a": "attr", "t": "jinbi", - "n": 18248.04 + "n": 3041.3 }, { "a": "attr", "t": "nexp", - "n": 7717.8 + "n": 1286.3 }, { "a": "attr", "t": "weiwang", - "n": 48.6 + "n": 0.81 } ], "dlz": [], @@ -50883,17 +50883,17 @@ { "a": "attr", "t": "jinbi", - "n": 18278.52 + "n": 3046.4 }, { "a": "attr", "t": "nexp", - "n": 7724.74 + "n": 1287.46 }, { "a": "attr", "t": "weiwang", - "n": 48.6 + "n": 0.81 } ], "dlz": [], @@ -50937,17 +50937,17 @@ { "a": "attr", "t": "jinbi", - "n": 18309 + "n": 3051.5 }, { "a": "attr", "t": "nexp", - "n": 7731.68 + "n": 1288.61 }, { "a": "attr", "t": "weiwang", - "n": 48.6 + "n": 0.81 } ], "dlz": [], @@ -50991,17 +50991,17 @@ { "a": "attr", "t": "jinbi", - "n": 18339.48 + "n": 3056.6 }, { "a": "attr", "t": "nexp", - "n": 7738.62 + "n": 1289.77 }, { "a": "attr", "t": "weiwang", - "n": 49.2 + "n": 0.82 } ], "dlz": [], @@ -51045,17 +51045,17 @@ { "a": "attr", "t": "jinbi", - "n": 18369.96 + "n": 3061.7 }, { "a": "attr", "t": "nexp", - "n": 7745.56 + "n": 1290.93 }, { "a": "attr", "t": "weiwang", - "n": 49.2 + "n": 0.82 } ], "dlz": [], @@ -51099,17 +51099,17 @@ { "a": "attr", "t": "jinbi", - "n": 18400.44 + "n": 3066.7 }, { "a": "attr", "t": "nexp", - "n": 7752.51 + "n": 1292.08 }, { "a": "attr", "t": "weiwang", - "n": 49.2 + "n": 0.82 } ], "dlz": [], @@ -51153,17 +51153,17 @@ { "a": "attr", "t": "jinbi", - "n": 18430.92 + "n": 3071.8 }, { "a": "attr", "t": "nexp", - "n": 7759.45 + "n": 1293.24 }, { "a": "attr", "t": "weiwang", - "n": 49.2 + "n": 0.82 } ], "dlz": [], @@ -51207,17 +51207,17 @@ { "a": "attr", "t": "jinbi", - "n": 18461.4 + "n": 3076.9 }, { "a": "attr", "t": "nexp", - "n": 7766.39 + "n": 1294.4 }, { "a": "attr", "t": "weiwang", - "n": 49.2 + "n": 0.82 } ], "dlz": [], @@ -51261,17 +51261,17 @@ { "a": "attr", "t": "jinbi", - "n": 18491.88 + "n": 3082 }, { "a": "attr", "t": "nexp", - "n": 7773.33 + "n": 1295.56 }, { "a": "attr", "t": "weiwang", - "n": 49.8 + "n": 0.83 } ], "dlz": [], @@ -51315,17 +51315,17 @@ { "a": "attr", "t": "jinbi", - "n": 18522.36 + "n": 3087.1 }, { "a": "attr", "t": "nexp", - "n": 7780.27 + "n": 1296.71 }, { "a": "attr", "t": "weiwang", - "n": 49.8 + "n": 0.83 } ], "dlz": [], @@ -51369,17 +51369,17 @@ { "a": "attr", "t": "jinbi", - "n": 18552.84 + "n": 3092.1 }, { "a": "attr", "t": "nexp", - "n": 7787.22 + "n": 1297.87 }, { "a": "attr", "t": "weiwang", - "n": 49.8 + "n": 0.83 } ], "dlz": [], @@ -51423,17 +51423,17 @@ { "a": "attr", "t": "jinbi", - "n": 18583.32 + "n": 3097.2 }, { "a": "attr", "t": "nexp", - "n": 7794.16 + "n": 1299.03 }, { "a": "attr", "t": "weiwang", - "n": 49.8 + "n": 0.83 } ], "dlz": [], @@ -51477,17 +51477,17 @@ { "a": "attr", "t": "jinbi", - "n": 18613.8 + "n": 3102.3 }, { "a": "attr", "t": "nexp", - "n": 7801.1 + "n": 1300.18 }, { "a": "attr", "t": "weiwang", - "n": 49.8 + "n": 0.83 } ], "dlz": [], @@ -51531,17 +51531,17 @@ { "a": "attr", "t": "jinbi", - "n": 18644.28 + "n": 3107.4 }, { "a": "attr", "t": "nexp", - "n": 7808.04 + "n": 1301.34 }, { "a": "attr", "t": "weiwang", - "n": 50.4 + "n": 0.84 } ], "dlz": [], @@ -51585,17 +51585,17 @@ { "a": "attr", "t": "jinbi", - "n": 18674.76 + "n": 3112.5 }, { "a": "attr", "t": "nexp", - "n": 7814.98 + "n": 1302.5 }, { "a": "attr", "t": "weiwang", - "n": 50.4 + "n": 0.84 } ], "dlz": [], @@ -51639,17 +51639,17 @@ { "a": "attr", "t": "jinbi", - "n": 18705.24 + "n": 3117.5 }, { "a": "attr", "t": "nexp", - "n": 7821.93 + "n": 1303.65 }, { "a": "attr", "t": "weiwang", - "n": 50.4 + "n": 0.84 } ], "dlz": [], @@ -51693,17 +51693,17 @@ { "a": "attr", "t": "jinbi", - "n": 18735.72 + "n": 3122.6 }, { "a": "attr", "t": "nexp", - "n": 7828.87 + "n": 1304.81 }, { "a": "attr", "t": "weiwang", - "n": 50.4 + "n": 0.84 } ], "dlz": [], @@ -51747,17 +51747,17 @@ { "a": "attr", "t": "jinbi", - "n": 18766.2 + "n": 3127.7 }, { "a": "attr", "t": "nexp", - "n": 7835.81 + "n": 1305.97 }, { "a": "attr", "t": "weiwang", - "n": 50.4 + "n": 0.84 } ], "dlz": [], @@ -51801,17 +51801,17 @@ { "a": "attr", "t": "jinbi", - "n": 18796.68 + "n": 3132.8 }, { "a": "attr", "t": "nexp", - "n": 7842.75 + "n": 1307.13 }, { "a": "attr", "t": "weiwang", - "n": 51 + "n": 0.85 } ], "dlz": [], @@ -51855,17 +51855,17 @@ { "a": "attr", "t": "jinbi", - "n": 18827.16 + "n": 3137.9 }, { "a": "attr", "t": "nexp", - "n": 7849.69 + "n": 1308.28 }, { "a": "attr", "t": "weiwang", - "n": 51 + "n": 0.85 } ], "dlz": [], @@ -51909,17 +51909,17 @@ { "a": "attr", "t": "jinbi", - "n": 18857.64 + "n": 3142.9 }, { "a": "attr", "t": "nexp", - "n": 7856.64 + "n": 1309.44 }, { "a": "attr", "t": "weiwang", - "n": 51 + "n": 0.85 } ], "dlz": [], @@ -51963,17 +51963,17 @@ { "a": "attr", "t": "jinbi", - "n": 18888.12 + "n": 3148 }, { "a": "attr", "t": "nexp", - "n": 7863.58 + "n": 1310.6 }, { "a": "attr", "t": "weiwang", - "n": 51 + "n": 0.85 } ], "dlz": [], @@ -52017,17 +52017,17 @@ { "a": "attr", "t": "jinbi", - "n": 18918.6 + "n": 3153.1 }, { "a": "attr", "t": "nexp", - "n": 7870.52 + "n": 1311.75 }, { "a": "attr", "t": "weiwang", - "n": 51 + "n": 0.85 } ], "dlz": [], @@ -52071,17 +52071,17 @@ { "a": "attr", "t": "jinbi", - "n": 18949.08 + "n": 3158.2 }, { "a": "attr", "t": "nexp", - "n": 7877.46 + "n": 1312.91 }, { "a": "attr", "t": "weiwang", - "n": 51.6 + "n": 0.86 } ], "dlz": [], @@ -52125,17 +52125,17 @@ { "a": "attr", "t": "jinbi", - "n": 18979.56 + "n": 3163.3 }, { "a": "attr", "t": "nexp", - "n": 7884.4 + "n": 1314.07 }, { "a": "attr", "t": "weiwang", - "n": 51.6 + "n": 0.86 } ], "dlz": [], @@ -52179,17 +52179,17 @@ { "a": "attr", "t": "jinbi", - "n": 19010.04 + "n": 3168.3 }, { "a": "attr", "t": "nexp", - "n": 7891.35 + "n": 1315.22 }, { "a": "attr", "t": "weiwang", - "n": 51.6 + "n": 0.86 } ], "dlz": [], @@ -52233,17 +52233,17 @@ { "a": "attr", "t": "jinbi", - "n": 19040.52 + "n": 3173.4 }, { "a": "attr", "t": "nexp", - "n": 7898.29 + "n": 1316.38 }, { "a": "attr", "t": "weiwang", - "n": 51.6 + "n": 0.86 } ], "dlz": [], @@ -52287,17 +52287,17 @@ { "a": "attr", "t": "jinbi", - "n": 19071 + "n": 3178.5 }, { "a": "attr", "t": "nexp", - "n": 7905.23 + "n": 1317.54 }, { "a": "attr", "t": "weiwang", - "n": 51.6 + "n": 0.86 } ], "dlz": [], @@ -52341,17 +52341,17 @@ { "a": "attr", "t": "jinbi", - "n": 19101.48 + "n": 3183.6 }, { "a": "attr", "t": "nexp", - "n": 7912.17 + "n": 1318.7 }, { "a": "attr", "t": "weiwang", - "n": 52.2 + "n": 0.87 } ], "dlz": [], @@ -52395,17 +52395,17 @@ { "a": "attr", "t": "jinbi", - "n": 19131.96 + "n": 3188.7 }, { "a": "attr", "t": "nexp", - "n": 7919.11 + "n": 1319.85 }, { "a": "attr", "t": "weiwang", - "n": 52.2 + "n": 0.87 } ], "dlz": [], @@ -52449,17 +52449,17 @@ { "a": "attr", "t": "jinbi", - "n": 19162.44 + "n": 3193.7 }, { "a": "attr", "t": "nexp", - "n": 7926.06 + "n": 1321.01 }, { "a": "attr", "t": "weiwang", - "n": 52.2 + "n": 0.87 } ], "dlz": [], @@ -52503,17 +52503,17 @@ { "a": "attr", "t": "jinbi", - "n": 19192.92 + "n": 3198.8 }, { "a": "attr", "t": "nexp", - "n": 7933 + "n": 1322.17 }, { "a": "attr", "t": "weiwang", - "n": 52.2 + "n": 0.87 } ], "dlz": [], @@ -52557,17 +52557,17 @@ { "a": "attr", "t": "jinbi", - "n": 19223.4 + "n": 3203.9 }, { "a": "attr", "t": "nexp", - "n": 7939.94 + "n": 1323.32 }, { "a": "attr", "t": "weiwang", - "n": 52.2 + "n": 0.87 } ], "dlz": [], @@ -52611,17 +52611,17 @@ { "a": "attr", "t": "jinbi", - "n": 19253.88 + "n": 3209 }, { "a": "attr", "t": "nexp", - "n": 7946.88 + "n": 1324.48 }, { "a": "attr", "t": "weiwang", - "n": 52.8 + "n": 0.88 } ], "dlz": [], @@ -52665,17 +52665,17 @@ { "a": "attr", "t": "jinbi", - "n": 19284.36 + "n": 3214.1 }, { "a": "attr", "t": "nexp", - "n": 7953.82 + "n": 1325.64 }, { "a": "attr", "t": "weiwang", - "n": 52.8 + "n": 0.88 } ], "dlz": [], @@ -52719,17 +52719,17 @@ { "a": "attr", "t": "jinbi", - "n": 19314.84 + "n": 3219.1 }, { "a": "attr", "t": "nexp", - "n": 7960.77 + "n": 1326.79 }, { "a": "attr", "t": "weiwang", - "n": 52.8 + "n": 0.88 } ], "dlz": [], @@ -52773,17 +52773,17 @@ { "a": "attr", "t": "jinbi", - "n": 19345.32 + "n": 3224.2 }, { "a": "attr", "t": "nexp", - "n": 7967.71 + "n": 1327.95 }, { "a": "attr", "t": "weiwang", - "n": 52.8 + "n": 0.88 } ], "dlz": [], @@ -52827,17 +52827,17 @@ { "a": "attr", "t": "jinbi", - "n": 19375.8 + "n": 3229.3 }, { "a": "attr", "t": "nexp", - "n": 7974.65 + "n": 1329.11 }, { "a": "attr", "t": "weiwang", - "n": 52.8 + "n": 0.88 } ], "dlz": [], @@ -52881,17 +52881,17 @@ { "a": "attr", "t": "jinbi", - "n": 19406.28 + "n": 3234.4 }, { "a": "attr", "t": "nexp", - "n": 7981.59 + "n": 1330.27 }, { "a": "attr", "t": "weiwang", - "n": 53.4 + "n": 0.89 } ], "dlz": [], @@ -52935,17 +52935,17 @@ { "a": "attr", "t": "jinbi", - "n": 19436.76 + "n": 3239.5 }, { "a": "attr", "t": "nexp", - "n": 7988.53 + "n": 1331.42 }, { "a": "attr", "t": "weiwang", - "n": 53.4 + "n": 0.89 } ], "dlz": [], @@ -52989,17 +52989,17 @@ { "a": "attr", "t": "jinbi", - "n": 19467.24 + "n": 3244.5 }, { "a": "attr", "t": "nexp", - "n": 7995.48 + "n": 1332.58 }, { "a": "attr", "t": "weiwang", - "n": 53.4 + "n": 0.89 } ], "dlz": [], @@ -53043,17 +53043,17 @@ { "a": "attr", "t": "jinbi", - "n": 19497.72 + "n": 3249.6 }, { "a": "attr", "t": "nexp", - "n": 8002.42 + "n": 1333.74 }, { "a": "attr", "t": "weiwang", - "n": 53.4 + "n": 0.89 } ], "dlz": [], @@ -53097,17 +53097,17 @@ { "a": "attr", "t": "jinbi", - "n": 19528.2 + "n": 3254.7 }, { "a": "attr", "t": "nexp", - "n": 8009.36 + "n": 1334.89 }, { "a": "attr", "t": "weiwang", - "n": 53.4 + "n": 0.89 } ], "dlz": [], @@ -53151,17 +53151,17 @@ { "a": "attr", "t": "jinbi", - "n": 19558.68 + "n": 3259.8 }, { "a": "attr", "t": "nexp", - "n": 8016.3 + "n": 1336.05 }, { "a": "attr", "t": "weiwang", - "n": 54 + "n": 0.9 } ], "dlz": [], @@ -53205,17 +53205,17 @@ { "a": "attr", "t": "jinbi", - "n": 19589.16 + "n": 3264.9 }, { "a": "attr", "t": "nexp", - "n": 8023.24 + "n": 1337.21 }, { "a": "attr", "t": "weiwang", - "n": 54 + "n": 0.9 } ], "dlz": [], @@ -53259,17 +53259,17 @@ { "a": "attr", "t": "jinbi", - "n": 19619.64 + "n": 3269.9 }, { "a": "attr", "t": "nexp", - "n": 8030.19 + "n": 1338.36 }, { "a": "attr", "t": "weiwang", - "n": 54 + "n": 0.9 } ], "dlz": [], @@ -53313,17 +53313,17 @@ { "a": "attr", "t": "jinbi", - "n": 19650.12 + "n": 3275 }, { "a": "attr", "t": "nexp", - "n": 8037.13 + "n": 1339.52 }, { "a": "attr", "t": "weiwang", - "n": 54 + "n": 0.9 } ], "dlz": [], @@ -53367,17 +53367,17 @@ { "a": "attr", "t": "jinbi", - "n": 19680.6 + "n": 3280 }, { "a": "attr", "t": "nexp", - "n": 8044.07 + "n": 1340.52 }, { "a": "attr", "t": "weiwang", - "n": 54 + "n": 0.9 } ], "dlz": [], @@ -53421,17 +53421,17 @@ { "a": "attr", "t": "jinbi", - "n": 19711.08 + "n": 3285.2 }, { "a": "attr", "t": "nexp", - "n": 8051.01 + "n": 1341.84 }, { "a": "attr", "t": "weiwang", - "n": 54.6 + "n": 0.91 } ], "dlz": [], @@ -53475,17 +53475,17 @@ { "a": "attr", "t": "jinbi", - "n": 19741.56 + "n": 3290.3 }, { "a": "attr", "t": "nexp", - "n": 8057.95 + "n": 1342.99 }, { "a": "attr", "t": "weiwang", - "n": 54.6 + "n": 0.91 } ], "dlz": [], @@ -53529,17 +53529,17 @@ { "a": "attr", "t": "jinbi", - "n": 19772.04 + "n": 3295.3 }, { "a": "attr", "t": "nexp", - "n": 8064.9 + "n": 1344.15 }, { "a": "attr", "t": "weiwang", - "n": 54.6 + "n": 0.91 } ], "dlz": [], @@ -53583,17 +53583,17 @@ { "a": "attr", "t": "jinbi", - "n": 19802.52 + "n": 3300.4 }, { "a": "attr", "t": "nexp", - "n": 8071.84 + "n": 1345.31 }, { "a": "attr", "t": "weiwang", - "n": 54.6 + "n": 0.91 } ], "dlz": [], @@ -53637,17 +53637,17 @@ { "a": "attr", "t": "jinbi", - "n": 19833 + "n": 3305.5 }, { "a": "attr", "t": "nexp", - "n": 8078.78 + "n": 1346.46 }, { "a": "attr", "t": "weiwang", - "n": 54.6 + "n": 0.91 } ], "dlz": [], @@ -53691,17 +53691,17 @@ { "a": "attr", "t": "jinbi", - "n": 19863.48 + "n": 3310.6 }, { "a": "attr", "t": "nexp", - "n": 8085.72 + "n": 1347.62 }, { "a": "attr", "t": "weiwang", - "n": 55.2 + "n": 0.92 } ], "dlz": [], @@ -53745,17 +53745,17 @@ { "a": "attr", "t": "jinbi", - "n": 19893.96 + "n": 3315.7 }, { "a": "attr", "t": "nexp", - "n": 8092.66 + "n": 1348.78 }, { "a": "attr", "t": "weiwang", - "n": 55.2 + "n": 0.92 } ], "dlz": [], @@ -53799,17 +53799,17 @@ { "a": "attr", "t": "jinbi", - "n": 19924.44 + "n": 3320.7 }, { "a": "attr", "t": "nexp", - "n": 8099.61 + "n": 1349.93 }, { "a": "attr", "t": "weiwang", - "n": 55.2 + "n": 0.92 } ], "dlz": [], @@ -53853,17 +53853,17 @@ { "a": "attr", "t": "jinbi", - "n": 19954.92 + "n": 3325.8 }, { "a": "attr", "t": "nexp", - "n": 8106.55 + "n": 1351.09 }, { "a": "attr", "t": "weiwang", - "n": 55.2 + "n": 0.92 } ], "dlz": [], @@ -53907,17 +53907,17 @@ { "a": "attr", "t": "jinbi", - "n": 19985.4 + "n": 3330.9 }, { "a": "attr", "t": "nexp", - "n": 8113.49 + "n": 1352.25 }, { "a": "attr", "t": "weiwang", - "n": 55.2 + "n": 0.92 } ], "dlz": [], @@ -53961,17 +53961,17 @@ { "a": "attr", "t": "jinbi", - "n": 20015.88 + "n": 3336 }, { "a": "attr", "t": "nexp", - "n": 8120.43 + "n": 1353.4 }, { "a": "attr", "t": "weiwang", - "n": 55.8 + "n": 0.93 } ], "dlz": [], @@ -54015,17 +54015,17 @@ { "a": "attr", "t": "jinbi", - "n": 20046.36 + "n": 3341.1 }, { "a": "attr", "t": "nexp", - "n": 8127.37 + "n": 1354.6 }, { "a": "attr", "t": "weiwang", - "n": 55.8 + "n": 0.93 } ], "dlz": [], @@ -54069,17 +54069,17 @@ { "a": "attr", "t": "jinbi", - "n": 20076.84 + "n": 3346.1 }, { "a": "attr", "t": "nexp", - "n": 8134.32 + "n": 1355.7 }, { "a": "attr", "t": "weiwang", - "n": 55.8 + "n": 0.93 } ], "dlz": [], @@ -54123,17 +54123,17 @@ { "a": "attr", "t": "jinbi", - "n": 20107.32 + "n": 3351.2 }, { "a": "attr", "t": "nexp", - "n": 8141.26 + "n": 1356.9 }, { "a": "attr", "t": "weiwang", - "n": 55.8 + "n": 0.93 } ], "dlz": [], @@ -54177,17 +54177,17 @@ { "a": "attr", "t": "jinbi", - "n": 20137.8 + "n": 3356.3 }, { "a": "attr", "t": "nexp", - "n": 8148.2 + "n": 1358 }, { "a": "attr", "t": "weiwang", - "n": 55.8 + "n": 0.93 } ], "dlz": [], @@ -54231,17 +54231,17 @@ { "a": "attr", "t": "jinbi", - "n": 20168.28 + "n": 3361.4 }, { "a": "attr", "t": "nexp", - "n": 8155.14 + "n": 1359.2 }, { "a": "attr", "t": "weiwang", - "n": 56.4 + "n": 0.94 } ], "dlz": [], @@ -54285,17 +54285,17 @@ { "a": "attr", "t": "jinbi", - "n": 20198.76 + "n": 3366.5 }, { "a": "attr", "t": "nexp", - "n": 8162.08 + "n": 1360.3 }, { "a": "attr", "t": "weiwang", - "n": 56.4 + "n": 0.94 } ], "dlz": [], @@ -54339,17 +54339,17 @@ { "a": "attr", "t": "jinbi", - "n": 20229.24 + "n": 3371.5 }, { "a": "attr", "t": "nexp", - "n": 8169.03 + "n": 1361.5 }, { "a": "attr", "t": "weiwang", - "n": 56.4 + "n": 0.94 } ], "dlz": [], @@ -54393,17 +54393,17 @@ { "a": "attr", "t": "jinbi", - "n": 20259.72 + "n": 3376.6 }, { "a": "attr", "t": "nexp", - "n": 8175.97 + "n": 1362.7 }, { "a": "attr", "t": "weiwang", - "n": 56.4 + "n": 0.94 } ], "dlz": [], @@ -54447,17 +54447,17 @@ { "a": "attr", "t": "jinbi", - "n": 20290.2 + "n": 3381.7 }, { "a": "attr", "t": "nexp", - "n": 8182.91 + "n": 1363.8 }, { "a": "attr", "t": "weiwang", - "n": 56.4 + "n": 0.94 } ], "dlz": [], @@ -54501,17 +54501,17 @@ { "a": "attr", "t": "jinbi", - "n": 20320.68 + "n": 3386.8 }, { "a": "attr", "t": "nexp", - "n": 8189.85 + "n": 1365 }, { "a": "attr", "t": "weiwang", - "n": 57 + "n": 0.95 } ], "dlz": [], @@ -54555,17 +54555,17 @@ { "a": "attr", "t": "jinbi", - "n": 20351.16 + "n": 3391.9 }, { "a": "attr", "t": "nexp", - "n": 8196.79 + "n": 1366.1 }, { "a": "attr", "t": "weiwang", - "n": 57 + "n": 0.95 } ], "dlz": [], @@ -54609,17 +54609,17 @@ { "a": "attr", "t": "jinbi", - "n": 20381.64 + "n": 3396.9 }, { "a": "attr", "t": "nexp", - "n": 8203.74 + "n": 1367.3 }, { "a": "attr", "t": "weiwang", - "n": 57 + "n": 0.95 } ], "dlz": [], @@ -54663,17 +54663,17 @@ { "a": "attr", "t": "jinbi", - "n": 20412.12 + "n": 3402 }, { "a": "attr", "t": "nexp", - "n": 8210.68 + "n": 1368.4 }, { "a": "attr", "t": "weiwang", - "n": 57 + "n": 0.95 } ], "dlz": [], @@ -54717,17 +54717,17 @@ { "a": "attr", "t": "jinbi", - "n": 20442.6 + "n": 3407.1 }, { "a": "attr", "t": "nexp", - "n": 8217.62 + "n": 1369.6 }, { "a": "attr", "t": "weiwang", - "n": 57 + "n": 0.95 } ], "dlz": [], @@ -54771,17 +54771,17 @@ { "a": "attr", "t": "jinbi", - "n": 20473.08 + "n": 3412.2 }, { "a": "attr", "t": "nexp", - "n": 8224.56 + "n": 1370.8 }, { "a": "attr", "t": "weiwang", - "n": 57.6 + "n": 0.96 } ], "dlz": [], @@ -54825,17 +54825,17 @@ { "a": "attr", "t": "jinbi", - "n": 20503.56 + "n": 3417.3 }, { "a": "attr", "t": "nexp", - "n": 8231.5 + "n": 1371.9 }, { "a": "attr", "t": "weiwang", - "n": 57.6 + "n": 0.96 } ], "dlz": [], @@ -54879,17 +54879,17 @@ { "a": "attr", "t": "jinbi", - "n": 20534.04 + "n": 3422.3 }, { "a": "attr", "t": "nexp", - "n": 8238.45 + "n": 1373.1 }, { "a": "attr", "t": "weiwang", - "n": 57.6 + "n": 0.96 } ], "dlz": [], @@ -54933,17 +54933,17 @@ { "a": "attr", "t": "jinbi", - "n": 20564.52 + "n": 3427.4 }, { "a": "attr", "t": "nexp", - "n": 8245.39 + "n": 1374.2 }, { "a": "attr", "t": "weiwang", - "n": 57.6 + "n": 0.96 } ], "dlz": [], @@ -54987,17 +54987,17 @@ { "a": "attr", "t": "jinbi", - "n": 20595 + "n": 3432.5 }, { "a": "attr", "t": "nexp", - "n": 8252.33 + "n": 1375.4 }, { "a": "attr", "t": "weiwang", - "n": 57.6 + "n": 0.96 } ], "dlz": [], @@ -55041,17 +55041,17 @@ { "a": "attr", "t": "jinbi", - "n": 20625.48 + "n": 3437.6 }, { "a": "attr", "t": "nexp", - "n": 8259.27 + "n": 1376.5 }, { "a": "attr", "t": "weiwang", - "n": 58.2 + "n": 0.97 } ], "dlz": [], @@ -55095,17 +55095,17 @@ { "a": "attr", "t": "jinbi", - "n": 20655.96 + "n": 3442.7 }, { "a": "attr", "t": "nexp", - "n": 8266.21 + "n": 1377.7 }, { "a": "attr", "t": "weiwang", - "n": 58.2 + "n": 0.97 } ], "dlz": [], @@ -55149,17 +55149,17 @@ { "a": "attr", "t": "jinbi", - "n": 20686.44 + "n": 3447.7 }, { "a": "attr", "t": "nexp", - "n": 8273.16 + "n": 1378.9 }, { "a": "attr", "t": "weiwang", - "n": 58.2 + "n": 0.97 } ], "dlz": [], @@ -55203,17 +55203,17 @@ { "a": "attr", "t": "jinbi", - "n": 20716.92 + "n": 3452.8 }, { "a": "attr", "t": "nexp", - "n": 8280.1 + "n": 1380 }, { "a": "attr", "t": "weiwang", - "n": 58.2 + "n": 0.97 } ], "dlz": [], @@ -55257,17 +55257,17 @@ { "a": "attr", "t": "jinbi", - "n": 20747.4 + "n": 3457.9 }, { "a": "attr", "t": "nexp", - "n": 8287.04 + "n": 1381.2 }, { "a": "attr", "t": "weiwang", - "n": 58.2 + "n": 0.97 } ], "dlz": [], @@ -55311,17 +55311,17 @@ { "a": "attr", "t": "jinbi", - "n": 20777.88 + "n": 3463 }, { "a": "attr", "t": "nexp", - "n": 8293.98 + "n": 1382.3 }, { "a": "attr", "t": "weiwang", - "n": 58.8 + "n": 0.98 } ], "dlz": [], @@ -55365,17 +55365,17 @@ { "a": "attr", "t": "jinbi", - "n": 20808.36 + "n": 3468.1 }, { "a": "attr", "t": "nexp", - "n": 8300.92 + "n": 1383.5 }, { "a": "attr", "t": "weiwang", - "n": 58.8 + "n": 0.98 } ], "dlz": [], @@ -55419,17 +55419,17 @@ { "a": "attr", "t": "jinbi", - "n": 20838.84 + "n": 3473.1 }, { "a": "attr", "t": "nexp", - "n": 8307.87 + "n": 1384.6 }, { "a": "attr", "t": "weiwang", - "n": 58.8 + "n": 0.98 } ], "dlz": [], @@ -55473,17 +55473,17 @@ { "a": "attr", "t": "jinbi", - "n": 20869.32 + "n": 3478.2 }, { "a": "attr", "t": "nexp", - "n": 8314.81 + "n": 1385.8 }, { "a": "attr", "t": "weiwang", - "n": 58.8 + "n": 0.98 } ], "dlz": [], @@ -55527,17 +55527,17 @@ { "a": "attr", "t": "jinbi", - "n": 20899.8 + "n": 3483.3 }, { "a": "attr", "t": "nexp", - "n": 8321.75 + "n": 1387 }, { "a": "attr", "t": "weiwang", - "n": 58.8 + "n": 0.98 } ], "dlz": [], @@ -55581,17 +55581,17 @@ { "a": "attr", "t": "jinbi", - "n": 20930.28 + "n": 3488.4 }, { "a": "attr", "t": "nexp", - "n": 8328.69 + "n": 1388.1 }, { "a": "attr", "t": "weiwang", - "n": 59.4 + "n": 0.99 } ], "dlz": [], @@ -55635,17 +55635,17 @@ { "a": "attr", "t": "jinbi", - "n": 20960.76 + "n": 3493.5 }, { "a": "attr", "t": "nexp", - "n": 8335.63 + "n": 1389.3 }, { "a": "attr", "t": "weiwang", - "n": 59.4 + "n": 0.99 } ], "dlz": [], @@ -55689,17 +55689,17 @@ { "a": "attr", "t": "jinbi", - "n": 20991.24 + "n": 3498.5 }, { "a": "attr", "t": "nexp", - "n": 8342.58 + "n": 1390.4 }, { "a": "attr", "t": "weiwang", - "n": 59.4 + "n": 0.99 } ], "dlz": [], @@ -55743,17 +55743,17 @@ { "a": "attr", "t": "jinbi", - "n": 21021.72 + "n": 3503.6 }, { "a": "attr", "t": "nexp", - "n": 8349.52 + "n": 1391.6 }, { "a": "attr", "t": "weiwang", - "n": 59.4 + "n": 0.99 } ], "dlz": [], @@ -55797,17 +55797,17 @@ { "a": "attr", "t": "jinbi", - "n": 21052.2 + "n": 3508.7 }, { "a": "attr", "t": "nexp", - "n": 8356.46 + "n": 1392.7 }, { "a": "attr", "t": "weiwang", - "n": 59.4 + "n": 0.99 } ], "dlz": [], @@ -55851,17 +55851,17 @@ { "a": "attr", "t": "jinbi", - "n": 21082.68 + "n": 3513.8 }, { "a": "attr", "t": "nexp", - "n": 8363.4 + "n": 1393.9 }, { "a": "attr", "t": "weiwang", - "n": 60 + "n": 1 } ], "dlz": [], @@ -55905,17 +55905,17 @@ { "a": "attr", "t": "jinbi", - "n": 21113.16 + "n": 3518.9 }, { "a": "attr", "t": "nexp", - "n": 8370.34 + "n": 1395.1 }, { "a": "attr", "t": "weiwang", - "n": 60 + "n": 1 } ], "dlz": [], @@ -55959,17 +55959,17 @@ { "a": "attr", "t": "jinbi", - "n": 21143.64 + "n": 3523.9 }, { "a": "attr", "t": "nexp", - "n": 8377.29 + "n": 1396.2 }, { "a": "attr", "t": "weiwang", - "n": 60 + "n": 1 } ], "dlz": [], @@ -56013,17 +56013,17 @@ { "a": "attr", "t": "jinbi", - "n": 21174.12 + "n": 3529 }, { "a": "attr", "t": "nexp", - "n": 8384.23 + "n": 1397.4 }, { "a": "attr", "t": "weiwang", - "n": 60 + "n": 1 } ], "dlz": [], @@ -56067,17 +56067,17 @@ { "a": "attr", "t": "jinbi", - "n": 21204.6 + "n": 3534.1 }, { "a": "attr", "t": "nexp", - "n": 8391.17 + "n": 1398.5 }, { "a": "attr", "t": "weiwang", - "n": 60 + "n": 1 } ], "dlz": [], @@ -56121,17 +56121,17 @@ { "a": "attr", "t": "jinbi", - "n": 21235.08 + "n": 3539.2 }, { "a": "attr", "t": "nexp", - "n": 8398.11 + "n": 1399.7 }, { "a": "attr", "t": "weiwang", - "n": 60.6 + "n": 1.01 } ], "dlz": [], @@ -56175,17 +56175,17 @@ { "a": "attr", "t": "jinbi", - "n": 21265.56 + "n": 3544.3 }, { "a": "attr", "t": "nexp", - "n": 8405.05 + "n": 1400.8 }, { "a": "attr", "t": "weiwang", - "n": 60.6 + "n": 1.01 } ], "dlz": [], @@ -56229,17 +56229,17 @@ { "a": "attr", "t": "jinbi", - "n": 21296.04 + "n": 3549.3 }, { "a": "attr", "t": "nexp", - "n": 8412 + "n": 1402 }, { "a": "attr", "t": "weiwang", - "n": 60.6 + "n": 1.01 } ], "dlz": [], @@ -56283,17 +56283,17 @@ { "a": "attr", "t": "jinbi", - "n": 21326.52 + "n": 3554.4 }, { "a": "attr", "t": "nexp", - "n": 8418.94 + "n": 1403.2 }, { "a": "attr", "t": "weiwang", - "n": 60.6 + "n": 1.01 } ], "dlz": [], @@ -56337,17 +56337,17 @@ { "a": "attr", "t": "jinbi", - "n": 21357 + "n": 3559.5 }, { "a": "attr", "t": "nexp", - "n": 8425.88 + "n": 1404.3 }, { "a": "attr", "t": "weiwang", - "n": 60.6 + "n": 1.01 } ], "dlz": [], @@ -56391,17 +56391,17 @@ { "a": "attr", "t": "jinbi", - "n": 21387.48 + "n": 3564.6 }, { "a": "attr", "t": "nexp", - "n": 8432.82 + "n": 1405.5 }, { "a": "attr", "t": "weiwang", - "n": 61.2 + "n": 1.02 } ], "dlz": [], @@ -56445,17 +56445,17 @@ { "a": "attr", "t": "jinbi", - "n": 21417.96 + "n": 3569.7 }, { "a": "attr", "t": "nexp", - "n": 8439.76 + "n": 1406.6 }, { "a": "attr", "t": "weiwang", - "n": 61.2 + "n": 1.02 } ], "dlz": [], @@ -56499,17 +56499,17 @@ { "a": "attr", "t": "jinbi", - "n": 21448.44 + "n": 3574.7 }, { "a": "attr", "t": "nexp", - "n": 8446.71 + "n": 1407.8 }, { "a": "attr", "t": "weiwang", - "n": 61.2 + "n": 1.02 } ], "dlz": [], @@ -56553,17 +56553,17 @@ { "a": "attr", "t": "jinbi", - "n": 21478.92 + "n": 3579.8 }, { "a": "attr", "t": "nexp", - "n": 8453.65 + "n": 1408.9 }, { "a": "attr", "t": "weiwang", - "n": 61.2 + "n": 1.02 } ], "dlz": [], @@ -56607,17 +56607,17 @@ { "a": "attr", "t": "jinbi", - "n": 21509.4 + "n": 3584.9 }, { "a": "attr", "t": "nexp", - "n": 8460.59 + "n": 1410.1 }, { "a": "attr", "t": "weiwang", - "n": 61.2 + "n": 1.02 } ], "dlz": [], @@ -56661,17 +56661,17 @@ { "a": "attr", "t": "jinbi", - "n": 21539.88 + "n": 3590 }, { "a": "attr", "t": "nexp", - "n": 8467.53 + "n": 1411.3 }, { "a": "attr", "t": "weiwang", - "n": 61.8 + "n": 1.03 } ], "dlz": [], @@ -56715,17 +56715,17 @@ { "a": "attr", "t": "jinbi", - "n": 21570.36 + "n": 3595.1 }, { "a": "attr", "t": "nexp", - "n": 8474.47 + "n": 1412.4 }, { "a": "attr", "t": "weiwang", - "n": 61.8 + "n": 1.03 } ], "dlz": [], @@ -56769,17 +56769,17 @@ { "a": "attr", "t": "jinbi", - "n": 21600.84 + "n": 3600.1 }, { "a": "attr", "t": "nexp", - "n": 8481.42 + "n": 1413.6 }, { "a": "attr", "t": "weiwang", - "n": 61.8 + "n": 1.03 } ], "dlz": [], @@ -56823,17 +56823,17 @@ { "a": "attr", "t": "jinbi", - "n": 21631.32 + "n": 3605.2 }, { "a": "attr", "t": "nexp", - "n": 8488.36 + "n": 1414.7 }, { "a": "attr", "t": "weiwang", - "n": 61.8 + "n": 1.03 } ], "dlz": [], @@ -56877,17 +56877,17 @@ { "a": "attr", "t": "jinbi", - "n": 21661.8 + "n": 3610.3 }, { "a": "attr", "t": "nexp", - "n": 8495.3 + "n": 1415.9 }, { "a": "attr", "t": "weiwang", - "n": 61.8 + "n": 1.03 } ], "dlz": [], @@ -56931,17 +56931,17 @@ { "a": "attr", "t": "jinbi", - "n": 21692.28 + "n": 3615.4 }, { "a": "attr", "t": "nexp", - "n": 8502.24 + "n": 1417 }, { "a": "attr", "t": "weiwang", - "n": 62.4 + "n": 1.04 } ], "dlz": [], @@ -56985,17 +56985,17 @@ { "a": "attr", "t": "jinbi", - "n": 21722.76 + "n": 3620.5 }, { "a": "attr", "t": "nexp", - "n": 8509.18 + "n": 1418.2 }, { "a": "attr", "t": "weiwang", - "n": 62.4 + "n": 1.04 } ], "dlz": [], @@ -57039,17 +57039,17 @@ { "a": "attr", "t": "jinbi", - "n": 21753.24 + "n": 3625.5 }, { "a": "attr", "t": "nexp", - "n": 8516.13 + "n": 1419.4 }, { "a": "attr", "t": "weiwang", - "n": 62.4 + "n": 1.04 } ], "dlz": [], @@ -57093,17 +57093,17 @@ { "a": "attr", "t": "jinbi", - "n": 21783.72 + "n": 3630.6 }, { "a": "attr", "t": "nexp", - "n": 8523.07 + "n": 1420.5 }, { "a": "attr", "t": "weiwang", - "n": 62.4 + "n": 1.04 } ], "dlz": [], @@ -57147,17 +57147,17 @@ { "a": "attr", "t": "jinbi", - "n": 21814.2 + "n": 3635.7 }, { "a": "attr", "t": "nexp", - "n": 8530.01 + "n": 1421.7 }, { "a": "attr", "t": "weiwang", - "n": 62.4 + "n": 1.04 } ], "dlz": [], @@ -57201,17 +57201,17 @@ { "a": "attr", "t": "jinbi", - "n": 21844.68 + "n": 3640.8 }, { "a": "attr", "t": "nexp", - "n": 8536.95 + "n": 1422.8 }, { "a": "attr", "t": "weiwang", - "n": 63 + "n": 1.05 } ], "dlz": [], @@ -57255,17 +57255,17 @@ { "a": "attr", "t": "jinbi", - "n": 21875.16 + "n": 3645.9 }, { "a": "attr", "t": "nexp", - "n": 8543.89 + "n": 1424 }, { "a": "attr", "t": "weiwang", - "n": 63 + "n": 1.05 } ], "dlz": [], @@ -57309,17 +57309,17 @@ { "a": "attr", "t": "jinbi", - "n": 21905.64 + "n": 3650.9 }, { "a": "attr", "t": "nexp", - "n": 8550.84 + "n": 1425.1 }, { "a": "attr", "t": "weiwang", - "n": 63 + "n": 1.05 } ], "dlz": [], @@ -57363,17 +57363,17 @@ { "a": "attr", "t": "jinbi", - "n": 21936.12 + "n": 3656 }, { "a": "attr", "t": "nexp", - "n": 8557.78 + "n": 1426.3 }, { "a": "attr", "t": "weiwang", - "n": 63 + "n": 1.05 } ], "dlz": [], @@ -57417,17 +57417,17 @@ { "a": "attr", "t": "jinbi", - "n": 21966.6 + "n": 3661.1 }, { "a": "attr", "t": "nexp", - "n": 8564.72 + "n": 1427.5 }, { "a": "attr", "t": "weiwang", - "n": 63 + "n": 1.05 } ], "dlz": [], @@ -57471,17 +57471,17 @@ { "a": "attr", "t": "jinbi", - "n": 21997.08 + "n": 3666.2 }, { "a": "attr", "t": "nexp", - "n": 8571.66 + "n": 1428.6 }, { "a": "attr", "t": "weiwang", - "n": 63.6 + "n": 1.06 } ], "dlz": [], @@ -57525,17 +57525,17 @@ { "a": "attr", "t": "jinbi", - "n": 22027.56 + "n": 3671.3 }, { "a": "attr", "t": "nexp", - "n": 8578.6 + "n": 1429.8 }, { "a": "attr", "t": "weiwang", - "n": 63.6 + "n": 1.06 } ], "dlz": [], @@ -57579,17 +57579,17 @@ { "a": "attr", "t": "jinbi", - "n": 22058.04 + "n": 3676.3 }, { "a": "attr", "t": "nexp", - "n": 8585.55 + "n": 1430.9 }, { "a": "attr", "t": "weiwang", - "n": 63.6 + "n": 1.06 } ], "dlz": [], @@ -57633,17 +57633,17 @@ { "a": "attr", "t": "jinbi", - "n": 22088.52 + "n": 3681.4 }, { "a": "attr", "t": "nexp", - "n": 8592.49 + "n": 1432.1 }, { "a": "attr", "t": "weiwang", - "n": 63.6 + "n": 1.06 } ], "dlz": [], @@ -57687,17 +57687,17 @@ { "a": "attr", "t": "jinbi", - "n": 22119 + "n": 3686.5 }, { "a": "attr", "t": "nexp", - "n": 8599.43 + "n": 1433.2 }, { "a": "attr", "t": "weiwang", - "n": 63.6 + "n": 1.06 } ], "dlz": [], @@ -57741,17 +57741,17 @@ { "a": "attr", "t": "jinbi", - "n": 22149.48 + "n": 3691.6 }, { "a": "attr", "t": "nexp", - "n": 8606.37 + "n": 1434.4 }, { "a": "attr", "t": "weiwang", - "n": 64.2 + "n": 1.07 } ], "dlz": [], @@ -57795,17 +57795,17 @@ { "a": "attr", "t": "jinbi", - "n": 22179.96 + "n": 3696.7 }, { "a": "attr", "t": "nexp", - "n": 8613.31 + "n": 1435.6 }, { "a": "attr", "t": "weiwang", - "n": 64.2 + "n": 1.07 } ], "dlz": [], @@ -57849,17 +57849,17 @@ { "a": "attr", "t": "jinbi", - "n": 22210.44 + "n": 3701.7 }, { "a": "attr", "t": "nexp", - "n": 8620.26 + "n": 1436.7 }, { "a": "attr", "t": "weiwang", - "n": 64.2 + "n": 1.07 } ], "dlz": [], @@ -57903,17 +57903,17 @@ { "a": "attr", "t": "jinbi", - "n": 22240.92 + "n": 3706.8 }, { "a": "attr", "t": "nexp", - "n": 8627.2 + "n": 1437.9 }, { "a": "attr", "t": "weiwang", - "n": 64.2 + "n": 1.07 } ], "dlz": [], @@ -57957,17 +57957,17 @@ { "a": "attr", "t": "jinbi", - "n": 22271.4 + "n": 3711.9 }, { "a": "attr", "t": "nexp", - "n": 8634.14 + "n": 1439 }, { "a": "attr", "t": "weiwang", - "n": 64.2 + "n": 1.07 } ], "dlz": [], @@ -58011,17 +58011,17 @@ { "a": "attr", "t": "jinbi", - "n": 22301.88 + "n": 3717 }, { "a": "attr", "t": "nexp", - "n": 8641.08 + "n": 1440.2 }, { "a": "attr", "t": "weiwang", - "n": 64.8 + "n": 1.08 } ], "dlz": [], @@ -58065,17 +58065,17 @@ { "a": "attr", "t": "jinbi", - "n": 22332.36 + "n": 3722.1 }, { "a": "attr", "t": "nexp", - "n": 8648.02 + "n": 1441.3 }, { "a": "attr", "t": "weiwang", - "n": 64.8 + "n": 1.08 } ], "dlz": [], @@ -58119,17 +58119,17 @@ { "a": "attr", "t": "jinbi", - "n": 22362.84 + "n": 3727.1 }, { "a": "attr", "t": "nexp", - "n": 8654.97 + "n": 1442.5 }, { "a": "attr", "t": "weiwang", - "n": 64.8 + "n": 1.08 } ], "dlz": [], @@ -58173,17 +58173,17 @@ { "a": "attr", "t": "jinbi", - "n": 22393.32 + "n": 3732.2 }, { "a": "attr", "t": "nexp", - "n": 8661.91 + "n": 1443.7 }, { "a": "attr", "t": "weiwang", - "n": 64.8 + "n": 1.08 } ], "dlz": [], @@ -58227,17 +58227,17 @@ { "a": "attr", "t": "jinbi", - "n": 22423.8 + "n": 3737.3 }, { "a": "attr", "t": "nexp", - "n": 8668.85 + "n": 1444.8 }, { "a": "attr", "t": "weiwang", - "n": 64.8 + "n": 1.08 } ], "dlz": [], @@ -58269,5405 +58269,5 @@ 418 ], "fightmap": "bg_fight_ally" - }, - "1081": { - "id": 1081, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21081, - "name": "14-101", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22454.28 - }, - { - "a": "attr", - "t": "nexp", - "n": 8675.79 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271081, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 192.819999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 127, - 72 - ], - "fightmap": "bg_fight_ally" - }, - "1082": { - "id": 1082, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21082, - "name": "14-102", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22484.76 - }, - { - "a": "attr", - "t": "nexp", - "n": 8682.73 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271082, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 192.959999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 160, - 98 - ], - "fightmap": "bg_fight_ally" - }, - "1083": { - "id": 1083, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21083, - "name": "14-103", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22515.24 - }, - { - "a": "attr", - "t": "nexp", - "n": 8689.68 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271083, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.099999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 167, - 135 - ], - "fightmap": "bg_fight_ally" - }, - "1084": { - "id": 1084, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21084, - "name": "14-104", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22545.72 - }, - { - "a": "attr", - "t": "nexp", - "n": 8696.62 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271084, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.239999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 142, - 164 - ], - "fightmap": "bg_fight_ally" - }, - "1085": { - "id": 1085, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21085, - "name": "14-105", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22576.2 - }, - { - "a": "attr", - "t": "nexp", - "n": 8703.56 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271085, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.379999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 110, - 188 - ], - "fightmap": "bg_fight_ally" - }, - "1086": { - "id": 1086, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21086, - "name": "14-106", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22606.68 - }, - { - "a": "attr", - "t": "nexp", - "n": 8710.5 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271086, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.519999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 58, - 195 - ], - "fightmap": "bg_fight_ally" - }, - "1087": { - "id": 1087, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21087, - "name": "14-107", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22637.16 - }, - { - "a": "attr", - "t": "nexp", - "n": 8717.44 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271087, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.659999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 6, - 187 - ], - "fightmap": "bg_fight_ally" - }, - "1088": { - "id": 1088, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21088, - "name": "14-108", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22667.64 - }, - { - "a": "attr", - "t": "nexp", - "n": 8724.39 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271088, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.799999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -40, - 175 - ], - "fightmap": "bg_fight_ally" - }, - "1089": { - "id": 1089, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21089, - "name": "14-109", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22698.12 - }, - { - "a": "attr", - "t": "nexp", - "n": 8731.33 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271089, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 193.939999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -92, - 173 - ], - "fightmap": "bg_fight_ally" - }, - "1090": { - "id": 1090, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21090, - "name": "14-110", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22728.6 - }, - { - "a": "attr", - "t": "nexp", - "n": 8738.27 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271090, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.079999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -144, - 178 - ], - "fightmap": "bg_fight_ally" - }, - "1091": { - "id": 1091, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21091, - "name": "14-111", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22759.08 - }, - { - "a": "attr", - "t": "nexp", - "n": 8745.21 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271091, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.219999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -186, - 190 - ], - "fightmap": "bg_fight_ally" - }, - "1092": { - "id": 1092, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21092, - "name": "14-112", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22789.56 - }, - { - "a": "attr", - "t": "nexp", - "n": 8752.15 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271092, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.359999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -217, - 212 - ], - "fightmap": "bg_fight_ally" - }, - "1093": { - "id": 1093, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21093, - "name": "14-113", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22820.04 - }, - { - "a": "attr", - "t": "nexp", - "n": 8759.1 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271093, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.499999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -222, - 245 - ], - "fightmap": "bg_fight_ally" - }, - "1094": { - "id": 1094, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21094, - "name": "14-114", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22850.52 - }, - { - "a": "attr", - "t": "nexp", - "n": 8766.04 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271094, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.639999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -210, - 275 - ], - "fightmap": "bg_fight_ally" - }, - "1095": { - "id": 1095, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21095, - "name": "14-115", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22881 - }, - { - "a": "attr", - "t": "nexp", - "n": 8772.98 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271095, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.779999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -185, - 303 - ], - "fightmap": "bg_fight_ally" - }, - "1096": { - "id": 1096, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21096, - "name": "14-116", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22911.48 - }, - { - "a": "attr", - "t": "nexp", - "n": 8779.92 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271096, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 194.919999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -150, - 331 - ], - "fightmap": "bg_fight_ally" - }, - "1097": { - "id": 1097, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21097, - "name": "14-117", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22941.96 - }, - { - "a": "attr", - "t": "nexp", - "n": 8786.86 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271097, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.059999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -116, - 355 - ], - "fightmap": "bg_fight_ally" - }, - "1098": { - "id": 1098, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21098, - "name": "14-118", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 22972.44 - }, - { - "a": "attr", - "t": "nexp", - "n": 8793.81 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271098, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.199999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -78, - 379 - ], - "fightmap": "bg_fight_ally" - }, - "1099": { - "id": 1099, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21099, - "name": "14-119", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23002.92 - }, - { - "a": "attr", - "t": "nexp", - "n": 8800.75 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271099, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.339999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -42, - 400 - ], - "fightmap": "bg_fight_ally" - }, - "1100": { - "id": 1100, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21100, - "name": "14-120", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23033.4 - }, - { - "a": "attr", - "t": "nexp", - "n": 8807.69 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271100, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.479999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -6, - 418 - ], - "fightmap": "bg_fight_ally" - }, - "1101": { - "id": 1101, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21101, - "name": "14-121", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23063.88 - }, - { - "a": "attr", - "t": "nexp", - "n": 8814.63 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271101, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.619999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 127, - 72 - ], - "fightmap": "bg_fight_ally" - }, - "1102": { - "id": 1102, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21102, - "name": "14-122", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23094.36 - }, - { - "a": "attr", - "t": "nexp", - "n": 8821.57 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271102, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.759999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 160, - 98 - ], - "fightmap": "bg_fight_ally" - }, - "1103": { - "id": 1103, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21103, - "name": "14-123", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23124.84 - }, - { - "a": "attr", - "t": "nexp", - "n": 8828.52 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271103, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 195.899999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 167, - 135 - ], - "fightmap": "bg_fight_ally" - }, - "1104": { - "id": 1104, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21104, - "name": "14-124", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23155.32 - }, - { - "a": "attr", - "t": "nexp", - "n": 8835.46 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271104, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.039999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 142, - 164 - ], - "fightmap": "bg_fight_ally" - }, - "1105": { - "id": 1105, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21105, - "name": "14-125", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23185.8 - }, - { - "a": "attr", - "t": "nexp", - "n": 8842.4 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271105, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.179999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 110, - 188 - ], - "fightmap": "bg_fight_ally" - }, - "1106": { - "id": 1106, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21106, - "name": "14-126", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23216.28 - }, - { - "a": "attr", - "t": "nexp", - "n": 8849.34 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271106, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.319999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 58, - 195 - ], - "fightmap": "bg_fight_ally" - }, - "1107": { - "id": 1107, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21107, - "name": "14-127", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23246.76 - }, - { - "a": "attr", - "t": "nexp", - "n": 8856.28 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271107, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.459999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 6, - 187 - ], - "fightmap": "bg_fight_ally" - }, - "1108": { - "id": 1108, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21108, - "name": "14-128", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23277.24 - }, - { - "a": "attr", - "t": "nexp", - "n": 8863.23 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271108, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.599999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -40, - 175 - ], - "fightmap": "bg_fight_ally" - }, - "1109": { - "id": 1109, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21109, - "name": "14-129", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23307.72 - }, - { - "a": "attr", - "t": "nexp", - "n": 8870.17 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271109, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.739999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -92, - 173 - ], - "fightmap": "bg_fight_ally" - }, - "1110": { - "id": 1110, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21110, - "name": "14-130", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23338.2 - }, - { - "a": "attr", - "t": "nexp", - "n": 8877.11 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271110, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 196.879999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -144, - 178 - ], - "fightmap": "bg_fight_ally" - }, - "1111": { - "id": 1111, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21111, - "name": "14-131", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23368.68 - }, - { - "a": "attr", - "t": "nexp", - "n": 8884.05 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271111, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.019999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -186, - 190 - ], - "fightmap": "bg_fight_ally" - }, - "1112": { - "id": 1112, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21112, - "name": "14-132", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23399.16 - }, - { - "a": "attr", - "t": "nexp", - "n": 8890.99 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271112, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.159999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -217, - 212 - ], - "fightmap": "bg_fight_ally" - }, - "1113": { - "id": 1113, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21113, - "name": "14-133", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23429.64 - }, - { - "a": "attr", - "t": "nexp", - "n": 8897.94 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271113, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.299999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -222, - 245 - ], - "fightmap": "bg_fight_ally" - }, - "1114": { - "id": 1114, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21114, - "name": "14-134", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23460.12 - }, - { - "a": "attr", - "t": "nexp", - "n": 8904.88 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271114, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.439999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -210, - 275 - ], - "fightmap": "bg_fight_ally" - }, - "1115": { - "id": 1115, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21115, - "name": "14-135", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23490.6 - }, - { - "a": "attr", - "t": "nexp", - "n": 8911.82 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271115, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.579999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -185, - 303 - ], - "fightmap": "bg_fight_ally" - }, - "1116": { - "id": 1116, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21116, - "name": "14-136", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23521.08 - }, - { - "a": "attr", - "t": "nexp", - "n": 8918.76 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271116, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.719999999996, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -150, - 331 - ], - "fightmap": "bg_fight_ally" - }, - "1117": { - "id": 1117, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21117, - "name": "14-137", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23551.56 - }, - { - "a": "attr", - "t": "nexp", - "n": 8925.7 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271117, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.859999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -116, - 355 - ], - "fightmap": "bg_fight_ally" - }, - "1118": { - "id": 1118, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21118, - "name": "14-138", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23582.04 - }, - { - "a": "attr", - "t": "nexp", - "n": 8932.65 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271118, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 197.999999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -78, - 379 - ], - "fightmap": "bg_fight_ally" - }, - "1119": { - "id": 1119, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21119, - "name": "14-139", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23612.52 - }, - { - "a": "attr", - "t": "nexp", - "n": 8939.59 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271119, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.139999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -42, - 400 - ], - "fightmap": "bg_fight_ally" - }, - "1120": { - "id": 1120, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21120, - "name": "14-140", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23643 - }, - { - "a": "attr", - "t": "nexp", - "n": 8946.53 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271120, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.279999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -6, - 418 - ], - "fightmap": "bg_fight_ally" - }, - "1121": { - "id": 1121, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21121, - "name": "14-141", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23673.48 - }, - { - "a": "attr", - "t": "nexp", - "n": 8953.47 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271121, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.419999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 127, - 72 - ], - "fightmap": "bg_fight_ally" - }, - "1122": { - "id": 1122, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21122, - "name": "14-142", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23703.96 - }, - { - "a": "attr", - "t": "nexp", - "n": 8960.41 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271122, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.559999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 160, - 98 - ], - "fightmap": "bg_fight_ally" - }, - "1123": { - "id": 1123, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21123, - "name": "14-143", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23734.44 - }, - { - "a": "attr", - "t": "nexp", - "n": 8967.36 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271123, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.699999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 167, - 135 - ], - "fightmap": "bg_fight_ally" - }, - "1124": { - "id": 1124, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21124, - "name": "14-144", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23764.92 - }, - { - "a": "attr", - "t": "nexp", - "n": 8974.3 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271124, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.839999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 142, - 164 - ], - "fightmap": "bg_fight_ally" - }, - "1125": { - "id": 1125, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21125, - "name": "14-145", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23795.4 - }, - { - "a": "attr", - "t": "nexp", - "n": 8981.24 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271125, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 198.979999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 110, - 188 - ], - "fightmap": "bg_fight_ally" - }, - "1126": { - "id": 1126, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21126, - "name": "14-146", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23825.88 - }, - { - "a": "attr", - "t": "nexp", - "n": 8988.18 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271126, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.119999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 58, - 195 - ], - "fightmap": "bg_fight_ally" - }, - "1127": { - "id": 1127, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21127, - "name": "14-147", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23856.36 - }, - { - "a": "attr", - "t": "nexp", - "n": 8995.12 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271127, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.259999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 6, - 187 - ], - "fightmap": "bg_fight_ally" - }, - "1128": { - "id": 1128, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21128, - "name": "14-148", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23886.84 - }, - { - "a": "attr", - "t": "nexp", - "n": 9002.07 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271128, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.399999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -40, - 175 - ], - "fightmap": "bg_fight_ally" - }, - "1129": { - "id": 1129, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21129, - "name": "14-149", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23917.32 - }, - { - "a": "attr", - "t": "nexp", - "n": 9009.01 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271129, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.539999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -92, - 173 - ], - "fightmap": "bg_fight_ally" - }, - "1130": { - "id": 1130, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21130, - "name": "14-150", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23947.8 - }, - { - "a": "attr", - "t": "nexp", - "n": 9015.95 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271130, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.679999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -144, - 178 - ], - "fightmap": "bg_fight_ally" - }, - "1131": { - "id": 1131, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21131, - "name": "14-151", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 23978.28 - }, - { - "a": "attr", - "t": "nexp", - "n": 9022.89 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271131, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.819999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -186, - 190 - ], - "fightmap": "bg_fight_ally" - }, - "1132": { - "id": 1132, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21132, - "name": "14-152", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24008.76 - }, - { - "a": "attr", - "t": "nexp", - "n": 9029.83 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271132, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 199.959999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -217, - 212 - ], - "fightmap": "bg_fight_ally" - }, - "1133": { - "id": 1133, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21133, - "name": "14-153", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24039.24 - }, - { - "a": "attr", - "t": "nexp", - "n": 9036.78 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271133, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.099999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -222, - 245 - ], - "fightmap": "bg_fight_ally" - }, - "1134": { - "id": 1134, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21134, - "name": "14-154", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24069.72 - }, - { - "a": "attr", - "t": "nexp", - "n": 9043.72 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271134, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.239999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -210, - 275 - ], - "fightmap": "bg_fight_ally" - }, - "1135": { - "id": 1135, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21135, - "name": "14-155", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24100.2 - }, - { - "a": "attr", - "t": "nexp", - "n": 9050.66 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271135, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.379999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -185, - 303 - ], - "fightmap": "bg_fight_ally" - }, - "1136": { - "id": 1136, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21136, - "name": "14-156", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24130.68 - }, - { - "a": "attr", - "t": "nexp", - "n": 9057.6 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271136, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.519999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -150, - 331 - ], - "fightmap": "bg_fight_ally" - }, - "1137": { - "id": 1137, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21137, - "name": "14-157", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24161.16 - }, - { - "a": "attr", - "t": "nexp", - "n": 9064.54 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271137, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.659999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -116, - 355 - ], - "fightmap": "bg_fight_ally" - }, - "1138": { - "id": 1138, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21138, - "name": "14-158", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24191.64 - }, - { - "a": "attr", - "t": "nexp", - "n": 9071.49 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271138, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.799999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -78, - 379 - ], - "fightmap": "bg_fight_ally" - }, - "1139": { - "id": 1139, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21139, - "name": "14-159", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24222.12 - }, - { - "a": "attr", - "t": "nexp", - "n": 9078.43 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271139, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 200.939999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -42, - 400 - ], - "fightmap": "bg_fight_ally" - }, - "1140": { - "id": 1140, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21140, - "name": "14-160", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24252.6 - }, - { - "a": "attr", - "t": "nexp", - "n": 9085.37 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271140, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.079999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -6, - 418 - ], - "fightmap": "bg_fight_ally" - }, - "1141": { - "id": 1141, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21141, - "name": "14-161", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24283.08 - }, - { - "a": "attr", - "t": "nexp", - "n": 9092.31 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271141, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.219999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 127, - 72 - ], - "fightmap": "bg_fight_ally" - }, - "1142": { - "id": 1142, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21142, - "name": "14-162", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24313.56 - }, - { - "a": "attr", - "t": "nexp", - "n": 9099.25 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271142, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.359999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 160, - 98 - ], - "fightmap": "bg_fight_ally" - }, - "1143": { - "id": 1143, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21143, - "name": "14-163", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24344.04 - }, - { - "a": "attr", - "t": "nexp", - "n": 9106.2 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271143, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.499999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 167, - 135 - ], - "fightmap": "bg_fight_ally" - }, - "1144": { - "id": 1144, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21144, - "name": "14-164", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24374.52 - }, - { - "a": "attr", - "t": "nexp", - "n": 9113.14 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271144, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.639999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 142, - 164 - ], - "fightmap": "bg_fight_ally" - }, - "1145": { - "id": 1145, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21145, - "name": "14-165", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24405 - }, - { - "a": "attr", - "t": "nexp", - "n": 9120.08 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271145, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.779999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 110, - 188 - ], - "fightmap": "bg_fight_ally" - }, - "1146": { - "id": 1146, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21146, - "name": "14-166", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24435.48 - }, - { - "a": "attr", - "t": "nexp", - "n": 9127.02 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271146, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 201.919999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 58, - 195 - ], - "fightmap": "bg_fight_ally" - }, - "1147": { - "id": 1147, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21147, - "name": "14-167", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24465.96 - }, - { - "a": "attr", - "t": "nexp", - "n": 9133.96 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271147, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.059999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 6, - 187 - ], - "fightmap": "bg_fight_ally" - }, - "1148": { - "id": 1148, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21148, - "name": "14-168", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24496.44 - }, - { - "a": "attr", - "t": "nexp", - "n": 9140.91 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271148, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.199999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -40, - 175 - ], - "fightmap": "bg_fight_ally" - }, - "1149": { - "id": 1149, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21149, - "name": "14-169", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24526.92 - }, - { - "a": "attr", - "t": "nexp", - "n": 9147.85 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271149, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.339999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -92, - 173 - ], - "fightmap": "bg_fight_ally" - }, - "1150": { - "id": 1150, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21150, - "name": "14-170", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24557.4 - }, - { - "a": "attr", - "t": "nexp", - "n": 9154.79 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271150, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.479999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -144, - 178 - ], - "fightmap": "bg_fight_ally" - }, - "1151": { - "id": 1151, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21151, - "name": "14-171", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24587.88 - }, - { - "a": "attr", - "t": "nexp", - "n": 9161.73 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271151, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.619999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -186, - 190 - ], - "fightmap": "bg_fight_ally" - }, - "1152": { - "id": 1152, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21152, - "name": "14-172", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24618.36 - }, - { - "a": "attr", - "t": "nexp", - "n": 9168.67 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271152, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.759999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -217, - 212 - ], - "fightmap": "bg_fight_ally" - }, - "1153": { - "id": 1153, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21153, - "name": "14-173", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24648.84 - }, - { - "a": "attr", - "t": "nexp", - "n": 9175.62 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271153, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 202.899999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -222, - 245 - ], - "fightmap": "bg_fight_ally" - }, - "1154": { - "id": 1154, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21154, - "name": "14-174", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24679.32 - }, - { - "a": "attr", - "t": "nexp", - "n": 9182.56 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271154, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.039999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -210, - 275 - ], - "fightmap": "bg_fight_ally" - }, - "1155": { - "id": 1155, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21155, - "name": "14-175", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24709.8 - }, - { - "a": "attr", - "t": "nexp", - "n": 9189.5 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271155, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.179999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -185, - 303 - ], - "fightmap": "bg_fight_ally" - }, - "1156": { - "id": 1156, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21156, - "name": "14-176", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24740.28 - }, - { - "a": "attr", - "t": "nexp", - "n": 9196.44 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271156, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.319999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -150, - 331 - ], - "fightmap": "bg_fight_ally" - }, - "1157": { - "id": 1157, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21157, - "name": "14-177", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24770.76 - }, - { - "a": "attr", - "t": "nexp", - "n": 9203.38 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271157, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.459999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -116, - 355 - ], - "fightmap": "bg_fight_ally" - }, - "1158": { - "id": 1158, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21158, - "name": "14-178", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24801.24 - }, - { - "a": "attr", - "t": "nexp", - "n": 9210.33 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271158, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.599999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -78, - 379 - ], - "fightmap": "bg_fight_ally" - }, - "1159": { - "id": 1159, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21159, - "name": "14-179", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24831.72 - }, - { - "a": "attr", - "t": "nexp", - "n": 9217.27 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271159, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.739999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -42, - 400 - ], - "fightmap": "bg_fight_ally" - }, - "1160": { - "id": 1160, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21160, - "name": "14-180", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24862.2 - }, - { - "a": "attr", - "t": "nexp", - "n": 9224.21 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271160, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 203.879999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -6, - 418 - ], - "fightmap": "bg_fight_ally" - }, - "1161": { - "id": 1161, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21161, - "name": "14-181", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24892.68 - }, - { - "a": "attr", - "t": "nexp", - "n": 9231.15 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271161, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.019999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 127, - 72 - ], - "fightmap": "bg_fight_ally" - }, - "1162": { - "id": 1162, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21162, - "name": "14-182", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24923.16 - }, - { - "a": "attr", - "t": "nexp", - "n": 9238.09 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271162, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.159999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 160, - 98 - ], - "fightmap": "bg_fight_ally" - }, - "1163": { - "id": 1163, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21163, - "name": "14-183", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24953.64 - }, - { - "a": "attr", - "t": "nexp", - "n": 9245.04 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271163, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.299999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 167, - 135 - ], - "fightmap": "bg_fight_ally" - }, - "1164": { - "id": 1164, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21164, - "name": "14-184", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 24984.12 - }, - { - "a": "attr", - "t": "nexp", - "n": 9251.98 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271164, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.439999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 142, - 164 - ], - "fightmap": "bg_fight_ally" - }, - "1165": { - "id": 1165, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21165, - "name": "14-185", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25014.6 - }, - { - "a": "attr", - "t": "nexp", - "n": 9258.92 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271165, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.579999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 110, - 188 - ], - "fightmap": "bg_fight_ally" - }, - "1166": { - "id": 1166, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21166, - "name": "14-186", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25045.08 - }, - { - "a": "attr", - "t": "nexp", - "n": 9265.86 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271166, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.719999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 58, - 195 - ], - "fightmap": "bg_fight_ally" - }, - "1167": { - "id": 1167, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21167, - "name": "14-187", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25075.56 - }, - { - "a": "attr", - "t": "nexp", - "n": 9272.8 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271167, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.859999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - 6, - 187 - ], - "fightmap": "bg_fight_ally" - }, - "1168": { - "id": 1168, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21168, - "name": "14-188", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25106.04 - }, - { - "a": "attr", - "t": "nexp", - "n": 9279.75 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271168, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 204.999999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -40, - 175 - ], - "fightmap": "bg_fight_ally" - }, - "1169": { - "id": 1169, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21169, - "name": "14-189", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25136.52 - }, - { - "a": "attr", - "t": "nexp", - "n": 9286.69 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271169, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.139999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -92, - 173 - ], - "fightmap": "bg_fight_ally" - }, - "1170": { - "id": 1170, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21170, - "name": "14-190", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25167 - }, - { - "a": "attr", - "t": "nexp", - "n": 9293.63 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271170, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.279999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -144, - 178 - ], - "fightmap": "bg_fight_ally" - }, - "1171": { - "id": 1171, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21171, - "name": "14-191", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25197.48 - }, - { - "a": "attr", - "t": "nexp", - "n": 9300.57 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271171, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.419999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -186, - 190 - ], - "fightmap": "bg_fight_ally" - }, - "1172": { - "id": 1172, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21172, - "name": "14-192", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25227.96 - }, - { - "a": "attr", - "t": "nexp", - "n": 9307.51 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271172, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.559999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -217, - 212 - ], - "fightmap": "bg_fight_ally" - }, - "1173": { - "id": 1173, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21173, - "name": "14-193", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25258.44 - }, - { - "a": "attr", - "t": "nexp", - "n": 9314.46 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271173, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.699999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -222, - 245 - ], - "fightmap": "bg_fight_ally" - }, - "1174": { - "id": 1174, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21174, - "name": "14-194", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25288.92 - }, - { - "a": "attr", - "t": "nexp", - "n": 9321.4 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271174, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.839999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -210, - 275 - ], - "fightmap": "bg_fight_ally" - }, - "1175": { - "id": 1175, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21175, - "name": "14-195", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25319.4 - }, - { - "a": "attr", - "t": "nexp", - "n": 9328.34 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271175, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 205.979999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -185, - 303 - ], - "fightmap": "bg_fight_ally" - }, - "1176": { - "id": 1176, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21176, - "name": "14-196", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25349.88 - }, - { - "a": "attr", - "t": "nexp", - "n": 9335.28 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271176, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 206.119999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -150, - 331 - ], - "fightmap": "bg_fight_ally" - }, - "1177": { - "id": 1177, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21177, - "name": "14-197", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25380.36 - }, - { - "a": "attr", - "t": "nexp", - "n": 9342.22 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271177, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 206.259999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -116, - 355 - ], - "fightmap": "bg_fight_ally" - }, - "1178": { - "id": 1178, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21178, - "name": "14-198", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25410.84 - }, - { - "a": "attr", - "t": "nexp", - "n": 9349.17 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271178, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 206.399999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -78, - 379 - ], - "fightmap": "bg_fight_ally" - }, - "1179": { - "id": 1179, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21179, - "name": "14-199", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25441.32 - }, - { - "a": "attr", - "t": "nexp", - "n": 9356.11 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271179, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 206.539999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -42, - 400 - ], - "fightmap": "bg_fight_ally" - }, - "1180": { - "id": 1180, - "chapter": 14, - "mapbg": "tx_map_ally", - "needLv": 1, - "npcId": 21180, - "name": "14-200", - "gjPrize": [ - { - "a": "attr", - "t": "jinbi", - "n": 25471.8 - }, - { - "a": "attr", - "t": "nexp", - "n": 9363.05 - }, - { - "a": "attr", - "t": "weiwang", - "n": 64.8 - } - ], - "dlz": [], - "passPrize": [ - 260090, - 271180, - 280001, - 280002, - 104, - 105, - 106, - 113 - ], - "base": 206.679999999995, - "round": [ - 60, - 180, - 300 - ], - "drop": [ - 211080, - 220075, - 230001, - 240001, - 250003 - ], - "pos": [ - -6, - 418 - ], - "fightmap": "bg_fight_ally" } } \ No newline at end of file diff --git a/src/json/xstask.json b/src/json/xstask.json index 4575ee1..d59e98c 100644 --- a/src/json/xstask.json +++ b/src/json/xstask.json @@ -17,7 +17,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_1", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "2": { "id": 2, @@ -37,7 +37,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_2", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "3": { "id": 3, @@ -57,7 +57,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_3", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "4": { "id": 4, @@ -77,7 +77,7 @@ "p": 1, "intr": "intr_xuanshangrenwu_intr_4", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "5": { "id": 5, @@ -97,7 +97,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_5", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "6": { "id": 6, @@ -117,7 +117,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_4", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "7": { "id": 7, @@ -137,7 +137,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_5", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "8": { "id": 8, @@ -157,7 +157,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_6", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "9": { "id": 9, @@ -177,7 +177,7 @@ "p": 1, "intr": "intr_xuanshangrenwu_intr_7", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "10": { "id": 10, @@ -197,7 +197,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_8", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "11": { "id": 11, @@ -217,7 +217,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_6", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "12": { "id": 12, @@ -237,7 +237,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_7", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "13": { "id": 13, @@ -257,7 +257,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_8", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "14": { "id": 14, @@ -277,7 +277,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_9", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "15": { "id": 15, @@ -297,7 +297,7 @@ "p": 2, "intr": "intr_xuanshangrenwu_intr_10", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "16": { "id": 16, @@ -317,7 +317,7 @@ "p": 4, "intr": "intr_xuanshangrenwu_intr_8", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "17": { "id": 17, @@ -337,7 +337,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_9", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "18": { "id": 18, @@ -357,7 +357,7 @@ "p": 1, "intr": "intr_xuanshangrenwu_intr_10", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "19": { "id": 19, @@ -377,7 +377,7 @@ "p": 4, "intr": "intr_xuanshangrenwu_intr_11", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "20": { "id": 20, @@ -397,7 +397,7 @@ "p": 4, "intr": "intr_xuanshangrenwu_intr_12", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "21": { "id": 21, @@ -417,7 +417,7 @@ "p": 3, "intr": "intr_xuanshangrenwu_intr_11", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "22": { "id": 22, @@ -437,7 +437,7 @@ "p": 2, "intr": "intr_xuanshangrenwu_intr_12", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "23": { "id": 23, @@ -457,7 +457,7 @@ "p": 1, "intr": "intr_xuanshangrenwu_intr_13", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "24": { "id": 24, @@ -477,7 +477,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_14", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "25": { "id": 25, @@ -497,7 +497,7 @@ "p": 2, "intr": "intr_xuanshangrenwu_intr_15", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "26": { "id": 26, @@ -517,7 +517,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_14", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "27": { "id": 27, @@ -537,7 +537,7 @@ "p": 5, "intr": "intr_xuanshangrenwu_intr_15", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "28": { "id": 28, @@ -557,7 +557,7 @@ "p": 1, "intr": "intr_xuanshangrenwu_intr_16", "img": "icon_jinbi", - "jiequNum": 3 + "appearNum": 3 }, "29": { "id": 29, @@ -577,7 +577,7 @@ "p": 2, "intr": "intr_xuanshangrenwu_intr_17", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 }, "30": { "id": 30, @@ -597,6 +597,6 @@ "p": 4, "intr": "intr_xuanshangrenwu_intr_18", "img": "icon_jinbi", - "jiequNum": 0 + "appearNum": 0 } } \ No newline at end of file diff --git a/src/jsonType.ts b/src/jsonType.ts index c6edbea..9f21d4d 100644 --- a/src/jsonType.ts +++ b/src/jsonType.ts @@ -136,9 +136,9 @@ type gc_clsl_dan = k_v<{ /** 机器人 */ 'npc': number, /** 随机机器人概率*/ - 'pro':number + 'pro': number /** 对手范围 */ - 'fighter':number[] + 'fighter': number[] }>; type gc_com = k_v<{ @@ -1958,7 +1958,7 @@ type gcType = { kfcb_prize: gc_kfcb_prize yuyuemail: gc_yuyuemail tuisonglibao: gc_push_gift - renown_level: gc_renown_level + } @@ -1969,3 +1969,4 @@ declare global { export function initGcType() { } + \ No newline at end of file diff --git a/src/lng.ts b/src/lng.ts index 4593c26..b399088 100644 --- a/src/lng.ts +++ b/src/lng.ts @@ -239,6 +239,9 @@ class Lng { hero_17 = "hero_17"; hero_18 = "hero_18"; hero_19 = "hero_19"; + hero_20 = "hero_20"; + hero_21 = "hero_21"; + hero_22 = "hero_22"; item_1 = "item_1"; item_2 = "item_2"; diff --git a/src/module/mongodb.ts b/src/module/mongodb.ts index dd22c84..6e0bd37 100644 --- a/src/module/mongodb.ts +++ b/src/module/mongodb.ts @@ -1,25 +1,25 @@ -import {ResSyncBtn} from '../shared/protocols/PtlSyncBtn'; -import {payLog} from '../shared/protocols/pay/PtlGetList'; -import {rankType} from '../shared/protocols/rank/PtlOpen'; -import {CollectionChatLog} from './collection_chatlog'; -import {CollectionActionLog} from './collection_actionLog'; -import {CollectionCardlog} from './collection_cardlog'; -import {CollectionCllsCrossGroup, CollectionCllsCrossUser} from './collection_clsl'; -import {CollectionCrosskv} from './collection_crosskv'; -import {CollectionDayPay} from './collection_dayPay'; -import {CollectionDxlt} from './collection_dxlt'; -import {CollectionEmail} from './collection_email'; -import {CollectionEquip} from './collection_equip'; -import {CollectionEvent} from './collection_event'; -import {CollectionFriend} from './collection_friend'; -import {CollectionGanHai} from './collection_ganhai'; -import {CollectionGBTX} from './collection_gbtx'; -import {CollectionGongHui, CollectionGongHuiFb, CollectionGongHuiUser} from './collection_gonghui'; -import {CollectionHbzbUserCross, CollectionHbzbUserZbs} from './collection_hbzb_user_cross'; -import {CollectionHero} from './collection_hero'; -import {CollectionItem} from './collection_item'; -import {CollectionJJC} from './collection_jjc'; -import {CollectionApiWeiXiuChang} from './collection_weixiuchang'; +import { ResSyncBtn } from '../shared/protocols/PtlSyncBtn'; +import { payLog } from '../shared/protocols/pay/PtlGetList'; +import { rankType } from '../shared/protocols/rank/PtlOpen'; +import { CollectionChatLog } from './collection_chatlog'; +import { CollectionActionLog } from './collection_actionLog'; +import { CollectionCardlog } from './collection_cardlog'; +import { CollectionCllsCrossGroup, CollectionCllsCrossUser } from './collection_clsl'; +import { CollectionCrosskv } from './collection_crosskv'; +import { CollectionDayPay } from './collection_dayPay'; +import { CollectionDxlt } from './collection_dxlt'; +import { CollectionEmail } from './collection_email'; +import { CollectionEquip } from './collection_equip'; +import { CollectionEvent } from './collection_event'; +import { CollectionFriend } from './collection_friend'; +import { CollectionGanHai } from './collection_ganhai'; +import { CollectionGBTX } from './collection_gbtx'; +import { CollectionGongHui, CollectionGongHuiFb, CollectionGongHuiUser } from './collection_gonghui'; +import { CollectionHbzbUserCross, CollectionHbzbUserZbs } from './collection_hbzb_user_cross'; +import { CollectionHero } from './collection_hero'; +import { CollectionItem } from './collection_item'; +import { CollectionJJC } from './collection_jjc'; +import { CollectionApiWeiXiuChang } from './collection_weixiuchang'; import { CollectionKbzzApplyUser, @@ -27,39 +27,39 @@ import { CollectionKbzzGroupTroop, CollectionKbzzGroupUser } from './collection_kbzz'; -import {CollectionKuangDong} from './collection_kuangdong'; -import {CollectionLingZhuLaiXi} from './collection_lingzhulaixi'; -import {CollectionMingdao} from './collection_mingdao'; -import {CollectionPlayerInfo} from './collection_palyerInfo'; -import {CollectionPata} from './collection_pata'; -import {CollectionPeiJian} from './collection_peijian'; -import {CollectionPlayAttr} from './collection_playattr'; -import {CollectionRank, CollectionRankList} from './collection_rank'; -import {CollectionRecord} from './collection_record'; -import {CollectionSchedler} from './collection_scheduler'; -import {CollectionShiwu} from './collection_shiwu'; -import {CollectionSlzdGh, CollectionSlzdUser, CollectionSlzdStash} from './collection_slzd'; -import {CollectionTanXian} from './collection_tanxian'; -import {CollectionTask} from './collection_task'; -import {CollectionUser} from './collection_user'; -import {CollectionWanted} from './collection_wanted'; -import {CollectionWjjl} from './collection_wjjl'; -import {CollectionWzryCross} from './collection_wzry_user_cross'; -import {CollectionWzryCrossFight} from './collection_wzryfight'; -import {CollectionWzryCrossFightLOG} from './collection_wzryfightlOG'; -import {CollectionWzryCrossWiner} from './collection_wzrywiner'; -import {CollectionXstask} from './collection_xstask'; -import {CollectionZhanLing} from './collection_zhanling'; -import {CollectionHdinfo} from './collection_hdinfo'; -import {CollectionGiftLog} from "./collection_giftLog"; -import {CollectionLoginLog} from "./collection_loginLog"; -import {CollectionPayLogNew} from "./collection_payLogNew"; -import {CollectionApiCount} from "./collection_apiCount"; -import {CollectionPlayerBehavior} from "./collection_player_behavior"; -import {CollectionRmbuse} from "./collection_rmbuse"; -import {CollectionFightLog} from "./collection_fightLog"; -import {CollectionShop} from "./collection_shop"; -import {CollectionPushGift} from "./collection_pushgift"; +import { CollectionKuangDong } from './collection_kuangdong'; +import { CollectionLingZhuLaiXi } from './collection_lingzhulaixi'; +import { CollectionMingdao } from './collection_mingdao'; +import { CollectionPlayerInfo } from './collection_palyerInfo'; +import { CollectionPata } from './collection_pata'; +import { CollectionPeiJian } from './collection_peijian'; +import { CollectionPlayAttr } from './collection_playattr'; +import { CollectionRank, CollectionRankList } from './collection_rank'; +import { CollectionRecord } from './collection_record'; +import { CollectionSchedler } from './collection_scheduler'; +import { CollectionShiwu } from './collection_shiwu'; +import { CollectionSlzdGh, CollectionSlzdUser, CollectionSlzdStash } from './collection_slzd'; +import { CollectionTanXian } from './collection_tanxian'; +import { CollectionTask } from './collection_task'; +import { CollectionUser } from './collection_user'; +import { CollectionWanted } from './collection_wanted'; +import { CollectionWjjl } from './collection_wjjl'; +import { CollectionWzryCross } from './collection_wzry_user_cross'; +import { CollectionWzryCrossFight } from './collection_wzryfight'; +import { CollectionWzryCrossFightLOG } from './collection_wzryfightlOG'; +import { CollectionWzryCrossWiner } from './collection_wzrywiner'; +import { CollectionXstask } from './collection_xstask'; +import { CollectionZhanLing } from './collection_zhanling'; +import { CollectionHdinfo } from './collection_hdinfo'; +import { CollectionGiftLog } from "./collection_giftLog"; +import { CollectionLoginLog } from "./collection_loginLog"; +import { CollectionPayLogNew } from "./collection_payLogNew"; +import { CollectionApiCount } from "./collection_apiCount"; +import { CollectionPlayerBehavior } from "./collection_player_behavior"; +import { CollectionRmbuse } from "./collection_rmbuse"; +import { CollectionFightLog } from "./collection_fightLog"; +import { CollectionShop } from "./collection_shop"; +import { CollectionPushGift } from "./collection_pushgift"; import { CollectionWeiwang } from './collection_weiwang'; export type MongodbCollections = { @@ -134,7 +134,7 @@ export type MongodbCollections = { rmbuse: CollectionRmbuse fightLog: CollectionFightLog shop: CollectionShop - pushgift:CollectionPushGift + pushgift: CollectionPushGift huodong_user: CollectionUser; weiwang: CollectionWeiwang; diff --git a/src/monopoly/protocols/serviceProto.ts b/src/monopoly/protocols/serviceProto.ts index c49cc84..cc7066d 100644 --- a/src/monopoly/protocols/serviceProto.ts +++ b/src/monopoly/protocols/serviceProto.ts @@ -2640,7 +2640,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "weiwangbuff", + "name": "heroskin", "type": { "type": "Interface", "indexSignature": { diff --git a/src/public/heroskin.ts b/src/public/heroskin.ts new file mode 100644 index 0000000..a769476 --- /dev/null +++ b/src/public/heroskin.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { call } from "../public/player"; +import { PlayerFun } from "../public/player"; + + +export default class HeroSkinFun { + + /** + * 获取英雄皮肤列表 + * @param uid + * @returns + */ + static getHeroSkin(call: call, oids: string | string[] = '') { + return call.conn.gud.heroskin || {}; + } + + /** + * 更新英雄皮肤数据 + * + * 说明 addAttr 会推送msg_s2c/PlayerChange + * addEventMsg 会检测 PlayerChange 如果change的key在player中则触发重算战力操作 + * 所以这个地放更新heroskin数据不需要主动重算战力 + * @param oid + * @param data + * @returns + * */ + static async updateHeroSkinLv(call: ApiCall, change: k_v) { + let skin = this.getHeroSkin(call); + skin = Object.assign(skin, change); + await PlayerFun.addAttr(call, { heroskin: skin }); + } +} \ No newline at end of file diff --git a/src/public/player.ts b/src/public/player.ts index 2647bce..87e3d43 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -1,25 +1,25 @@ -import {ObjectId, OptionalId} from 'mongodb'; -import {ApiCall, BaseConnection, TsrpcError} from 'tsrpc'; -import {checkPlayerGift} from '../api_s2c/event/xianshilibao/fun'; -import {md_redPoint_check} from '../api_s2c/gongyu/mingdao/ApiOpen'; -import {CollectionPeiJian} from '../module/collection_peijian'; -import {Wjjl} from '../module/collection_wjjl'; -import {MongodbCollections} from '../module/mongodb'; -import {G123} from '../sdk/G123'; -import {ResGetList} from '../shared/protocols/item/PtlGetList'; -import {ResLogin} from '../shared/protocols/user/PtlLogin'; -import {player} from '../shared/protocols/user/type'; -import {HeroShared, otherBuff} from '../shared/public/hero'; -import {PublicShared} from '../shared/public/public'; -import {HeroFun} from './hero'; -import {ShiwuFun} from './shiwu'; -import {UserFun} from './user'; -import {getItemByItemId, getItemNum} from './item'; -import {getGud, setGud} from './gud'; -import {addGameLog} from "../gameLog"; -import {PushGiftFun} from "./pushgift"; +import { ObjectId, OptionalId } from 'mongodb'; +import { ApiCall, BaseConnection, TsrpcError } from 'tsrpc'; +import { checkPlayerGift } from '../api_s2c/event/xianshilibao/fun'; +import { md_redPoint_check } from '../api_s2c/gongyu/mingdao/ApiOpen'; +import { CollectionPeiJian } from '../module/collection_peijian'; +import { Wjjl } from '../module/collection_wjjl'; +import { MongodbCollections } from '../module/mongodb'; +import { G123 } from '../sdk/G123'; +import { ResGetList } from '../shared/protocols/item/PtlGetList'; +import { ResLogin } from '../shared/protocols/user/PtlLogin'; +import { player } from '../shared/protocols/user/type'; +import { HeroShared, otherBuff } from '../shared/public/hero'; +import { PublicShared } from '../shared/public/public'; +import { HeroFun } from './hero'; +import { ShiwuFun } from './shiwu'; +import { UserFun } from './user'; +import { getItemByItemId, getItemNum } from './item'; +import { getGud, setGud } from './gud'; +import { addGameLog } from "../gameLog"; +import { PushGiftFun } from "./pushgift"; import { ActionLog } from './actionLog/actionLog'; - +import HeroSkinFun from './heroskin'; export type call = { get otherBuff(): otherBuff; @@ -70,13 +70,13 @@ export class PlayerFun { if (err) { // 消耗不足 触发推送礼包 PushGiftFun.chkItemGift(call.uid, atn) - throw new TsrpcError('', {code: -104, atn: atn}); + throw new TsrpcError('', { code: -104, atn: atn }); } else { - return {isOk: false, atn: atn}; + return { isOk: false, atn: atn }; } } } - return {isOk: true, atn: null}; + return { isOk: true, atn: null }; } /** @@ -94,7 +94,7 @@ export class PlayerFun { atn: need }; if (args.length < 1) { - throw new TsrpcError('', {code: -104, atn: meet.atn}); + throw new TsrpcError('', { code: -104, atn: meet.atn }); } return await this.checkNeedByArgs(call, ...args); } @@ -117,10 +117,10 @@ export class PlayerFun { all.push(this.addItem(call, item)); } // 记录消耗 - addGameLog(call.uid, call.service.name, call.req, {need: val}) + addGameLog(call.uid, call.service.name, call.req, { need: val }) await Promise.all(all); G.emit('USE_ITEM', call.conn.gud, needArr.map(need => { - return {...need, n: Math.abs(need.n)}; + return { ...need, n: Math.abs(need.n) }; })); } @@ -136,16 +136,18 @@ export class PlayerFun { let equip = prizeList.filter(atn => atn.a == 'equip' && atn.n != 0); let shiwu = prizeList.filter(atn => atn.a == 'shiwu' && atn.n != 0); let peijian = prizeList.filter(atn => atn.a == 'peijian' && atn.n != 0); + let heroskin = prizeList.filter(atn => atn.a == 'heroskin' && atn.n != 0); // 记录获得 - addGameLog(call.uid, call.service.name, call.req, {prize: prizeList}) + addGameLog(call.uid, call.service.name, call.req, { prize: prizeList }) await Promise.all([ attr.length > 0 && this.addAttr(call, attr), item.length > 0 && this.addItem(call, item), hero.length > 0 && this.addHero(call, hero), equip.length > 0 && this.addEquip(call, equip), shiwu.length > 0 && this.addShiwu(call, shiwu), - peijian.length > 0 && this.addPeijian(call, peijian) + peijian.length > 0 && this.addPeijian(call, peijian), + heroskin.length > 0 && this.addHeroskin(call, heroskin), ]); return prizeList; @@ -180,9 +182,9 @@ export class PlayerFun { } } - if( (atn.t == 'rmbmoney' || atn.t == 'jinbi') && atn.n > 0 ){ + if ((atn.t == 'rmbmoney' || atn.t == 'jinbi') && atn.n > 0) { //统计今日获取的金币和钻石 - ActionLog.addDayLog(call.conn.uid, { key: 'got_'+atn.t, val: atn.n }); + ActionLog.addDayLog(call.conn.uid, { key: 'got_' + atn.t, val: atn.n }); } // 增加vip经验的任务监听 @@ -190,7 +192,7 @@ export class PlayerFun { G.emit("Class_task_157", 'Class_task_157', call, atn.n, 0); } all.push(this.changeAttr(call.conn.uid, change)); - all.push(this.upAttr(call, {...atn, n: change[atn.t]})); + all.push(this.upAttr(call, { ...atn, n: change[atn.t] })); //await this.changeAttr(call.conn.uid, change); //await this.upAttr(call, {...atn, n: change[atn.t]}); } @@ -233,17 +235,17 @@ export class PlayerFun { G.mongodb.collection('rmbuse').insertOne(data); // 消费竞赛开启时写入跨服数据库 if (G.huodong.xfjs && !data.isAdd && typeof data.change == 'number') { - G.crossmongodb.collection('rmbuse').updateOne({uid: data.uid, type: `xfjs_${G.huodong.xfjsId}`}, { - $set: {time: G.time}, - $inc: {change: data.change} - }, {upsert: true}); + G.crossmongodb.collection('rmbuse').updateOne({ uid: data.uid, type: `xfjs_${G.huodong.xfjsId}` }, { + $set: { time: G.time }, + $inc: { change: data.change } + }, { upsert: true }); } } static async changeAttr(uid: string, change: Partial) { setGud(uid, change); - G.mongodb.collection('user').updateOne({uid: uid}, {$set: change}); + G.mongodb.collection('user').updateOne({ uid: uid }, { $set: change }); if (G.server.uid_connections[uid]) { checkPlayerGift(G.server.uid_connections[uid].gud, change); @@ -265,9 +267,9 @@ export class PlayerFun { const curLv = call.conn.gud.lv; while (conf[curLv + addLv + 1] && atn.n >= conf[curLv + addLv + 1].need) { addLv++; - G123.sendUserLevelUp({...call.conn.gud, lv: curLv + addLv, nexp: atn.n}); + G123.sendUserLevelUp({ ...call.conn.gud, lv: curLv + addLv, nexp: atn.n }); } - addLv && await this.addAttr(call, {lv: curLv + addLv}); + addLv && await this.addAttr(call, { lv: curLv + addLv }); break; case 'payExp': let addVip = 0; @@ -276,7 +278,7 @@ export class PlayerFun { while (vipConf[curVip + addVip + 1] && atn.n >= vipConf[curVip + addVip + 1].exp) { addVip++; } - addVip && await this.addAttr(call, {vip: curVip + addVip}); + addVip && await this.addAttr(call, { vip: curVip + addVip }); break; } } @@ -287,7 +289,7 @@ export class PlayerFun { static async addItem(call: call, val: atn[]) { for (let atn of val) { let upObj = { - filter: {uid: call.uid, itemId: atn.t}, + filter: { uid: call.uid, itemId: atn.t }, update: { $setOnInsert: { firstTime: G.time, @@ -319,7 +321,7 @@ export class PlayerFun { }; G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options); call.addEventMsg('msg_s2c/ItemChange', atn.t, data); - addGameLog(call.uid, "_itemChange", {"additem": 1}, { + addGameLog(call.uid, "_itemChange", { "additem": 1 }, { "filter": upObj.filter, "update": upObj.update, "options": upObj.options @@ -327,10 +329,10 @@ export class PlayerFun { } else { if (item.num + atn.n <= 0) { await Promise.all([ - G.mongodb.collection('item').deleteOne({uid: call.uid, itemId: atn.t}) + G.mongodb.collection('item').deleteOne({ uid: call.uid, itemId: atn.t }) ]); - call.addEventMsg('msg_s2c/ItemChange', atn.t, {num: 0}); - addGameLog(call.uid, "_itemChange", {"delitem": 1}, {"itemId": atn.t}) + call.addEventMsg('msg_s2c/ItemChange', atn.t, { num: 0 }); + addGameLog(call.uid, "_itemChange", { "delitem": 1 }, { "itemId": atn.t }) } else { await Promise.all([ G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options) @@ -339,7 +341,7 @@ export class PlayerFun { num: item.num + atn.n, lastTime: upObj.update.$set.lastTime }); - addGameLog(call.uid, "_itemChange", {"attritem": 1}, { + addGameLog(call.uid, "_itemChange", { "attritem": 1 }, { "filter": upObj.filter, "update": upObj.update, "options": upObj.options, @@ -374,7 +376,7 @@ export class PlayerFun { insertData.forEach((v, key) => { let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; Wjjl.setVal(call.uid, `has_equip_color_${G.gc.equip[ops.equipId].colour}`, 1, false); @@ -408,10 +410,10 @@ export class PlayerFun { */ static async cutEquip(call: call, _idArr: string[]) { for (let _id of _idArr) { - G.mongodb.collection('equip').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/EquipChange', _id, {num: 0}); + G.mongodb.collection('equip').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/EquipChange', _id, { num: 0 }); - addGameLog(call.uid, "_cutEquip", {}, {_id: _id}) + addGameLog(call.uid, "_cutEquip", {}, { _id: _id }) } } @@ -445,7 +447,7 @@ export class PlayerFun { let v = insertData[key] let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; call.addEventMsg('msg_s2c/HeroChange', id, { _id: id, @@ -478,9 +480,9 @@ export class PlayerFun { static async cutHero(call: call, _idArr: string[]) { for (let _id of _idArr) { await HeroFun.delHero(call, _id); - G.mongodb.collection('hero').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/HeroChange', _id, {num: 0}); - addGameLog(call.uid, "_cutHero", {}, {_id: _id}) + G.mongodb.collection('hero').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/HeroChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutHero", {}, { _id: _id }) } } @@ -495,7 +497,7 @@ export class PlayerFun { colour: v.colour, wearId: '', shiwuId: v.t, - jichu: ShiwuFun.randomJichu({colour: v.colour, shiwuId: v.t}), + jichu: ShiwuFun.randomJichu({ colour: v.colour, shiwuId: v.t }), fujia: [] }; if (v.shiwuBuff) { @@ -515,7 +517,7 @@ export class PlayerFun { insertData.forEach((v, key) => { let id = result.insertedIds[key].toHexString(); - let {_id, ...ops} = v; + let { _id, ...ops } = v; call.addEventMsg('msg_s2c/ShiwuChange', id, { _id: id, ...ops @@ -534,9 +536,9 @@ export class PlayerFun { */ static async cutShiwu(call: call, _idArr: string[]) { for (let _id of _idArr) { - G.mongodb.collection('shiwu').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/ShiwuChange', _id, {num: 0}); - addGameLog(call.uid, "_cutShiwu", {}, {_id: _id}) + G.mongodb.collection('shiwu').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/ShiwuChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutShiwu", {}, { _id: _id }) } } @@ -561,7 +563,7 @@ export class PlayerFun { addGameLog(call.uid, "_addPeiJian", {}, insertData) insertData.forEach((v, key) => { - let {_id, uid, ...ops} = v; + let { _id, uid, ...ops } = v; let id = _id.toHexString(); if (G.gc.peijian[v.peijianId].colour != 5) { @@ -569,8 +571,8 @@ export class PlayerFun { lshd[v.peijianId]++; } - G.redis.set('peijian', call.uid, id, {_id: id, ...ops}); - call.addEventMsg('msg_s2c/PeijianChange', id, {_id: id, ...ops}); + G.redis.set('peijian', call.uid, id, { _id: id, ...ops }); + call.addEventMsg('msg_s2c/PeijianChange', id, { _id: id, ...ops }); }); G.mongodb.collection('playerInfo', 'lshd_peijian').updateOne( @@ -591,15 +593,40 @@ export class PlayerFun { return Object.values(result.insertedIds).map(v => G.mongodb.conversionId(v)); } + /** + * 添加皮肤 + * */ + static async addHeroskin(call: call, val: atn[]) { + let prize = []; + let upskin = {}; + let heroskin = HeroSkinFun.getHeroSkin(call); + for (let p of val) { + if (!heroskin[p.t]) { + upskin[p.t] = 1; + } else { + prize = prize.concat(G.gc.heroSkin[p.t].zhuanhuan); + } + } + + if (Object.keys(upskin).length > 0) { + await this.addAttr(call, { heroskin: Object.assign(heroskin, upskin) }); + } + + // 皮肤存在转换为其他奖励 + if (prize.length > 0) { + await this.sendPrize(call, prize); + } + } + /** * 删除配件 */ static async cutPeijian(call: call, _idArr: string[]) { for (let _id of _idArr) { G.redis.del('peijian', call.uid, _id); - G.mongodb.collection('peijian').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); - call.addEventMsg('msg_s2c/PeijianChange', _id, {num: 0}); - addGameLog(call.uid, "_cutPeijian", {}, {_id: _id}) + G.mongodb.collection('peijian').deleteOne({ uid: call.uid, _id: new ObjectId(_id) }); + call.addEventMsg('msg_s2c/PeijianChange', _id, { num: 0 }); + addGameLog(call.uid, "_cutPeijian", {}, { _id: _id }) } } @@ -608,7 +635,7 @@ export class PlayerFun { */ static async getAttr(uid: string, where: { ctype: string; }) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); const _res = await G.mongodb.collection('playattr').find(_w).toArray(); _res.forEach(v => { if (v._id) { @@ -623,7 +650,7 @@ export class PlayerFun { */ static async getAttrOne(uid: string, where: { ctype: string; }) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); const _res = await G.mongodb.collection('playattr').findOne(_w); if (_res) { delete _res['_id']; @@ -639,10 +666,10 @@ export class PlayerFun { time = G.time; } let _zeroTime = PublicShared.getToDayZeroTime(time); - let _tmp = {lasttime: {$gte: _zeroTime, $lte: _zeroTime + 24 * 60 * 60 - 1}}; + let _tmp = { lasttime: { $gte: _zeroTime, $lte: _zeroTime + 24 * 60 * 60 - 1 } }; let _w = where; - Object.assign(_w, {uid: uid, ..._tmp}); + Object.assign(_w, { uid: uid, ..._tmp }); const _res = await G.mongodb.collection('playattr').find(_w).toArray(); _res.forEach(v => { if (v._id) { @@ -657,7 +684,7 @@ export class PlayerFun { */ static async setAttr(uid: string, where: { ctype: string; }, data: {}, islasttime = 1) { let _w = where; - Object.assign(_w, {uid: uid}); + Object.assign(_w, { uid: uid }); if (islasttime == 1) { data["lasttime"] = G.time; @@ -668,7 +695,7 @@ export class PlayerFun { // 加入创建数据时间 data["ctime"] = G.time; } - let _res = await G.mongodb.collection('playattr').updateMany(_w, {$set: data}, {upsert: true}); + let _res = await G.mongodb.collection('playattr').updateMany(_w, { $set: data }, { upsert: true }); return _res; } } \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlGetList.ts b/src/shared/protocols/hero/PtlGetList.ts index 3b180f0..ecd9ac2 100644 --- a/src/shared/protocols/hero/PtlGetList.ts +++ b/src/shared/protocols/hero/PtlGetList.ts @@ -71,4 +71,6 @@ type heroAddKey = { peijian: { [pos: string]: string; }; + /**皮肤*/ + skin: string | number; }; \ No newline at end of file diff --git a/src/shared/protocols/heroskin/PtlTakeOff.ts b/src/shared/protocols/heroskin/PtlTakeOff.ts new file mode 100644 index 0000000..55aefc3 --- /dev/null +++ b/src/shared/protocols/heroskin/PtlTakeOff.ts @@ -0,0 +1,7 @@ +export interface ReqTakeOff { + heroOid: string +} + +export interface ResTakeOff { + +} diff --git a/src/shared/protocols/heroskin/PtlUplv.ts b/src/shared/protocols/heroskin/PtlUplv.ts new file mode 100644 index 0000000..58c5ba2 --- /dev/null +++ b/src/shared/protocols/heroskin/PtlUplv.ts @@ -0,0 +1,6 @@ +export interface ReqUplv { + lv: 1; + skid: string; +} + +export interface ResUplv { } diff --git a/src/shared/protocols/heroskin/PtlWear.ts b/src/shared/protocols/heroskin/PtlWear.ts new file mode 100644 index 0000000..c33a1da --- /dev/null +++ b/src/shared/protocols/heroskin/PtlWear.ts @@ -0,0 +1,6 @@ +export interface ReqWear { + skid: string, + heroOid: string, +} + +export interface ResWear { } diff --git a/src/shared/protocols/serviceProto.ts b/src/shared/protocols/serviceProto.ts index b882e77..7d4b973 100644 --- a/src/shared/protocols/serviceProto.ts +++ b/src/shared/protocols/serviceProto.ts @@ -187,6 +187,9 @@ import { ReqRec as ReqRec_12, ResRec as ResRec_12 } from './hero/PtlRec'; import { ReqReset as ReqReset_2, ResReset as ResReset_2 } from './hero/PtlReset'; import { ReqTalent, ResTalent } from './hero/PtlTalent'; import { ReqWeaponUp, ResWeaponUp } from './hero/PtlWeaponUp'; +import { ReqTakeOff as ReqTakeOff_1, ResTakeOff as ResTakeOff_1 } from './heroskin/PtlTakeOff'; +import { ReqUplv, ResUplv } from './heroskin/PtlUplv'; +import { ReqWear as ReqWear_1, ResWear as ResWear_1 } from './heroskin/PtlWear'; import { ReqGet as ReqGet_2, ResGet as ResGet_2 } from './hongdian/PtlGet'; import { ReqGetList as ReqGetList_4, ResGetList as ResGetList_4 } from './item/PtlGetList'; import { ReqUse, ResUse } from './item/PtlUse'; @@ -267,9 +270,9 @@ import { ReqOneKeyLvUp as ReqOneKeyLvUp_1, ResOneKeyLvUp as ResOneKeyLvUp_1 } fr import { ReqOneKeyWear as ReqOneKeyWear_1, ResOneKeyWear as ResOneKeyWear_1 } from './peijian/PtlOneKeyWear'; import { ReqReset as ReqReset_3, ResReset as ResReset_3 } from './peijian/PtlReset'; import { ReqRm, ResRm } from './peijian/PtlRm'; -import { ReqTakeOff as ReqTakeOff_1, ResTakeOff as ResTakeOff_1 } from './peijian/PtlTakeOff'; +import { ReqTakeOff as ReqTakeOff_2, ResTakeOff as ResTakeOff_2 } from './peijian/PtlTakeOff'; import { ReqUnLock, ResUnLock } from './peijian/PtlUnLock'; -import { ReqWear as ReqWear_1, ResWear as ResWear_1 } from './peijian/PtlWear'; +import { ReqWear as ReqWear_2, ResWear as ResWear_2 } from './peijian/PtlWear'; import { ReqDeal, ResDeal } from './peijiancangku/PtlDeal'; import { ReqJump, ResJump } from './peijiancangku/PtlJump'; import { ReqOpen as ReqOpen_51, ResOpen as ResOpen_51 } from './peijiancangku/PtlOpen'; @@ -287,8 +290,8 @@ import { ReqExtract, ResExtract } from './shiwu/PtlExtract'; import { ReqGetList as ReqGetList_7, ResGetList as ResGetList_7 } from './shiwu/PtlGetList'; import { ReqLvUp as ReqLvUp_3, ResLvUp as ResLvUp_3 } from './shiwu/PtlLvUp'; import { ReqRecast, ResRecast } from './shiwu/PtlRecast'; -import { ReqTakeOff as ReqTakeOff_2, ResTakeOff as ResTakeOff_2 } from './shiwu/PtlTakeOff'; -import { ReqWear as ReqWear_2, ResWear as ResWear_2 } from './shiwu/PtlWear'; +import { ReqTakeOff as ReqTakeOff_3, ResTakeOff as ResTakeOff_3 } from './shiwu/PtlTakeOff'; +import { ReqWear as ReqWear_3, ResWear as ResWear_3 } from './shiwu/PtlWear'; import { ReqOpen as ReqOpen_55, ResOpen as ResOpen_55 } from './shootGame/PtlOpen'; import { ReqRec as ReqRec_13, ResRec as ResRec_13 } from './shootGame/PtlRec'; import { ReqBuy as ReqBuy_6, ResBuy as ResBuy_6 } from './shop/PtlBuy'; @@ -330,12 +333,10 @@ import { ReqRenownBuy, ResRenownBuy } from './user/PtlRenownBuy'; import { ReqRenownGetPrize, ResRenownGetPrize } from './user/PtlRenownGetPrize'; import { ReqRenownOpen, ResRenownOpen } from './user/PtlRenownOpen'; import { ReqTujian, ResTujian } from './user/PtlTujian'; -import { ReqOpen as ReqOpen_61, ResOpen as ResOpen_61 } from './weiwang/PtlOpen'; -import { ReqUpLv, ResUpLv } from './weiwang/PtlUpLv'; import { ReqDecompose, ResDecompose } from './weixiuchang/PtlDecompose'; import { ReqExchange as ReqExchange_1, ResExchange as ResExchange_1 } from './weixiuchang/PtlExchange'; -import { ReqOpen as ReqOpen_62, ResOpen as ResOpen_62 } from './weixiuchang/PtlOpen'; -import { ReqUpLv as ReqUpLv_1, ResUpLv as ResUpLv_1 } from './weixiuchang/PtlUpLv'; +import { ReqOpen as ReqOpen_61, ResOpen as ResOpen_61 } from './weixiuchang/PtlOpen'; +import { ReqUpLv, ResUpLv } from './weixiuchang/PtlUpLv'; import { ReqUpStar, ResUpStar } from './weixiuchang/PtlUpStar'; import { ReqAutoBaoMing, ResAutoBaoMing } from './wzry/PtlAutoBaoMing'; import { ReqBaoMing, ResBaoMing } from './wzry/PtlBaoMing'; @@ -345,7 +346,7 @@ import { ReqDldFight, ResDldFight } from './wzry/PtlDldFight'; import { ReqDldRefre, ResDldRefre } from './wzry/PtlDldRefre'; import { ReqJingCai, ResJingCai } from './wzry/PtlJingCai'; import { ReqJingCaiOpen, ResJingCaiOpen } from './wzry/PtlJingCaiOpen'; -import { ReqOpen as ReqOpen_63, ResOpen as ResOpen_63 } from './wzry/PtlOpen'; +import { ReqOpen as ReqOpen_62, ResOpen as ResOpen_62 } from './wzry/PtlOpen'; import { ReqUpdateFight, ResUpdateFight } from './wzry/PtlUpdateFight'; import { ReqWzzd, ResWzzd } from './wzry/PtlWzzd'; import { ReqZuanShiOpen, ResZuanShiOpen } from './wzry/PtlZuanShiOpen'; @@ -353,7 +354,7 @@ import { ReqAllGet, ResAllGet } from './xstask/PtlAllGet'; import { ReqGet as ReqGet_3, ResGet as ResGet_3 } from './xstask/PtlGet'; import { ReqLvUp as ReqLvUp_4, ResLvUp as ResLvUp_4 } from './xstask/PtlLvUp'; import { ReqOnekeyReceive, ResOnekeyReceive } from './xstask/PtlOnekeyReceive'; -import { ReqOpen as ReqOpen_64, ResOpen as ResOpen_64 } from './xstask/PtlOpen'; +import { ReqOpen as ReqOpen_63, ResOpen as ResOpen_63 } from './xstask/PtlOpen'; import { ReqReceive as ReqReceive_10, ResReceive as ResReceive_10 } from './xstask/PtlReceive'; import { ReqRefresh as ReqRefresh_8, ResRefresh as ResRefresh_8 } from './xstask/PtlRefresh'; import { ReqHandle, ResHandle } from './yongbingzhuzhan/PtlHandle'; @@ -1115,6 +1116,18 @@ export interface ServiceType { req: ReqWeaponUp, res: ResWeaponUp }, + "heroskin/TakeOff": { + req: ReqTakeOff_1, + res: ResTakeOff_1 + }, + "heroskin/Uplv": { + req: ReqUplv, + res: ResUplv + }, + "heroskin/Wear": { + req: ReqWear_1, + res: ResWear_1 + }, "hongdian/Get": { req: ReqGet_2, res: ResGet_2 @@ -1320,16 +1333,16 @@ export interface ServiceType { res: ResRm }, "peijian/TakeOff": { - req: ReqTakeOff_1, - res: ResTakeOff_1 + req: ReqTakeOff_2, + res: ResTakeOff_2 }, "peijian/UnLock": { req: ReqUnLock, res: ResUnLock }, "peijian/Wear": { - req: ReqWear_1, - res: ResWear_1 + req: ReqWear_2, + res: ResWear_2 }, "peijiancangku/Deal": { req: ReqDeal, @@ -1400,12 +1413,12 @@ export interface ServiceType { res: ResRecast }, "shiwu/TakeOff": { - req: ReqTakeOff_2, - res: ResTakeOff_2 + req: ReqTakeOff_3, + res: ResTakeOff_3 }, "shiwu/Wear": { - req: ReqWear_2, - res: ResWear_2 + req: ReqWear_3, + res: ResWear_3 }, "shootGame/Open": { req: ReqOpen_55, @@ -1571,14 +1584,6 @@ export interface ServiceType { req: ReqTujian, res: ResTujian }, - "weiwang/Open": { - req: ReqOpen_61, - res: ResOpen_61 - }, - "weiwang/UpLv": { - req: ReqUpLv, - res: ResUpLv - }, "weixiuchang/Decompose": { req: ReqDecompose, res: ResDecompose @@ -1588,12 +1593,12 @@ export interface ServiceType { res: ResExchange_1 }, "weixiuchang/Open": { - req: ReqOpen_62, - res: ResOpen_62 + req: ReqOpen_61, + res: ResOpen_61 }, "weixiuchang/UpLv": { - req: ReqUpLv_1, - res: ResUpLv_1 + req: ReqUpLv, + res: ResUpLv }, "weixiuchang/UpStar": { req: ReqUpStar, @@ -1632,8 +1637,8 @@ export interface ServiceType { res: ResJingCaiOpen }, "wzry/Open": { - req: ReqOpen_63, - res: ResOpen_63 + req: ReqOpen_62, + res: ResOpen_62 }, "wzry/UpdateFight": { req: ReqUpdateFight, @@ -1664,8 +1669,8 @@ export interface ServiceType { res: ResOnekeyReceive }, "xstask/Open": { - req: ReqOpen_64, - res: ResOpen_64 + req: ReqOpen_63, + res: ResOpen_63 }, "xstask/Receive": { req: ReqReceive_10, @@ -2763,6 +2768,21 @@ export const serviceProto: ServiceProto = { }, { "id": 188, + "name": "heroskin/TakeOff", + "type": "api" + }, + { + "id": 189, + "name": "heroskin/Uplv", + "type": "api" + }, + { + "id": 190, + "name": "heroskin/Wear", + "type": "api" + }, + { + "id": 191, "name": "hongdian/Get", "type": "api", "conf": { @@ -2770,117 +2790,117 @@ export const serviceProto: ServiceProto = { } }, { - "id": 189, + "id": 192, "name": "item/GetList", "type": "api" }, { - "id": 190, + "id": 193, "name": "item/Use", "type": "api" }, { - "id": 191, + "id": 194, "name": "jiaotang/Lottery", "type": "api" }, { - "id": 192, + "id": 195, "name": "jiaotang/Open", "type": "api" }, { - "id": 193, + "id": 196, "name": "jiuba/Lottery", "type": "api" }, { - "id": 194, + "id": 197, "name": "jiuba/Open", "type": "api" }, { - "id": 195, + "id": 198, "name": "jjc/BuyFightNum", "type": "api" }, { - "id": 196, + "id": 199, "name": "jjc/Fight", "type": "api" }, { - "id": 197, + "id": 200, "name": "jjc/FightLog", "type": "api" }, { - "id": 198, + "id": 201, "name": "jjc/Open", "type": "api" }, { - "id": 199, + "id": 202, "name": "jjc/Receive", "type": "api" }, { - "id": 200, + "id": 203, "name": "jjc/Refresh", "type": "api" }, { - "id": 201, + "id": 204, "name": "kaifujingsai/Open", "type": "api" }, { - "id": 202, + "id": 205, "name": "kaifujingsai/Receive", "type": "api" }, { - "id": 203, + "id": 206, "name": "kbzz/Apply", "type": "api" }, { - "id": 204, + "id": 207, "name": "kbzz/AutoApply", "type": "api" }, { - "id": 205, + "id": 208, "name": "kbzz/BuyNum", "type": "api" }, { - "id": 206, + "id": 209, "name": "kbzz/Fight", "type": "api" }, { - "id": 207, + "id": 210, "name": "kbzz/FightLog", "type": "api" }, { - "id": 208, + "id": 211, "name": "kbzz/GroupState", "type": "api" }, { - "id": 209, + "id": 212, "name": "kbzz/Open", "type": "api" }, { - "id": 210, + "id": 213, "name": "kbzz/RecPrize", "type": "api" }, { - "id": 211, + "id": 214, "name": "kbzz/Refresh", "type": "api", "conf": { @@ -2888,287 +2908,287 @@ export const serviceProto: ServiceProto = { } }, { - "id": 212, + "id": 215, "name": "kuangdong/AddPkNum", "type": "api" }, { - "id": 213, + "id": 216, "name": "kuangdong/GetPrize", "type": "api" }, { - "id": 214, + "id": 217, "name": "kuangdong/KdInfo", "type": "api" }, { - "id": 215, + "id": 218, "name": "kuangdong/Log", "type": "api" }, { - "id": 216, + "id": 219, "name": "kuangdong/Open", "type": "api" }, { - "id": 217, + "id": 220, "name": "kuangdong/YanShi", "type": "api" }, { - "id": 218, + "id": 221, "name": "kuangdong/ZhanLing", "type": "api" }, { - "id": 219, + "id": 222, "name": "lingzhulaixi/Open", "type": "api" }, { - "id": 220, + "id": 223, "name": "lingzhulaixi/PkBoss", "type": "api" }, { - "id": 221, + "id": 224, "name": "lingzhulaixi/PkRank", "type": "api" }, { - "id": 222, + "id": 225, "name": "lingzhulaixi/SaoDang", "type": "api" }, { - "id": 223, + "id": 226, "name": "meirishilian/Buy", "type": "api" }, { - "id": 224, + "id": 227, "name": "meirishilian/Fight", "type": "api" }, { - "id": 225, + "id": 228, "name": "meirishilian/Open", "type": "api" }, { - "id": 226, + "id": 229, "name": "msg_c2s/BindUid", "type": "msg" }, { - "id": 227, + "id": 230, "name": "msg_c2s/Pay", "type": "msg" }, { - "id": 228, + "id": 231, "name": "msg_c2s/Sync", "type": "msg" }, { - "id": 229, + "id": 232, "name": "msg_s2c/Chat", "type": "msg" }, { - "id": 230, + "id": 233, "name": "msg_s2c/ChatHelp", "type": "msg" }, { - "id": 231, + "id": 234, "name": "msg_s2c/Collection", "type": "msg" }, { - "id": 232, + "id": 235, "name": "msg_s2c/Email", "type": "msg" }, { - "id": 233, + "id": 236, "name": "msg_s2c/EmailDel", "type": "msg" }, { - "id": 234, + "id": 237, "name": "msg_s2c/EquipChange", "type": "msg" }, { - "id": 235, + "id": 238, "name": "msg_s2c/Friend", "type": "msg" }, { - "id": 236, + "id": 239, "name": "msg_s2c/GhChange", "type": "msg" }, { - "id": 237, + "id": 240, "name": "msg_s2c/GongHuiBaoZang", "type": "msg" }, { - "id": 238, + "id": 241, "name": "msg_s2c/HeroChange", "type": "msg" }, { - "id": 239, + "id": 242, "name": "msg_s2c/HongDianChange", "type": "msg" }, { - "id": 240, + "id": 243, "name": "msg_s2c/ItemChange", "type": "msg" }, { - "id": 241, + "id": 244, "name": "msg_s2c/LoginQueue", "type": "msg" }, { - "id": 242, + "id": 245, "name": "msg_s2c/LshdChange", "type": "msg" }, { - "id": 243, + "id": 246, "name": "msg_s2c/NewDay", "type": "msg" }, { - "id": 244, + "id": 247, "name": "msg_s2c/OtherLogin", "type": "msg" }, { - "id": 245, + "id": 248, "name": "msg_s2c/PayChange", "type": "msg" }, { - "id": 246, + "id": 249, "name": "msg_s2c/PayResult", "type": "msg" }, { - "id": 247, + "id": 250, "name": "msg_s2c/PeijianChange", "type": "msg" }, { - "id": 248, + "id": 251, "name": "msg_s2c/PlayerChange", "type": "msg" }, { - "id": 249, + "id": 252, "name": "msg_s2c/Private", "type": "msg" }, { - "id": 250, + "id": 253, "name": "msg_s2c/PushGiftChange", "type": "msg" }, { - "id": 251, + "id": 254, "name": "msg_s2c/SendGift", "type": "msg" }, { - "id": 252, + "id": 255, "name": "msg_s2c/ShiwuChange", "type": "msg" }, { - "id": 253, + "id": 256, "name": "msg_s2c/TaskChange", "type": "msg" }, { - "id": 254, + "id": 257, "name": "msg_s2c/Xianshilibao", "type": "msg" }, { - "id": 255, + "id": 258, "name": "pata/Fight", "type": "api" }, { - "id": 256, + "id": 259, "name": "pata/GetPrize", "type": "api" }, { - "id": 257, + "id": 260, "name": "pata/Open", "type": "api" }, { - "id": 258, + "id": 261, "name": "pata/SaoDang", "type": "api" }, { - "id": 259, + "id": 262, "name": "pay/GetList", "type": "api" }, { - "id": 260, + "id": 263, "name": "peijian/GetList", "type": "api" }, { - "id": 261, + "id": 264, "name": "peijian/JingLian", "type": "api" }, { - "id": 262, + "id": 265, "name": "peijian/JinJie", "type": "api" }, { - "id": 263, + "id": 266, "name": "peijian/LvUp", "type": "api" }, { - "id": 264, + "id": 267, "name": "peijian/OneKeyLvUp", "type": "api" }, { - "id": 265, + "id": 268, "name": "peijian/OneKeyWear", "type": "api" }, { - "id": 266, + "id": 269, "name": "peijian/Reset", "type": "api" }, { - "id": 267, + "id": 270, "name": "peijian/Rm", "type": "api" }, { - "id": 268, + "id": 271, "name": "peijian/TakeOff", "type": "api", "conf": { @@ -3176,32 +3196,32 @@ export const serviceProto: ServiceProto = { } }, { - "id": 269, + "id": 272, "name": "peijian/UnLock", "type": "api" }, { - "id": 270, + "id": 273, "name": "peijian/Wear", "type": "api" }, { - "id": 271, + "id": 274, "name": "peijiancangku/Deal", "type": "api" }, { - "id": 272, + "id": 275, "name": "peijiancangku/Jump", "type": "api" }, { - "id": 273, + "id": 276, "name": "peijiancangku/Open", "type": "api" }, { - "id": 274, + "id": 277, "name": "Bingo", "type": "api", "conf": { @@ -3209,147 +3229,147 @@ export const serviceProto: ServiceProto = { } }, { - "id": 275, + "id": 278, "name": "FightTest", "type": "api" }, { - "id": 276, + "id": 279, "name": "SyncBtn", "type": "api" }, { - "id": 277, + "id": 280, "name": "Test", "type": "api" }, { - "id": 278, + "id": 281, "name": "pushgift/ItemNoEnough", "type": "api" }, { - "id": 279, + "id": 282, "name": "pushgift/Open", "type": "api" }, { - "id": 280, + "id": 283, "name": "qjzzd/Fight", "type": "api" }, { - "id": 281, + "id": 284, "name": "qjzzd/Open", "type": "api" }, { - "id": 282, + "id": 285, "name": "rank/Open", "type": "api" }, { - "id": 283, + "id": 286, "name": "shiwu/Concise", "type": "api" }, { - "id": 284, + "id": 287, "name": "shiwu/Extract", "type": "api" }, { - "id": 285, + "id": 288, "name": "shiwu/GetList", "type": "api" }, { - "id": 286, + "id": 289, "name": "shiwu/LvUp", "type": "api" }, { - "id": 287, + "id": 290, "name": "shiwu/Recast", "type": "api" }, { - "id": 288, + "id": 291, "name": "shiwu/TakeOff", "type": "api" }, { - "id": 289, + "id": 292, "name": "shiwu/Wear", "type": "api" }, { - "id": 290, + "id": 293, "name": "shootGame/Open", "type": "api" }, { - "id": 291, + "id": 294, "name": "shootGame/Rec", "type": "api" }, { - "id": 292, + "id": 295, "name": "shop/Buy", "type": "api" }, { - "id": 293, + "id": 296, "name": "shop/Open", "type": "api" }, { - "id": 294, + "id": 297, "name": "shop/Refresh", "type": "api" }, { - "id": 295, + "id": 298, "name": "sign/GetBoxPrize", "type": "api" }, { - "id": 296, + "id": 299, "name": "sign/GetPrize", "type": "api" }, { - "id": 297, + "id": 300, "name": "sign/Open", "type": "api" }, { - "id": 298, + "id": 301, "name": "slzd/Aim", "type": "api" }, { - "id": 299, + "id": 302, "name": "slzd/BuyNum", "type": "api" }, { - "id": 300, + "id": 303, "name": "slzd/Fight", "type": "api" }, { - "id": 301, + "id": 304, "name": "slzd/FightLog", "type": "api" }, { - "id": 302, + "id": 305, "name": "slzd/MyRank", "type": "api" }, { - "id": 303, + "id": 306, "name": "slzd/Open", "type": "api", "conf": { @@ -3359,77 +3379,77 @@ export const serviceProto: ServiceProto = { } }, { - "id": 304, + "id": 307, "name": "slzd/OpenFort", "type": "api" }, { - "id": 305, + "id": 308, "name": "slzd/Rec", "type": "api" }, { - "id": 306, + "id": 309, "name": "slzd/Refresh", "type": "api" }, { - "id": 307, + "id": 310, "name": "slzd/Slot", "type": "api" }, { - "id": 308, + "id": 311, "name": "tanxian/Event", "type": "api" }, { - "id": 309, + "id": 312, "name": "tanxian/FastGuaJi", "type": "api" }, { - "id": 310, + "id": 313, "name": "tanxian/Fight", "type": "api" }, { - "id": 311, + "id": 314, "name": "tanxian/GuaJi", "type": "api" }, { - "id": 312, + "id": 315, "name": "tanxian/Open", "type": "api" }, { - "id": 313, + "id": 316, "name": "tanxian/Receive", "type": "api" }, { - "id": 314, + "id": 317, "name": "task/AllFinsh", "type": "api" }, { - "id": 315, + "id": 318, "name": "task/Finsh", "type": "api" }, { - "id": 316, + "id": 319, "name": "task/Open", "type": "api" }, { - "id": 317, + "id": 320, "name": "user/CDKEY", "type": "api" }, { - "id": 318, + "id": 321, "name": "user/ChangeInfo", "type": "api", "conf": { @@ -3437,212 +3457,202 @@ export const serviceProto: ServiceProto = { } }, { - "id": 319, + "id": 322, "name": "user/ChangeName", "type": "api" }, { - "id": 320, + "id": 323, "name": "user/Dot", "type": "api" }, { - "id": 321, + "id": 324, "name": "user/Fight", "type": "api" }, { - "id": 322, + "id": 325, "name": "user/GetInfo", "type": "api" }, { - "id": 323, + "id": 326, "name": "user/InfoOpen", "type": "api" }, { - "id": 324, + "id": 327, "name": "user/Login", "type": "api" }, { - "id": 325, + "id": 328, "name": "user/Ping", "type": "api" }, { - "id": 326, + "id": 329, "name": "user/Renown", "type": "api" }, { - "id": 327, + "id": 330, "name": "user/RenownBuy", "type": "api" }, { - "id": 328, + "id": 331, "name": "user/RenownGetPrize", "type": "api" }, { - "id": 329, + "id": 332, "name": "user/RenownOpen", "type": "api" }, { - "id": 330, + "id": 333, "name": "user/Tujian", "type": "api" }, { - "id": 331, - "name": "weiwang/Open", - "type": "api" - }, - { - "id": 332, - "name": "weiwang/UpLv", - "type": "api" - }, - { - "id": 333, + "id": 334, "name": "weixiuchang/Decompose", "type": "api" }, { - "id": 334, + "id": 335, "name": "weixiuchang/Exchange", "type": "api" }, { - "id": 335, + "id": 336, "name": "weixiuchang/Open", "type": "api" }, { - "id": 336, + "id": 337, "name": "weixiuchang/UpLv", "type": "api" }, { - "id": 337, + "id": 338, "name": "weixiuchang/UpStar", "type": "api" }, { - "id": 338, + "id": 339, "name": "wzry/AutoBaoMing", "type": "api" }, { - "id": 339, + "id": 340, "name": "wzry/BaoMing", "type": "api" }, { - "id": 340, + "id": 341, "name": "wzry/catFightLog", "type": "api" }, { - "id": 341, + "id": 342, "name": "wzry/CatGroup", "type": "api" }, { - "id": 342, + "id": 343, "name": "wzry/DldFight", "type": "api" }, { - "id": 343, + "id": 344, "name": "wzry/DldRefre", "type": "api" }, { - "id": 344, + "id": 345, "name": "wzry/JingCai", "type": "api" }, { - "id": 345, + "id": 346, "name": "wzry/JingCaiOpen", "type": "api" }, { - "id": 346, + "id": 347, "name": "wzry/Open", "type": "api" }, { - "id": 347, + "id": 348, "name": "wzry/UpdateFight", "type": "api" }, { - "id": 348, + "id": 349, "name": "wzry/Wzzd", "type": "api" }, { - "id": 349, + "id": 350, "name": "wzry/ZuanShiOpen", "type": "api" }, { - "id": 350, + "id": 351, "name": "xstask/AllGet", "type": "api" }, { - "id": 351, + "id": 352, "name": "xstask/Get", "type": "api" }, { - "id": 352, + "id": 353, "name": "xstask/LvUp", "type": "api" }, { - "id": 353, + "id": 354, "name": "xstask/OnekeyReceive", "type": "api" }, { - "id": 354, + "id": 355, "name": "xstask/Open", "type": "api" }, { - "id": 355, + "id": 356, "name": "xstask/Receive", "type": "api" }, { - "id": 356, + "id": 357, "name": "xstask/Refresh", "type": "api" }, { - "id": 357, + "id": 358, "name": "yongbingzhuzhan/Handle", "type": "api" }, { - "id": 358, + "id": 359, "name": "zhanqianbushu/ChangePos", "type": "api" }, { - "id": 359, + "id": 360, "name": "zhanqianbushu/Select", "type": "api" }, { - "id": 360, + "id": 361, "name": "zhanqianbushu/Up", "type": "api" } @@ -4588,7 +4598,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "weiwangbuff", + "name": "heroskin", "type": { "type": "Interface", "indexSignature": { @@ -5846,7 +5856,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "weiwangbuff", + "name": "heroskin", "type": { "type": "Interface", "indexSignature": { @@ -6248,6 +6258,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, @@ -10602,49 +10619,13 @@ export const serviceProto: ServiceProto = { "id": 1, "name": "recId", "type": { - "type": "Union", - "members": [ - { - "id": 0, - "type": { - "type": "Literal", - "literal": "prize" - } - }, - { - "id": 1, - "type": { - "type": "Literal", - "literal": "recPrize1" - } - }, - { - "id": 2, - "type": { - "type": "Literal", - "literal": "recPrize2" - } - } - ] + "type": "String" } } ] }, "event/pobinglibao/PtlReceive/ResReceive": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "prize", - "type": { - "type": "Array", - "elementType": { - "type": "Reference", - "target": "type/prizeType" - } - } - } - ] + "type": "Interface" }, "event/qirichongzhi/PtlOpen/ReqOpen": { "type": "Interface" @@ -14994,6 +14975,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, @@ -15435,6 +15423,66 @@ export const serviceProto: ServiceProto = { } ] }, + "heroskin/PtlTakeOff/ReqTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroOid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlTakeOff/ResTakeOff": { + "type": "Interface" + }, + "heroskin/PtlUplv/ReqUplv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "name": "skid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlUplv/ResUplv": { + "type": "Interface" + }, + "heroskin/PtlWear/ReqWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "skid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroOid", + "type": { + "type": "String" + } + } + ] + }, + "heroskin/PtlWear/ResWear": { + "type": "Interface" + }, "hongdian/PtlGet/ReqGet": { "type": "Array", "elementType": { @@ -22136,121 +22184,6 @@ export const serviceProto: ServiceProto = { "user/PtlTujian/ResTujian": { "type": "Interface" }, - "weiwang/PtlOpen/ReqOpen": { - "type": "Interface" - }, - "weiwang/PtlOpen/ResOpen": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "lv", - "type": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "hp", - "type": { - "type": "Number" - } - }, - { - "id": 1, - "name": "atk", - "type": { - "type": "Number" - } - }, - { - "id": 2, - "name": "def", - "type": { - "type": "Number" - } - } - ] - } - } - ] - }, - "weiwang/PtlUpLv/ReqUpLv": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "lv", - "type": { - "type": "Number" - } - }, - { - "id": 1, - "name": "type", - "type": { - "type": "Union", - "members": [ - { - "id": 0, - "type": { - "type": "Literal", - "literal": "hp" - } - }, - { - "id": 1, - "type": { - "type": "Literal", - "literal": "atk" - } - }, - { - "id": 2, - "type": { - "type": "Literal", - "literal": "def" - } - } - ] - } - } - ] - }, - "weiwang/PtlUpLv/ResUpLv": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "lv", - "type": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "hp", - "type": { - "type": "Number" - } - }, - { - "id": 1, - "name": "atk", - "type": { - "type": "Number" - } - }, - { - "id": 2, - "name": "def", - "type": { - "type": "Number" - } - } - ] - } - } - ] - }, "weixiuchang/PtlDecompose/ReqDecompose": { "type": "Interface", "properties": [ @@ -24447,7 +24380,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "weiwangbuff", + "name": "heroskin", "type": { "type": "Interface", "indexSignature": { @@ -24849,6 +24782,13 @@ export const serviceProto: ServiceProto = { } } } + }, + { + "id": 8, + "name": "skin", + "type": { + "type": "String" + } } ] }, diff --git a/src/shared/protocols/user/PtlLogin.ts b/src/shared/protocols/user/PtlLogin.ts index be0c04d..92213e7 100644 --- a/src/shared/protocols/user/PtlLogin.ts +++ b/src/shared/protocols/user/PtlLogin.ts @@ -195,4 +195,9 @@ export type playerAppend = { }; /**威望额外属性*/ weiwangbuff?: { [k: string]: number }; + + /**获得的皮肤*/ + heroskin?: { + [skid: string]: number; + } }; \ No newline at end of file diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts index 07fc0c1..c9319b7 100644 --- a/src/shared/public/hero.ts +++ b/src/shared/public/hero.ts @@ -1,11 +1,13 @@ import { ResGetList } from '../protocols/hero/PtlGetList'; import { player } from '../protocols/user/type'; import { EquipShared } from './equip'; +import HeroSkinShared from './heroskin'; import { PeijianShared } from './peijian'; import { PlayerShared } from './player'; import { PublicShared } from './public'; import { ShiwuShared } from './shiwu'; + export type otherBuff = Partial; }>; @@ -31,7 +33,7 @@ export class HeroShared { */ static getHeroBasicAttr(hero: heroDataType, otherBuff: otherBuff = G.otherBuff, pos = 0) { let jiban = 0; - let buff: k_v = { skillArr: [] }; + let buff: k_v = {skillArr: []}; let heroConf = G.gc.hero[hero.heroId]; let heroLv = G.gc.herolv[heroConf.lvup]; let heroGrow = G.gc.herogrow[heroConf.jjup]?.[hero.jieji]; @@ -40,7 +42,7 @@ export class HeroShared { for (let k in heroLv.buff) { let val = heroLv.buff[k]; if (typeof val == 'number') buff[k] = val; - else buff[k] = PublicShared.eval(val, { lv: hero.lv }); + else buff[k] = PublicShared.eval(val, {lv: hero.lv}); // else buff[k] = Math.floor(new Function(`let lv=${hero.lv}; return ${val}`)()); } @@ -135,7 +137,7 @@ export class HeroShared { PublicShared.mergeProperty(buff, PeijianShared.getAttr(p)); let conf = G.gc.peijian[p.peijianId]; if (conf.suit) { - if (!suitObj[conf.suit]) suitObj[conf.suit] = { num: 0, minLv: 0 }; + if (!suitObj[conf.suit]) suitObj[conf.suit] = {num: 0, minLv: 0}; suitObj[conf.suit].num++; if (!suitObj[conf.suit].minLv || p.lv < suitObj[conf.suit].minLv) suitObj[conf.suit].minLv = p.lv; } @@ -273,14 +275,20 @@ export class HeroShared { if (otherBuff?.skills) { for (let [id, lv] of Object.entries(otherBuff.skills)) { if (lv && G.gc.xunlianjihua[id].use == 0) { - PublicShared.mergeProperty(buff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], { slv: lv })]))); + PublicShared.mergeProperty(buff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], {slv: lv})]))); } } } - // 威望加成计算 - if (otherBuff?.weiwangbuff) { - PublicShared.mergeProperty(buff, otherBuff?.weiwangbuff || {}); + // 计算皮肤buff + if (otherBuff?.heroskin) { + for (let skinId in otherBuff.heroskin) { + let skinConf = G.gc.heroSkin[skinId]; + if (skinConf.heroId != hero.heroId) console; + PublicShared.mergeProperty(buff, HeroSkinShared.calcBuff( + skinId, otherBuff.heroskin[skinId] + )); + } } //最后进行加成属性计算 diff --git a/src/shared/public/heroskin.ts b/src/shared/public/heroskin.ts new file mode 100644 index 0000000..bb878e8 --- /dev/null +++ b/src/shared/public/heroskin.ts @@ -0,0 +1,21 @@ + +export default class HeroSkinShared { + + + /** + * 计算皮肤buff + * @param skid + * @param lv + * @returns {[string]: number} + * */ + static calcBuff(skid: string, lv: number): k_v { + let buff = {}; + let skin = G.gc.heroSkin[skid]; + for (let i = 1; i <= lv; i++) { + for (let k in (G.gc.heroSkinLv[skin.colour][i]?.buff || {})) { + buff[k] = (buff[k] || 0) + G.gc.heroSkinLv[skin.colour][i].buff[k]; + } + } + return buff; + } +} \ No newline at end of file diff --git a/src/shared/public/user.ts b/src/shared/public/user.ts index fe19f59..5310bab 100644 --- a/src/shared/public/user.ts +++ b/src/shared/public/user.ts @@ -24,7 +24,7 @@ export class UserShared { * 判断头像之类是否激活 * @param id 请使用 UserShared.getInfo 转化后的id */ - static chechIsActive(fmtId: string, collection: Partial<{ lv: number, vip: number, lsyx: k_v, model: k_v, active: k_v; }>) { + static chechIsActive(fmtId: string, collection: Partial<{ lv: number, vip: number, lsyx: k_v, model: k_v, active: k_v, heroskin: k_v; }>) { const [type, id] = fmtId.split('_'); const jsonName = 'player' + type.slice(0, 1).toLocaleUpperCase() + type.slice(1); @@ -37,6 +37,7 @@ export class UserShared { // else if (conf.cond[0] == 'time') return collection.active[fmtId] == -1 || collection.active[fmtId] > G.time; else if (conf.cond[0] == 'time') return conf.cond[1] == -1 || collection.active?.[fmtId] > G.time; else if (conf.cond[0] == 'model') return Object.values(collection.model).find(i => i.id == conf.cond[1]); + else if (conf.cond[0] == 'heroskin') return conf.cond[1] in collection.heroskin; else return false; } } \ No newline at end of file