content
stringlengths 5
1.05M
|
---|
name = "Level Up - Power Plant"
author = "Tester"
description = [[This script will catch shiny or rare Pokemon and will Level up first Pokemon of your team in Power Plant.]]
mpaName = "Power Plant" -- Change map name as you want.
X = 48
Y = 12
pokecenter_Name = "Route 10 Pokecenter" -- choose different pokecenter like Route 10 Pokecenter.
function onStart()
log("***Starting bot***")
end
function onPathAction()
if isPokemonUsable(1) then
if getMapName() == pokecenter_Name then
return teleportTo("Route 10", 26, 2)
elseif getMapName() == "Route 10" then
return teleportTo(mpaName, X, Y)
elseif getMapName() == mpaName then
return moveLinearX(48, 50, 12, "battle")
--return startBattle() -- you can choose startSurfBattle() to start surf battle :D
else
return teleportTo(pokecenter_Name, 19, 14)
end
else
return teleportTo(pokecenter_Name, 19, 14)
end
end
function onBattleAction()
if not isOpponentShiny() and not isOpponentRare() then
return attack() or sendAnyPokemon() or run()
else
return useItem("Ultra Ball") or useItem("Great Ball") or useItem("Poke Ball") or sendAnyPokemon()
end
end
function onLearningMove(moveName, index)
forgetAnyMoveExcept({"Fly", "Cut", "Psychic", "Slash", "Flame Burst", "Flamethrower"})
end
|
return {
id = "kitchen",
name = "Kitchen",
cost = 20000,
width = 3,
upkeep = 100,
sprites = {
{
name = "base",
animations = {
idle = {
first = 0,
last = 0,
speed = 1,
},
},
playing = "idle",
},
},
}
|
----------------------------------------------------------------------------------
-- Simple hitzone script by Infinite Rain, based on a sample by Unreal Software --
----------------------------------------------------------------------------------
if not CSample then
require("sys/lua/CS2D-AmplifiedScripting")
CSample = {}
end
CSample.hitzone = {
image = false
}
-----------------------------------------------------
-- Table which holds functions, later to be hooked --
-----------------------------------------------------
CSample.hitzone.hook = {
-- Dispose of the image instance on round start.
startround = function(mode)
CSample.hitzone.image = false
end,
-- Summons the image on serveraction.
serveraction = function(player, action)
-- Summons/creates the image.
if not CSample.hitzone.image then
CSample.hitzone.image = cas.mapImage.new("gfx/cs2d.bmp", "floor")
:setPosition(player:getX(), player:getY()) -- Sets position.
:setHitzone(true, "greenblood", -92/2, -92/2, 92, 92) -- Sets hitzone.
else
if CSample.hitzone.image:isTweenMove() then
CSample.hitzone.image:stopTweenMove()
end
CSample.hitzone.image:setPosition(player:getX(), player:getY())
end
-- Moves the image.
CSample.hitzone.image:tweenMove(5000, player:getX() + 300, player:getY() + 300)
end,
-- On hitzone damage.
hitzone = function(image, player, object, weapon, x, y)
-- Displaying info.
cas.game.messageToChat("Hit ".. tostring(image) .." (pl:".. player:getName() .." obj:".. (object and object:getTypeName() or "false")
.." wpn:".. weapon:getName() .." @ ".. x ..",".. y ..")")
-- Fire on hit.
cas.game.fireEffect(x, y, 5, 3)
end
}
------------------------------------
-- Hooking the declared functions --
------------------------------------
CSample.hitzone.startroundHook = cas.hook.new("startround", CSample.hitzone.hook.startround)
CSample.hitzone.serveractionHook = cas.hook.new("serveraction", CSample.hitzone.hook.serveraction)
CSample.hitzone.hitzoneHook = cas.hook.new("hitzone", CSample.hitzone.hook.hitzone)
|
require "TriggerKit/TriggerKit.lua"
function initialize(scene)
-- Callback을 순서대로 "트리거 발동, 트리거 발동 후 지속, 트리거 끝남"을 의미
---- ex) TriggerType.SMILE
------ smileCallBack : 처음 웃을때 한번 호출
------ ingSmileCallBack : 계속 웃고 있으면 매 프레임마다 계속 호출
------ endSmileCallBack : 웃다가 안웃으면 한번 호출
-- 자신이 쓰고 싶은 트리거 타입과 CallBack만 지정해서 사용하면 된다. 아래는 테스트 용이라 모든 타입, 모든 CallBack을 임의로 등록한 것임.
-- 쓰고 싶은 트리거 타입마다 Admin에서 모델 타입을 등록해줘야 하는 경우가 있다.
---- VISION_FACE 모델 필요타입
------ SMILE, BLINK, LEFT_WINK, RIGHT_WINK
---- SENSE_HAND_2D 모델 필요타입
------ HAND_OK, HAND_SCISSOR, HAND_GOOD, HAND_PALM, HAND_PISTOL, HAND_LOVE, HAND_HOLD_UP, HAND_CONGRATULATE, HAND_HEART, HAND_INDEX, HAND_FIST
local triggerItems = {
TriggerItem:new(TriggerType.SMILE, smileCallBack, ingSmileCallBack, endSmileCallBack),
TriggerItem:new(TriggerType.BLINK, blinkCallBack, ingBlinkCallBack, endBlinkCallBack),
TriggerItem:new(TriggerType.LEFT_WINK, leftWinkCallBack, ingLeftWinkCallBack, endLeftWinkCallBack),
TriggerItem:new(TriggerType.RIGHT_WINK, rightWinkCallBack, ingRightWinkCallBack, endRightWinkCallBack),
TriggerItem:new(TriggerType.MOUTH_AH, mouthAhCallBack, ingMouthAhCallBack, endMouthAhCallBack),
TriggerItem:new(TriggerType.HEAD_PITCH, headPitchCallBack, ingHeadPitchCallBack, endHeadPitchCallBack),
TriggerItem:new(TriggerType.BROW_JUMP, browJumpCallBack, ingBrowJumpCallBack, endBrowJumpCallBack),
TriggerItem:new(TriggerType.KISS, kissCallBack, ingKissCallBack, endKissCallBack),
TriggerItem:new(TriggerType.HAND_OK, handOKCallBack, ingHandOKCallBack, endHandOKCallBack),
TriggerItem:new(TriggerType.HAND_SCISSOR, handScissorCallBack, ingHandScissorCallBack, endHandScissorCallBack),
TriggerItem:new(TriggerType.HAND_GOOD, handGoodCallBack, ingHandGoodCallBack, endHandGoodCallBack),
TriggerItem:new(TriggerType.HAND_PALM, handPalmCallBack, ingHandPalmCallBack, endHandPalmCallBack),
TriggerItem:new(TriggerType.HAND_PISTOL, handPistolCallBack, ingHandPistolCallBack, endHandPistolCallBack),
TriggerItem:new(TriggerType.HAND_LOVE, handLoveCallBack, ingHandLoveCallBack, endHandLoveCallBack),
TriggerItem:new(TriggerType.HAND_HOLD_UP, handHoldUpCallBack, ingHandHoldUpCallBack, endHandHoldUpCallBack),
TriggerItem:new(TriggerType.HAND_CONGRATULATE, handCongratulateCallBack, ingHandCongratulateCallBack, endHandCongratulateCallBack),
TriggerItem:new(TriggerType.HAND_HEART, handHeartCallBack, ingHandHeartCallBack, endHandHeartCallBack),
TriggerItem:new(TriggerType.HAND_INDEX, handIndexCallBack, ingHandIndexCallBack, endHandIndexCallBack),
TriggerItem:new(TriggerType.HAND_FIST, handFistCallBack, ingHandFistCallBack, endHandFistCallBack),
}
g_triggerKit = TriggerKit:new(scene, triggerItems)
end
function frameReady(scene, elapsedTime)
g_triggerKit:frameReady()
end
function reset(scene)
end
function finalize(scene)
end
function smileCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] smile : " .. resultString)
end
function ingSmileCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing smile : " .. resultString)
end
function endSmileCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end smile : " .. resultString)
end
function blinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] blink : " .. resultString)
end
function ingBlinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing blink : " .. resultString)
end
function endBlinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end blink : " .. resultString)
end
function leftWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] left wink : " .. resultString)
end
function ingLeftWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing left wink : " .. resultString)
end
function endLeftWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end left wink : " .. resultString)
end
function rightWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] right wink : " .. resultString)
end
function ingRightWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing right wink : " .. resultString)
end
function endRightWinkCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end right wink : " .. resultString)
end
function mouthAhCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] mouth Ah : " .. resultString)
end
function ingMouthAhCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing mouth Ah : " .. resultString)
end
function endMouthAhCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end mouth Ah : " .. resultString)
end
function headPitchCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] head Pitch : " .. resultString)
end
function ingHeadPitchCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing head Pitch : " .. resultString)
end
function endHeadPitchCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end head Pitch : " .. resultString)
end
function browJumpCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] brow Jump : " .. resultString)
end
function ingBrowJumpCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing brow Jump : " .. resultString)
end
function endBrowJumpCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end brow Jump : " .. resultString)
end
function kissCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] kiss : " .. resultString)
end
function ingKissCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] ing kiss : " .. resultString)
end
function endKissCallBack(faceDataDict)
local resultString = ""
for key in pairs(faceDataDict) do
if faceDataDict[key] ~= nil then
resultString = resultString .. ", " .. key
end
end
print("[script] end kiss : " .. resultString)
end
function handOKCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand ok : " .. string)
end
function ingHandOKCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand ok : " .. string)
end
function endHandOKCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand ok : " .. string)
end
function handScissorCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand scissor : " .. string)
end
function ingHandScissorCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand scissor : " .. string)
end
function endHandScissorCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand scissor : " .. string)
end
function handGoodCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand good : " .. string)
end
function ingHandGoodCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand good : " .. string)
end
function endHandGoodCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand good : " .. string)
end
function handPalmCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand palm : " .. string)
end
function ingHandPalmCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand palm : " .. string)
end
function endHandPalmCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand palm : " .. string)
end
function handPistolCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand pistol : " .. string)
end
function ingHandPistolCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand pistol : " .. string)
end
function endHandPistolCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand pistol : " .. string)
end
function handLoveCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand love : " .. string)
end
function ingHandLoveCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand love : " .. string)
end
function endHandLoveCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand love : " .. string)
end
function handHoldUpCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand hold up : " .. string)
end
function ingHandHoldUpCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand hold up : " .. string)
end
function endHandHoldUpCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand hold up : " .. string)
end
function handCongratulateCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand congratulate : " .. string)
end
function ingHandCongratulateCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand congratulate : " .. string)
end
function endHandCongratulateCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand congratulate : " .. string)
end
function handHeartCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand heart : " .. string)
end
function ingHandHeartCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand heart : " .. string)
end
function endHandHeartCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand heart : " .. string)
end
function handIndexCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand index : " .. string)
end
function ingHandIndexCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand index : " .. string)
end
function endHandIndexCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand index : " .. string)
end
function handFistCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] hand fist : " .. string)
end
function ingHandFistCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] ing hand fist : " .. string)
end
function endHandFistCallBack(handDataDict)
local string = ""
for key in pairs(handDataDict) do
if handDataDict[key] ~= nil then
string = string .. ", " .. key
end
end
print("[script] end hand fist : " .. string)
end
|
local topInset, leftInset, bottomInset, rightInset = display.getSafeAreaInsets()
local aspectRatio = display.pixelHeight / display.pixelWidth
local portraitWidth, portraitHeight = 320, 480
if topInset > 0 or leftInset > 0 or bottomInset > 0 or rightInset > 0 then
if aspectRatio > 2.1 then
portraitWidth, portraitHeight = 360, 693
end
end
application =
{
content =
{
width = 320, --aspectRatio > 1.5 and portraitWidth or math.ceil( portraitHeight / aspectRatio ),
height = 480, --aspectRatio < 1.5 and portraitHeight or math.ceil( portraitWidth * aspectRatio ),
scale = "adaptive", -- adaptive , letterbox
fps = 60,
xAlign = "left", -- default: center
yAlign = "top", -- default: center
---[[--
imageSuffix =
{
["@2x"] = 1.5,
["@4x"] = 3.0
},
--]]--
},
--[[
-- Push notifications
notification =
{
iphone =
{
types =
{
"badge", "sound", "alert", "newsstand"
}
}
},
--]]
}
|
local require = require
local builder = require "oil.builder"
local arch = require "oil.arch.base"
module "oil.builder.base"
BasicSystem = arch.BasicSystem {require "oil.kernel.base.Sockets" }
ClientChannels = arch.SocketChannels {require "oil.kernel.base.Connector" }
ClientBroker = arch.ClientBroker {require "oil.kernel.base.Client" }
ObjectProxies = arch.ObjectProxies {require "oil.kernel.base.Proxies" }
OperationInvoker = arch.OperationInvoker {require "oil.kernel.base.Invoker" }
ServerChannels = arch.SocketChannels {require "oil.kernel.base.Acceptor" }
ServerBroker = arch.ServerBroker {require "oil.kernel.base.Server" }
RequestDispatcher = arch.RequestDispatcher{require "oil.kernel.base.Dispatcher"}
RequestReceiver = arch.RequestReceiver {require "oil.kernel.base.Receiver" }
function create(comps)
return builder.create(_M, comps)
end
|
local M = {}
M.init = function(conf)
local sched = require 'sched'
local toribio = require 'toribio'
sched.run(function()
local motor = toribio.wait_for_device(conf.motor)
motor.init_mode_joint()
motor.set_speed(conf.speed)
while true do
motor.set_position(conf.min)
repeat
sched.sleep(0.5)
until not motor.is_moving()
motor.set_position(conf.max)
repeat
sched.sleep(0.5)
until not motor.is_moving()
end
end)
end
return M
|
local Typer = require(script.Parent.Parent.Parent.Typer)
local function copyDeep(dictionary)
local new = {}
for key, value in next, dictionary do
if type(value) == "table" then
new[key] = copyDeep(value)
else
new[key] = value
end
end
return new
end
return Typer.AssignSignature(Typer.Table, copyDeep)
|
-- =============================================================================
-- __ __________ ______
-- / \ / \_____ \ / __ \
-- \ \/\/ // ____/ > <
-- \ // \/ -- \
-- \__/\ / \_______ \______ /
-- \/ \/ \/
-- init.lua --- Initialization file for Vim
-- Copyright (c) 2021 Sourajyoti Basak
-- Author: Sourajyoti Basak < [email protected] >
-- URL: https://github.com/wizard-28/dotfiles/
-- License: MIT
-- =============================================================================
require('general') -- Bootstrap general stuff and helper functions
require('plugins')
|
net.Receive("ChristmasCredits:Purchase", function(_, ply)
local npc = net.ReadEntity()
if not (npc:GetClass() == "xyz_christmas_credits_npc") then return end
if npc:GetPos():Distance(ply:GetPos()) > 500 then return end
if npc.cooldown > CurTime() then return end
npc.cooldown = CurTime() + 0.5
local item = net.ReadInt(32)
item = XYZChristmasCredits.Config.Items[item]
if not item then return end
if not (tonumber(XYZChristmasCredits.Core.PlyCredits[ply:SteamID64()]) >= tonumber(item.price)) then
XYZShit.Msg("Christmas Credit Store", Color(246, 70, 99), "You cannot afford this item...", ply)
return
end
if item.canBuy then
if not item.canBuy(ply) then
XYZShit.Msg("Christmas Credit Store", Color(246, 70, 99), "You cannot purchase this item for some unknown reason", ply)
return
end
end
XYZShit.Msg("Christmas Credit Store", Color(246, 70, 99), "You have purchased "..item.name.." for "..string.Comma(item.price).." Christmas Credits!", ply)
XYZChristmasCredits.Database.GiveCredits(ply, -item.price)
item.action(ply, npc)
end)
|
local shieldingword = {
[1] = {ID=1,Desc="刘晓波"},
[2] = {ID=2,Desc="和平奖"},
[3] = {ID=3,Desc="回民吃猪肉"},
[4] = {ID=4,Desc="习近平"},
[5] = {ID=5,Desc="毛民进党"},
[6] = {ID=6,Desc="妹妹淫水"},
[7] = {ID=7,Desc="1989六四"},
[8] = {ID=8,Desc="性爱电影"},
[9] = {ID=9,Desc="李红智"},
[10] = {ID=10,Desc="梁光烈"},
[11] = {ID=11,Desc="成人BT"},
[12] = {ID=12,Desc="免注册淫色电影"},
[13] = {ID=13,Desc="性爱图库"},
[14] = {ID=14,Desc="公安"},
[15] = {ID=15,Desc="777黄站"},
[16] = {ID=16,Desc="大龟头顶住嫂嫂的花心深处"},
[17] = {ID=17,Desc="兽奸"},
[18] = {ID=18,Desc="PORN"},
[19] = {ID=19,Desc="毛可卡因"},
[20] = {ID=20,Desc="阴茎挺进滋润肉洞里在阴户中抽送"},
[21] = {ID=21,Desc="falundafa"},
[22] = {ID=22,Desc="三八淫成人网"},
[23] = {ID=23,Desc="发^^轮"},
[24] = {ID=24,Desc="毛江折民"},
[25] = {ID=25,Desc="毛拉登"},
[26] = {ID=26,Desc="免费淫*女A片段"},
[27] = {ID=27,Desc="d7se我淫我电影"},
[28] = {ID=28,Desc="madelove"},
[29] = {ID=29,Desc="淫奸美女穴"},
[30] = {ID=30,Desc="美女极品穴"},
[31] = {ID=31,Desc="…快插我淫穴…"},
[32] = {ID=32,Desc="玩穴"},
[33] = {ID=33,Desc="lineageⅡ"},
[34] = {ID=34,Desc="居然花钱请人教性爱姿势(组图)免费淫电影a片"},
[35] = {ID=35,Desc="肛交"},
[36] = {ID=36,Desc="go-vern-ment"},
[37] = {ID=37,Desc="奸你"},
[38] = {ID=38,Desc="四眼醫生強制飲尿"},
[39] = {ID=39,Desc="嫂嫂的穴"},
[40] = {ID=40,Desc="龟头在她的阴道里抽插"},
[41] = {ID=41,Desc="张梅颖"},
[42] = {ID=42,Desc="幼女嫩逼"},
[43] = {ID=43,Desc="meimei的阴蒂"},
[44] = {ID=44,Desc="淫女性息"},
[45] = {ID=45,Desc="强奸35岁处女全过程/淫妹阴毛小穴"},
[46] = {ID=46,Desc="阴屄"},
[47] = {ID=47,Desc="贺龙"},
[48] = {ID=48,Desc="酱猪媳"},
[49] = {ID=49,Desc="台湾共和国"},
[50] = {ID=50,Desc="陰唇"},
[51] = {ID=51,Desc="淫虎大型色站"},
[52] = {ID=52,Desc="免费淫奸黄色电影a片"},
[53] = {ID=53,Desc="免费强奸淫电影"},
[54] = {ID=54,Desc="老公,他要插进来了"},
[55] = {ID=55,Desc="9JBW"},
[56] = {ID=56,Desc="巨乳美女RINA无码第2弹"},
[57] = {ID=57,Desc="十八电影掰穴特写红免费性视频聊天激情少妇图"},
[58] = {ID=58,Desc="新華內情"},
[59] = {ID=59,Desc="meinv嫩穴"},
[60] = {ID=60,Desc="麻黄素"},
[61] = {ID=61,Desc="绝品美女が恍惚颜の绝顶快感"},
[62] = {ID=62,Desc="操逼样"},
[63] = {ID=63,Desc="日本激情淫穴贴图"},
[64] = {ID=64,Desc="雞吧"},
[65] = {ID=65,Desc="温总理"},
[66] = {ID=66,Desc="夜色导航"},
[67] = {ID=67,Desc="風騷淫蕩"},
[68] = {ID=68,Desc="麻黃素"},
[69] = {ID=69,Desc="插阿姨的洞洞舔女朋友的下身"},
[70] = {ID=70,Desc="驶你爸"},
[71] = {ID=71,Desc="轮奸做爱高潮录象"},
[72] = {ID=72,Desc="赛你老母"},
[73] = {ID=73,Desc="內射"},
[74] = {ID=74,Desc="李岚清"},
[75] = {ID=75,Desc="芬太尼"},
[76] = {ID=76,Desc="日本妹妹"},
[77] = {ID=77,Desc="fuck生春袋"},
[78] = {ID=78,Desc="法论工"},
[79] = {ID=79,Desc="meimei的小屄好痒"},
[80] = {ID=80,Desc="毛干拎娘"},
[81] = {ID=81,Desc="黄色免费淫乱电影"},
[82] = {ID=82,Desc="奸他"},
[83] = {ID=83,Desc="朱狨基"},
[84] = {ID=84,Desc="JPEEN"},
[85] = {ID=85,Desc="色情信息"},
[86] = {ID=86,Desc="六岁幼女阴穴近拍"},
[87] = {ID=87,Desc="meimei被操的淫水直流"},
[88] = {ID=88,Desc="希特勒"},
[89] = {ID=89,Desc="马卖马屁"},
[90] = {ID=90,Desc="淫B"},
[91] = {ID=91,Desc="激情淫色自拍"},
[92] = {ID=92,Desc="免费淫奸女A片段试看"},
[93] = {ID=93,Desc="又粗又长的肉棒"},
[94] = {ID=94,Desc="胡紧套"},
[95] = {ID=95,Desc="肉棒与阴道摩擦"},
[96] = {ID=96,Desc="韩国成人激情淫洞"},
[97] = {ID=97,Desc="丰满小妹的丰褪美腿"},
[98] = {ID=98,Desc="淫妻交换"},
[99] = {ID=99,Desc="ㄙㄞ你爸"},
[100] = {ID=100,Desc="淫色导航"},
[101] = {ID=101,Desc="淫乱护士电影"},
[102] = {ID=102,Desc="淫乱狂穴"},
[103] = {ID=103,Desc="吗逼"},
[104] = {ID=104,Desc="蒋中国"},
[105] = {ID=105,Desc="香港激情淫影院"},
[106] = {ID=106,Desc="发正念"},
[107] = {ID=107,Desc="抽插18岁处女妹妹淫叫不断"},
[108] = {ID=108,Desc="淫窝窝"},
[109] = {ID=109,Desc="手伸到下体抚mo嫩穴"},
[110] = {ID=110,Desc="中广网"},
[111] = {ID=111,Desc="宋楚瑜"},
[112] = {ID=112,Desc="砍死你"},
[113] = {ID=113,Desc="婬乱军团"},
[114] = {ID=114,Desc="紮卡維是英雄"},
[115] = {ID=115,Desc="免费午夜激情视频"},
[116] = {ID=116,Desc="曾慶红"},
[117] = {ID=117,Desc="乱伦之淫穴"},
[118] = {ID=118,Desc="国产嫖娼"},
[119] = {ID=119,Desc="淫液下留"},
[120] = {ID=120,Desc="哥哥用力舒服死我了"},
[121] = {ID=121,Desc="騰武"},
[122] = {ID=122,Desc="毛你二大爷"},
[123] = {ID=123,Desc="吞精骚妹"},
[124] = {ID=124,Desc="中国真实内容"},
[125] = {ID=125,Desc="天然むすめ"},
[126] = {ID=126,Desc="小泉純一郎"},
[127] = {ID=127,Desc="色情"},
[128] = {ID=128,Desc="粉红的的奶头粉嫩的阴唇"},
[129] = {ID=129,Desc="色妹妹淫穴"},
[130] = {ID=130,Desc="操逼电影"},
[131] = {ID=131,Desc="东突,"},
[132] = {ID=132,Desc="免费淫色情电影"},
[133] = {ID=133,Desc="操车臣"},
[134] = {ID=134,Desc="肏meimei的小骚屄"},
[135] = {ID=135,Desc="肉感炮友"},
[136] = {ID=136,Desc="跟妹妹肏穴好舒服"},
[137] = {ID=137,Desc="骡干"},
[138] = {ID=138,Desc="淫液顺着肉棒"},
[139] = {ID=139,Desc="中華民國"},
[140] = {ID=140,Desc="赫鲁晓夫"},
[141] = {ID=141,Desc="狂操小穴"},
[142] = {ID=142,Desc="國產嫖娼"},
[143] = {ID=143,Desc="日本鬼子"},
[144] = {ID=144,Desc="国管局"},
[145] = {ID=145,Desc="小阴唇"},
[146] = {ID=146,Desc="中華民国"},
[147] = {ID=147,Desc="meinv视频图情色贴图区成人性光牒"},
[148] = {ID=148,Desc="臭机"},
[149] = {ID=149,Desc="毛天安门事件"},
[150] = {ID=150,Desc="聂荣臻"},
[151] = {ID=151,Desc="淫妻交換"},
[152] = {ID=152,Desc="毛人弹"},
[153] = {ID=153,Desc="徐光春"},
[154] = {ID=154,Desc="meimei等你大鸡吧来插"},
[155] = {ID=155,Desc="热站政论网"},
[156] = {ID=156,Desc="免费成人图片"},
[157] = {ID=157,Desc="又肥又紧的屄儿"},
[158] = {ID=158,Desc="中國狗"},
[159] = {ID=159,Desc="小穴不断被顶入"},
[160] = {ID=160,Desc="不倫繼母的性猥褻"},
[161] = {ID=161,Desc="龟头在嫂嫂的小穴穴口研磨"},
[162] = {ID=162,Desc="处女被强迫吃春药后被开苞"},
[163] = {ID=163,Desc="毛洪志"},
[164] = {ID=164,Desc="毛淫语连连"},
[165] = {ID=165,Desc="费良勇"},
[166] = {ID=166,Desc="反封鎖技術"},
[167] = {ID=167,Desc="AV女优"},
[168] = {ID=168,Desc="法轮功靠"},
[169] = {ID=169,Desc="熟女人妻"},
[170] = {ID=170,Desc="届中央政治局委员"},
[171] = {ID=171,Desc="夜聊视频聊天室"},
[172] = {ID=172,Desc="发$$纶"},
[173] = {ID=173,Desc="色网阴道特写强奸33岁处女全过程"},
[174] = {ID=174,Desc="胡新宇"},
[175] = {ID=175,Desc="淫獸學園"},
[176] = {ID=176,Desc="何加棟"},
[177] = {ID=177,Desc="王子杰"},
[178] = {ID=178,Desc="毛看牌软件"},
[179] = {ID=179,Desc="儿子添着妈妈大的阴唇"},
[180] = {ID=180,Desc="淫穴嫩穴"},
[181] = {ID=181,Desc="插meimei小穴"},
[182] = {ID=182,Desc="默克尔"},
[183] = {ID=183,Desc="午夜性爱惊魂"},
[184] = {ID=184,Desc="操淫荡护士穴"},
[185] = {ID=185,Desc="可视视频聊天"},
[186] = {ID=186,Desc="恼杀美巨乳meinv~吉川萌"},
[187] = {ID=187,Desc="幼男搞幼女"},
[188] = {ID=188,Desc="蔡庆林"},
[189] = {ID=189,Desc="鸡吧插进肉穴"},
[190] = {ID=190,Desc="团中央"},
[191] = {ID=191,Desc="丁子霖"},
[192] = {ID=192,Desc="插那吗B"},
[193] = {ID=193,Desc="掄功"},
[194] = {ID=194,Desc="激情女优"},
[195] = {ID=195,Desc="稀少罕见的美少女蝴蝶屄"},
[196] = {ID=196,Desc="mm的诱人双峰→免费试看片"},
[197] = {ID=197,Desc="唐柏桥"},
[198] = {ID=198,Desc="阿拉法特"},
[199] = {ID=199,Desc="福莱斯特"},
[200] = {ID=200,Desc="刘云山"},
[201] = {ID=201,Desc="葫蘆案"},
[202] = {ID=202,Desc="情色电影立即看"},
[203] = {ID=203,Desc="asiasex"},
[204] = {ID=204,Desc="調教"},
[205] = {ID=205,Desc="插深些"},
[206] = {ID=206,Desc="肉棒在小穴深初来回抽动"},
[207] = {ID=207,Desc="鸡巴深深地插在妈的阴户里"},
[208] = {ID=208,Desc="点点激情播放性电影"},
[209] = {ID=209,Desc="侧那"},
[210] = {ID=210,Desc="強淫女優"},
[211] = {ID=211,Desc="我的阴茎使劲的抽插她的小穴"},
[212] = {ID=212,Desc="人代会"},
[213] = {ID=213,Desc="性愛"},
[214] = {ID=214,Desc="死gd"},
[215] = {ID=215,Desc="精子"},
[216] = {ID=216,Desc="肉棒插入小穴"},
[217] = {ID=217,Desc="猛地插入了她的肥穴"},
[218] = {ID=218,Desc="联大"},
[219] = {ID=219,Desc="经血"},
[220] = {ID=220,Desc="毛你姥姥的"},
[221] = {ID=221,Desc="chengmingmag"},
[222] = {ID=222,Desc="骚BB免费色电影"},
[223] = {ID=223,Desc="薄一波"},
[224] = {ID=224,Desc="腚眼"},
[225] = {ID=225,Desc="淫痴"},
[226] = {ID=226,Desc="日本成人激情论坛"},
[227] = {ID=227,Desc="文化大革命"},
[228] = {ID=228,Desc="民为法执"},
[229] = {ID=229,Desc="達賴"},
[230] = {ID=230,Desc="三级片A片下载观看"},
[231] = {ID=231,Desc="死gm"},
[232] = {ID=232,Desc="白肌meinv?琴也"},
[233] = {ID=233,Desc="激情成人网"},
[234] = {ID=234,Desc="抽插21岁处女meimei淫叫不断"},
[235] = {ID=235,Desc="免费黄色淫秽电影"},
[236] = {ID=236,Desc="小穴流水meimei手指插"},
[237] = {ID=237,Desc="六四屠杀"},
[238] = {ID=238,Desc="小B"},
[239] = {ID=239,Desc="日本帝國"},
[240] = {ID=240,Desc="法谪功"},
[241] = {ID=241,Desc="人民真实"},
[242] = {ID=242,Desc="伸到老师的小穴里"},
[243] = {ID=243,Desc="潮姫"},
[244] = {ID=244,Desc="日本帝国"},
[245] = {ID=245,Desc="meimei的小阴户"},
[246] = {ID=246,Desc="辣妹狼图~肏穴图"},
[247] = {ID=247,Desc="含住肉棒上下使劲吸吮起来"},
[248] = {ID=248,Desc="百家性大型免费黄站"},
[249] = {ID=249,Desc="陰囊"},
[250] = {ID=250,Desc="輪攻"},
[251] = {ID=251,Desc="王策"},
[252] = {ID=252,Desc="毛佳静安定片"},
[253] = {ID=253,Desc="鸟gm"},
[254] = {ID=254,Desc="骚屄"},
[255] = {ID=255,Desc="TeSt"},
[256] = {ID=256,Desc="激情电影免费下载裸体美女乳房图"},
[257] = {ID=257,Desc="美臀嫰穴"},
[258] = {ID=258,Desc="毛王兆国"},
[259] = {ID=259,Desc="小卵泡"},
[260] = {ID=260,Desc="日本成人激情网站"},
[261] = {ID=261,Desc="肉棒"},
[262] = {ID=262,Desc="情色俱乐部美女奸淫。黄色电影裸体电影PP点点激情电影"},
[263] = {ID=263,Desc="迅雷下载免费黄色淫乱电影"},
[264] = {ID=264,Desc="6?4靠"},
[265] = {ID=265,Desc="全裸女优"},
[266] = {ID=266,Desc="達赖"},
[267] = {ID=267,Desc="正悟网"},
[268] = {ID=268,Desc="毛小泉纯一郎"},
[269] = {ID=269,Desc="淫癡"},
[270] = {ID=270,Desc="台湾淫电影"},
[271] = {ID=271,Desc="外·挂"},
[272] = {ID=272,Desc="www。gpchina。net"},
[273] = {ID=273,Desc="春色满园淫妻系列"},
[274] = {ID=274,Desc="美沙酮"},
[275] = {ID=275,Desc="VIP独占~秘密之大乱交(最终话)"},
[276] = {ID=276,Desc="blogbaby"},
[277] = {ID=277,Desc="中华民国"},
[278] = {ID=278,Desc="阴道里的大肉棒来回抽插"},
[279] = {ID=279,Desc="操草妈"},
[280] = {ID=280,Desc="毛两腿之间"},
[281] = {ID=281,Desc="中国淫女论坛"},
[282] = {ID=282,Desc="48xp。com"},
[283] = {ID=283,Desc="亲哥哥……meimei的小穴……舒服死了……"},
[284] = {ID=284,Desc="美国参考"},
[285] = {ID=285,Desc="中华民國"},
[286] = {ID=286,Desc="看棋软件"},
[287] = {ID=287,Desc="操美女穴"},
[288] = {ID=288,Desc="毛海洛因"},
[289] = {ID=289,Desc="淫女俱乐部"},
[290] = {ID=290,Desc="絲襪足交"},
[291] = {ID=291,Desc="淫荡┅好舒服"},
[292] = {ID=292,Desc="GAMEmaster"},
[293] = {ID=293,Desc="陈独秀"},
[294] = {ID=294,Desc="淫水愛液"},
[295] = {ID=295,Desc="农村人乱伦事"},
[296] = {ID=296,Desc="女大学生在夜店被朋友轮奸"},
[297] = {ID=297,Desc="拉案"},
[298] = {ID=298,Desc="总书记"},
[299] = {ID=299,Desc="毛毛一鲜"},
[300] = {ID=300,Desc="火热的精液喷射在子宫上"},
[301] = {ID=301,Desc="肉棒捅进阴户里"},
[302] = {ID=302,Desc="香港色情影星美女裸体"},
[303] = {ID=303,Desc="毛性交"},
[304] = {ID=304,Desc="大人の隠れ汤"},
[305] = {ID=305,Desc="因特天盟"},
[306] = {ID=306,Desc="肉具"},
[307] = {ID=307,Desc="司馬義?鉄力瓦爾地"},
[308] = {ID=308,Desc="菊花蕾"},
[309] = {ID=309,Desc="騷棒"},
[310] = {ID=310,Desc="恋爱盒子OL"},
[311] = {ID=311,Desc="颜骑"},
[312] = {ID=312,Desc="騷棍"},
[313] = {ID=313,Desc="耿飙"},
[314] = {ID=314,Desc="近亲相奸"},
[315] = {ID=315,Desc="耿飚"},
[316] = {ID=316,Desc="免费电影現役看護婦"},
[317] = {ID=317,Desc="泄题"},
[318] = {ID=318,Desc="捅她"},
[319] = {ID=319,Desc="毛日Gm"},
[320] = {ID=320,Desc="你她馬的"},
[321] = {ID=321,Desc="G。M"},
[322] = {ID=322,Desc="一四我"},
[323] = {ID=323,Desc="肥东交警"},
[324] = {ID=324,Desc="Tsubaki"},
[325] = {ID=325,Desc="大众真人真事"},
[326] = {ID=326,Desc="喷尿"},
[327] = {ID=327,Desc="窝窝色网之家"},
[328] = {ID=328,Desc="毛刘云山"},
[329] = {ID=329,Desc="第七色明星淫欲"},
[330] = {ID=330,Desc="毛李洪志"},
[331] = {ID=331,Desc="G-M"},
[332] = {ID=332,Desc="空中小姐的淫蕩性生活"},
[333] = {ID=333,Desc="淫肉誘惑"},
[334] = {ID=334,Desc="灯草和尚"},
[335] = {ID=335,Desc="方晓日"},
[336] = {ID=336,Desc="肉棒的抽插…。好爽"},
[337] = {ID=337,Desc="挺动我的下体"},
[338] = {ID=338,Desc="国防科工委"},
[339] = {ID=339,Desc="大奶美逼"},
[340] = {ID=340,Desc="肉逼"},
[341] = {ID=341,Desc="人學生meimei"},
[342] = {ID=342,Desc="玉穴"},
[343] = {ID=343,Desc="搔meimei色站大全"},
[344] = {ID=344,Desc="jiaochun"},
[345] = {ID=345,Desc="淫荡meinv医生"},
[346] = {ID=346,Desc="抽插35岁处女妹妹淫叫不断"},
[347] = {ID=347,Desc="我操你"},
[348] = {ID=348,Desc="倒臺"},
[349] = {ID=349,Desc="操浪妻淫女"},
[350] = {ID=350,Desc="插的我好爽"},
[351] = {ID=351,Desc="妖媚熟母"},
[352] = {ID=352,Desc="極品黑絲"},
[353] = {ID=353,Desc="激情网站地址"},
[354] = {ID=354,Desc="…好舒服"},
[355] = {ID=355,Desc="賣財富"},
[356] = {ID=356,Desc="毛泽東"},
[357] = {ID=357,Desc="Tora-Tora-Tora"},
[358] = {ID=358,Desc="fuck新华内情"},
[359] = {ID=359,Desc="一夜激情成人聊天室"},
[360] = {ID=360,Desc="曾慶紅"},
[361] = {ID=361,Desc="免费淫色论坛"},
[362] = {ID=362,Desc="日本情色论坛"},
[363] = {ID=363,Desc="品穴"},
[364] = {ID=364,Desc="黄色免费淫奸电影我和女友干爽后再她meimei"},
[365] = {ID=365,Desc="makinglove"},
[366] = {ID=366,Desc="making"},
[367] = {ID=367,Desc="saobi"},
[368] = {ID=368,Desc="日本激情淫电影"},
[369] = {ID=369,Desc="激情电影在线观看"},
[370] = {ID=370,Desc="老师和我做爱好爽"},
[371] = {ID=371,Desc="阴茎插入肉洞里"},
[372] = {ID=372,Desc="NeoSteam"},
[373] = {ID=373,Desc="色mm穴激情"},
[374] = {ID=374,Desc="fuck新唐人"},
[375] = {ID=375,Desc="火辣图片"},
[376] = {ID=376,Desc="阴户紧紧包含着肉棒"},
[377] = {ID=377,Desc="發正念"},
[378] = {ID=378,Desc="淫色贴图365"},
[379] = {ID=379,Desc="上有网"},
[380] = {ID=380,Desc="毛李铁映"},
[381] = {ID=381,Desc="小B样"},
[382] = {ID=382,Desc="私—服"},
[383] = {ID=383,Desc="一卡多号"},
[384] = {ID=384,Desc="桃色电影"},
[385] = {ID=385,Desc="只允许法规年龄的人注册"},
[386] = {ID=386,Desc="淫奸处女电影论坛"},
[387] = {ID=387,Desc="骚妈"},
[388] = {ID=388,Desc="鸡巴插入花心"},
[389] = {ID=389,Desc="salop"},
[390] = {ID=390,Desc="美女淫色贴图区"},
[391] = {ID=391,Desc="pussy"},
[392] = {ID=392,Desc="六决不"},
[393] = {ID=393,Desc="淫汁飛散大亂交"},
[394] = {ID=394,Desc="情色"},
[395] = {ID=395,Desc="處女開包"},
[396] = {ID=396,Desc="白虎阴穴"},
[397] = {ID=397,Desc="淫穴贴吧"},
[398] = {ID=398,Desc="又粗又硬的肉棒"},
[399] = {ID=399,Desc="一党独裁"},
[400] = {ID=400,Desc="毛禁书"},
[401] = {ID=401,Desc="骚女"},
[402] = {ID=402,Desc="金正日"},
[403] = {ID=403,Desc="骚妻"},
[404] = {ID=404,Desc="網路創世紀"},
[405] = {ID=405,Desc="發$$倫"},
[406] = {ID=406,Desc="毛昏药"},
[407] = {ID=407,Desc="鸡巴……插死我了"},
[408] = {ID=408,Desc="肉棒插入大肉穴"},
[409] = {ID=409,Desc="狂插阿姨穴"},
[410] = {ID=410,Desc="操的我好爽啊……我又要泄┅┅"},
[411] = {ID=411,Desc="百家性大型色"},
[412] = {ID=412,Desc="和meimei肏屄"},
[413] = {ID=413,Desc="龟头粗壮赤红"},
[414] = {ID=414,Desc="淫荡女医生穴"},
[415] = {ID=415,Desc="小鸡巴"},
[416] = {ID=416,Desc="pp243淫色导航"},
[417] = {ID=417,Desc="foseaon"},
[418] = {ID=418,Desc="继母的爱液"},
[419] = {ID=419,Desc="骚妹"},
[420] = {ID=420,Desc="色网阴道特写强奸30岁处女全过程"},
[421] = {ID=421,Desc="中国民主党"},
[422] = {ID=422,Desc="17大"},
[423] = {ID=423,Desc="火药制作"},
[424] = {ID=424,Desc="法仑攻"},
[425] = {ID=425,Desc="色meimei大型黄站"},
[426] = {ID=426,Desc="语音激情视频聊天室"},
[427] = {ID=427,Desc="赛福鼎·艾则孜"},
[428] = {ID=428,Desc="(現映社)オバサマ5人"},
[429] = {ID=429,Desc="台湾20岁成人"},
[430] = {ID=430,Desc="媽的B"},
[431] = {ID=431,Desc="发**沦"},
[432] = {ID=432,Desc="fuck傻逼"},
[433] = {ID=433,Desc="免费强奸电影"},
[434] = {ID=434,Desc="碩大龜頭緊緊頂著她的阴道"},
[435] = {ID=435,Desc="抽插24岁处女妹妹淫叫不断"},
[436] = {ID=436,Desc="西藏分裂"},
[437] = {ID=437,Desc="56xp。com"},
[438] = {ID=438,Desc="邝锦文"},
[439] = {ID=439,Desc="董賤華"},
[440] = {ID=440,Desc="tankbb"},
[441] = {ID=441,Desc="毛公安局"},
[442] = {ID=442,Desc="马克思"},
[443] = {ID=443,Desc="午夜成人电影"},
[444] = {ID=444,Desc="penis"},
[445] = {ID=445,Desc="群魔色舞"},
[446] = {ID=446,Desc="制服狩"},
[447] = {ID=447,Desc="江Core"},
[448] = {ID=448,Desc="16大"},
[449] = {ID=449,Desc="贛您娘"},
[450] = {ID=450,Desc="免费淫电影吴宗宪搞笑语录(25禁看)"},
[451] = {ID=451,Desc="六四"},
[452] = {ID=452,Desc="鮑嶽橋"},
[453] = {ID=453,Desc="打到共产党"},
[454] = {ID=454,Desc="激情淫女小穴"},
[455] = {ID=455,Desc="高潮集錦"},
[456] = {ID=456,Desc="销魂洞"},
[457] = {ID=457,Desc="吃大便"},
[458] = {ID=458,Desc="血腥內幕"},
[459] = {ID=459,Desc="肉唇"},
[460] = {ID=460,Desc="不要将你的精液射进我的小穴了里啊"},
[461] = {ID=461,Desc="罂粟"},
[462] = {ID=462,Desc="机八"},
[463] = {ID=463,Desc="台湾獨立"},
[464] = {ID=464,Desc="換妻雜交"},
[465] = {ID=465,Desc="父女姐弟淫乱"},
[466] = {ID=466,Desc="肉棒插入阴户内"},
[467] = {ID=467,Desc="抽插33岁处女meimei淫叫不断"},
[468] = {ID=468,Desc="重题工"},
[469] = {ID=469,Desc="处女心经"},
[470] = {ID=470,Desc="后面插入处女的肉穴"},
[471] = {ID=471,Desc="毛发伦"},
[472] = {ID=472,Desc="小嘴吐出龟头"},
[473] = {ID=473,Desc="監禁陵辱"},
[474] = {ID=474,Desc="大众成人网"},
[475] = {ID=475,Desc="港激情图源成人色情论坛"},
[476] = {ID=476,Desc="長瀨"},
[477] = {ID=477,Desc="支那"},
[478] = {ID=478,Desc="164网址宽频影院网"},
[479] = {ID=479,Desc="毛法轮大法"},
[480] = {ID=480,Desc="儿子的肉棒好大啊"},
[481] = {ID=481,Desc="發^掄"},
[482] = {ID=482,Desc="無碼淫漫"},
[483] = {ID=483,Desc="香港成人淫电影"},
[484] = {ID=484,Desc="G_m"},
[485] = {ID=485,Desc="kamikaze"},
[486] = {ID=486,Desc="肉棒嫩逼"},
[487] = {ID=487,Desc="毛可卡叶"},
[488] = {ID=488,Desc="fuck新闻出版署"},
[489] = {ID=489,Desc="抽插"},
[490] = {ID=490,Desc="肉棒放在阴道口"},
[491] = {ID=491,Desc="打炮"},
[492] = {ID=492,Desc="日穿"},
[493] = {ID=493,Desc="八九民主运动"},
[494] = {ID=494,Desc="靓穴美女"},
[495] = {ID=495,Desc="美骚妇"},
[496] = {ID=496,Desc="fuck信息产业部"},
[497] = {ID=497,Desc="盐酸二乙酰吗啡"},
[498] = {ID=498,Desc="吃鸡巴"},
[499] = {ID=499,Desc="毛烂比"},
[500] = {ID=500,Desc="媚药少年"},
[501] = {ID=501,Desc="三陪女"},
[502] = {ID=502,Desc="免费淫乱电影"},
[503] = {ID=503,Desc="胯下呻吟"},
[504] = {ID=504,Desc="阿扁万岁"},
[505] = {ID=505,Desc="欧美淫色贴图网址"},
[506] = {ID=506,Desc="輪暴"},
[507] = {ID=507,Desc="轮干"},
[508] = {ID=508,Desc="免费痴女吸精"},
[509] = {ID=509,Desc="他媽地"},
[510] = {ID=510,Desc="鄧穎超"},
[511] = {ID=511,Desc="93bb成人小电影"},
[512] = {ID=512,Desc="毛新闻出版署"},
[513] = {ID=513,Desc="傻比"},
[514] = {ID=514,Desc="那嗎逼"},
[515] = {ID=515,Desc="亚洲无码"},
[516] = {ID=516,Desc="妓女自拍做爱电影"},
[517] = {ID=517,Desc="嫩肉"},
[518] = {ID=518,Desc="和親姐姐作愛"},
[519] = {ID=519,Desc="肉棒在小穴四周游移轻撩"},
[520] = {ID=520,Desc="干meinv小穴"},
[521] = {ID=521,Desc="大鸡巴干进meimei的小穴"},
[522] = {ID=522,Desc="激情色"},
[523] = {ID=523,Desc="楊思敏"},
[524] = {ID=524,Desc="蒙巴顿"},
[525] = {ID=525,Desc="宫泽Keito"},
[526] = {ID=526,Desc="车仑女干"},
[527] = {ID=527,Desc="黑手党"},
[528] = {ID=528,Desc="王鹤寿"},
[529] = {ID=529,Desc="温比"},
[530] = {ID=530,Desc="AV女优和平凡男人1日结婚"},
[531] = {ID=531,Desc="强奸免费淫电影"},
[532] = {ID=532,Desc="干八个美女的小穴"},
[533] = {ID=533,Desc="毛对日强硬"},
[534] = {ID=534,Desc="紅燈區"},
[535] = {ID=535,Desc="大陆娱乐黄站"},
[536] = {ID=536,Desc="色情导航"},
[537] = {ID=537,Desc="fuck"},
[538] = {ID=538,Desc="护士mm乱淫"},
[539] = {ID=539,Desc="舔鸡巴"},
[540] = {ID=540,Desc="玉蒲团讯雷下载"},
[541] = {ID=541,Desc="最新n0242"},
[542] = {ID=542,Desc="五月天"},
[543] = {ID=543,Desc="嫖妓指南"},
[544] = {ID=544,Desc="抽插30岁处女妹妹淫叫不断"},
[545] = {ID=545,Desc="龟头顶住她的花心深处"},
[546] = {ID=546,Desc="宁王府论坛"},
[547] = {ID=547,Desc="拔出來"},
[548] = {ID=548,Desc="裸聊合法"},
[549] = {ID=549,Desc="科技精英遇难"},
[550] = {ID=550,Desc="2逼"},
[551] = {ID=551,Desc="法棆功"},
[552] = {ID=552,Desc="paper64"},
[553] = {ID=553,Desc="fuck外/挂"},
[554] = {ID=554,Desc="icpcn"},
[555] = {ID=555,Desc="强奸"},
[556] = {ID=556,Desc="3P"},
[557] = {ID=557,Desc="溫家宝"},
[558] = {ID=558,Desc="淋病"},
[559] = {ID=559,Desc="陽具"},
[560] = {ID=560,Desc="偷情網"},
[561] = {ID=561,Desc="江賊民"},
[562] = {ID=562,Desc="操草拟妈"},
[563] = {ID=563,Desc="毛拍肩神药"},
[564] = {ID=564,Desc="视频脱衣秀亚洲少女韩国无码片"},
[565] = {ID=565,Desc="干你娘"},
[566] = {ID=566,Desc="操出售手枪"},
[567] = {ID=567,Desc="肉棒插进湿润花蕊"},
[568] = {ID=568,Desc="fuck外-挂"},
[569] = {ID=569,Desc="免费免注册淫电影"},
[570] = {ID=570,Desc="色女"},
[571] = {ID=571,Desc="温州娱乐鹿城黄站"},
[572] = {ID=572,Desc="四人幫"},
[573] = {ID=573,Desc="亚洲淫色俱乐部免费淫"},
[574] = {ID=574,Desc="溫家寶"},
[575] = {ID=575,Desc="魔性的meinv"},
[576] = {ID=576,Desc="欣赏7感俏護士和医生22潮淫水图"},
[577] = {ID=577,Desc="fuck社。会。正。义。力。量"},
[578] = {ID=578,Desc="淫奸妹妹穴"},
[579] = {ID=579,Desc="龟头在阴唇上抽插"},
[580] = {ID=580,Desc="minhui"},
[581] = {ID=581,Desc="免费处女淫女下载看电影性开苞"},
[582] = {ID=582,Desc="插你爺爺"},
[583] = {ID=583,Desc="如果你未满29周岁请自觉离开。"},
[584] = {ID=584,Desc="火辣圖片"},
[585] = {ID=585,Desc="用骚痒难捺的阴部淫荡地摩擦着粗壮的鸡巴"},
[586] = {ID=586,Desc="干你妈"},
[587] = {ID=587,Desc="LIUSI"},
[588] = {ID=588,Desc="激情裸體"},
[589] = {ID=589,Desc="杨建利"},
[590] = {ID=590,Desc="毛干gm"},
[591] = {ID=591,Desc="手记注册日韩5027部激情电影"},
[592] = {ID=592,Desc="毛买卖枪支"},
[593] = {ID=593,Desc="巨乳護士南つかさ20連發中出"},
[594] = {ID=594,Desc="台独靠"},
[595] = {ID=595,Desc="毛你妈逼"},
[596] = {ID=596,Desc="免费dse淫乱"},
[597] = {ID=597,Desc="挥发型迷药"},
[598] = {ID=598,Desc="射精时必须注意的几件事"},
[599] = {ID=599,Desc="那嗎錯比"},
[600] = {ID=600,Desc="抽插52岁处女妹妹淫叫不断"},
[601] = {ID=601,Desc="教你怎样延迟射精38岁以下禁免费淫电影a片"},
[602] = {ID=602,Desc="发@@纶"},
[603] = {ID=603,Desc="禽兽集团%少儿禁"},
[604] = {ID=604,Desc="激情淫色贴图导航"},
[605] = {ID=605,Desc="操鸡"},
[606] = {ID=606,Desc="日你老母"},
[607] = {ID=607,Desc="毛国家民委"},
[608] = {ID=608,Desc="綠色灵数碼"},
[609] = {ID=609,Desc="江八點"},
[610] = {ID=610,Desc="臀部猛烈的撞击"},
[611] = {ID=611,Desc="易志熹"},
[612] = {ID=612,Desc="插你爷爷"},
[613] = {ID=613,Desc="懷念十五年前的大學生"},
[614] = {ID=614,Desc="轮奸内射"},
[615] = {ID=615,Desc="李红志"},
[616] = {ID=616,Desc="大龟头顶住她的花心深处"},
[617] = {ID=617,Desc="沾满蜜水又湿又滑柔软的"},
[618] = {ID=618,Desc="午夜情色电影"},
[619] = {ID=619,Desc="大卵泡"},
[620] = {ID=620,Desc="老女嫩B"},
[621] = {ID=621,Desc="3D西游"},
[622] = {ID=622,Desc="公審江澤民"},
[623] = {ID=623,Desc="淫奸妹妹的屄"},
[624] = {ID=624,Desc="猶太豬"},
[625] = {ID=625,Desc="爽死我了"},
[626] = {ID=626,Desc="小B樣"},
[627] = {ID=627,Desc="共和"},
[628] = {ID=628,Desc="淫电影//现场强奸19岁处女扒开小穴清晰做爱阴道裸体图"},
[629] = {ID=629,Desc="淫穴贴图"},
[630] = {ID=630,Desc="小穴"},
[631] = {ID=631,Desc="姐姐的肥阴户"},
[632] = {ID=632,Desc="日本激情淫色"},
[633] = {ID=633,Desc="打倒中国共产党"},
[634] = {ID=634,Desc="插入处女的肉穴深处"},
[635] = {ID=635,Desc="成人激情asp电影通道"},
[636] = {ID=636,Desc="淫荡美少女"},
[637] = {ID=637,Desc="你二大爺"},
[638] = {ID=638,Desc="它媽的"},
[639] = {ID=639,Desc="你二大爷"},
[640] = {ID=640,Desc="毛密宗"},
[641] = {ID=641,Desc="露出了娇小鲜嫩的小屄洞"},
[642] = {ID=642,Desc="毛色情小电影"},
[643] = {ID=643,Desc="那嗎瘟比"},
[644] = {ID=644,Desc="成人激情视频聊天室"},
[645] = {ID=645,Desc="你的小穴好深啊"},
[646] = {ID=646,Desc="出售假币"},
[647] = {ID=647,Desc="兒屆中央政治局委員"},
[648] = {ID=648,Desc="毛海洋局"},
[649] = {ID=649,Desc="骑她"},
[650] = {ID=650,Desc="台湾万岁"},
[651] = {ID=651,Desc="毛万税"},
[652] = {ID=652,Desc="14se淫色图片"},
[653] = {ID=653,Desc="插烂meimei小屄"},
[654] = {ID=654,Desc="肥逼"},
[655] = {ID=655,Desc="做爱视频表演黄色小说"},
[656] = {ID=656,Desc="fuck台湾民国"},
[657] = {ID=657,Desc="扑哧一下鸡吧操进了逼里"},
[658] = {ID=658,Desc="哥哥的肉棒好大啊"},
[659] = {ID=659,Desc="本土無碼"},
[660] = {ID=660,Desc="fantasyjourney"},
[661] = {ID=661,Desc="hrichina"},
[662] = {ID=662,Desc="淫水"},
[663] = {ID=663,Desc="黄色性交裸体图_做爱贴图性交成人贴图"},
[664] = {ID=664,Desc="夢見る大和撫子"},
[665] = {ID=665,Desc="不注册免费淫电影"},
[666] = {ID=666,Desc="18岁禁淫荡小处女"},
[667] = {ID=667,Desc="美女视频图情色贴图区成人性光牒"},
[668] = {ID=668,Desc="出售枪支"},
[669] = {ID=669,Desc="周锋锁"},
[670] = {ID=670,Desc="中国猪"},
[671] = {ID=671,Desc="鸦片"},
[672] = {ID=672,Desc="激情成人电影"},
[673] = {ID=673,Desc="免费激情视频聊天室"},
[674] = {ID=674,Desc="罌粟"},
[675] = {ID=675,Desc="激情淫色游戏"},
[676] = {ID=676,Desc="毛新闻管制"},
[677] = {ID=677,Desc="钦本立"},
[678] = {ID=678,Desc="四人帮"},
[679] = {ID=679,Desc="淫穴贴图论坛"},
[680] = {ID=680,Desc="粗大的鸡巴穴洞"},
[681] = {ID=681,Desc="操完姐妹操嫂嫂"},
[682] = {ID=682,Desc="国务院"},
[683] = {ID=683,Desc="小嫩穴把大鸡巴包得紧紧的"},
[684] = {ID=684,Desc="龙新民"},
[685] = {ID=685,Desc="足脚交"},
[686] = {ID=686,Desc="注册激情电影"},
[687] = {ID=687,Desc="三八淫"},
[688] = {ID=688,Desc="机叭"},
[689] = {ID=689,Desc="十六大"},
[690] = {ID=690,Desc="吗啡碱"},
[691] = {ID=691,Desc="免费mm黄色淫乱电影"},
[692] = {ID=692,Desc="又嫩又紧的阴户"},
[693] = {ID=693,Desc="愛的奉獻"},
[694] = {ID=694,Desc="下载免费淫电影"},
[695] = {ID=695,Desc="林心如合成淫照片"},
[696] = {ID=696,Desc="淫电影//现场强奸18岁处女扒开小穴清晰做爱阴道裸体图"},
[697] = {ID=697,Desc="香港淫穴裸体图"},
[698] = {ID=698,Desc="苯環利啶"},
[699] = {ID=699,Desc="yuanmingxinsheng"},
[700] = {ID=700,Desc="伸入蜜穴"},
[701] = {ID=701,Desc="┅┅手握住我的大肉棒"},
[702] = {ID=702,Desc="台湾总统"},
[703] = {ID=703,Desc="色网阴道特写强奸21岁处女全过程"},
[704] = {ID=704,Desc="GirlDV热门成人影片"},
[705] = {ID=705,Desc="性虎色网"},
[706] = {ID=706,Desc="愛的奉献"},
[707] = {ID=707,Desc="毛狗日的"},
[708] = {ID=708,Desc="怪兽总动员"},
[709] = {ID=709,Desc="本站10018多部激情电影全部免费试看三天"},
[710] = {ID=710,Desc="毛司法部"},
[711] = {ID=711,Desc="民政部"},
[712] = {ID=712,Desc="毛丫的"},
[713] = {ID=713,Desc="毛小日本"},
[714] = {ID=714,Desc="肉棒插入阴道里"},
[715] = {ID=715,Desc="操比毛"},
[716] = {ID=716,Desc="半夜我把龟头插进妹妹的深处"},
[717] = {ID=717,Desc="毛六。四"},
[718] = {ID=718,Desc="林伯渠"},
[719] = {ID=719,Desc="曲线消魂"},
[720] = {ID=720,Desc="爱的乱伦"},
[721] = {ID=721,Desc="激情淫bb"},
[722] = {ID=722,Desc="bukkake"},
[723] = {ID=723,Desc="色屋图片"},
[724] = {ID=724,Desc="未亡人柔肌"},
[725] = {ID=725,Desc="陈军"},
[726] = {ID=726,Desc="鸡巴射出精液"},
[727] = {ID=727,Desc="毛孙文"},
[728] = {ID=728,Desc="斯蒂芬霍金"},
[729] = {ID=729,Desc="黄孟复"},
[730] = {ID=730,Desc="柔软的肉壁紧紧的包著龟头"},
[731] = {ID=731,Desc="手淫"},
[732] = {ID=732,Desc="日本成人电影"},
[733] = {ID=733,Desc="本站10002多部激情电影全部免费试看"},
[734] = {ID=734,Desc="肉壶"},
[735] = {ID=735,Desc="免费在线观看"},
[736] = {ID=736,Desc="毛法愣"},
[737] = {ID=737,Desc="X到噴屎尿"},
[738] = {ID=738,Desc="dajiyuan"},
[739] = {ID=739,Desc="喪服妻欲望"},
[740] = {ID=740,Desc="日本meimei"},
[741] = {ID=741,Desc="肉棒在子宫口游荡"},
[742] = {ID=742,Desc="日本MM色比图吧"},
[743] = {ID=743,Desc="歡迎G11情色電影院"},
[744] = {ID=744,Desc="鄒家華"},
[745] = {ID=745,Desc="無碼h漫"},
[746] = {ID=746,Desc="朱巨"},
[747] = {ID=747,Desc="Baopi"},
[748] = {ID=748,Desc="独裁"},
[749] = {ID=749,Desc="龟头在阴户抽插"},
[750] = {ID=750,Desc="抽插24岁处女meimei淫叫不断"},
[751] = {ID=751,Desc="在线激情电影"},
[752] = {ID=752,Desc="肉棒舌頭"},
[753] = {ID=753,Desc="雙峰微顫"},
[754] = {ID=754,Desc="有容奶大"},
[755] = {ID=755,Desc="李总统"},
[756] = {ID=756,Desc="操你媽"},
[757] = {ID=757,Desc="你的逼……真紧"},
[758] = {ID=758,Desc="藤武"},
[759] = {ID=759,Desc="外挂"},
[760] = {ID=760,Desc="劉曉波"},
[761] = {ID=761,Desc="薄码"},
[762] = {ID=762,Desc="二B"},
[763] = {ID=763,Desc="免费女A片段"},
[764] = {ID=764,Desc="免费淫电影吴宗宪搞笑语录(22禁看)"},
[765] = {ID=765,Desc="银民吧"},
[766] = {ID=766,Desc="毛肛门"},
[767] = {ID=767,Desc="少女床上春色销魂"},
[768] = {ID=768,Desc="毛麦角酸"},
[769] = {ID=769,Desc="AV"},
[770] = {ID=770,Desc="中国人民志愿军"},
[771] = {ID=771,Desc="……好粗…好舒服"},
[772] = {ID=772,Desc="狂插meimei穴"},
[773] = {ID=773,Desc="大使官"},
[774] = {ID=774,Desc="捏你鸡巴"},
[775] = {ID=775,Desc="美女偷拍成人小说激情网香港激情图源成人色情论坛脱衣美女做愛"},
[776] = {ID=776,Desc="毛届中央政治局委员"},
[777] = {ID=777,Desc="把肉茎抽出插入屁眼里"},
[778] = {ID=778,Desc="帶套肛交"},
[779] = {ID=779,Desc="操你娘"},
[780] = {ID=780,Desc="狗诚"},
[781] = {ID=781,Desc="曹庆泽"},
[782] = {ID=782,Desc="美国成人激情网站"},
[783] = {ID=783,Desc="清纯派meinv可爱的让人想狂干她!【RMVB/195MB】"},
[784] = {ID=784,Desc="黑屄"},
[785] = {ID=785,Desc="免费A片"},
[786] = {ID=786,Desc="肉壁"},
[787] = {ID=787,Desc="51淫色导航"},
[788] = {ID=788,Desc="jiejie的穴好紧啊"},
[789] = {ID=789,Desc="三级片"},
[790] = {ID=790,Desc="欧美大乳"},
[791] = {ID=791,Desc="法稐功"},
[792] = {ID=792,Desc="操参事室"},
[793] = {ID=793,Desc="366成人网站"},
[794] = {ID=794,Desc="fuck色情"},
[795] = {ID=795,Desc="强奸处女学妹"},
[796] = {ID=796,Desc="ttwg666"},
[797] = {ID=797,Desc="暴淫"},
[798] = {ID=798,Desc="淫妻浪女小说"},
[799] = {ID=799,Desc="性宝贝淫色导航"},
[800] = {ID=800,Desc="现场直播女主持人教你做爱"},
[801] = {ID=801,Desc="日蛋"},
[802] = {ID=802,Desc="陈功"},
[803] = {ID=803,Desc="法论攻"},
[804] = {ID=804,Desc="漢奸"},
[805] = {ID=805,Desc="李旺阳"},
[806] = {ID=806,Desc="阴唇"},
[807] = {ID=807,Desc="几叭"},
[808] = {ID=808,Desc="阴茎在阴道快感"},
[809] = {ID=809,Desc="亚洲激情淫色贴图"},
[810] = {ID=810,Desc="中国移动联电信午夜激情电影秘密通道"},
[811] = {ID=811,Desc="風騷欲女"},
[812] = {ID=812,Desc="毛郭伯雄"},
[813] = {ID=813,Desc="一九八九年六月四日"},
[814] = {ID=814,Desc="龟头操进处女阴道"},
[815] = {ID=815,Desc="浪少妇和医生疯狂做爱"},
[816] = {ID=816,Desc="毛干你娘"},
[817] = {ID=817,Desc="可愛均整清純派美女可愛均整清純派美女"},
[818] = {ID=818,Desc="自慰抠穴"},
[819] = {ID=819,Desc="fuck王八蛋"},
[820] = {ID=820,Desc="机巴"},
[821] = {ID=821,Desc="屌7"},
[822] = {ID=822,Desc="洞抽少妇"},
[823] = {ID=823,Desc="fuck色情服务"},
[824] = {ID=824,Desc="淫网"},
[825] = {ID=825,Desc="毛反华"},
[826] = {ID=826,Desc="mo你全身"},
[827] = {ID=827,Desc="毛人民银行"},
[828] = {ID=828,Desc="视讯情人聊天室"},
[829] = {ID=829,Desc="外掛"},
[830] = {ID=830,Desc="免费成人影片"},
[831] = {ID=831,Desc="肏"},
[832] = {ID=832,Desc="毛二屄"},
[833] = {ID=833,Desc="强*十八岁美女护士看完保证你打飞机免费淫电影a片"},
[834] = {ID=834,Desc="手伸到儿媳妇下体抚mo嫩穴"},
[835] = {ID=835,Desc="蜜穴裡輕插緩送"},
[836] = {ID=836,Desc="轮功"},
[837] = {ID=837,Desc="meimei的小嫩穴"},
[838] = {ID=838,Desc="中华讲清"},
[839] = {ID=839,Desc="熟女护士"},
[840] = {ID=840,Desc="唐人互动"},
[841] = {ID=841,Desc="超级诱人销魂表情免费播放变身辣妹"},
[842] = {ID=842,Desc="联通移动秘密通道情色电影午夜成人电影"},
[843] = {ID=843,Desc="65情网色论坛色情电影"},
[844] = {ID=844,Desc="歡樂性今宵"},
[845] = {ID=845,Desc="吹萧"},
[846] = {ID=846,Desc="唐人互動"},
[847] = {ID=847,Desc="谭震林"},
[848] = {ID=848,Desc="毛激情电影"},
[849] = {ID=849,Desc="免费淫奸女片"},
[850] = {ID=850,Desc="流蜜汁"},
[851] = {ID=851,Desc="淫聲浪語"},
[852] = {ID=852,Desc="SM插进湿润的小穴"},
[853] = {ID=853,Desc="猛男狂干美女"},
[854] = {ID=854,Desc="發~掄"},
[855] = {ID=855,Desc="美女裸体在线免费淫电影"},
[856] = {ID=856,Desc="国家分裂"},
[857] = {ID=857,Desc="欧美激情淫色贴图网"},
[858] = {ID=858,Desc="薄碼"},
[859] = {ID=859,Desc="extremeskate"},
[860] = {ID=860,Desc="63xp。com"},
[861] = {ID=861,Desc="fawanghuihui"},
[862] = {ID=862,Desc="毛干你妈"},
[863] = {ID=863,Desc="發*淪"},
[864] = {ID=864,Desc="人斩少女3赤裸忍者"},
[865] = {ID=865,Desc="林慎立"},
[866] = {ID=866,Desc="肉棒插入少妇嫩穴"},
[867] = {ID=867,Desc="又肥又大的阴户"},
[868] = {ID=868,Desc="厕所盗摄护士jiejie性感"},
[869] = {ID=869,Desc="毛透视眼镜"},
[870] = {ID=870,Desc="兔meimei贴图区"},
[871] = {ID=871,Desc="日b"},
[872] = {ID=872,Desc="高潮集锦"},
[873] = {ID=873,Desc="处女的阴道特别紧"},
[874] = {ID=874,Desc="45xp。com"},
[875] = {ID=875,Desc="小乳头"},
[876] = {ID=876,Desc="成人电影,黄色电影,色情电影,免费电影试看"},
[877] = {ID=877,Desc="花花公子"},
[878] = {ID=878,Desc="警奴"},
[879] = {ID=879,Desc="朱总理"},
[880] = {ID=880,Desc="偷窥图片"},
[881] = {ID=881,Desc="风骚少妇"},
[882] = {ID=882,Desc="残忍老爸玩我小穴"},
[883] = {ID=883,Desc="本站10010多部激情电影全部免费试看三天"},
[884] = {ID=884,Desc="百家性大型黄色站"},
[885] = {ID=885,Desc="FLG媽B發掄"},
[886] = {ID=886,Desc="免费激情聊天室"},
[887] = {ID=887,Desc="少妇房中自淫,和两勇男玩5P,操得直叫爽"},
[888] = {ID=888,Desc="朱德"},
[889] = {ID=889,Desc="淫亂熟女"},
[890] = {ID=890,Desc="國家總理"},
[891] = {ID=891,Desc="注册激情电影(切记只允许法规年龄的人注册)注册快感吧!!"},
[892] = {ID=892,Desc="里根"},
[893] = {ID=893,Desc="金城安娜-痴女教官NO。7"},
[894] = {ID=894,Desc="黃色小說"},
[895] = {ID=895,Desc="强奸轮奸美女视频"},
[896] = {ID=896,Desc="…好舒服…小穴"},
[897] = {ID=897,Desc="粉嫩人妻在老公面前被人搞"},
[898] = {ID=898,Desc="狂插日韩骚逼打飞机必看"},
[899] = {ID=899,Desc="国外激情淫色贴图"},
[900] = {ID=900,Desc="奸淫女老师"},
[901] = {ID=901,Desc="发**抡"},
[902] = {ID=902,Desc="亚洲午夜激情那个电影中心"},
[903] = {ID=903,Desc="老毛"},
[904] = {ID=904,Desc="老比"},
[905] = {ID=905,Desc="高岗"},
[906] = {ID=906,Desc="悠遊網"},
[907] = {ID=907,Desc="發$淪"},
[908] = {ID=908,Desc="李山"},
[909] = {ID=909,Desc="毛基督教"},
[910] = {ID=910,Desc="淫妹阴毛小穴"},
[911] = {ID=911,Desc="性电影免费在线试看"},
[912] = {ID=912,Desc="毛江独裁"},
[913] = {ID=913,Desc="妹妹被操的淫水直流"},
[914] = {ID=914,Desc="本?拉登"},
[915] = {ID=915,Desc="奶头"},
[916] = {ID=916,Desc="99BBS"},
[917] = {ID=917,Desc="嫩穴美女挖嫩穴淫女嫩穴俱乐部"},
[918] = {ID=918,Desc="亚洲情色套图"},
[919] = {ID=919,Desc="就去日"},
[920] = {ID=920,Desc="fuck外汇局"},
[921] = {ID=921,Desc="日Gm"},
[922] = {ID=922,Desc="操淫荡meimei穴"},
[923] = {ID=923,Desc="牛顿"},
[924] = {ID=924,Desc="激情淫电影"},
[925] = {ID=925,Desc="美女嫩穴"},
[926] = {ID=926,Desc="阿不來提·阿不都熱西提"},
[927] = {ID=927,Desc="肏又大又嫩的屄儿"},
[928] = {ID=928,Desc="j8靠"},
[929] = {ID=929,Desc="日本淫色"},
[930] = {ID=930,Desc="毛乳房"},
[931] = {ID=931,Desc="保釣"},
[932] = {ID=932,Desc="肉棒插入小阴户内"},
[933] = {ID=933,Desc="【亚洲/无码】Mugen"},
[934] = {ID=934,Desc="骚妇激情"},
[935] = {ID=935,Desc="我含住他的阴茎"},
[936] = {ID=936,Desc="SM舔穴"},
[937] = {ID=937,Desc="天安门事件"},
[938] = {ID=938,Desc="本站10021多部激情电影全部免费试看"},
[939] = {ID=939,Desc="做爱网有激情自拍裸体"},
[940] = {ID=940,Desc="奸淫电影"},
[941] = {ID=941,Desc="肛门潮吹"},
[942] = {ID=942,Desc="meimei做爱"},
[943] = {ID=943,Desc="百家性大型色站"},
[944] = {ID=944,Desc="西藏独"},
[945] = {ID=945,Desc="成人激情网站"},
[946] = {ID=946,Desc="殺你一家"},
[947] = {ID=947,Desc="色情成人网站"},
[948] = {ID=948,Desc="臺灣島國"},
[949] = {ID=949,Desc="天安門殘案"},
[950] = {ID=950,Desc="allbisexual。com"},
[951] = {ID=951,Desc="扮开嫩穴"},
[952] = {ID=952,Desc="婷婷口含鸡巴"},
[953] = {ID=953,Desc="十八代"},
[954] = {ID=954,Desc="搔meimei黄站"},
[955] = {ID=955,Desc="日本成人"},
[956] = {ID=956,Desc="龍圖智庫"},
[957] = {ID=957,Desc="毛反动"},
[958] = {ID=958,Desc="可待因"},
[959] = {ID=959,Desc="现场强奸18岁处女扒开小穴清晰做爱阴道裸体图"},
[960] = {ID=960,Desc="亚洲成人贴图区论坛"},
[961] = {ID=961,Desc="fuck我妳老爸"},
[962] = {ID=962,Desc="肉棒抵住阴唇"},
[963] = {ID=963,Desc="?(SOD)超天然素材"},
[964] = {ID=964,Desc="色97愛"},
[965] = {ID=965,Desc="周容重"},
[966] = {ID=966,Desc="喪服妻欲望下载"},
[967] = {ID=967,Desc="奸她"},
[968] = {ID=968,Desc="轉法輪"},
[969] = {ID=969,Desc="退黨"},
[970] = {ID=970,Desc="你它媽的"},
[971] = {ID=971,Desc="毛反共"},
[972] = {ID=972,Desc="发轮"},
[973] = {ID=973,Desc="jiejie的肥阴唇"},
[974] = {ID=974,Desc="49xp。com"},
[975] = {ID=975,Desc="午夜成人激情聊天室"},
[976] = {ID=976,Desc="湿淋淋的骚阴道"},
[977] = {ID=977,Desc="毛人大"},
[978] = {ID=978,Desc="大陆娱乐鹿城黄站"},
[979] = {ID=979,Desc="snk。ni8。net"},
[980] = {ID=980,Desc="苯环已呱啶"},
[981] = {ID=981,Desc="姐姐的嫩阴唇"},
[982] = {ID=982,Desc="摇头玩"},
[983] = {ID=983,Desc="冈峦"},
[984] = {ID=984,Desc="毛口交"},
[985] = {ID=985,Desc="秦青的幸福生活"},
[986] = {ID=986,Desc="亚洲激情无码BT"},
[987] = {ID=987,Desc="阴囊"},
[988] = {ID=988,Desc="毛文物局"},
[989] = {ID=989,Desc="赵紫阳"},
[990] = {ID=990,Desc="激情淫色贴图区"},
[991] = {ID=991,Desc="張德江"},
[992] = {ID=992,Desc="肉棒用力的抽插着小阴唇"},
[993] = {ID=993,Desc="射进妈妈里面"},
[994] = {ID=994,Desc="成人情色网站"},
[995] = {ID=995,Desc="免费在线黄色小电影"},
[996] = {ID=996,Desc="163网址宽频影院网"},
[997] = {ID=997,Desc="TokyoHot之极品meimei"},
[998] = {ID=998,Desc="ㄙㄞ你母"},
[999] = {ID=999,Desc="激情玩穴电影"},
[1000] = {ID=1000,Desc="苏绍智"},
[1001] = {ID=1001,Desc="阎安"},
[1002] = {ID=1002,Desc="错B"},
[1003] = {ID=1003,Desc="黑窑奴役"},
[1004] = {ID=1004,Desc="性爱护士"},
[1005] = {ID=1005,Desc="操臭化西"},
[1006] = {ID=1006,Desc="免费淫乱电影下载"},
[1007] = {ID=1007,Desc="粗大的龟头缓缓磨擦着湿漉漉的阴户"},
[1008] = {ID=1008,Desc="在骚穴里抽插著阳具"},
[1009] = {ID=1009,Desc="回良玉"},
[1010] = {ID=1010,Desc="老师的阴道好紧"},
[1011] = {ID=1011,Desc="免费看三级电影淫电影"},
[1012] = {ID=1012,Desc="在线小淫虫电影"},
[1013] = {ID=1013,Desc="淫之学妹喷尿射得好高"},
[1014] = {ID=1014,Desc=32663},
[1015] = {ID=1015,Desc="毛江猪"},
[1016] = {ID=1016,Desc="法伦功"},
[1017] = {ID=1017,Desc="切七"},
[1018] = {ID=1018,Desc="哲民"},
[1019] = {ID=1019,Desc="护士小穴"},
[1020] = {ID=1020,Desc="昏药"},
[1021] = {ID=1021,Desc="meinv主持26小时全天激情热舞"},
[1022] = {ID=1022,Desc="公务员的工资"},
[1023] = {ID=1023,Desc="奸夫淫妇"},
[1024] = {ID=1024,Desc="淫糜"},
[1025] = {ID=1025,Desc="妹妹的阴户"},
[1026] = {ID=1026,Desc="免费淫"},
[1027] = {ID=1027,Desc="強制フェラ"},
[1028] = {ID=1028,Desc="烏雲其木格"},
[1029] = {ID=1029,Desc="玉女吹箫的姿势和技巧图"},
[1030] = {ID=1030,Desc="联总"},
[1031] = {ID=1031,Desc="丁香大型成人社区"},
[1032] = {ID=1032,Desc="緊縛淩辱"},
[1033] = {ID=1033,Desc="人性本色"},
[1034] = {ID=1034,Desc="日本淫电影"},
[1035] = {ID=1035,Desc="蒋树声"},
[1036] = {ID=1036,Desc="遊戲發獎員"},
[1037] = {ID=1037,Desc="母子姦情"},
[1038] = {ID=1038,Desc="鲍威尔"},
[1039] = {ID=1039,Desc="fuck退党"},
[1040] = {ID=1040,Desc="龙洲影院日本娱乐性免费电影"},
[1041] = {ID=1041,Desc="紧缚凌辱"},
[1042] = {ID=1042,Desc="妳马的"},
[1043] = {ID=1043,Desc="日你奶奶"},
[1044] = {ID=1044,Desc="亚洲区人妖射精图最淫人体网站"},
[1045] = {ID=1045,Desc="fuck驶你娘"},
[1046] = {ID=1046,Desc="代表大会"},
[1047] = {ID=1047,Desc="集團熟痴女川奈-南智子-澤宮有希-櫻田由加里4時間"},
[1048] = {ID=1048,Desc="装B靠"},
[1049] = {ID=1049,Desc="独占动画~女热大陆"},
[1050] = {ID=1050,Desc="駛你娘"},
[1051] = {ID=1051,Desc="fuck系统公告"},
[1052] = {ID=1052,Desc="她馬的"},
[1053] = {ID=1053,Desc="日你爺爺"},
[1054] = {ID=1054,Desc="天使之恋"},
[1055] = {ID=1055,Desc="qiangjian"},
[1056] = {ID=1056,Desc="蒋经国"},
[1057] = {ID=1057,Desc="操妳祖宗"},
[1058] = {ID=1058,Desc="heatproject"},
[1059] = {ID=1059,Desc="军妓"},
[1060] = {ID=1060,Desc="臺湾國"},
[1061] = {ID=1061,Desc="大鸡吧插妹妹"},
[1062] = {ID=1062,Desc="阴唇阴道"},
[1063] = {ID=1063,Desc="blowjobs"},
[1064] = {ID=1064,Desc="耶和華"},
[1065] = {ID=1065,Desc="奶大穴肥多条肉棒难满足"},
[1066] = {ID=1066,Desc="瞿秋白"},
[1067] = {ID=1067,Desc="藏春阁【全免费】"},
[1068] = {ID=1068,Desc="发^^论"},
[1069] = {ID=1069,Desc="中国政府"},
[1070] = {ID=1070,Desc="用舌头舔着大小阴唇"},
[1071] = {ID=1071,Desc="他妈的靠"},
[1072] = {ID=1072,Desc="meinv嫩穴淫水直流"},
[1073] = {ID=1073,Desc="你奶奶"},
[1074] = {ID=1074,Desc="fuck系统"},
[1075] = {ID=1075,Desc="毛私-服"},
[1076] = {ID=1076,Desc="平可夫"},
[1077] = {ID=1077,Desc="肏屄"},
[1078] = {ID=1078,Desc="老骚货"},
[1079] = {ID=1079,Desc="包二奶"},
[1080] = {ID=1080,Desc="国产骚货"},
[1081] = {ID=1081,Desc="内射"},
[1082] = {ID=1082,Desc="搔穴自慰"},
[1083] = {ID=1083,Desc="项小吉"},
[1084] = {ID=1084,Desc="那娘老比"},
[1085] = {ID=1085,Desc="白虎陰穴"},
[1086] = {ID=1086,Desc="淫电影//教你如何鉴别处男处女的方法"},
[1087] = {ID=1087,Desc="浴室自拍"},
[1088] = {ID=1088,Desc="凌辱?妥?学?@~??Δ畏耪n後~"},
[1089] = {ID=1089,Desc="黑马@SQ"},
[1090] = {ID=1090,Desc="日你爷爷"},
[1091] = {ID=1091,Desc="集體淫"},
[1092] = {ID=1092,Desc="lovebox"},
[1093] = {ID=1093,Desc="六四点击"},
[1094] = {ID=1094,Desc="亚洲淫色贴图论坛"},
[1095] = {ID=1095,Desc="18摸"},
[1096] = {ID=1096,Desc="弟弟淫奸姐姐"},
[1097] = {ID=1097,Desc="郝建秀"},
[1098] = {ID=1098,Desc="毛农业部"},
[1099] = {ID=1099,Desc="毛塞你公"},
[1100] = {ID=1100,Desc="騷浪"},
[1101] = {ID=1101,Desc="杨勇"},
[1102] = {ID=1102,Desc="毛私/服"},
[1103] = {ID=1103,Desc="日本激情淫色视屏"},
[1104] = {ID=1104,Desc="王稼祥"},
[1105] = {ID=1105,Desc="毛色情"},
[1106] = {ID=1106,Desc="1001an。com"},
[1107] = {ID=1107,Desc="臭化西"},
[1108] = {ID=1108,Desc="K粉"},
[1109] = {ID=1109,Desc="藏独"},
[1110] = {ID=1110,Desc="法仑工"},
[1111] = {ID=1111,Desc="抽插46岁处女妹妹淫叫不断"},
[1112] = {ID=1112,Desc="jiaochun"},
[1113] = {ID=1113,Desc="学运"},
[1114] = {ID=1114,Desc="毛国安局"},
[1115] = {ID=1115,Desc="抽插47岁处女meimei淫叫不断"},
[1116] = {ID=1116,Desc="淫奸小姨子穴"},
[1117] = {ID=1117,Desc="毛虐待"},
[1118] = {ID=1118,Desc="fuck十五周年"},
[1119] = {ID=1119,Desc="刘晓竹"},
[1120] = {ID=1120,Desc="失密"},
[1121] = {ID=1121,Desc="射精"},
[1122] = {ID=1122,Desc="毛阴部"},
[1123] = {ID=1123,Desc="爱爱激情电影"},
[1124] = {ID=1124,Desc="干阿姨小穴"},
[1125] = {ID=1125,Desc="卖骚"},
[1126] = {ID=1126,Desc="肉棒插入阿姨"},
[1127] = {ID=1127,Desc="几八"},
[1128] = {ID=1128,Desc="发论"},
[1129] = {ID=1129,Desc="水从穴里流出来"},
[1130] = {ID=1130,Desc="奇淫寶鑒"},
[1131] = {ID=1131,Desc="做爱淫乱小说"},
[1132] = {ID=1132,Desc="军委"},
[1133] = {ID=1133,Desc="毛粮食局"},
[1134] = {ID=1134,Desc="我和二姨在车上舔"},
[1135] = {ID=1135,Desc="痴女護士"},
[1136] = {ID=1136,Desc="厕所盗摄meinv淫穴"},
[1137] = {ID=1137,Desc="嗎個"},
[1138] = {ID=1138,Desc="色网址联盟"},
[1139] = {ID=1139,Desc="抽插婷婷"},
[1140] = {ID=1140,Desc="时事论坛"},
[1141] = {ID=1141,Desc="meinv小穴贴图偷拍少女乳房"},
[1142] = {ID=1142,Desc="賽博先鋒"},
[1143] = {ID=1143,Desc="BT淫穴"},
[1144] = {ID=1144,Desc="毛一贯道"},
[1145] = {ID=1145,Desc="東升"},
[1146] = {ID=1146,Desc="尚禾"},
[1147] = {ID=1147,Desc="韩国激情淫色网站"},
[1148] = {ID=1148,Desc="Mai骚"},
[1149] = {ID=1149,Desc="身寸米青"},
[1150] = {ID=1150,Desc="法$$仑"},
[1151] = {ID=1151,Desc="操妹妹湿穴"},
[1152] = {ID=1152,Desc="性高潮"},
[1153] = {ID=1153,Desc="轻轻地抽插著阳具"},
[1154] = {ID=1154,Desc="插嫩穴"},
[1155] = {ID=1155,Desc="婷婷激情俱乐部导航"},
[1156] = {ID=1156,Desc="关卓中"},
[1157] = {ID=1157,Desc="鹿城黄站百家性"},
[1158] = {ID=1158,Desc="毛乳波臀浪"},
[1159] = {ID=1159,Desc="色网阴道特写强奸25岁处女全过程"},
[1160] = {ID=1160,Desc="小姨子她饱满乳峰上的粉红乳晕"},
[1161] = {ID=1161,Desc="蝴蝶谷淫图片"},
[1162] = {ID=1162,Desc="美穴"},
[1163] = {ID=1163,Desc="新人×ギリギ"},
[1164] = {ID=1164,Desc="阿姨的大阴唇"},
[1165] = {ID=1165,Desc="奴隷调教"},
[1166] = {ID=1166,Desc="我的淫荡老师"},
[1167] = {ID=1167,Desc="顶级轮奸套图站"},
[1168] = {ID=1168,Desc="操穴插逼"},
[1169] = {ID=1169,Desc="藏獨"},
[1170] = {ID=1170,Desc="免費性愛電影"},
[1171] = {ID=1171,Desc="阴唇上摩擦着"},
[1172] = {ID=1172,Desc="想插穿她那肥嫩的小骚屄儿"},
[1173] = {ID=1173,Desc="淫穴自拍"},
[1174] = {ID=1174,Desc="摸你全身"},
[1175] = {ID=1175,Desc="陈云"},
[1176] = {ID=1176,Desc="發@@掄"},
[1177] = {ID=1177,Desc="戳比"},
[1178] = {ID=1178,Desc="国民政府"},
[1179] = {ID=1179,Desc="龟头顶住她的阴户"},
[1180] = {ID=1180,Desc="日本淫荡meimei"},
[1181] = {ID=1181,Desc="T。M。D靠"},
[1182] = {ID=1182,Desc="聖戰"},
[1183] = {ID=1183,Desc="文九天"},
[1184] = {ID=1184,Desc="现代情色小说"},
[1185] = {ID=1185,Desc="梅花网"},
[1186] = {ID=1186,Desc="婷婷俱乐部"},
[1187] = {ID=1187,Desc="抽插41岁处女妹妹淫叫不断"},
[1188] = {ID=1188,Desc="草枝麻"},
[1189] = {ID=1189,Desc="阳具"},
[1190] = {ID=1190,Desc="毛六四真相"},
[1191] = {ID=1191,Desc="欢乐性今宵"},
[1192] = {ID=1192,Desc="杨思敏"},
[1193] = {ID=1193,Desc="和姐姐淫穴"},
[1194] = {ID=1194,Desc="老江"},
[1195] = {ID=1195,Desc="吗啡片"},
[1196] = {ID=1196,Desc="黄色我该死免费淫奸a片偷拍MM接客宾馆"},
[1197] = {ID=1197,Desc="超女世界Online"},
[1198] = {ID=1198,Desc="黄蓉舔小龙女的乳头"},
[1199] = {ID=1199,Desc="色情網站"},
[1200] = {ID=1200,Desc="叔嫂肉欲"},
[1201] = {ID=1201,Desc="眯眯爱大型黄站"},
[1202] = {ID=1202,Desc="妹妹陰毛"},
[1203] = {ID=1203,Desc="色淫成人"},
[1204] = {ID=1204,Desc="成人色情"},
[1205] = {ID=1205,Desc="夜夜色娱乐网"},
[1206] = {ID=1206,Desc="大肉棒…插我……」"},
[1207] = {ID=1207,Desc="春城娱乐(淫窝)"},
[1208] = {ID=1208,Desc="骚批"},
[1209] = {ID=1209,Desc="反社会"},
[1210] = {ID=1210,Desc="法$$伦"},
[1211] = {ID=1211,Desc="肛jiao"},
[1212] = {ID=1212,Desc="抽插著阿姨的淫穴"},
[1213] = {ID=1213,Desc="免费淫女在线看电影"},
[1214] = {ID=1214,Desc="中国军用运输机"},
[1215] = {ID=1215,Desc="操逼毛"},
[1216] = {ID=1216,Desc="jiejie的阴道好紧啊"},
[1217] = {ID=1217,Desc="肉棒不斷的抽插著她的肉體阴道口"},
[1218] = {ID=1218,Desc="免注册淫电影"},
[1219] = {ID=1219,Desc="淫荡少妇被轮奸"},
[1220] = {ID=1220,Desc="天安門一代"},
[1221] = {ID=1221,Desc="狂插喷爱液"},
[1222] = {ID=1222,Desc="八九學潮"},
[1223] = {ID=1223,Desc="毛天安门录像带"},
[1224] = {ID=1224,Desc="張万年"},
[1225] = {ID=1225,Desc="肉棒插进阴户里"},
[1226] = {ID=1226,Desc="干死客服"},
[1227] = {ID=1227,Desc="不爽不要钱"},
[1228] = {ID=1228,Desc="美女淫水狂流"},
[1229] = {ID=1229,Desc="淫穢"},
[1230] = {ID=1230,Desc="做爱电影"},
[1231] = {ID=1231,Desc="毛鸦片液"},
[1232] = {ID=1232,Desc="%共產黨爛逼"},
[1233] = {ID=1233,Desc="丰盈雪白的肌肤、肥嫩饱满的乳房、红晕鲜嫩的小奶头"},
[1234] = {ID=1234,Desc="黄色文学"},
[1235] = {ID=1235,Desc="鸡吧插进"},
[1236] = {ID=1236,Desc="65xp。com"},
[1237] = {ID=1237,Desc="蘋果日報"},
[1238] = {ID=1238,Desc="淫穴"},
[1239] = {ID=1239,Desc="免费成人电影图片"},
[1240] = {ID=1240,Desc="抽插34岁处女meimei淫叫不断"},
[1241] = {ID=1241,Desc="官人我要"},
[1242] = {ID=1242,Desc="大鸡吧插meimei"},
[1243] = {ID=1243,Desc="騷水"},
[1244] = {ID=1244,Desc="meinv鸡吧图"},
[1245] = {ID=1245,Desc="操母狗"},
[1246] = {ID=1246,Desc="日本巨乳淫女"},
[1247] = {ID=1247,Desc="現場直播~女主持人教你做愛"},
[1248] = {ID=1248,Desc="fuck新手指导员"},
[1249] = {ID=1249,Desc="台湾18成人小说"},
[1250] = {ID=1250,Desc="王宝森"},
[1251] = {ID=1251,Desc="視娘辣妹"},
[1252] = {ID=1252,Desc="毛妓院"},
[1253] = {ID=1253,Desc="骚妇掰B"},
[1254] = {ID=1254,Desc="战牌"},
[1255] = {ID=1255,Desc="轮大"},
[1256] = {ID=1256,Desc="yuming"},
[1257] = {ID=1257,Desc="法$$侖"},
[1258] = {ID=1258,Desc="鸡歪"},
[1259] = {ID=1259,Desc="教你怎样延迟射精39岁以下禁免费淫电影a片"},
[1260] = {ID=1260,Desc="毛鸦片渣"},
[1261] = {ID=1261,Desc="免费A片观看"},
[1262] = {ID=1262,Desc="小穴被插的好爽啊"},
[1263] = {ID=1263,Desc="毛换妻"},
[1264] = {ID=1264,Desc="和妹妹肏穴"},
[1265] = {ID=1265,Desc="成人情色导航"},
[1266] = {ID=1266,Desc="阴户抽插"},
[1267] = {ID=1267,Desc="抽插34岁处女妹妹淫叫不断"},
[1268] = {ID=1268,Desc="现代学生妹操屄水平真是高"},
[1269] = {ID=1269,Desc="我上小姨子小说"},
[1270] = {ID=1270,Desc="拔屄"},
[1271] = {ID=1271,Desc="唐捷"},
[1272] = {ID=1272,Desc="阴道抽搐一阵暖流自子宫深处涌向龟头"},
[1273] = {ID=1273,Desc="抽插21岁处女妹妹淫叫不断"},
[1274] = {ID=1274,Desc="淫秽"},
[1275] = {ID=1275,Desc="拉法叶舰"},
[1276] = {ID=1276,Desc="观看淫电影"},
[1277] = {ID=1277,Desc="新疆国"},
[1278] = {ID=1278,Desc="國家分裂"},
[1279] = {ID=1279,Desc="梓霖"},
[1280] = {ID=1280,Desc="小女嫩穴"},
[1281] = {ID=1281,Desc="把舌头伸入jiejie的"},
[1282] = {ID=1282,Desc="林伟"},
[1283] = {ID=1283,Desc="新疆國"},
[1284] = {ID=1284,Desc="墮淫"},
[1285] = {ID=1285,Desc="日本素人"},
[1286] = {ID=1286,Desc="午夜激情美穴贴台湾性福联盟"},
[1287] = {ID=1287,Desc="手记注册日韩5006部激情电影"},
[1288] = {ID=1288,Desc="全國人大"},
[1289] = {ID=1289,Desc="蘇秀文"},
[1290] = {ID=1290,Desc="毛信息产业部"},
[1291] = {ID=1291,Desc="毛四川独立"},
[1292] = {ID=1292,Desc="再奸"},
[1293] = {ID=1293,Desc="法惀功"},
[1294] = {ID=1294,Desc="發@淪"},
[1295] = {ID=1295,Desc="爽女美图美搜性感图涩界成人电影网小小鸟绝色meinv写真图"},
[1296] = {ID=1296,Desc="轮奸"},
[1297] = {ID=1297,Desc="毛透视软件"},
[1298] = {ID=1298,Desc="國民黨"},
[1299] = {ID=1299,Desc="色慾"},
[1300] = {ID=1300,Desc="杨周"},
[1301] = {ID=1301,Desc="何加栋"},
[1302] = {ID=1302,Desc="肛屄"},
[1303] = {ID=1303,Desc="肉便器"},
[1304] = {ID=1304,Desc="毛罗"},
[1305] = {ID=1305,Desc="金发表姨花蕊,少女的狭窄洞口"},
[1306] = {ID=1306,Desc="fuck小肉粒"},
[1307] = {ID=1307,Desc="騷母"},
[1308] = {ID=1308,Desc="淫女乱搞免费三级片"},
[1309] = {ID=1309,Desc="伸入jiejie裙内"},
[1310] = {ID=1310,Desc="騷比"},
[1311] = {ID=1311,Desc="毛台办"},
[1312] = {ID=1312,Desc="法$$倫"},
[1313] = {ID=1313,Desc="毛恶搞晚会"},
[1314] = {ID=1314,Desc="法囵功"},
[1315] = {ID=1315,Desc="强奸23岁处女全过程/*妹阴毛小穴"},
[1316] = {ID=1316,Desc="天安门残案"},
[1317] = {ID=1317,Desc="大雞巴"},
[1318] = {ID=1318,Desc="二奶大奖赛"},
[1319] = {ID=1319,Desc="毛阴道"},
[1320] = {ID=1320,Desc="李师傅"},
[1321] = {ID=1321,Desc="dick吕秀莲"},
[1322] = {ID=1322,Desc="配合着蜜洞内肉棒的抽插"},
[1323] = {ID=1323,Desc="我咧干"},
[1324] = {ID=1324,Desc="恐怖主義"},
[1325] = {ID=1325,Desc="五月天成人激情网站"},
[1326] = {ID=1326,Desc="fuck新华社"},
[1327] = {ID=1327,Desc="獨立"},
[1328] = {ID=1328,Desc="毛敬国神社"},
[1329] = {ID=1329,Desc="干x娘"},
[1330] = {ID=1330,Desc="又大又粗的肉棒"},
[1331] = {ID=1331,Desc="又深又紧的穴"},
[1332] = {ID=1332,Desc="奸杀美女大学生"},
[1333] = {ID=1333,Desc="fuck我操你"},
[1334] = {ID=1334,Desc="毛他妈"},
[1335] = {ID=1335,Desc="顶进少妇的花心"},
[1336] = {ID=1336,Desc="疯狂的抽插起来"},
[1337] = {ID=1337,Desc="makinglove"},
[1338] = {ID=1338,Desc="大麻树脂"},
[1339] = {ID=1339,Desc="每天24小时循环更新的免费色情内容"},
[1340] = {ID=1340,Desc="rxjhwg"},
[1341] = {ID=1341,Desc="激情免费电影"},
[1342] = {ID=1342,Desc="大鸡巴插进她肉洞里"},
[1343] = {ID=1343,Desc="騷洞"},
[1344] = {ID=1344,Desc="51xp。com"},
[1345] = {ID=1345,Desc="成人小说"},
[1346] = {ID=1346,Desc="肉棒顶的人家小穴好痒"},
[1347] = {ID=1347,Desc="乱伦之淫骚穴"},
[1348] = {ID=1348,Desc="操你妈"},
[1349] = {ID=1349,Desc="傅鐵山"},
[1350] = {ID=1350,Desc="姜春云"},
[1351] = {ID=1351,Desc="招妓"},
[1352] = {ID=1352,Desc="口含鸡巴"},
[1353] = {ID=1353,Desc="噗嗤一声滑入阴道"},
[1354] = {ID=1354,Desc="操陈晓宁"},
[1355] = {ID=1355,Desc="群奸輪射"},
[1356] = {ID=1356,Desc="色meimei淫穴"},
[1357] = {ID=1357,Desc="宋慶齡"},
[1358] = {ID=1358,Desc="女添男精狂射图"},
[1359] = {ID=1359,Desc="手记注册日韩5032部激情电影"},
[1360] = {ID=1360,Desc="宏象"},
[1361] = {ID=1361,Desc="六四回忆录"},
[1362] = {ID=1362,Desc="洪哲胜"},
[1363] = {ID=1363,Desc="淫荡娇妻打开双腿"},
[1364] = {ID=1364,Desc="夜情"},
[1365] = {ID=1365,Desc="毛林彪"},
[1366] = {ID=1366,Desc="抽插54岁处女meimei淫叫不断"},
[1367] = {ID=1367,Desc="我把艳姨给干了"},
[1368] = {ID=1368,Desc="口含龟头"},
[1369] = {ID=1369,Desc="神出鬼没!3个丁字裤辣妹到处袭击肉棒(中文字幕)"},
[1370] = {ID=1370,Desc="妹妹的小穴……舒服死了……"},
[1371] = {ID=1371,Desc="夫妻多p"},
[1372] = {ID=1372,Desc="肉棒噗嗤一声滑入阴道"},
[1373] = {ID=1373,Desc="亚洲免费黄网"},
[1374] = {ID=1374,Desc="阴茎插入少妇阴道"},
[1375] = {ID=1375,Desc="点击这里试看美女做爱现场"},
[1376] = {ID=1376,Desc="日本淫穴电影"},
[1377] = {ID=1377,Desc="成人影院"},
[1378] = {ID=1378,Desc="香港激情图源成人色情论坛脱衣meinv做愛"},
[1379] = {ID=1379,Desc="體奸"},
[1380] = {ID=1380,Desc="我和姨在车上干"},
[1381] = {ID=1381,Desc="性生活"},
[1382] = {ID=1382,Desc="日你爸"},
[1383] = {ID=1383,Desc="法十轮十功"},
[1384] = {ID=1384,Desc="大鸡巴插进小穴"},
[1385] = {ID=1385,Desc="毛你老味"},
[1386] = {ID=1386,Desc="梅花網"},
[1387] = {ID=1387,Desc="做爱视频"},
[1388] = {ID=1388,Desc="fuck台办"},
[1389] = {ID=1389,Desc="无码淫女"},
[1390] = {ID=1390,Desc="教室里淫乱狂搞"},
[1391] = {ID=1391,Desc="初流出!ロリプリ"},
[1392] = {ID=1392,Desc="人美乳甜屄嫩操起来真爽"},
[1393] = {ID=1393,Desc="性交内射"},
[1394] = {ID=1394,Desc="操大逼"},
[1395] = {ID=1395,Desc="发~~纶"},
[1396] = {ID=1396,Desc="麻醉乙醚"},
[1397] = {ID=1397,Desc="毛十年动乱"},
[1398] = {ID=1398,Desc="夜色聊人"},
[1399] = {ID=1399,Desc="处女第一次阴道做爱全过程(全套图片)免费淫电影a片"},
[1400] = {ID=1400,Desc="鑫諾"},
[1401] = {ID=1401,Desc="毛血腥图片"},
[1402] = {ID=1402,Desc="自焚"},
[1403] = {ID=1403,Desc="62xp。com"},
[1404] = {ID=1404,Desc="毛片空姐的嫩穴裸体明星夜总会小姐贴图"},
[1405] = {ID=1405,Desc="操逼"},
[1406] = {ID=1406,Desc="吹簫"},
[1407] = {ID=1407,Desc="免费淫奸女A片"},
[1408] = {ID=1408,Desc="情色聊天室"},
[1409] = {ID=1409,Desc="淫奸医生"},
[1410] = {ID=1410,Desc="淫电影//现场强奸20岁处女扒开小穴清晰做爱阴道裸体图"},
[1411] = {ID=1411,Desc="廉政大论坛"},
[1412] = {ID=1412,Desc="性感meinv淫穴"},
[1413] = {ID=1413,Desc="经济社会理事会"},
[1414] = {ID=1414,Desc="成人性交视频"},
[1415] = {ID=1415,Desc="毛回教"},
[1416] = {ID=1416,Desc="追查國際"},
[1417] = {ID=1417,Desc="騷媽"},
[1418] = {ID=1418,Desc="小唇被他的嘴巴包裹住"},
[1419] = {ID=1419,Desc="105bb成人小电影"},
[1420] = {ID=1420,Desc="骚乳"},
[1421] = {ID=1421,Desc="性戰擂臺"},
[1422] = {ID=1422,Desc="淫奸女电影直接试看"},
[1423] = {ID=1423,Desc="性交图"},
[1424] = {ID=1424,Desc="插的妹妹好爽啊"},
[1425] = {ID=1425,Desc="性交圖"},
[1426] = {ID=1426,Desc="發^侖"},
[1427] = {ID=1427,Desc="一夜性网"},
[1428] = {ID=1428,Desc="露乳"},
[1429] = {ID=1429,Desc="淫电影论坛"},
[1430] = {ID=1430,Desc="儿子顶到妈妈的花心"},
[1431] = {ID=1431,Desc="法仑功"},
[1432] = {ID=1432,Desc="淫奸meimei电影"},
[1433] = {ID=1433,Desc="輪功"},
[1434] = {ID=1434,Desc="处女第一次阴道做爱全过程(全套图片)"},
[1435] = {ID=1435,Desc="严家祺"},
[1436] = {ID=1436,Desc="子宫口吮吸着龟头"},
[1437] = {ID=1437,Desc="fuck新闻办"},
[1438] = {ID=1438,Desc="回民人吃猪肉"},
[1439] = {ID=1439,Desc="吸精"},
[1440] = {ID=1440,Desc="fuck卫生部"},
[1441] = {ID=1441,Desc="淫色网站导航"},
[1442] = {ID=1442,Desc="淫蜜"},
[1443] = {ID=1443,Desc="小泉纯一郎"},
[1444] = {ID=1444,Desc="齊藤亞樹"},
[1445] = {ID=1445,Desc="毛反政府"},
[1446] = {ID=1446,Desc="乱伦之淫穴网"},
[1447] = {ID=1447,Desc="又粗又长的大肉棒"},
[1448] = {ID=1448,Desc="泳衣+丝袜~让你销魂舒畅"},
[1449] = {ID=1449,Desc="免费电影吸精痴女"},
[1450] = {ID=1450,Desc="强奸22岁处女全过程/*妹阴毛小穴"},
[1451] = {ID=1451,Desc="未满19岁的请自行离开"},
[1452] = {ID=1452,Desc="淫奸jiejie电影"},
[1453] = {ID=1453,Desc="痴女/淫乱"},
[1454] = {ID=1454,Desc="姐姐的小穴"},
[1455] = {ID=1455,Desc="情色BT"},
[1456] = {ID=1456,Desc="张榕明"},
[1457] = {ID=1457,Desc="發論"},
[1458] = {ID=1458,Desc="洗肠射尿"},
[1459] = {ID=1459,Desc="品色永远免费淫电影"},
[1460] = {ID=1460,Desc="他嗎的"},
[1461] = {ID=1461,Desc="射顏"},
[1462] = {ID=1462,Desc="激情视频女半夜播放成人节目免费裸体视频"},
[1463] = {ID=1463,Desc="林心如做爱网有激情自拍裸体图片"},
[1464] = {ID=1464,Desc="脚交"},
[1465] = {ID=1465,Desc="淫奸电影"},
[1466] = {ID=1466,Desc="北美自由论坛"},
[1467] = {ID=1467,Desc="发@@论"},
[1468] = {ID=1468,Desc="毛干死你"},
[1469] = {ID=1469,Desc="兩國論"},
[1470] = {ID=1470,Desc="狂插"},
[1471] = {ID=1471,Desc="淫奸小姨论坛"},
[1472] = {ID=1472,Desc="啊……快插啊……小屄要美死了……"},
[1473] = {ID=1473,Desc="射颜"},
[1474] = {ID=1474,Desc="争鸣论坛"},
[1475] = {ID=1475,Desc="公务员工资"},
[1476] = {ID=1476,Desc="小姨子她饱满乳峰上的粉红乳晕,金发表姨花蕊"},
[1477] = {ID=1477,Desc="meimei的淫穴被龟头顶住"},
[1478] = {ID=1478,Desc="发抡功"},
[1479] = {ID=1479,Desc="免费注册看免费电影通道"},
[1480] = {ID=1480,Desc="傅杰"},
[1481] = {ID=1481,Desc="毛反封锁技术"},
[1482] = {ID=1482,Desc="掰开少女穴"},
[1483] = {ID=1483,Desc="肉丝裤袜"},
[1484] = {ID=1484,Desc="你妈比"},
[1485] = {ID=1485,Desc="阴沟"},
[1486] = {ID=1486,Desc="舔我的龟头"},
[1487] = {ID=1487,Desc="騷妹"},
[1488] = {ID=1488,Desc="大鸡巴插进妹妹的小穴"},
[1489] = {ID=1489,Desc="騷妻"},
[1490] = {ID=1490,Desc="骑他"},
[1491] = {ID=1491,Desc="大鸡吧插妹妹淫屄"},
[1492] = {ID=1492,Desc="滕武"},
[1493] = {ID=1493,Desc="發^倫"},
[1494] = {ID=1494,Desc="18岁少女破处"},
[1495] = {ID=1495,Desc="插後庭"},
[1496] = {ID=1496,Desc="毛伊拉克"},
[1497] = {ID=1497,Desc="非常漂亮的日本美少女,日起火!"},
[1498] = {ID=1498,Desc="阴水"},
[1499] = {ID=1499,Desc="欠日"},
[1500] = {ID=1500,Desc="胡嘉"},
[1501] = {ID=1501,Desc="50xp。com"},
[1502] = {ID=1502,Desc="騷女"},
[1503] = {ID=1503,Desc="鹿城大型黄站"},
[1504] = {ID=1504,Desc="毛老毛子"},
[1505] = {ID=1505,Desc="龟头用里插入阴道"},
[1506] = {ID=1506,Desc="娄义"},
[1507] = {ID=1507,Desc="大鸡巴顶进妹妹的花心"},
[1508] = {ID=1508,Desc="他娘的"},
[1509] = {ID=1509,Desc="肖强"},
[1510] = {ID=1510,Desc="押大"},
[1511] = {ID=1511,Desc="毛侨办"},
[1512] = {ID=1512,Desc="免费淫电影a片"},
[1513] = {ID=1513,Desc="淫蟲"},
[1514] = {ID=1514,Desc="早洩"},
[1515] = {ID=1515,Desc="屄屄特寫"},
[1516] = {ID=1516,Desc="賣騷"},
[1517] = {ID=1517,Desc="成人贴图区"},
[1518] = {ID=1518,Desc="好大的阴户"},
[1519] = {ID=1519,Desc="李维汉"},
[1520] = {ID=1520,Desc="裸体插淫穴"},
[1521] = {ID=1521,Desc="淫驴屯"},
[1522] = {ID=1522,Desc="免费淫电影吴宗宪搞笑语录(28禁看)"},
[1523] = {ID=1523,Desc="武力统一"},
[1524] = {ID=1524,Desc="欧美清晰打炮淫乱人妖淫乱图"},
[1525] = {ID=1525,Desc="吹箫"},
[1526] = {ID=1526,Desc="解放军镇压"},
[1527] = {ID=1527,Desc="發$$掄"},
[1528] = {ID=1528,Desc="猛插小护士骚穴"},
[1529] = {ID=1529,Desc="奸幼"},
[1530] = {ID=1530,Desc="曹建明"},
[1531] = {ID=1531,Desc="李红痔"},
[1532] = {ID=1532,Desc="穿著PE校服"},
[1533] = {ID=1533,Desc="成人夜话"},
[1534] = {ID=1534,Desc="法仑共"},
[1535] = {ID=1535,Desc="骑你"},
[1536] = {ID=1536,Desc="法仑公"},
[1537] = {ID=1537,Desc="放蕩少婦賓館"},
[1538] = {ID=1538,Desc="中国最淫的免费淫图图"},
[1539] = {ID=1539,Desc="毛天安门一代"},
[1540] = {ID=1540,Desc="滚那吗老比"},
[1541] = {ID=1541,Desc="顺着大鸡巴湿淋淋的流下"},
[1542] = {ID=1542,Desc="媽的騷穴被你插得爽死了"},
[1543] = {ID=1543,Desc="a片"},
[1544] = {ID=1544,Desc="清晰內射"},
[1545] = {ID=1545,Desc="工作人员"},
[1546] = {ID=1546,Desc="激情玩淫穴电影"},
[1547] = {ID=1547,Desc="亚洲乱伦之淫穴"},
[1548] = {ID=1548,Desc="妹妹吸精"},
[1549] = {ID=1549,Desc="国内动态清样"},
[1550] = {ID=1550,Desc="骚B贱"},
[1551] = {ID=1551,Desc="6。4"},
[1552] = {ID=1552,Desc="贱逼"},
[1553] = {ID=1553,Desc="阴毛"},
[1554] = {ID=1554,Desc="浴室乱伦"},
[1555] = {ID=1555,Desc="毛廁洞"},
[1556] = {ID=1556,Desc="酥穴"},
[1557] = {ID=1557,Desc="东热RQ大乱交2007"},
[1558] = {ID=1558,Desc="舌头舔弄着小穴的内壁"},
[1559] = {ID=1559,Desc="成人網站"},
[1560] = {ID=1560,Desc="情色艺术天空"},
[1561] = {ID=1561,Desc="激情淫色下载"},
[1562] = {ID=1562,Desc="江口美貴"},
[1563] = {ID=1563,Desc="欧美成人贴图区"},
[1564] = {ID=1564,Desc="黑鲍娇"},
[1565] = {ID=1565,Desc="插入小姐的嫩穴"},
[1566] = {ID=1566,Desc="成人色情图片"},
[1567] = {ID=1567,Desc="台湾成人激情视频聊天室"},
[1568] = {ID=1568,Desc="免费午夜艳情电影"},
[1569] = {ID=1569,Desc="欠操"},
[1570] = {ID=1570,Desc="淫奸………啊"},
[1571] = {ID=1571,Desc="肉慾"},
[1572] = {ID=1572,Desc="毛伊朗"},
[1573] = {ID=1573,Desc="互舔淫穴"},
[1574] = {ID=1574,Desc="狂插少女的嫩bb"},
[1575] = {ID=1575,Desc="潮喷"},
[1576] = {ID=1576,Desc="我和妹妹肏穴"},
[1577] = {ID=1577,Desc="陰核"},
[1578] = {ID=1578,Desc="賀龍"},
[1579] = {ID=1579,Desc="和婶婶做爱"},
[1580] = {ID=1580,Desc="香港免费黄色淫乱电影"},
[1581] = {ID=1581,Desc="草擬媽"},
[1582] = {ID=1582,Desc="淫奸jiejie穴"},
[1583] = {ID=1583,Desc="毛乳"},
[1584] = {ID=1584,Desc="無碼長片"},
[1585] = {ID=1585,Desc="少妇房中自淫,和两勇男玩15P,操得直叫爽"},
[1586] = {ID=1586,Desc="发~轮"},
[1587] = {ID=1587,Desc="幹你妈逼"},
[1588] = {ID=1588,Desc="日本黄色三级短片"},
[1589] = {ID=1589,Desc="少妇贴图穴论坛"},
[1590] = {ID=1590,Desc="舌头舔着阴核"},
[1591] = {ID=1591,Desc="强奸17岁少女全过程"},
[1592] = {ID=1592,Desc="性爱"},
[1593] = {ID=1593,Desc="午夜免费视频激情聊天室"},
[1594] = {ID=1594,Desc="fuck外专局"},
[1595] = {ID=1595,Desc="马凯"},
[1596] = {ID=1596,Desc="毛基地组织"},
[1597] = {ID=1597,Desc="……好舒服"},
[1598] = {ID=1598,Desc="教你怎样延迟射精34岁以下禁免费淫电影a片"},
[1599] = {ID=1599,Desc="干他"},
[1600] = {ID=1600,Desc="女幹三虧"},
[1601] = {ID=1601,Desc="中国之春"},
[1602] = {ID=1602,Desc="超美女优MUGEN"},
[1603] = {ID=1603,Desc="transsexuell"},
[1604] = {ID=1604,Desc="發@@綸"},
[1605] = {ID=1605,Desc="明星裸体写真图"},
[1606] = {ID=1606,Desc="法~轮"},
[1607] = {ID=1607,Desc="淫妻爱好者"},
[1608] = {ID=1608,Desc="盐酸二乙醯吗啡"},
[1609] = {ID=1609,Desc="杨怀安"},
[1610] = {ID=1610,Desc="法$$沦"},
[1611] = {ID=1611,Desc="大陆免费黄站"},
[1612] = {ID=1612,Desc="抽头"},
[1613] = {ID=1613,Desc="毛新疆独立"},
[1614] = {ID=1614,Desc="免费淫电影下载地址"},
[1615] = {ID=1615,Desc="风骚小阿姨"},
[1616] = {ID=1616,Desc="事实独立"},
[1617] = {ID=1617,Desc="欧美激情穴淫奸"},
[1618] = {ID=1618,Desc="日本女优"},
[1619] = {ID=1619,Desc="曹你"},
[1620] = {ID=1620,Desc="芸能人使い捨てM奴隷DX"},
[1621] = {ID=1621,Desc="性奴會"},
[1622] = {ID=1622,Desc="淫奸meimei论坛"},
[1623] = {ID=1623,Desc="超爽艳图"},
[1624] = {ID=1624,Desc="美女视频短片"},
[1625] = {ID=1625,Desc="臺獨"},
[1626] = {ID=1626,Desc="法~輪"},
[1627] = {ID=1627,Desc="毛姣西"},
[1628] = {ID=1628,Desc="残忍的虐待强奸美丽的淑女"},
[1629] = {ID=1629,Desc="联梦"},
[1630] = {ID=1630,Desc="淫蕩"},
[1631] = {ID=1631,Desc="母乳と巨乳と淫乱の完熟物語"},
[1632] = {ID=1632,Desc="那吗错比"},
[1633] = {ID=1633,Desc="扬振"},
[1634] = {ID=1634,Desc="潮噴"},
[1635] = {ID=1635,Desc="fuck私服"},
[1636] = {ID=1636,Desc="强硬发言"},
[1637] = {ID=1637,Desc="肉棒插入少妇的阴户内"},
[1638] = {ID=1638,Desc="台湾青年独立联盟"},
[1639] = {ID=1639,Desc="朱勝文"},
[1640] = {ID=1640,Desc="肉棍狂插"},
[1641] = {ID=1641,Desc="哥哥淫奸妹妹论坛"},
[1642] = {ID=1642,Desc="法菕功"},
[1643] = {ID=1643,Desc="干你"},
[1644] = {ID=1644,Desc="18男人momoB"},
[1645] = {ID=1645,Desc="抽插25岁处女meimei淫叫不断"},
[1646] = {ID=1646,Desc="践踏中国女性"},
[1647] = {ID=1647,Desc="輪奸大美女"},
[1648] = {ID=1648,Desc="龟头通过子宫口直抵花心"},
[1649] = {ID=1649,Desc="金玉天立"},
[1650] = {ID=1650,Desc="肉棒插入阴道"},
[1651] = {ID=1651,Desc="毛叫小姐"},
[1652] = {ID=1652,Desc="誘姦"},
[1653] = {ID=1653,Desc="meinv与猪性交电影"},
[1654] = {ID=1654,Desc="亚洲成人激情淫穴"},
[1655] = {ID=1655,Desc="妹妹小穴"},
[1656] = {ID=1656,Desc="淫奸姐姐论坛"},
[1657] = {ID=1657,Desc="【亚洲/无码】【极品荡女-宝乃ありか"},
[1658] = {ID=1658,Desc="幹他"},
[1659] = {ID=1659,Desc="夜色淫女导航"},
[1660] = {ID=1660,Desc="嫩穴"},
[1661] = {ID=1661,Desc="操操你"},
[1662] = {ID=1662,Desc="效忠天皇"},
[1663] = {ID=1663,Desc="抽插小淫穴"},
[1664] = {ID=1664,Desc="迷幻藥"},
[1665] = {ID=1665,Desc="大鸡吧顶进小穴"},
[1666] = {ID=1666,Desc="少妇房中自淫,和两勇男玩6P,操得直叫爽"},
[1667] = {ID=1667,Desc="淫妹妹成人情色论坛"},
[1668] = {ID=1668,Desc="毛连战"},
[1669] = {ID=1669,Desc="舔吮"},
[1670] = {ID=1670,Desc="幹您娘"},
[1671] = {ID=1671,Desc="曰你"},
[1672] = {ID=1672,Desc="開苞"},
[1673] = {ID=1673,Desc="吞精"},
[1674] = {ID=1674,Desc="情色成人视频聊天室"},
[1675] = {ID=1675,Desc="韩国激情淫色贴图"},
[1676] = {ID=1676,Desc="淫獣圣戦"},
[1677] = {ID=1677,Desc="肉棒插入meimei的肉缝"},
[1678] = {ID=1678,Desc="本站10016多部激情电影全部免费试看"},
[1679] = {ID=1679,Desc="毛洪兴"},
[1680] = {ID=1680,Desc="去氧麻黄堿或安非他命"},
[1681] = {ID=1681,Desc="毛靖国神社"},
[1682] = {ID=1682,Desc="毛民政部"},
[1683] = {ID=1683,Desc="毛生鸦片"},
[1684] = {ID=1684,Desc="妳娘"},
[1685] = {ID=1685,Desc="矽穀動力"},
[1686] = {ID=1686,Desc="张伯笠"},
[1687] = {ID=1687,Desc="淫荡女生"},
[1688] = {ID=1688,Desc="淫驢屯"},
[1689] = {ID=1689,Desc="嫩穴meinv挖嫩穴淫女嫩穴俱乐部"},
[1690] = {ID=1690,Desc="和阿姨做爱"},
[1691] = {ID=1691,Desc="一党专制"},
[1692] = {ID=1692,Desc="操淫荡少妇穴"},
[1693] = {ID=1693,Desc="和jiejie肏屄"},
[1694] = {ID=1694,Desc="幼交"},
[1695] = {ID=1695,Desc="陈毅"},
[1696] = {ID=1696,Desc="插入姐姐蜜穴"},
[1697] = {ID=1697,Desc="聚梦"},
[1698] = {ID=1698,Desc="错逼"},
[1699] = {ID=1699,Desc="淫穴摩擦龟头"},
[1700] = {ID=1700,Desc="fuck骚"},
[1701] = {ID=1701,Desc="新华内情"},
[1702] = {ID=1702,Desc="我就色"},
[1703] = {ID=1703,Desc="雞女"},
[1704] = {ID=1704,Desc="操操他"},
[1705] = {ID=1705,Desc="大鸡巴┅┅太棒了"},
[1706] = {ID=1706,Desc="淫meimei成人情色论坛"},
[1707] = {ID=1707,Desc="鸡巴蜜穴高潮"},
[1708] = {ID=1708,Desc="雞奸"},
[1709] = {ID=1709,Desc="毛人民广场"},
[1710] = {ID=1710,Desc="換妻大會"},
[1711] = {ID=1711,Desc="亚洲激情影院论坛"},
[1712] = {ID=1712,Desc="淫虫"},
[1713] = {ID=1713,Desc="六四屠城"},
[1714] = {ID=1714,Desc="江油余震"},
[1715] = {ID=1715,Desc="幹的爽"},
[1716] = {ID=1716,Desc="我妳老爸"},
[1717] = {ID=1717,Desc="阿沛"},
[1718] = {ID=1718,Desc="百家性超级淫色图片"},
[1719] = {ID=1719,Desc="操穴贴图"},
[1720] = {ID=1720,Desc="淫虐"},
[1721] = {ID=1721,Desc="张廷发"},
[1722] = {ID=1722,Desc="免费a片日本淫电影"},
[1723] = {ID=1723,Desc="被干的喷水的高清图"},
[1724] = {ID=1724,Desc="打砸抢"},
[1725] = {ID=1725,Desc="我的性启蒙老师"},
[1726] = {ID=1726,Desc="毛XX"},
[1727] = {ID=1727,Desc="淫色电影网站"},
[1728] = {ID=1728,Desc="毛推油"},
[1729] = {ID=1729,Desc="滝沢优季"},
[1730] = {ID=1730,Desc="…用力干…嫩穴紧插"},
[1731] = {ID=1731,Desc="东北风情熟女之惑"},
[1732] = {ID=1732,Desc="阴唇湿润小妹舔乳"},
[1733] = {ID=1733,Desc="破处"},
[1734] = {ID=1734,Desc="付申奇"},
[1735] = {ID=1735,Desc="毛卖党求荣"},
[1736] = {ID=1736,Desc="meinv潮吹"},
[1737] = {ID=1737,Desc="盛华仁"},
[1738] = {ID=1738,Desc="毛社会主义"},
[1739] = {ID=1739,Desc="阴穴新玩法"},
[1740] = {ID=1740,Desc="台湾自由联盟"},
[1741] = {ID=1741,Desc="fuck孙文"},
[1742] = {ID=1742,Desc="操淫荡护士"},
[1743] = {ID=1743,Desc="傻屄"},
[1744] = {ID=1744,Desc="中国分裂"},
[1745] = {ID=1745,Desc="淫民激情文学图库专题"},
[1746] = {ID=1746,Desc="法**倫"},
[1747] = {ID=1747,Desc="超级淫图"},
[1748] = {ID=1748,Desc="發~侖"},
[1749] = {ID=1749,Desc="16dy-圖庫"},
[1750] = {ID=1750,Desc="小穴流出汁液"},
[1751] = {ID=1751,Desc="毛石进"},
[1752] = {ID=1752,Desc="陰戶"},
[1753] = {ID=1753,Desc="日本激情图库脱衣裸体做爱"},
[1754] = {ID=1754,Desc="手伸到儿媳妇下体抚摸嫩穴"},
[1755] = {ID=1755,Desc="淫民俱乐部日韩激情片"},
[1756] = {ID=1756,Desc="情色导航"},
[1757] = {ID=1757,Desc="調理勞務系"},
[1758] = {ID=1758,Desc="激情视频在线"},
[1759] = {ID=1759,Desc="淫妹妹电影论坛"},
[1760] = {ID=1760,Desc="被奸淫的女教師"},
[1761] = {ID=1761,Desc="巨乳俏女醫"},
[1762] = {ID=1762,Desc="免费淫区隐蔽入口"},
[1763] = {ID=1763,Desc="大中华论坛"},
[1764] = {ID=1764,Desc="深夜進入少女家中玩強奸"},
[1765] = {ID=1765,Desc="meinv性交极品大片"},
[1766] = {ID=1766,Desc="玉蒲团玉女心经"},
[1767] = {ID=1767,Desc="vip在线成人电影"},
[1768] = {ID=1768,Desc="*法*轮*功*"},
[1769] = {ID=1769,Desc="星蓝妹妹"},
[1770] = {ID=1770,Desc="fuck洗脑班"},
[1771] = {ID=1771,Desc="發~倫"},
[1772] = {ID=1772,Desc="军事委员会"},
[1773] = {ID=1773,Desc="色中色网址大全"},
[1774] = {ID=1774,Desc="淫荡"},
[1775] = {ID=1775,Desc="想上你"},
[1776] = {ID=1776,Desc="拉凳"},
[1777] = {ID=1777,Desc="李金華"},
[1778] = {ID=1778,Desc="18歲淫亂"},
[1779] = {ID=1779,Desc="迷幻药"},
[1780] = {ID=1780,Desc="法**侖"},
[1781] = {ID=1781,Desc="小穴被我操的红肿"},
[1782] = {ID=1782,Desc="肉棒肉洞"},
[1783] = {ID=1783,Desc="人民大會堂"},
[1784] = {ID=1784,Desc="毛强奸"},
[1785] = {ID=1785,Desc="毛烂屌"},
[1786] = {ID=1786,Desc="日本淫色动画贴图"},
[1787] = {ID=1787,Desc="SM援交"},
[1788] = {ID=1788,Desc="www。ccwcc。cn"},
[1789] = {ID=1789,Desc="潮吹"},
[1790] = {ID=1790,Desc="激情在线"},
[1791] = {ID=1791,Desc="蔣中正"},
[1792] = {ID=1792,Desc="大肉棍…"},
[1793] = {ID=1793,Desc="偷情男女"},
[1794] = {ID=1794,Desc="后面插入处女肉穴深处"},
[1795] = {ID=1795,Desc="你娘卡好"},
[1796] = {ID=1796,Desc="女尻"},
[1797] = {ID=1797,Desc="情色天堂论坛咪咪情色论坛"},
[1798] = {ID=1798,Desc="鹿城黄站bt"},
[1799] = {ID=1799,Desc="快活林情色网"},
[1800] = {ID=1800,Desc="入穴一遊"},
[1801] = {ID=1801,Desc="淫水翻腾"},
[1802] = {ID=1802,Desc="激情淫影片"},
[1803] = {ID=1803,Desc="367成人网站"},
[1804] = {ID=1804,Desc="女屄"},
[1805] = {ID=1805,Desc="毛烂屄"},
[1806] = {ID=1806,Desc="混沌诀"},
[1807] = {ID=1807,Desc="毛鸡叭"},
[1808] = {ID=1808,Desc="淫荡的小穴"},
[1809] = {ID=1809,Desc="阴核"},
[1810] = {ID=1810,Desc="meimei黄站"},
[1811] = {ID=1811,Desc="*李*洪*志*靠"},
[1812] = {ID=1812,Desc="淫奸妹妹电影论坛"},
[1813] = {ID=1813,Desc="色欲"},
[1814] = {ID=1814,Desc="啊无卵"},
[1815] = {ID=1815,Desc="酥痒"},
[1816] = {ID=1816,Desc="蒂巴因"},
[1817] = {ID=1817,Desc="磨得人家小穴……好用力……好酥"},
[1818] = {ID=1818,Desc="弟弟淫奸jiejie穴"},
[1819] = {ID=1819,Desc="免费在线收看淫色电影"},
[1820] = {ID=1820,Desc="肏又紧又嫩的穴"},
[1821] = {ID=1821,Desc="美女走光"},
[1822] = {ID=1822,Desc="日你老娘"},
[1823] = {ID=1823,Desc="官人我要2"},
[1824] = {ID=1824,Desc="做爱图"},
[1825] = {ID=1825,Desc="法**伦"},
[1826] = {ID=1826,Desc="毛私服"},
[1827] = {ID=1827,Desc="清晰内射"},
[1828] = {ID=1828,Desc="干你妈B"},
[1829] = {ID=1829,Desc="台聯"},
[1830] = {ID=1830,Desc="台联"},
[1831] = {ID=1831,Desc="乱伦熟女网"},
[1832] = {ID=1832,Desc="叶群"},
[1833] = {ID=1833,Desc="母亲の结婚生活完全版"},
[1834] = {ID=1834,Desc="17岁处女小阴唇张开"},
[1835] = {ID=1835,Desc="陷阱超人嘩嘩曼"},
[1836] = {ID=1836,Desc="雞叭"},
[1837] = {ID=1837,Desc="大卵子"},
[1838] = {ID=1838,Desc="毛宋楚瑜"},
[1839] = {ID=1839,Desc="法**仑"},
[1840] = {ID=1840,Desc="龟头已顺利挣开她紧合的阴唇"},
[1841] = {ID=1841,Desc="大纪园"},
[1842] = {ID=1842,Desc="处女穴"},
[1843] = {ID=1843,Desc="做爱自拍"},
[1844] = {ID=1844,Desc="毛毛贼东"},
[1845] = {ID=1845,Desc="机机歪歪"},
[1846] = {ID=1846,Desc="毛破鞋"},
[1847] = {ID=1847,Desc="吸吮着红嫩的乳头"},
[1848] = {ID=1848,Desc="来回去舐她的小穴"},
[1849] = {ID=1849,Desc="官人我要1"},
[1850] = {ID=1850,Desc="kele8"},
[1851] = {ID=1851,Desc="小卵子"},
[1852] = {ID=1852,Desc="売春婦"},
[1853] = {ID=1853,Desc="情感视频欣赏"},
[1854] = {ID=1854,Desc="宋美齡"},
[1855] = {ID=1855,Desc="社会主义"},
[1856] = {ID=1856,Desc="毛meimei淫色"},
[1857] = {ID=1857,Desc="法黁功"},
[1858] = {ID=1858,Desc="舌尖不断在肉缝里上下舔着"},
[1859] = {ID=1859,Desc="激情论坛"},
[1860] = {ID=1860,Desc="駛你爸"},
[1861] = {ID=1861,Desc="性爱图片"},
[1862] = {ID=1862,Desc="亚洲激情淫洞"},
[1863] = {ID=1863,Desc="紅衛兵"},
[1864] = {ID=1864,Desc="欲火焚身"},
[1865] = {ID=1865,Desc="酥癢"},
[1866] = {ID=1866,Desc="fuck驶你爸"},
[1867] = {ID=1867,Desc="肉棒触碰前面的肉穴"},
[1868] = {ID=1868,Desc="幹死客服"},
[1869] = {ID=1869,Desc="火辣寫真"},
[1870] = {ID=1870,Desc="妹妹的淫穴被龟头顶住"},
[1871] = {ID=1871,Desc="宋美龄"},
[1872] = {ID=1872,Desc="毛外交部"},
[1873] = {ID=1873,Desc="jiejie的小穴"},
[1874] = {ID=1874,Desc="毛毛厕洞"},
[1875] = {ID=1875,Desc="严方军"},
[1876] = {ID=1876,Desc="金毛学生妹"},
[1877] = {ID=1877,Desc="林心如做爱网有激情自拍裸体"},
[1878] = {ID=1878,Desc="苯甲基芽子堿"},
[1879] = {ID=1879,Desc="女优爽图"},
[1880] = {ID=1880,Desc="乱伦淫穴"},
[1881] = {ID=1881,Desc="学生爱国运动正名"},
[1882] = {ID=1882,Desc="舌头伸到妈妈的小穴里"},
[1883] = {ID=1883,Desc="妹妹阴毛"},
[1884] = {ID=1884,Desc="和熟睡的妹妹做爱教你一手"},
[1885] = {ID=1885,Desc="中廣網"},
[1886] = {ID=1886,Desc="激情淫色电视"},
[1887] = {ID=1887,Desc="毛日本RING"},
[1888] = {ID=1888,Desc="淫奸小姨子电影"},
[1889] = {ID=1889,Desc="美女性生活贴图"},
[1890] = {ID=1890,Desc="马三家"},
[1891] = {ID=1891,Desc="鸟g"},
[1892] = {ID=1892,Desc="生奸内射"},
[1893] = {ID=1893,Desc="調教虐待"},
[1894] = {ID=1894,Desc="毛晚年周恩来"},
[1895] = {ID=1895,Desc="日本激情片论坛"},
[1896] = {ID=1896,Desc="妹妹的嫩屄"},
[1897] = {ID=1897,Desc="一九八九六四"},
[1898] = {ID=1898,Desc="猪容基"},
[1899] = {ID=1899,Desc="气性坏疽病"},
[1900] = {ID=1900,Desc="毛塞你娘"},
[1901] = {ID=1901,Desc="操陈希同"},
[1902] = {ID=1902,Desc="激情淫穴小妹"},
[1903] = {ID=1903,Desc="换妻杂交"},
[1904] = {ID=1904,Desc="戳那吗比"},
[1905] = {ID=1905,Desc="阿姨和我乱伦理小说"},
[1906] = {ID=1906,Desc="舌头舔小肉縫"},
[1907] = {ID=1907,Desc="南蛮子"},
[1908] = {ID=1908,Desc="张筱雨"},
[1909] = {ID=1909,Desc="不良詞語@美乳女神RINA"},
[1910] = {ID=1910,Desc="毛温加宝"},
[1911] = {ID=1911,Desc="姐姐的嫩穴"},
[1912] = {ID=1912,Desc="fuck上妳"},
[1913] = {ID=1913,Desc="鸡巴受不了了┅┅喔┅┅好爽┅┅我要泄了┅┅"},
[1914] = {ID=1914,Desc="插淫女小穴"},
[1915] = {ID=1915,Desc="你老母的"},
[1916] = {ID=1916,Desc="香港情色俱乐部"},
[1917] = {ID=1917,Desc="毛温总理"},
[1918] = {ID=1918,Desc="創意鷹翔"},
[1919] = {ID=1919,Desc="戴晶"},
[1920] = {ID=1920,Desc="激情視頻"},
[1921] = {ID=1921,Desc="群奸乱交"},
[1922] = {ID=1922,Desc="國家主席"},
[1923] = {ID=1923,Desc="日本成人淫色DVD"},
[1924] = {ID=1924,Desc="无码精选"},
[1925] = {ID=1925,Desc="大陆黄网导航"},
[1926] = {ID=1926,Desc="绵陽"},
[1927] = {ID=1927,Desc="鸦片渣"},
[1928] = {ID=1928,Desc="卢福坦"},
[1929] = {ID=1929,Desc="a片试看"},
[1930] = {ID=1930,Desc="18dy粉红色高跟鞋"},
[1931] = {ID=1931,Desc="15年纪念日"},
[1932] = {ID=1932,Desc="毛原子能机构"},
[1933] = {ID=1933,Desc="jb靠"},
[1934] = {ID=1934,Desc="吃精"},
[1935] = {ID=1935,Desc="本站10018多部激情电影全部免费试看"},
[1936] = {ID=1936,Desc="毛干你妈b"},
[1937] = {ID=1937,Desc="母子做爱"},
[1938] = {ID=1938,Desc="成人a片"},
[1939] = {ID=1939,Desc="戒急用忍"},
[1940] = {ID=1940,Desc="西藏問題"},
[1941] = {ID=1941,Desc="密穴贴图"},
[1942] = {ID=1942,Desc="淫B浪女"},
[1943] = {ID=1943,Desc="释欲"},
[1944] = {ID=1944,Desc="成人激情导航"},
[1945] = {ID=1945,Desc="她的阴道好紧啊"},
[1946] = {ID=1946,Desc="激情影片网站"},
[1947] = {ID=1947,Desc="白浆四溅"},
[1948] = {ID=1948,Desc="采花堂"},
[1949] = {ID=1949,Desc="扒开她的嫩穴"},
[1950] = {ID=1950,Desc="免费在线激情电影"},
[1951] = {ID=1951,Desc="放荡少妇"},
[1952] = {ID=1952,Desc="淫腔"},
[1953] = {ID=1953,Desc="19岁女生主动让男生开苞全过程◥免费黄色电影"},
[1954] = {ID=1954,Desc="帕巴拉·格列朗杰"},
[1955] = {ID=1955,Desc="毛多维社"},
[1956] = {ID=1956,Desc="毛鸡八"},
[1957] = {ID=1957,Desc="日本成人乱伦"},
[1958] = {ID=1958,Desc="龟头用力刺入淫穴"},
[1959] = {ID=1959,Desc="汪东兴"},
[1960] = {ID=1960,Desc="姐弟淫乱小说"},
[1961] = {ID=1961,Desc="男女蒲典"},
[1962] = {ID=1962,Desc="d7se淫色穴图片下载"},
[1963] = {ID=1963,Desc="曹刚川"},
[1964] = {ID=1964,Desc="西藏問题"},
[1965] = {ID=1965,Desc="又大又肥的屄"},
[1966] = {ID=1966,Desc="淫奸jiejie"},
[1967] = {ID=1967,Desc="三K黨"},
[1968] = {ID=1968,Desc="cdjp李鵬*"},
[1969] = {ID=1969,Desc="毛火棒"},
[1970] = {ID=1970,Desc="我和jiejie肏穴"},
[1971] = {ID=1971,Desc="男人本色"},
[1972] = {ID=1972,Desc="雪白的屁股对着肉棒"},
[1973] = {ID=1973,Desc="拳交"},
[1974] = {ID=1974,Desc="舌头舔小肉缝"},
[1975] = {ID=1975,Desc="无码无套"},
[1976] = {ID=1976,Desc="毛meimei免费电影"},
[1977] = {ID=1977,Desc="姚文元"},
[1978] = {ID=1978,Desc="釋欲"},
[1979] = {ID=1979,Desc="淫荡校妓"},
[1980] = {ID=1980,Desc="六四回憶錄"},
[1981] = {ID=1981,Desc="毛江择民"},
[1982] = {ID=1982,Desc="常劲"},
[1983] = {ID=1983,Desc="馬克思"},
[1984] = {ID=1984,Desc="鸡掰"},
[1985] = {ID=1985,Desc="轮公"},
[1986] = {ID=1986,Desc="灌滿精液"},
[1987] = {ID=1987,Desc="电影免费试看片"},
[1988] = {ID=1988,Desc="巨屌"},
[1989] = {ID=1989,Desc="淫奸护士小说"},
[1990] = {ID=1990,Desc="草你"},
[1991] = {ID=1991,Desc="色站排行导航"},
[1992] = {ID=1992,Desc="色女免费黄色小电影"},
[1993] = {ID=1993,Desc="輪奸"},
[1994] = {ID=1994,Desc="欢欢娱乐时空"},
[1995] = {ID=1995,Desc="如此大的肉棒插的小穴快不行了"},
[1996] = {ID=1996,Desc="发@@轮"},
[1997] = {ID=1997,Desc="Shit"},
[1998] = {ID=1998,Desc="毛他爹"},
[1999] = {ID=1999,Desc="少妇被操穴"},
[2000] = {ID=2000,Desc="省長的兒媳婦"},
[2001] = {ID=2001,Desc="毛法轮功"},
[2002] = {ID=2002,Desc="阴道好紧插起来那真是爽极了"},
[2003] = {ID=2003,Desc="騷卵"},
[2004] = {ID=2004,Desc="阴茎插入肉洞"},
[2005] = {ID=2005,Desc="美女主持26小时全天激情热舞"},
[2006] = {ID=2006,Desc="免费裸女视频聊天"},
[2007] = {ID=2007,Desc="日死"},
[2008] = {ID=2008,Desc="看高潮屋"},
[2009] = {ID=2009,Desc="輪姦"},
[2010] = {ID=2010,Desc="少年阿宾"},
[2011] = {ID=2011,Desc="毛妈逼"},
[2012] = {ID=2012,Desc="四川獨立"},
[2013] = {ID=2013,Desc="情色成人论坛淫图导航"},
[2014] = {ID=2014,Desc="紧紧的小穴"},
[2015] = {ID=2015,Desc="絲襪美腿、痴女、女同"},
[2016] = {ID=2016,Desc="16dy-图库"},
[2017] = {ID=2017,Desc="赛她娘"},
[2018] = {ID=2018,Desc="回民吃豬肉"},
[2019] = {ID=2019,Desc="18dy免费"},
[2020] = {ID=2020,Desc="淫色"},
[2021] = {ID=2021,Desc="党卫兵"},
[2022] = {ID=2022,Desc="姐姐被插的好爽"},
[2023] = {ID=2023,Desc="14岁幼女B嫩阴"},
[2024] = {ID=2024,Desc="耻辱轮奸"},
[2025] = {ID=2025,Desc="民主黨派"},
[2026] = {ID=2026,Desc="大东亚共荣"},
[2027] = {ID=2027,Desc="美丽女教师的性经历"},
[2028] = {ID=2028,Desc="小淫女"},
[2029] = {ID=2029,Desc="毛江八点"},
[2030] = {ID=2030,Desc="熟女家政妇"},
[2031] = {ID=2031,Desc="厕所盗摄护士jiejie性感美腿图"},
[2032] = {ID=2032,Desc="亚洲成人电影"},
[2033] = {ID=2033,Desc="毛斯大林"},
[2034] = {ID=2034,Desc="妓女"},
[2035] = {ID=2035,Desc="弟弟的肉棒好硬啊"},
[2036] = {ID=2036,Desc="抽插41岁处女meimei淫叫不断"},
[2037] = {ID=2037,Desc="智凡迪"},
[2038] = {ID=2038,Desc="毛监听王"},
[2039] = {ID=2039,Desc="抽插19岁处女meimei淫叫不断"},
[2040] = {ID=2040,Desc="鸦片液"},
[2041] = {ID=2041,Desc="周天法"},
[2042] = {ID=2042,Desc="摇頭丸"},
[2043] = {ID=2043,Desc="支持達賴"},
[2044] = {ID=2044,Desc="淫妹妹成人娱乐"},
[2045] = {ID=2045,Desc="蔣樹聲"},
[2046] = {ID=2046,Desc="可爱卡通小穴"},
[2047] = {ID=2047,Desc="插的妈妈的小穴好爽"},
[2048] = {ID=2048,Desc="免费在线淫电影"},
[2049] = {ID=2049,Desc="毛新闻出版"},
[2050] = {ID=2050,Desc="fuck鲜族"},
[2051] = {ID=2051,Desc="爛B"},
[2052] = {ID=2052,Desc="嚴雋琪"},
[2053] = {ID=2053,Desc="欧美淫奸女直接试看"},
[2054] = {ID=2054,Desc="肉棒插"},
[2055] = {ID=2055,Desc="毛人民大会堂"},
[2056] = {ID=2056,Desc="姐姐和我乱伦理小说"},
[2057] = {ID=2057,Desc="大煙"},
[2058] = {ID=2058,Desc="毛红卫兵"},
[2059] = {ID=2059,Desc="黑马@meinv全身神秘黑让你爽到眼框黑"},
[2060] = {ID=2060,Desc="民意论坛"},
[2061] = {ID=2061,Desc="又深又紧的阴户"},
[2062] = {ID=2062,Desc="风骚小女孩湿身露体"},
[2063] = {ID=2063,Desc="fuck上你"},
[2064] = {ID=2064,Desc="贱女人-淫护士"},
[2065] = {ID=2065,Desc="大陆淫乱meinv图图片"},
[2066] = {ID=2066,Desc="在线播放a级电影"},
[2067] = {ID=2067,Desc="淫奸小姨子论坛"},
[2068] = {ID=2068,Desc="肉棒直插花心"},
[2069] = {ID=2069,Desc="共党"},
[2070] = {ID=2070,Desc="抡功"},
[2071] = {ID=2071,Desc="免费淫电影吴宗宪搞笑语录(26禁看)"},
[2072] = {ID=2072,Desc="北韩"},
[2073] = {ID=2073,Desc="恥辱醫護免费下载"},
[2074] = {ID=2074,Desc="扒屄"},
[2075] = {ID=2075,Desc="高俊"},
[2076] = {ID=2076,Desc="卖逼"},
[2077] = {ID=2077,Desc="勃不起斯懦夫"},
[2078] = {ID=2078,Desc="江贼民"},
[2079] = {ID=2079,Desc="肉棒插在阴道里"},
[2080] = {ID=2080,Desc="給你爽"},
[2081] = {ID=2081,Desc="插小穴射了"},
[2082] = {ID=2082,Desc="操护士穴真爽"},
[2083] = {ID=2083,Desc="温B"},
[2084] = {ID=2084,Desc="法$$抡"},
[2085] = {ID=2085,Desc="阴茎被小穴紧紧包住"},
[2086] = {ID=2086,Desc="冒险岛"},
[2087] = {ID=2087,Desc="趙紫陽"},
[2088] = {ID=2088,Desc="母子奸情"},
[2089] = {ID=2089,Desc="奸染"},
[2090] = {ID=2090,Desc="鸭店"},
[2091] = {ID=2091,Desc="欠干"},
[2092] = {ID=2092,Desc="毛多维网"},
[2093] = {ID=2093,Desc="cronous"},
[2094] = {ID=2094,Desc="发~~沦"},
[2095] = {ID=2095,Desc="共军"},
[2096] = {ID=2096,Desc="欠幹"},
[2097] = {ID=2097,Desc="骸卒"},
[2098] = {ID=2098,Desc="姐弟激情淫乱"},
[2099] = {ID=2099,Desc="like999"},
[2100] = {ID=2100,Desc="淩辱"},
[2101] = {ID=2101,Desc="夏赞忠"},
[2102] = {ID=2102,Desc="男人看的猛爽电影"},
[2103] = {ID=2103,Desc="手记注册日韩5026部激情电影"},
[2104] = {ID=2104,Desc="kuai"},
[2105] = {ID=2105,Desc="尉键行"},
[2106] = {ID=2106,Desc="法*轮"},
[2107] = {ID=2107,Desc="毛莫索里尼"},
[2108] = {ID=2108,Desc="喷精"},
[2109] = {ID=2109,Desc="法@@論"},
[2110] = {ID=2110,Desc="性虎色網"},
[2111] = {ID=2111,Desc="发**仑"},
[2112] = {ID=2112,Desc="拉丹"},
[2113] = {ID=2113,Desc="洗浴间爽奸白嫩美乳少女"},
[2114] = {ID=2114,Desc="姐姐的嫩阴户"},
[2115] = {ID=2115,Desc="5kuai"},
[2116] = {ID=2116,Desc="放蕩少婦"},
[2117] = {ID=2117,Desc="激情性爱电影观看网"},
[2118] = {ID=2118,Desc="什么什么大冒险"},
[2119] = {ID=2119,Desc="天安门一代"},
[2120] = {ID=2120,Desc="毛泽东"},
[2121] = {ID=2121,Desc="ㄙㄞ你娘"},
[2122] = {ID=2122,Desc="嫩穴任我插"},
[2123] = {ID=2123,Desc="極品波神"},
[2124] = {ID=2124,Desc="毛东突暴动和独立"},
[2125] = {ID=2125,Desc="婚外恋"},
[2126] = {ID=2126,Desc="毛系统"},
[2127] = {ID=2127,Desc="毛几届中央政治局委员"},
[2128] = {ID=2128,Desc="台湾盲人美女在家疯狂做爱"},
[2129] = {ID=2129,Desc="巨商"},
[2130] = {ID=2130,Desc="毛靠腰"},
[2131] = {ID=2131,Desc="发**伦"},
[2132] = {ID=2132,Desc="小穴夹着肉棒摩擦阴道"},
[2133] = {ID=2133,Desc="变态小日本街头强制脱衣最新加强版多片"},
[2134] = {ID=2134,Desc="极品成人3gp"},
[2135] = {ID=2135,Desc="傻B江核心"},
[2136] = {ID=2136,Desc="jiejie和我乱伦理小说"},
[2137] = {ID=2137,Desc="我操"},
[2138] = {ID=2138,Desc="淫の方程式"},
[2139] = {ID=2139,Desc="肉洞"},
[2140] = {ID=2140,Desc="群奸亂交"},
[2141] = {ID=2141,Desc="洗着鸳鸯浴操屄真惬意"},
[2142] = {ID=2142,Desc="鹿城最新娱乐bt"},
[2143] = {ID=2143,Desc="狂操"},
[2144] = {ID=2144,Desc="mm激情穴贴图"},
[2145] = {ID=2145,Desc="騷批"},
[2146] = {ID=2146,Desc="毛鸟你"},
[2147] = {ID=2147,Desc="毛法功"},
[2148] = {ID=2148,Desc="本站10011多部激情电影全部免费试看"},
[2149] = {ID=2149,Desc="粗长的大肉棒"},
[2150] = {ID=2150,Desc="百家性淫网站"},
[2151] = {ID=2151,Desc="溫加寶"},
[2152] = {ID=2152,Desc="三個呆婊"},
[2153] = {ID=2153,Desc="100bb成人小电影"},
[2154] = {ID=2154,Desc="淫逼"},
[2155] = {ID=2155,Desc="啊……阿姨要洩了……"},
[2156] = {ID=2156,Desc="吗b"},
[2157] = {ID=2157,Desc="中宣部是中国的艾滋病"},
[2158] = {ID=2158,Desc="亚洲激情淫色电影"},
[2159] = {ID=2159,Desc="台灣獨立"},
[2160] = {ID=2160,Desc="精液射入穴中"},
[2161] = {ID=2161,Desc="张闻天"},
[2162] = {ID=2162,Desc="淫荡妈妈骚姊姊"},
[2163] = {ID=2163,Desc="奸暴"},
[2164] = {ID=2164,Desc="塞你老师"},
[2165] = {ID=2165,Desc="マーメイドになった「恋から」ギャル。岡島優里"},
[2166] = {ID=2166,Desc="操出售假币"},
[2167] = {ID=2167,Desc="淫淫电影"},
[2168] = {ID=2168,Desc="鋼甲洪流"},
[2169] = {ID=2169,Desc="鹽酸二氫埃托啡"},
[2170] = {ID=2170,Desc="处女开苞"},
[2171] = {ID=2171,Desc="色网阴道特写强奸22岁处女全过程"},
[2172] = {ID=2172,Desc="阴道里的大肉棒用力顶着"},
[2173] = {ID=2173,Desc="生奸內射"},
[2174] = {ID=2174,Desc="89动乱"},
[2175] = {ID=2175,Desc="毛伱妈"},
[2176] = {ID=2176,Desc="淫奸女图片"},
[2177] = {ID=2177,Desc="百家性大型黄站妹妹"},
[2178] = {ID=2178,Desc="用力扣进小穴"},
[2179] = {ID=2179,Desc="环保总局"},
[2180] = {ID=2180,Desc="你她马的"},
[2181] = {ID=2181,Desc="毛卖卡"},
[2182] = {ID=2182,Desc="fuck威而柔"},
[2183] = {ID=2183,Desc="狂插少妇穴"},
[2184] = {ID=2184,Desc="fuck水去车仑"},
[2185] = {ID=2185,Desc="劳动保障部"},
[2186] = {ID=2186,Desc="毛售软件"},
[2187] = {ID=2187,Desc="共鏟黨"},
[2188] = {ID=2188,Desc="亲哥哥……妹妹的小穴……舒服死了……"},
[2189] = {ID=2189,Desc="大龟头顶住花心"},
[2190] = {ID=2190,Desc="林心如掰穴自拍"},
[2191] = {ID=2191,Desc="法^論"},
[2192] = {ID=2192,Desc="聊齋艷譚"},
[2193] = {ID=2193,Desc="fuck台湾党"},
[2194] = {ID=2194,Desc="本站10001多部激情电影全部免费试看三天"},
[2195] = {ID=2195,Desc="胡耀邦"},
[2196] = {ID=2196,Desc="迷歼药"},
[2197] = {ID=2197,Desc="胡錦涛"},
[2198] = {ID=2198,Desc="粉屄"},
[2199] = {ID=2199,Desc="精液直射入她的小穴深处"},
[2200] = {ID=2200,Desc="共匪"},
[2201] = {ID=2201,Desc="塞你老師"},
[2202] = {ID=2202,Desc="少妇房中自淫,和两勇男玩2P,操得直叫爽"},
[2203] = {ID=2203,Desc="毛美国佬"},
[2204] = {ID=2204,Desc="楊震"},
[2205] = {ID=2205,Desc="李登柱"},
[2206] = {ID=2206,Desc="免费在线看淫电影下载"},
[2207] = {ID=2207,Desc="鹽酸二乙醯嗎啡"},
[2208] = {ID=2208,Desc="淫奸女护士电影"},
[2209] = {ID=2209,Desc="插如妈妈肉穴"},
[2210] = {ID=2210,Desc="肉棍"},
[2211] = {ID=2211,Desc="手指拨弄着穴口"},
[2212] = {ID=2212,Desc="傻逼靠"},
[2213] = {ID=2213,Desc="淫贱"},
[2214] = {ID=2214,Desc="抽插22岁处女妹妹淫叫不断"},
[2215] = {ID=2215,Desc="骚浪人妻"},
[2216] = {ID=2216,Desc="男女交欢"},
[2217] = {ID=2217,Desc="你操得我更爽"},
[2218] = {ID=2218,Desc="儿子顶到阿姨的花心"},
[2219] = {ID=2219,Desc="长身丝袜美女~赤く烂れたマンコが痛"},
[2220] = {ID=2220,Desc="操小姐b"},
[2221] = {ID=2221,Desc="额尔德尼"},
[2222] = {ID=2222,Desc="如果你未满23周岁请自觉离开。"},
[2223] = {ID=2223,Desc="恥辱醫護电影在线观看"},
[2224] = {ID=2224,Desc="痴meinv醫生松島"},
[2225] = {ID=2225,Desc="獲救"},
[2226] = {ID=2226,Desc="刘国凯"},
[2227] = {ID=2227,Desc="法@輪"},
[2228] = {ID=2228,Desc="淫货"},
[2229] = {ID=2229,Desc="男女交歡"},
[2230] = {ID=2230,Desc="法^^輪"},
[2231] = {ID=2231,Desc="阴道里嫩肉把鸡巴包得紧紧"},
[2232] = {ID=2232,Desc="塔利班"},
[2233] = {ID=2233,Desc="堂品色"},
[2234] = {ID=2234,Desc="陈宣良"},
[2235] = {ID=2235,Desc="妹妹做爱"},
[2236] = {ID=2236,Desc="大肉棒深深地插"},
[2237] = {ID=2237,Desc="你马的"},
[2238] = {ID=2238,Desc="教你怎样延迟射精30岁以下禁免费淫电影a片"},
[2239] = {ID=2239,Desc="杨得志"},
[2240] = {ID=2240,Desc="毛酱猪媳"},
[2241] = {ID=2241,Desc="我该死视频做爱"},
[2242] = {ID=2242,Desc="奸淫护士"},
[2243] = {ID=2243,Desc="suck你妈的"},
[2244] = {ID=2244,Desc="少妇野外淫穴电影"},
[2245] = {ID=2245,Desc="皇軍"},
[2246] = {ID=2246,Desc="法@轮"},
[2247] = {ID=2247,Desc="法^^轮"},
[2248] = {ID=2248,Desc="毛民航局"},
[2249] = {ID=2249,Desc="8岁女生主动让男生开苞全过程"},
[2250] = {ID=2250,Desc="毛董文华"},
[2251] = {ID=2251,Desc="操你媽的"},
[2252] = {ID=2252,Desc="江擇民"},
[2253] = {ID=2253,Desc="毛天安门档案"},
[2254] = {ID=2254,Desc="丁香成人论坛贴图区"},
[2255] = {ID=2255,Desc="免费淫色meimei电影网"},
[2256] = {ID=2256,Desc="濫交"},
[2257] = {ID=2257,Desc="淫貨"},
[2258] = {ID=2258,Desc="姦夫淫婦"},
[2259] = {ID=2259,Desc="插入阴道里抽插"},
[2260] = {ID=2260,Desc="援交自拍"},
[2261] = {ID=2261,Desc="安全隱秘"},
[2262] = {ID=2262,Desc="美女出租车内强行进入"},
[2263] = {ID=2263,Desc="杀人"},
[2264] = {ID=2264,Desc="淫色影院"},
[2265] = {ID=2265,Desc="胡紧掏"},
[2266] = {ID=2266,Desc="孙家正"},
[2267] = {ID=2267,Desc="毛蒋中正"},
[2268] = {ID=2268,Desc="操宾周"},
[2269] = {ID=2269,Desc="吗的"},
[2270] = {ID=2270,Desc="毛瘸腿帮"},
[2271] = {ID=2271,Desc="毛国家主要部委"},
[2272] = {ID=2272,Desc="淫賤"},
[2273] = {ID=2273,Desc="小穴的淫骚香味┅好爽"},
[2274] = {ID=2274,Desc="亚洲淫图"},
[2275] = {ID=2275,Desc="兽交"},
[2276] = {ID=2276,Desc="鸡店"},
[2277] = {ID=2277,Desc="法^论"},
[2278] = {ID=2278,Desc="無碼做愛"},
[2279] = {ID=2279,Desc="骚女叫春"},
[2280] = {ID=2280,Desc="程铁军"},
[2281] = {ID=2281,Desc="成人午夜场"},
[2282] = {ID=2282,Desc="孟建柱"},
[2283] = {ID=2283,Desc="色97爱"},
[2284] = {ID=2284,Desc="毛萨达姆"},
[2285] = {ID=2285,Desc="fuck售ID"},
[2286] = {ID=2286,Desc="fuck驶你母"},
[2287] = {ID=2287,Desc="淫女小电影"},
[2288] = {ID=2288,Desc="晚年周恩來"},
[2289] = {ID=2289,Desc="黄色情挑艳情小说网骚meimei成人论坛"},
[2290] = {ID=2290,Desc="meinv嫂子的小骚逼"},
[2291] = {ID=2291,Desc="法$$掄"},
[2292] = {ID=2292,Desc="毛计牌软件"},
[2293] = {ID=2293,Desc="裸露自拍"},
[2294] = {ID=2294,Desc="毛是鸡"},
[2295] = {ID=2295,Desc="腳交"},
[2296] = {ID=2296,Desc="奸一奸"},
[2297] = {ID=2297,Desc="傻B靠"},
[2298] = {ID=2298,Desc="做爱"},
[2299] = {ID=2299,Desc="雞八"},
[2300] = {ID=2300,Desc="自拍寫真"},
[2301] = {ID=2301,Desc="共產黨"},
[2302] = {ID=2302,Desc="插的妈妈好舒服"},
[2303] = {ID=2303,Desc="激情影视"},
[2304] = {ID=2304,Desc="教你怎样延迟射精25岁以下禁免费淫电影a片"},
[2305] = {ID=2305,Desc="毛国资委"},
[2306] = {ID=2306,Desc="fuck性交"},
[2307] = {ID=2307,Desc="哥哥用力舒服死我吧"},
[2308] = {ID=2308,Desc="乱伦小说"},
[2309] = {ID=2309,Desc="法@@论"},
[2310] = {ID=2310,Desc="肉欲"},
[2311] = {ID=2311,Desc="政變"},
[2312] = {ID=2312,Desc="滑湿小屄洞"},
[2313] = {ID=2313,Desc="如果你未满20周岁请自觉离开。"},
[2314] = {ID=2314,Desc="發輪"},
[2315] = {ID=2315,Desc="日本成人激情短片"},
[2316] = {ID=2316,Desc="李長春"},
[2317] = {ID=2317,Desc="免费成人meinv"},
[2318] = {ID=2318,Desc="美女主持24小时全天激情热舞"},
[2319] = {ID=2319,Desc="和meimei肏穴"},
[2320] = {ID=2320,Desc="小骚屄儿meimei"},
[2321] = {ID=2321,Desc="欲女"},
[2322] = {ID=2322,Desc="插穴"},
[2323] = {ID=2323,Desc="淫奸女护士"},
[2324] = {ID=2324,Desc="毛迷魂药"},
[2325] = {ID=2325,Desc="小穴流水妹妹手指插"},
[2326] = {ID=2326,Desc="免费免注册淫色电影"},
[2327] = {ID=2327,Desc="成人免费黄电影"},
[2328] = {ID=2328,Desc="登辉"},
[2329] = {ID=2329,Desc="厦门大游行"},
[2330] = {ID=2330,Desc="骚卵"},
[2331] = {ID=2331,Desc="手记注册日韩5004部激情电影"},
[2332] = {ID=2332,Desc="激情淫"},
[2333] = {ID=2333,Desc="生徒胸觸"},
[2334] = {ID=2334,Desc="手指不断在肉穴扣弄"},
[2335] = {ID=2335,Desc="毛林业局"},
[2336] = {ID=2336,Desc="生徒胸触"},
[2337] = {ID=2337,Desc="姐姐的小穴被大鸡巴插得好舒服哟"},
[2338] = {ID=2338,Desc="无套肉棒浓稠内射漂亮屄"},
[2339] = {ID=2339,Desc="邢铮"},
[2340] = {ID=2340,Desc="操你老妈"},
[2341] = {ID=2341,Desc="群p"},
[2342] = {ID=2342,Desc="用舌尖在我的肉棒上舔"},
[2343] = {ID=2343,Desc="FUCKYOU"},
[2344] = {ID=2344,Desc="顏騎"},
[2345] = {ID=2345,Desc="嫂嫂淫穴"},
[2346] = {ID=2346,Desc="fuck外\挂"},
[2347] = {ID=2347,Desc="受精"},
[2348] = {ID=2348,Desc="batard"},
[2349] = {ID=2349,Desc="毛干你妈逼"},
[2350] = {ID=2350,Desc="東突暴動和獨立"},
[2351] = {ID=2351,Desc="媽個B"},
[2352] = {ID=2352,Desc="和meimei玩插穴"},
[2353] = {ID=2353,Desc="1989#天安门"},
[2354] = {ID=2354,Desc="你老母"},
[2355] = {ID=2355,Desc="藏婦會"},
[2356] = {ID=2356,Desc="血洒天安门"},
[2357] = {ID=2357,Desc="性器肛门~原千寻、桜井"},
[2358] = {ID=2358,Desc="成人18免费电影"},
[2359] = {ID=2359,Desc="毛她妈的"},
[2360] = {ID=2360,Desc="姚月谦"},
[2361] = {ID=2361,Desc="强奸19岁处女全过程/*妹阴毛小穴"},
[2362] = {ID=2362,Desc="胡錦濤"},
[2363] = {ID=2363,Desc="Tibet独立"},
[2364] = {ID=2364,Desc="毛花柳"},
[2365] = {ID=2365,Desc="毛军事委员会"},
[2366] = {ID=2366,Desc="軍妓"},
[2367] = {ID=2367,Desc="毛小肉粒"},
[2368] = {ID=2368,Desc="妈妈的阴道好紧啊"},
[2369] = {ID=2369,Desc="成人午夜場"},
[2370] = {ID=2370,Desc="亚洲激情成人电影"},
[2371] = {ID=2371,Desc="东洋屄"},
[2372] = {ID=2372,Desc="天安门母亲"},
[2373] = {ID=2373,Desc="无须注册淫奸小电影"},
[2374] = {ID=2374,Desc="插小穴meimei直流水"},
[2375] = {ID=2375,Desc="鸡吧菊花穴"},
[2376] = {ID=2376,Desc="江西大余池江中学女教师(绝对真实)」"},
[2377] = {ID=2377,Desc="援交妹"},
[2378] = {ID=2378,Desc="强*十八岁美女护士看完保证你打飞机免费电影"},
[2379] = {ID=2379,Desc="色猫"},
[2380] = {ID=2380,Desc="抽叉姐姐"},
[2381] = {ID=2381,Desc="暴奸"},
[2382] = {ID=2382,Desc="fuck傻B"},
[2383] = {ID=2383,Desc="法论公"},
[2384] = {ID=2384,Desc="幹你媽"},
[2385] = {ID=2385,Desc="抽插45岁处女妹妹淫叫不断"},
[2386] = {ID=2386,Desc="法论共"},
[2387] = {ID=2387,Desc="老师干的我好爽"},
[2388] = {ID=2388,Desc="台湾成人黄色网站"},
[2389] = {ID=2389,Desc="Fuck"},
[2390] = {ID=2390,Desc="轻轻地抽动著阳具"},
[2391] = {ID=2391,Desc="妈批"},
[2392] = {ID=2392,Desc="美乳艷娘"},
[2393] = {ID=2393,Desc="龟头紧顶她的子宫口"},
[2394] = {ID=2394,Desc="發**倫"},
[2395] = {ID=2395,Desc="亂倫熟女"},
[2396] = {ID=2396,Desc="又嫩又紧的屄"},
[2397] = {ID=2397,Desc="柯庆施"},
[2398] = {ID=2398,Desc="操你老娘"},
[2399] = {ID=2399,Desc="何候华"},
[2400] = {ID=2400,Desc="黄克诚"},
[2401] = {ID=2401,Desc="亚洲激情淫电影"},
[2402] = {ID=2402,Desc="法十輪十功"},
[2403] = {ID=2403,Desc="美少女FUCK限界大挑戦"},
[2404] = {ID=2404,Desc="李长春"},
[2405] = {ID=2405,Desc="母子乱乱论"},
[2406] = {ID=2406,Desc="色色成人"},
[2407] = {ID=2407,Desc="赛妳娘"},
[2408] = {ID=2408,Desc="抽插42岁处女妹妹淫叫不断"},
[2409] = {ID=2409,Desc="榮毅仁"},
[2410] = {ID=2410,Desc="毛黑社会"},
[2411] = {ID=2411,Desc="毛黑手党"},
[2412] = {ID=2412,Desc="獸欲"},
[2413] = {ID=2413,Desc="妖美巨尻物语"},
[2414] = {ID=2414,Desc="89运动"},
[2415] = {ID=2415,Desc="美女主持脱衣"},
[2416] = {ID=2416,Desc="(國產)視頻-网吧老板玩穴"},
[2417] = {ID=2417,Desc="肉棒压着阴蒂"},
[2418] = {ID=2418,Desc="毛天安门屠杀"},
[2419] = {ID=2419,Desc="湿穴"},
[2420] = {ID=2420,Desc="偷拍美穴"},
[2421] = {ID=2421,Desc="色情排行榜"},
[2422] = {ID=2422,Desc="毛人民"},
[2423] = {ID=2423,Desc="厕所盗摄美女淫穴"},
[2424] = {ID=2424,Desc="点击观看*林心如做爱*色情电影*免费淫电影a片"},
[2425] = {ID=2425,Desc="口内爆射"},
[2426] = {ID=2426,Desc="日爽"},
[2427] = {ID=2427,Desc="嫩鲍鱼"},
[2428] = {ID=2428,Desc="淫奸护士电影试看"},
[2429] = {ID=2429,Desc="午夜淫电影"},
[2430] = {ID=2430,Desc="淫水自乐"},
[2431] = {ID=2431,Desc="最新99bb)有名女优~松岛やや"},
[2432] = {ID=2432,Desc="美女直播做爱"},
[2433] = {ID=2433,Desc="河利秀失控全裸+深夜成人節目"},
[2434] = {ID=2434,Desc="搔妹妹色站大全"},
[2435] = {ID=2435,Desc="香港激情图源成人色情论坛脱衣meinv做爱"},
[2436] = {ID=2436,Desc="fuck四川独立"},
[2437] = {ID=2437,Desc="裸体贴图香港成人电影网"},
[2438] = {ID=2438,Desc="可怜系新人美少女甘南三才"},
[2439] = {ID=2439,Desc="激情淫色贴图"},
[2440] = {ID=2440,Desc="做爱在线观看"},
[2441] = {ID=2441,Desc="江猪媳"},
[2442] = {ID=2442,Desc="骚屄儿"},
[2443] = {ID=2443,Desc="成人性爱视频"},
[2444] = {ID=2444,Desc="去你妈的"},
[2445] = {ID=2445,Desc="疯狂jiejie淫穴"},
[2446] = {ID=2446,Desc="李志绥"},
[2447] = {ID=2447,Desc="完蛋操"},
[2448] = {ID=2448,Desc="馬英九"},
[2449] = {ID=2449,Desc="燕玲论坛"},
[2450] = {ID=2450,Desc="集体性爱"},
[2451] = {ID=2451,Desc="鸡巴对准柔软的阴肉缝沟"},
[2452] = {ID=2452,Desc="肉棒的抽插……干的好爽"},
[2453] = {ID=2453,Desc="毛乔石"},
[2454] = {ID=2454,Desc="插meimei淫屄"},
[2455] = {ID=2455,Desc="法~論"},
[2456] = {ID=2456,Desc="用他的舌尖舔着我的乳头"},
[2457] = {ID=2457,Desc="亚洲淫娃"},
[2458] = {ID=2458,Desc="fuck外_挂"},
[2459] = {ID=2459,Desc="jiejie和我乱伦理电影"},
[2460] = {ID=2460,Desc="毛卖国"},
[2461] = {ID=2461,Desc="台灣國"},
[2462] = {ID=2462,Desc="肉棒插入meinv的肉缝"},
[2463] = {ID=2463,Desc="法论功"},
[2464] = {ID=2464,Desc="正悟網"},
[2465] = {ID=2465,Desc="用你粗大的肉棒"},
[2466] = {ID=2466,Desc="魅惑巨乳"},
[2467] = {ID=2467,Desc="台灣国"},
[2468] = {ID=2468,Desc="性保姆被雇主掀翻在高潮"},
[2469] = {ID=2469,Desc="陈一谘"},
[2470] = {ID=2470,Desc="fuck食屎"},
[2471] = {ID=2471,Desc="達賴喇嘛"},
[2472] = {ID=2472,Desc="日本RING"},
[2473] = {ID=2473,Desc="fuck台湾独立"},
[2474] = {ID=2474,Desc="强奸19岁处女全过程/淫妹阴毛小穴"},
[2475] = {ID=2475,Desc="毛刘少奇"},
[2476] = {ID=2476,Desc="草妈"},
[2477] = {ID=2477,Desc="本站是国家合法电影网请您用手机注册~!"},
[2478] = {ID=2478,Desc="两国论"},
[2479] = {ID=2479,Desc="风艳阁"},
[2480] = {ID=2480,Desc="教你怎样延迟射精31岁以下禁免费淫电影a片"},
[2481] = {ID=2481,Desc="揉阴核与嫩肉"},
[2482] = {ID=2482,Desc="风骚侍女"},
[2483] = {ID=2483,Desc="猛戳阴穴"},
[2484] = {ID=2484,Desc="腾仁"},
[2485] = {ID=2485,Desc="大波"},
[2486] = {ID=2486,Desc="MM屄"},
[2487] = {ID=2487,Desc="插穴手淫"},
[2488] = {ID=2488,Desc="毛蒋经国"},
[2489] = {ID=2489,Desc="奸淫嫂嫂"},
[2490] = {ID=2490,Desc="鸡巴"},
[2491] = {ID=2491,Desc="裸陪"},
[2492] = {ID=2492,Desc="肉沟"},
[2493] = {ID=2493,Desc="台独分子"},
[2494] = {ID=2494,Desc="弟弟淫奸熟睡jiejie"},
[2495] = {ID=2495,Desc="小姨和我淫BB小说"},
[2496] = {ID=2496,Desc="幹你娘"},
[2497] = {ID=2497,Desc="护士掰开阴道插B"},
[2498] = {ID=2498,Desc="跟meimei肏穴好舒服"},
[2499] = {ID=2499,Desc="一夜性網"},
[2500] = {ID=2500,Desc="小穴淫图"},
[2501] = {ID=2501,Desc="少妇床上的激情"},
[2502] = {ID=2502,Desc="顶进她的花蕊"},
[2503] = {ID=2503,Desc="天安门录像带"},
[2504] = {ID=2504,Desc="一次可看四位meinv同床較勁很可愛的女主角"},
[2505] = {ID=2505,Desc="骚穴淫液"},
[2506] = {ID=2506,Desc="抽插19岁处女妹妹淫叫不断"},
[2507] = {ID=2507,Desc="成人激情影院"},
[2508] = {ID=2508,Desc="肉棒在乳沟来回猛抽"},
[2509] = {ID=2509,Desc="吸精少女"},
[2510] = {ID=2510,Desc="回民暴"},
[2511] = {ID=2511,Desc="狂操丰满小姨穴"},
[2512] = {ID=2512,Desc="明星淫圖"},
[2513] = {ID=2513,Desc="帝國主義"},
[2514] = {ID=2514,Desc="将肉棒对准她的穴口"},
[2515] = {ID=2515,Desc="法^輪"},
[2516] = {ID=2516,Desc="贱货"},
[2517] = {ID=2517,Desc="三级电影网香港色情服务"},
[2518] = {ID=2518,Desc="红楼美穴肛交淫图"},
[2519] = {ID=2519,Desc="公车奸美女淫奸女电影试看。"},
[2520] = {ID=2520,Desc="大鸡吧插又肥又嫩的屄儿"},
[2521] = {ID=2521,Desc="明星淫图"},
[2522] = {ID=2522,Desc="欧美成人帖图区"},
[2523] = {ID=2523,Desc="少妇房中自淫,和两勇男玩13P,操得直叫爽"},
[2524] = {ID=2524,Desc="狗操卖逼"},
[2525] = {ID=2525,Desc="操你妈靠"},
[2526] = {ID=2526,Desc="成人自拍"},
[2527] = {ID=2527,Desc="成人激情电影"},
[2528] = {ID=2528,Desc="大纪元"},
[2529] = {ID=2529,Desc="小穴在上下套动"},
[2530] = {ID=2530,Desc="操雞"},
[2531] = {ID=2531,Desc="操朝鲜"},
[2532] = {ID=2532,Desc="强奸少妇"},
[2533] = {ID=2533,Desc="毛卖号"},
[2534] = {ID=2534,Desc="发$$沦"},
[2535] = {ID=2535,Desc="淫奸美女图"},
[2536] = {ID=2536,Desc="毛泽东靠"},
[2537] = {ID=2537,Desc="淫色貼圖"},
[2538] = {ID=2538,Desc="法^轮"},
[2539] = {ID=2539,Desc="無套內射"},
[2540] = {ID=2540,Desc="强奸处女学妹,摄像机拍下强奸阿姨。"},
[2541] = {ID=2541,Desc="胡錦淘"},
[2542] = {ID=2542,Desc="幹你媽b"},
[2543] = {ID=2543,Desc="强*十八岁meinv护士看完保证你打飞机免费电影"},
[2544] = {ID=2544,Desc="fuck信访局"},
[2545] = {ID=2545,Desc="女学生拍我该死"},
[2546] = {ID=2546,Desc="中國共產黨"},
[2547] = {ID=2547,Desc="精液射如妈妈的穴"},
[2548] = {ID=2548,Desc="法~论"},
[2549] = {ID=2549,Desc="淫師蕩母"},
[2550] = {ID=2550,Desc="日本騷貨"},
[2551] = {ID=2551,Desc="操达赖"},
[2552] = {ID=2552,Desc="ボインお姉さんお色気修行!"},
[2553] = {ID=2553,Desc="日本激情淫色文章"},
[2554] = {ID=2554,Desc="大陆娱乐免费黄站"},
[2555] = {ID=2555,Desc="蝴蝶逼"},
[2556] = {ID=2556,Desc="激情聊天"},
[2557] = {ID=2557,Desc="阿扁"},
[2558] = {ID=2558,Desc="厕所性感meinv清晰淫穴"},
[2559] = {ID=2559,Desc="性福联盟"},
[2560] = {ID=2560,Desc="插那吗比"},
[2561] = {ID=2561,Desc="淫meimei电影"},
[2562] = {ID=2562,Desc="毛美利坚"},
[2563] = {ID=2563,Desc="利瓦伊汉"},
[2564] = {ID=2564,Desc="滚那吗"},
[2565] = {ID=2565,Desc="最强美乳初解禁"},
[2566] = {ID=2566,Desc="狂插meimei小穴"},
[2567] = {ID=2567,Desc="去你妈"},
[2568] = {ID=2568,Desc="摸咪咪"},
[2569] = {ID=2569,Desc="中国社会论坛"},
[2570] = {ID=2570,Desc="曾道人"},
[2571] = {ID=2571,Desc="美女主持25小时全天激情热舞"},
[2572] = {ID=2572,Desc="毛太子党"},
[2573] = {ID=2573,Desc="御の二代目"},
[2574] = {ID=2574,Desc="毛退党"},
[2575] = {ID=2575,Desc="陰屄"},
[2576] = {ID=2576,Desc="那吗瘟比"},
[2577] = {ID=2577,Desc="毛台湾狗"},
[2578] = {ID=2578,Desc="淫电影网"},
[2579] = {ID=2579,Desc="台盟"},
[2580] = {ID=2580,Desc="淫乱小穴"},
[2581] = {ID=2581,Desc="免费秀聊视舞聊天网"},
[2582] = {ID=2582,Desc="私!服"},
[2583] = {ID=2583,Desc="中國性愛城"},
[2584] = {ID=2584,Desc="豔婦淫女"},
[2585] = {ID=2585,Desc="风骚淫荡"},
[2586] = {ID=2586,Desc="手记注册日韩5033部激情电影"},
[2587] = {ID=2587,Desc="欧美激情淫影院"},
[2588] = {ID=2588,Desc="色女脱衣秀"},
[2589] = {ID=2589,Desc="丰盈雪白的肌肤肥嫩饱满的乳房红晕鲜嫩的小奶头"},
[2590] = {ID=2590,Desc="妈的骚穴"},
[2591] = {ID=2591,Desc="操他妈"},
[2592] = {ID=2592,Desc="毛你姥"},
[2593] = {ID=2593,Desc="变态~幼男插嫩屄"},
[2594] = {ID=2594,Desc="嫩穴【极品】阴蒂"},
[2595] = {ID=2595,Desc="姘头"},
[2596] = {ID=2596,Desc="毛马英九"},
[2597] = {ID=2597,Desc="成人百強"},
[2598] = {ID=2598,Desc="毛黎阳评"},
[2599] = {ID=2599,Desc="成人百强"},
[2600] = {ID=2600,Desc="妓女自拍"},
[2601] = {ID=2601,Desc="駛你母"},
[2602] = {ID=2602,Desc="猪猡"},
[2603] = {ID=2603,Desc="交換夫妻"},
[2604] = {ID=2604,Desc="不用注册免费小电影骚b免费色电影免费"},
[2605] = {ID=2605,Desc="fuck台湾国"},
[2606] = {ID=2606,Desc="騷屄"},
[2607] = {ID=2607,Desc="87bb成人小电影"},
[2608] = {ID=2608,Desc="毛你娘"},
[2609] = {ID=2609,Desc="温元凯"},
[2610] = {ID=2610,Desc="張立昌"},
[2611] = {ID=2611,Desc="厉无畏"},
[2612] = {ID=2612,Desc="嫂狂欢隔壁小弟打手枪"},
[2613] = {ID=2613,Desc="免费裸体美女性交电影"},
[2614] = {ID=2614,Desc="胡錦滔"},
[2615] = {ID=2615,Desc="傻批"},
[2616] = {ID=2616,Desc="搔妹妹黄站"},
[2617] = {ID=2617,Desc="网址情色成人大全"},
[2618] = {ID=2618,Desc="监禁陵辱"},
[2619] = {ID=2619,Desc="你姥姥"},
[2620] = {ID=2620,Desc="帕巴拉?格列朗傑"},
[2621] = {ID=2621,Desc="愈快乐愈堕落"},
[2622] = {ID=2622,Desc="传销"},
[2623] = {ID=2623,Desc="法@@轮"},
[2624] = {ID=2624,Desc="色情論壇"},
[2625] = {ID=2625,Desc="你娘咧"},
[2626] = {ID=2626,Desc="阴茎在殷素素的阴道里抽插"},
[2627] = {ID=2627,Desc="恥辱醫護bt下载"},
[2628] = {ID=2628,Desc="陈水扁"},
[2629] = {ID=2629,Desc="干姐姐小穴"},
[2630] = {ID=2630,Desc="投毒杀人"},
[2631] = {ID=2631,Desc="fuck靠"},
[2632] = {ID=2632,Desc="法(輪)功"},
[2633] = {ID=2633,Desc="阴户"},
[2634] = {ID=2634,Desc="色情服务"},
[2635] = {ID=2635,Desc="免费淫色电影"},
[2636] = {ID=2636,Desc="輪公"},
[2637] = {ID=2637,Desc="肉棒在阴道内抽插"},
[2638] = {ID=2638,Desc="毛你妈"},
[2639] = {ID=2639,Desc="花心成人论坛"},
[2640] = {ID=2640,Desc="meinv性生活贴图"},
[2641] = {ID=2641,Desc="免费成人美女"},
[2642] = {ID=2642,Desc="舔她小穴"},
[2643] = {ID=2643,Desc="法@@輪"},
[2644] = {ID=2644,Desc="裝備展示"},
[2645] = {ID=2645,Desc="肉棒狂插女人小嫩穴"},
[2646] = {ID=2646,Desc="手记注册日韩5034部激情电影"},
[2647] = {ID=2647,Desc="免费午夜爽片"},
[2648] = {ID=2648,Desc="dse淫乱小说在线看"},
[2649] = {ID=2649,Desc="舌头舔进阴道"},
[2650] = {ID=2650,Desc="成人激情爽电影"},
[2651] = {ID=2651,Desc="她妈地"},
[2652] = {ID=2652,Desc="强奸十八岁美女护士看完保证你打飞机免费电影网站"},
[2653] = {ID=2653,Desc="自拍淫荡骚妇们的性福"},
[2654] = {ID=2654,Desc="meinv下体淫水直流"},
[2655] = {ID=2655,Desc="毛王震"},
[2656] = {ID=2656,Desc="幼女嫩穴"},
[2657] = {ID=2657,Desc="六四參加者"},
[2658] = {ID=2658,Desc="和两勇男玩37P"},
[2659] = {ID=2659,Desc="成人网站导航"},
[2660] = {ID=2660,Desc="在线玩美美免费电影"},
[2661] = {ID=2661,Desc="法$论"},
[2662] = {ID=2662,Desc="新疆独"},
[2663] = {ID=2663,Desc="六四风波"},
[2664] = {ID=2664,Desc="av成人网"},
[2665] = {ID=2665,Desc="新生网"},
[2666] = {ID=2666,Desc="扒开她的小穴穴"},
[2667] = {ID=2667,Desc="氣性壞疽病"},
[2668] = {ID=2668,Desc="张晓丞"},
[2669] = {ID=2669,Desc="毛静坐"},
[2670] = {ID=2670,Desc="六四動亂"},
[2671] = {ID=2671,Desc="和两勇男玩38P"},
[2672] = {ID=2672,Desc="性交無碼"},
[2673] = {ID=2673,Desc="滚那吗错比"},
[2674] = {ID=2674,Desc="法*論"},
[2675] = {ID=2675,Desc="免费淫电影吴宗宪搞笑语录(24禁看)"},
[2676] = {ID=2676,Desc="针孔偷拍"},
[2677] = {ID=2677,Desc="熟婦人妻"},
[2678] = {ID=2678,Desc="fuck新闻管制"},
[2679] = {ID=2679,Desc="89動亂"},
[2680] = {ID=2680,Desc="插逼清晰图"},
[2681] = {ID=2681,Desc="手机注册看激情电影"},
[2682] = {ID=2682,Desc="和两勇男玩39P"},
[2683] = {ID=2683,Desc="毛meimei黄站"},
[2684] = {ID=2684,Desc="温暖湿润的感觉笼罩龟头周围"},
[2685] = {ID=2685,Desc="本站10015多部激情电影全部免费试看"},
[2686] = {ID=2686,Desc="强奸轮奸meinv视频"},
[2687] = {ID=2687,Desc="自杀手册"},
[2688] = {ID=2688,Desc="愛圖公園"},
[2689] = {ID=2689,Desc="集体淫"},
[2690] = {ID=2690,Desc="鸡巴插进小穴"},
[2691] = {ID=2691,Desc="两性电影在线免费欣赏"},
[2692] = {ID=2692,Desc="手分开嫩肉缝"},
[2693] = {ID=2693,Desc="90bb成人小电影"},
[2694] = {ID=2694,Desc="肉棒插干她的小穴"},
[2695] = {ID=2695,Desc="和两勇男玩33P"},
[2696] = {ID=2696,Desc="强奸41岁处女全过程/淫妹阴毛小穴"},
[2697] = {ID=2697,Desc="狂插美女穴"},
[2698] = {ID=2698,Desc="台独"},
[2699] = {ID=2699,Desc="郭盈恩挑战性交吉尼斯(对256男)直播全记录"},
[2700] = {ID=2700,Desc="和两勇男玩34P"},
[2701] = {ID=2701,Desc="卡通动漫meinv淫乱"},
[2702] = {ID=2702,Desc="抽插48岁处女meimei淫叫不断"},
[2703] = {ID=2703,Desc="插烂她的小屄"},
[2704] = {ID=2704,Desc="精液射在meimei的子宮"},
[2705] = {ID=2705,Desc="猛插林心如小穴"},
[2706] = {ID=2706,Desc="看完保证你打飞机"},
[2707] = {ID=2707,Desc="肉棒插入美穗子的肉缝"},
[2708] = {ID=2708,Desc="和两勇男玩35P"},
[2709] = {ID=2709,Desc="群交"},
[2710] = {ID=2710,Desc="粉红的的奶頭粉嫩的阴唇"},
[2711] = {ID=2711,Desc="香港淫穴"},
[2712] = {ID=2712,Desc="谢中之"},
[2713] = {ID=2713,Desc="龟头挤进了姐姐的小穴"},
[2714] = {ID=2714,Desc="花园bt亚洲激情区"},
[2715] = {ID=2715,Desc="穴淫贴图女人穴贴图穴淫液贴图"},
[2716] = {ID=2716,Desc="黃菊"},
[2717] = {ID=2717,Desc="陰穴新玩法"},
[2718] = {ID=2718,Desc="成人色网"},
[2719] = {ID=2719,Desc="和两勇男玩36P"},
[2720] = {ID=2720,Desc="幼男做爱meimei做爱"},
[2721] = {ID=2721,Desc="AV成人影院"},
[2722] = {ID=2722,Desc="刘俊国"},
[2723] = {ID=2723,Desc="刘宾深"},
[2724] = {ID=2724,Desc="毛英雄纪念碑"},
[2725] = {ID=2725,Desc="教你怎样延迟射精37岁以下禁免费淫电影a片"},
[2726] = {ID=2726,Desc="操meimei湿穴"},
[2727] = {ID=2727,Desc="fuck台湾帝国"},
[2728] = {ID=2728,Desc="陈良宇"},
[2729] = {ID=2729,Desc="娇嫩的蜜穴"},
[2730] = {ID=2730,Desc="大鸡巴"},
[2731] = {ID=2731,Desc="龟头挑逗花蕊嫩肉"},
[2732] = {ID=2732,Desc="穿豹紋的美女,很有野性美。看她咬著肉根就可看出來。"},
[2733] = {ID=2733,Desc="亚洲性虐"},
[2734] = {ID=2734,Desc="手指还插在她的淫穴"},
[2735] = {ID=2735,Desc="發^^綸"},
[2736] = {ID=2736,Desc="社。会。正。义。力。量"},
[2737] = {ID=2737,Desc="台獨"},
[2738] = {ID=2738,Desc="毛军国主义"},
[2739] = {ID=2739,Desc="鹿城黄站小说"},
[2740] = {ID=2740,Desc="淫亂潮吹"},
[2741] = {ID=2741,Desc="性战擂台"},
[2742] = {ID=2742,Desc="强*十八岁meinv护士"},
[2743] = {ID=2743,Desc="台湾午夜色情小说"},
[2744] = {ID=2744,Desc="鰻の罪と泥鰌の罪とレズ陵辱"},
[2745] = {ID=2745,Desc="操抽你丫的"},
[2746] = {ID=2746,Desc="快插吧!┅┅快┅┅"},
[2747] = {ID=2747,Desc="毛台湾国"},
[2748] = {ID=2748,Desc="法$論"},
[2749] = {ID=2749,Desc="走向圓滿"},
[2750] = {ID=2750,Desc="亚洲电影区"},
[2751] = {ID=2751,Desc="发~~抡"},
[2752] = {ID=2752,Desc="六四运动"},
[2753] = {ID=2753,Desc="浪妻淫女"},
[2754] = {ID=2754,Desc="性交电影"},
[2755] = {ID=2755,Desc="淫奸少女穴"},
[2756] = {ID=2756,Desc="品色堂"},
[2757] = {ID=2757,Desc="毛去死"},
[2758] = {ID=2758,Desc="日本骚货"},
[2759] = {ID=2759,Desc="免费电影欧女乱欲"},
[2760] = {ID=2760,Desc="白液四溅"},
[2761] = {ID=2761,Desc="做爱激情小电影"},
[2762] = {ID=2762,Desc="魔鬼曲線風騷女优青木玲"},
[2763] = {ID=2763,Desc="动漫色图"},
[2764] = {ID=2764,Desc="最淫官员"},
[2765] = {ID=2765,Desc="陽痿"},
[2766] = {ID=2766,Desc="看完保证你打飞机免费电影网站"},
[2767] = {ID=2767,Desc="毛三陪"},
[2768] = {ID=2768,Desc="操小姨子穴真爽"},
[2769] = {ID=2769,Desc="陈炳基"},
[2770] = {ID=2770,Desc="高级卖淫女确实不一般"},
[2771] = {ID=2771,Desc="肉棒插入美穗子的肉縫"},
[2772] = {ID=2772,Desc="熟婦騷器"},
[2773] = {ID=2773,Desc="用力操舒服死我吧"},
[2774] = {ID=2774,Desc="肥穴姐姐"},
[2775] = {ID=2775,Desc="亲爱的快操我的B"},
[2776] = {ID=2776,Desc="走私"},
[2777] = {ID=2777,Desc="干出淫水"},
[2778] = {ID=2778,Desc="欧美无套"},
[2779] = {ID=2779,Desc="海科數碼"},
[2780] = {ID=2780,Desc="肥美的阴唇"},
[2781] = {ID=2781,Desc="美护士是男人操屄的目标"},
[2782] = {ID=2782,Desc="鮑彤"},
[2783] = {ID=2783,Desc="抽插43岁处女妹妹淫叫不断"},
[2784] = {ID=2784,Desc="怎样延迟射精26岁以下禁"},
[2785] = {ID=2785,Desc="肥嫩的阴部"},
[2786] = {ID=2786,Desc="中國成人論壇"},
[2787] = {ID=2787,Desc="阴缔"},
[2788] = {ID=2788,Desc="鸡院"},
[2789] = {ID=2789,Desc="成人淫伦"},
[2790] = {ID=2790,Desc="淫荡女医生"},
[2791] = {ID=2791,Desc="激情网站"},
[2792] = {ID=2792,Desc="臺灣獨立"},
[2793] = {ID=2793,Desc="fuck傻比"},
[2794] = {ID=2794,Desc="法~纶"},
[2795] = {ID=2795,Desc="毛阳精"},
[2796] = {ID=2796,Desc="鹿城免费黄站"},
[2797] = {ID=2797,Desc="淫奸小电影"},
[2798] = {ID=2798,Desc="手记注册日韩5009部激情电影"},
[2799] = {ID=2799,Desc="怎样延迟射精19岁以下禁"},
[2800] = {ID=2800,Desc="我该死免费色情电影"},
[2801] = {ID=2801,Desc="周旋"},
[2802] = {ID=2802,Desc="就去誘惑"},
[2803] = {ID=2803,Desc="操你爸"},
[2804] = {ID=2804,Desc="AV-熟女"},
[2805] = {ID=2805,Desc="成人激情电影在线播放"},
[2806] = {ID=2806,Desc="免费淫电影吴宗宪搞笑语录(23禁看)"},
[2807] = {ID=2807,Desc="激情淫洞网站"},
[2808] = {ID=2808,Desc="龟头挤进了紧窄湿润小嫩穴"},
[2809] = {ID=2809,Desc="免费淫*黄色电影a片"},
[2810] = {ID=2810,Desc="吸吮肉棒"},
[2811] = {ID=2811,Desc="林心如毛片"},
[2812] = {ID=2812,Desc="捅入meimei的阴道"},
[2813] = {ID=2813,Desc="大*FA弟*子"},
[2814] = {ID=2814,Desc="粉嫩粉嫩的小穴"},
[2815] = {ID=2815,Desc="做爱淫图"},
[2816] = {ID=2816,Desc="小幼女开处清晰大图"},
[2817] = {ID=2817,Desc="阳精"},
[2818] = {ID=2818,Desc="驶你公"},
[2819] = {ID=2819,Desc="抽插40岁处女meimei淫叫不断"},
[2820] = {ID=2820,Desc="沾满了淫"},
[2821] = {ID=2821,Desc="毛马卖马屁"},
[2822] = {ID=2822,Desc="淫女在线看电影"},
[2823] = {ID=2823,Desc="av成人电影网"},
[2824] = {ID=2824,Desc="温逼"},
[2825] = {ID=2825,Desc="徐建国案件"},
[2826] = {ID=2826,Desc="顶进嫂子的花心"},
[2827] = {ID=2827,Desc="色情激情电影观看"},
[2828] = {ID=2828,Desc="奴役童工"},
[2829] = {ID=2829,Desc="媽逼"},
[2830] = {ID=2830,Desc="顶到妈妈娇嫩的花心"},
[2831] = {ID=2831,Desc="成人激情网站大全"},
[2832] = {ID=2832,Desc="fuck天鹅之旅"},
[2833] = {ID=2833,Desc="情色电影"},
[2834] = {ID=2834,Desc="毛你妈的"},
[2835] = {ID=2835,Desc="不用注册免费淫电影"},
[2836] = {ID=2836,Desc="周鐵農"},
[2837] = {ID=2837,Desc="本站10004多部激情电影全部免费试看三天"},
[2838] = {ID=2838,Desc="鸡巴插小穴"},
[2839] = {ID=2839,Desc="桃园蜜洞"},
[2840] = {ID=2840,Desc="淫奸女教师穴"},
[2841] = {ID=2841,Desc="臺灣共產黨"},
[2842] = {ID=2842,Desc="fuck小泉纯一郎"},
[2843] = {ID=2843,Desc="發~~論"},
[2844] = {ID=2844,Desc="中文情色网站"},
[2845] = {ID=2845,Desc="嗯┅┅嗯┅┅舒服死了……meimei又要丢了"},
[2846] = {ID=2846,Desc="操吃大便"},
[2847] = {ID=2847,Desc="小穴流淫水"},
[2848] = {ID=2848,Desc="李登辉"},
[2849] = {ID=2849,Desc="毛江贼民"},
[2850] = {ID=2850,Desc="免费meimei黄色淫乱"},
[2851] = {ID=2851,Desc="祁培文"},
[2852] = {ID=2852,Desc="法**抡"},
[2853] = {ID=2853,Desc="清秀巨乳学妹校园内被轮奸"},
[2854] = {ID=2854,Desc="毛温馨"},
[2855] = {ID=2855,Desc="fuck天安门录像带"},
[2856] = {ID=2856,Desc="司马晋"},
[2857] = {ID=2857,Desc="美女嫩穴淫水直流"},
[2858] = {ID=2858,Desc="人妻色誘"},
[2859] = {ID=2859,Desc="毛卖财富"},
[2860] = {ID=2860,Desc="南京大学法学院"},
[2861] = {ID=2861,Desc="插暴"},
[2862] = {ID=2862,Desc="鹿城百家性大型黄站"},
[2863] = {ID=2863,Desc="氵去"},
[2864] = {ID=2864,Desc="她媽地"},
[2865] = {ID=2865,Desc="乳霸"},
[2866] = {ID=2866,Desc="肉棒挤入蜜穴"},
[2867] = {ID=2867,Desc="淫水涟涟"},
[2868] = {ID=2868,Desc="他妈靠"},
[2869] = {ID=2869,Desc="六四之后"},
[2870] = {ID=2870,Desc="交配"},
[2871] = {ID=2871,Desc="柔软红嫩的小阴唇"},
[2872] = {ID=2872,Desc="小嫩雞"},
[2873] = {ID=2873,Desc="毛国民党"},
[2874] = {ID=2874,Desc="淫奸姐姐穴"},
[2875] = {ID=2875,Desc="塞你母"},
[2876] = {ID=2876,Desc="吸毒"},
[2877] = {ID=2877,Desc="豬頭"},
[2878] = {ID=2878,Desc="妈妈屄好痒呀"},
[2879] = {ID=2879,Desc="殺人犯"},
[2880] = {ID=2880,Desc="天安門慘案"},
[2881] = {ID=2881,Desc="柔软红嫩的小阴唇紧紧地护住她的阴道口"},
[2882] = {ID=2882,Desc="165网址宽频影院网"},
[2883] = {ID=2883,Desc="fuck是鸡"},
[2884] = {ID=2884,Desc="和两勇男玩30P"},
[2885] = {ID=2885,Desc="白液四濺"},
[2886] = {ID=2886,Desc="喔┅┅我又要泄┅┅泄了"},
[2887] = {ID=2887,Desc="人妻色诱"},
[2888] = {ID=2888,Desc="法~綸"},
[2889] = {ID=2889,Desc="護士誘惑"},
[2890] = {ID=2890,Desc="你以为你装逼就能骗我"},
[2891] = {ID=2891,Desc="成人导航X色成人导航"},
[2892] = {ID=2892,Desc="激情淫穴"},
[2893] = {ID=2893,Desc="幼女开雹"},
[2894] = {ID=2894,Desc="無毛穴"},
[2895] = {ID=2895,Desc="吴邦国"},
[2896] = {ID=2896,Desc="政治迫害"},
[2897] = {ID=2897,Desc="血灑天安門"},
[2898] = {ID=2898,Desc="毛华国锋"},
[2899] = {ID=2899,Desc="毛江戏子"},
[2900] = {ID=2900,Desc="完全免费电影在线看"},
[2901] = {ID=2901,Desc="和两勇男玩32P"},
[2902] = {ID=2902,Desc="毛迷奸药"},
[2903] = {ID=2903,Desc="親日"},
[2904] = {ID=2904,Desc="阳具插入小肉穴"},
[2905] = {ID=2905,Desc="幼女小嫩穴"},
[2906] = {ID=2906,Desc="和两勇男玩31P"},
[2907] = {ID=2907,Desc="日本淫荡妹妹"},
[2908] = {ID=2908,Desc="毛反恐委员会"},
[2909] = {ID=2909,Desc="激情淫窟"},
[2910] = {ID=2910,Desc="Premium)オトナの変态●稚园"},
[2911] = {ID=2911,Desc="淫情贴图"},
[2912] = {ID=2912,Desc="鸡巴插入蜜穴"},
[2913] = {ID=2913,Desc="妹妹的小嫩穴"},
[2914] = {ID=2914,Desc="jiejie的嫩穴"},
[2915] = {ID=2915,Desc="怎样延迟射精21岁以下禁"},
[2916] = {ID=2916,Desc="完全自由注册看成人电影"},
[2917] = {ID=2917,Desc="53淫色导航"},
[2918] = {ID=2918,Desc="李德生"},
[2919] = {ID=2919,Desc="fuck神通加持法"},
[2920] = {ID=2920,Desc="pp点点通色穴激情片"},
[2921] = {ID=2921,Desc="朱镕基"},
[2922] = {ID=2922,Desc="淫女小穴"},
[2923] = {ID=2923,Desc="情色影院"},
[2924] = {ID=2924,Desc="用力狂插骚穴"},
[2925] = {ID=2925,Desc="将则民"},
[2926] = {ID=2926,Desc="淫靡"},
[2927] = {ID=2927,Desc="八九事件"},
[2928] = {ID=2928,Desc="少女露嫩穴"},
[2929] = {ID=2929,Desc="初中妹妹的小美穴"},
[2930] = {ID=2930,Desc="法**掄"},
[2931] = {ID=2931,Desc="双腿夹著我的腰部使我的肉棒进入的更深"},
[2932] = {ID=2932,Desc="舔b"},
[2933] = {ID=2933,Desc="阴精"},
[2934] = {ID=2934,Desc="mo你鸡巴"},
[2935] = {ID=2935,Desc="大鸡巴小浪穴"},
[2936] = {ID=2936,Desc="兩個中國"},
[2937] = {ID=2937,Desc="百纳成人激情影院"},
[2938] = {ID=2938,Desc="蒙古鞑子"},
[2939] = {ID=2939,Desc="fuck希拉克"},
[2940] = {ID=2940,Desc="讓你操"},
[2941] = {ID=2941,Desc="18歲淫亂"},
[2942] = {ID=2942,Desc="肏妹妹淫屄"},
[2943] = {ID=2943,Desc="五奶小青"},
[2944] = {ID=2944,Desc="可怜卖菜妇"},
[2945] = {ID=2945,Desc="毛牛逼"},
[2946] = {ID=2946,Desc="爱色cc"},
[2947] = {ID=2947,Desc="粉红穴"},
[2948] = {ID=2948,Desc="毛劳+教+所"},
[2949] = {ID=2949,Desc="性娱情色导航"},
[2950] = {ID=2950,Desc="野性家庭教師"},
[2951] = {ID=2951,Desc="阴道好紧"},
[2952] = {ID=2952,Desc="插入jiejie蜜穴"},
[2953] = {ID=2953,Desc="中青旅創格"},
[2954] = {ID=2954,Desc="王胜俊"},
[2955] = {ID=2955,Desc="亂倫之公公與兒媳的秘密"},
[2956] = {ID=2956,Desc="阴穴"},
[2957] = {ID=2957,Desc="密穴貼圖"},
[2958] = {ID=2958,Desc="激情MM"},
[2959] = {ID=2959,Desc="粗壯的肉棒插入淫蕩的小穴"},
[2960] = {ID=2960,Desc="嫩b"},
[2961] = {ID=2961,Desc="賤逼"},
[2962] = {ID=2962,Desc="和两勇男玩7P"},
[2963] = {ID=2963,Desc="令人喷血的春宫108姿势(组图)21岁禁看"},
[2964] = {ID=2964,Desc="淫荡护士"},
[2965] = {ID=2965,Desc="操B指南"},
[2966] = {ID=2966,Desc="裸聊"},
[2967] = {ID=2967,Desc="几届中央政治局委员"},
[2968] = {ID=2968,Desc="美体艳姿"},
[2969] = {ID=2969,Desc="群陰會"},
[2970] = {ID=2970,Desc="国资委"},
[2971] = {ID=2971,Desc="激情导航"},
[2972] = {ID=2972,Desc="和两勇男玩6P"},
[2973] = {ID=2973,Desc="免费观看淫电影"},
[2974] = {ID=2974,Desc="法*輪"},
[2975] = {ID=2975,Desc="黃色文學"},
[2976] = {ID=2976,Desc="姐都快被你搞死了!"},
[2977] = {ID=2977,Desc="和两勇男玩49P"},
[2978] = {ID=2978,Desc="姐弟淫乱"},
[2979] = {ID=2979,Desc="吾尔开西"},
[2980] = {ID=2980,Desc="少妇房中自淫,和两勇男玩20P,操得直叫爽"},
[2981] = {ID=2981,Desc="和两勇男玩5P"},
[2982] = {ID=2982,Desc="ㄙㄞ你公"},
[2983] = {ID=2983,Desc="黄翔"},
[2984] = {ID=2984,Desc="刘丽英"},
[2985] = {ID=2985,Desc="操春药"},
[2986] = {ID=2986,Desc="超英赶美"},
[2987] = {ID=2987,Desc="夫妻俱樂部"},
[2988] = {ID=2988,Desc="成人淫乱小说"},
[2989] = {ID=2989,Desc="日本成人激情影院"},
[2990] = {ID=2990,Desc="法轮攻"},
[2991] = {ID=2991,Desc="反腐败论坛"},
[2992] = {ID=2992,Desc="和两勇男玩4P"},
[2993] = {ID=2993,Desc="毛性欲"},
[2994] = {ID=2994,Desc="塞你爸"},
[2995] = {ID=2995,Desc="激情電影"},
[2996] = {ID=2996,Desc="賣逼"},
[2997] = {ID=2997,Desc="毛奸"},
[2998] = {ID=2998,Desc="meinv主持脱衣"},
[2999] = {ID=2999,Desc="免费在线淫电影网"},
[3000] = {ID=3000,Desc="和两勇男玩47P"},
[3001] = {ID=3001,Desc="床上激情淫乱小搔穴"},
[3002] = {ID=3002,Desc="抽插52岁处女meimei淫叫不断"},
[3003] = {ID=3003,Desc="肉棒插进肉洞里"},
[3004] = {ID=3004,Desc="中央政府"},
[3005] = {ID=3005,Desc="毛你爸"},
[3006] = {ID=3006,Desc="日本女优8分钟长片"},
[3007] = {ID=3007,Desc="fuck温家宝"},
[3008] = {ID=3008,Desc="法^^论"},
[3009] = {ID=3009,Desc="台湾一夜激情成人聊天室"},
[3010] = {ID=3010,Desc="滾那嗎瘟比"},
[3011] = {ID=3011,Desc="握住阴茎看准肉洞猛的一下插了进去"},
[3012] = {ID=3012,Desc="毛发论公"},
[3013] = {ID=3013,Desc="教你怎样延迟射精35岁以下禁免费淫电影a片"},
[3014] = {ID=3014,Desc="MM的小穴"},
[3015] = {ID=3015,Desc="和两勇男玩3P"},
[3016] = {ID=3016,Desc="淫荡少妇穴少妇嫩穴"},
[3017] = {ID=3017,Desc="性交淫图"},
[3018] = {ID=3018,Desc="和两勇男玩48P"},
[3019] = {ID=3019,Desc="大阴唇姐姐"},
[3020] = {ID=3020,Desc="男女激情淫乱图"},
[3021] = {ID=3021,Desc="操淫荡少妇"},
[3022] = {ID=3022,Desc="靖国"},
[3023] = {ID=3023,Desc="法$轮"},
[3024] = {ID=3024,Desc="摸你鸡巴"},
[3025] = {ID=3025,Desc="和两勇男玩45P"},
[3026] = {ID=3026,Desc="毛一鲜"},
[3027] = {ID=3027,Desc="淫女吃鸡巴"},
[3028] = {ID=3028,Desc="处女阴道库"},
[3029] = {ID=3029,Desc="阴壁肌肉紧紧挤压着棒鸡巴"},
[3030] = {ID=3030,Desc="無產階級"},
[3031] = {ID=3031,Desc="聖泉學淫"},
[3032] = {ID=3032,Desc="史迪威"},
[3033] = {ID=3033,Desc="fuck体育总局"},
[3034] = {ID=3034,Desc="法@论"},
[3035] = {ID=3035,Desc="和两勇男玩46P"},
[3036] = {ID=3036,Desc="激情淫穴网站"},
[3037] = {ID=3037,Desc="俞正聲"},
[3038] = {ID=3038,Desc="林果"},
[3039] = {ID=3039,Desc="陆定一"},
[3040] = {ID=3040,Desc="点对点裸聊"},
[3041] = {ID=3041,Desc="毛希拉克"},
[3042] = {ID=3042,Desc="操陈功"},
[3043] = {ID=3043,Desc="成人贴图网站"},
[3044] = {ID=3044,Desc="毛撒尿"},
[3045] = {ID=3045,Desc="法$輪"},
[3046] = {ID=3046,Desc="毛游戏宫理员"},
[3047] = {ID=3047,Desc="毛巡查员"},
[3048] = {ID=3048,Desc="妹妹的穴好多水"},
[3049] = {ID=3049,Desc="北美仙人球碱"},
[3050] = {ID=3050,Desc="梁擎墩"},
[3051] = {ID=3051,Desc="龟头插入肉縫"},
[3052] = {ID=3052,Desc="李登輝"},
[3053] = {ID=3053,Desc="狗日靠"},
[3054] = {ID=3054,Desc="密洞"},
[3055] = {ID=3055,Desc="色情小电影"},
[3056] = {ID=3056,Desc="成人色站"},
[3057] = {ID=3057,Desc="干老师小穴"},
[3058] = {ID=3058,Desc="胡緊掏"},
[3059] = {ID=3059,Desc="逼孕套"},
[3060] = {ID=3060,Desc="專政"},
[3061] = {ID=3061,Desc="免费淫电影,看完保证你打飞机"},
[3062] = {ID=3062,Desc="朱琳"},
[3063] = {ID=3063,Desc="鸡巴便结结实实的插进娇嫩的花蕊"},
[3064] = {ID=3064,Desc="成人书库"},
[3065] = {ID=3065,Desc="性欲喘息教師"},
[3066] = {ID=3066,Desc="淫奸护士jiejie穴"},
[3067] = {ID=3067,Desc="陽物"},
[3068] = {ID=3068,Desc="全免费淫色情电影"},
[3069] = {ID=3069,Desc="快活林导航"},
[3070] = {ID=3070,Desc="你媽逼"},
[3071] = {ID=3071,Desc="枪决女犯"},
[3072] = {ID=3072,Desc="一黨"},
[3073] = {ID=3073,Desc="日本激情淫穴网站"},
[3074] = {ID=3074,Desc="三去车仑功"},
[3075] = {ID=3075,Desc="小穴收缩颤抖著"},
[3076] = {ID=3076,Desc="十八淫妹电影"},
[3077] = {ID=3077,Desc="學生愛國者運動證明"},
[3078] = {ID=3078,Desc="毛外专局"},
[3079] = {ID=3079,Desc="毛妓"},
[3080] = {ID=3080,Desc="免费淫电影论坛"},
[3081] = {ID=3081,Desc="露屄"},
[3082] = {ID=3082,Desc="淫奸女护士电影在线免费观看点击进入"},
[3083] = {ID=3083,Desc="一党专政"},
[3084] = {ID=3084,Desc="军火价格"},
[3085] = {ID=3085,Desc="毛李先念"},
[3086] = {ID=3086,Desc="舌尖刮著陰唇上的淫水"},
[3087] = {ID=3087,Desc="法^^論"},
[3088] = {ID=3088,Desc="我和小姨淫穴"},
[3089] = {ID=3089,Desc="激情淫色文章"},
[3090] = {ID=3090,Desc="屄屄特写"},
[3091] = {ID=3091,Desc="毛发论功"},
[3092] = {ID=3092,Desc="如果你未满33周岁请自觉离开。"},
[3093] = {ID=3093,Desc="它媽地"},
[3094] = {ID=3094,Desc="meinv孩含双棍玩内射"},
[3095] = {ID=3095,Desc="金毛穴"},
[3096] = {ID=3096,Desc="白粉"},
[3097] = {ID=3097,Desc="毛古方迷香"},
[3098] = {ID=3098,Desc="六四动乱"},
[3099] = {ID=3099,Desc="毛贺龙"},
[3100] = {ID=3100,Desc="日本淫荡女孩"},
[3101] = {ID=3101,Desc="中华人民共和国"},
[3102] = {ID=3102,Desc="玉蒲團"},
[3103] = {ID=3103,Desc="露阴照"},
[3104] = {ID=3104,Desc="和两勇男玩9P"},
[3105] = {ID=3105,Desc="肉棒插得我好爽"},
[3106] = {ID=3106,Desc="大龟头戳进了子宫里"},
[3107] = {ID=3107,Desc="法@論"},
[3108] = {ID=3108,Desc="淫妻的亂交免费在线看"},
[3109] = {ID=3109,Desc="中华人民共和國"},
[3110] = {ID=3110,Desc="快樂AV"},
[3111] = {ID=3111,Desc="fuck小鸡鸡"},
[3112] = {ID=3112,Desc="最新两性激情小说"},
[3113] = {ID=3113,Desc="正清网"},
[3114] = {ID=3114,Desc="鸡巴顶开花瓣"},
[3115] = {ID=3115,Desc="本站10019多部激情电影全部免费试看三天"},
[3116] = {ID=3116,Desc="湿润的嫩穴中"},
[3117] = {ID=3117,Desc="和两勇男玩8P"},
[3118] = {ID=3118,Desc="六四風波"},
[3119] = {ID=3119,Desc="干你老母"},
[3120] = {ID=3120,Desc="毛三级片"},
[3121] = {ID=3121,Desc="免费视讯meimei"},
[3122] = {ID=3122,Desc="路甬祥"},
[3123] = {ID=3123,Desc="他媽的"},
[3124] = {ID=3124,Desc="大麻油"},
[3125] = {ID=3125,Desc="发**论"},
[3126] = {ID=3126,Desc="狂插meinv老师"},
[3127] = {ID=3127,Desc="公车奸meinv淫奸女电影试看。"},
[3128] = {ID=3128,Desc="姐姐的阴道好嫩啊"},
[3129] = {ID=3129,Desc="拉姆斯菲尔德"},
[3130] = {ID=3130,Desc="真理组织"},
[3131] = {ID=3131,Desc="日本meinv鲍鱼贴图区"},
[3132] = {ID=3132,Desc="干你老比"},
[3133] = {ID=3133,Desc="天安门档案"},
[3134] = {ID=3134,Desc="日本mm性激情电影"},
[3135] = {ID=3135,Desc="發~~輪"},
[3136] = {ID=3136,Desc="女儿嫩穴操mm嫩穴操女人嫩穴"},
[3137] = {ID=3137,Desc="又粗又硬的大肉棒"},
[3138] = {ID=3138,Desc="娇小鲜嫩的小屄洞"},
[3139] = {ID=3139,Desc="欧美激情成人电影"},
[3140] = {ID=3140,Desc="meimei的嫩阴唇"},
[3141] = {ID=3141,Desc="独占Princess"},
[3142] = {ID=3142,Desc="和jiejie淫穴"},
[3143] = {ID=3143,Desc="人妻榨乳"},
[3144] = {ID=3144,Desc="雞掰"},
[3145] = {ID=3145,Desc="毛六四事件"},
[3146] = {ID=3146,Desc="愛田由~(Moodyz)女教師"},
[3147] = {ID=3147,Desc="淫乱诊所"},
[3148] = {ID=3148,Desc="透视眼镜"},
[3149] = {ID=3149,Desc="熟女護士"},
[3150] = {ID=3150,Desc="色网阴道特写强奸23岁处女全过程"},
[3151] = {ID=3151,Desc="一本道1137~陵辱巨乳~薫まい"},
[3152] = {ID=3152,Desc="嫩BB"},
[3153] = {ID=3153,Desc="毛你老母"},
[3154] = {ID=3154,Desc="成人午夜场影院"},
[3155] = {ID=3155,Desc="美女嫂子的小骚逼"},
[3156] = {ID=3156,Desc="毛二B"},
[3157] = {ID=3157,Desc="毛双峰微颤"},
[3158] = {ID=3158,Desc="假陽具插穴"},
[3159] = {ID=3159,Desc="天安们母亲运动"},
[3160] = {ID=3160,Desc="F_U_C_K"},
[3161] = {ID=3161,Desc="尻庇"},
[3162] = {ID=3162,Desc="發綸"},
[3163] = {ID=3163,Desc="方励之"},
[3164] = {ID=3164,Desc="性伦乱小说"},
[3165] = {ID=3165,Desc="21cn"},
[3166] = {ID=3166,Desc="歐美圖區"},
[3167] = {ID=3167,Desc="新体操(仮)~妖精达の轮舞曲~"},
[3168] = {ID=3168,Desc="吗比"},
[3169] = {ID=3169,Desc="和熟睡的meimei做爱教你一手"},
[3170] = {ID=3170,Desc="强效失意药"},
[3171] = {ID=3171,Desc="连続失禁"},
[3172] = {ID=3172,Desc="扶正肉棒,瞄準她的肉穴插了進去"},
[3173] = {ID=3173,Desc="搞她"},
[3174] = {ID=3174,Desc="淫婦自慰"},
[3175] = {ID=3175,Desc="〓成人写真〓"},
[3176] = {ID=3176,Desc="毛奸夫淫妇"},
[3177] = {ID=3177,Desc="口爆"},
[3178] = {ID=3178,Desc="毛刘"},
[3179] = {ID=3179,Desc="彭珮云"},
[3180] = {ID=3180,Desc="色情网址网上视频"},
[3181] = {ID=3181,Desc="淫奸少女电影"},
[3182] = {ID=3182,Desc="手机注册电影"},
[3183] = {ID=3183,Desc="毛倭国"},
[3184] = {ID=3184,Desc="疯狂赛车"},
[3185] = {ID=3185,Desc="小穴里流"},
[3186] = {ID=3186,Desc="迟浩田"},
[3187] = {ID=3187,Desc="淫女淫图淫书淫片"},
[3188] = {ID=3188,Desc="不卡免费淫电影"},
[3189] = {ID=3189,Desc="亚洲激情淫色贴图网"},
[3190] = {ID=3190,Desc="毛破坏"},
[3191] = {ID=3191,Desc="桑拿房的淫乱图片"},
[3192] = {ID=3192,Desc="快到高潮时,他哭了。"},
[3193] = {ID=3193,Desc="賓館女郎"},
[3194] = {ID=3194,Desc="發@@論"},
[3195] = {ID=3195,Desc="亞洲情色網"},
[3196] = {ID=3196,Desc="娘餓比"},
[3197] = {ID=3197,Desc="ㄐ巴"},
[3198] = {ID=3198,Desc="jiejie的穴夹的我好紧小说"},
[3199] = {ID=3199,Desc="黄色小电影"},
[3200] = {ID=3200,Desc="成人午夜激情视频聊天室"},
[3201] = {ID=3201,Desc="从后面插漂亮小穴妹"},
[3202] = {ID=3202,Desc="妳馬的"},
[3203] = {ID=3203,Desc="毛海关总署"},
[3204] = {ID=3204,Desc="和两勇男玩44P"},
[3205] = {ID=3205,Desc="和两勇男玩43P"},
[3206] = {ID=3206,Desc="メイド召しませ"},
[3207] = {ID=3207,Desc="弟弟淫奸姐姐穴"},
[3208] = {ID=3208,Desc="射雕淫女传"},
[3209] = {ID=3209,Desc="拔屄自拍"},
[3210] = {ID=3210,Desc="极品成人激情影院"},
[3211] = {ID=3211,Desc="5街区"},
[3212] = {ID=3212,Desc="和两勇男玩42P"},
[3213] = {ID=3213,Desc="日本人淫乱操淫荡少妇操淫荡meimei"},
[3214] = {ID=3214,Desc="司馬義·鉄力瓦爾地"},
[3215] = {ID=3215,Desc="冯东海"},
[3216] = {ID=3216,Desc="国外美女黄网"},
[3217] = {ID=3217,Desc="肉棒狠狠插嫩穴"},
[3218] = {ID=3218,Desc="毛看牌器"},
[3219] = {ID=3219,Desc="色mm的嫩穴"},
[3220] = {ID=3220,Desc="日韩妹妹嫩穴淫图"},
[3221] = {ID=3221,Desc="如果你未满30周岁请自觉离开。"},
[3222] = {ID=3222,Desc="和两勇男玩41P"},
[3223] = {ID=3223,Desc="你的鸡吧好大啊干的我好爽哦"},
[3224] = {ID=3224,Desc="如果你未满31周岁请自觉离开。"},
[3225] = {ID=3225,Desc="成熟性感大meinv"},
[3226] = {ID=3226,Desc="骚穴"},
[3227] = {ID=3227,Desc="毛尻"},
[3228] = {ID=3228,Desc="毛黄色电影"},
[3229] = {ID=3229,Desc="積存的巨乳妻子積存的巨乳妻子"},
[3230] = {ID=3230,Desc="抽插32岁处女妹妹淫叫不断"},
[3231] = {ID=3231,Desc="淫奸处女穴电影"},
[3232] = {ID=3232,Desc="毛法仑"},
[3233] = {ID=3233,Desc="成人娱乐网"},
[3234] = {ID=3234,Desc="和两勇男玩40P"},
[3235] = {ID=3235,Desc="艳尻"},
[3236] = {ID=3236,Desc="剛比樣子"},
[3237] = {ID=3237,Desc="毛基督"},
[3238] = {ID=3238,Desc="抽插39岁处女妹妹淫叫不断"},
[3239] = {ID=3239,Desc="fuck托管理事会"},
[3240] = {ID=3240,Desc="操波霸"},
[3241] = {ID=3241,Desc="本站所有电影完全免费无需手机注册"},
[3242] = {ID=3242,Desc="和meimei做爱"},
[3243] = {ID=3243,Desc="屄屄"},
[3244] = {ID=3244,Desc="毛鸡掰"},
[3245] = {ID=3245,Desc="賤貨"},
[3246] = {ID=3246,Desc="老二在她湿润的阴道口边摩擦"},
[3247] = {ID=3247,Desc="法*论"},
[3248] = {ID=3248,Desc="毛轮奸"},
[3249] = {ID=3249,Desc="淫电影下载论坛"},
[3250] = {ID=3250,Desc="插我"},
[3251] = {ID=3251,Desc="jiejie的阴道好嫩啊"},
[3252] = {ID=3252,Desc="龟头被舔得又麻又痒"},
[3253] = {ID=3253,Desc="你的小穴好紧┅┅夹┅┅夹得我好舒服"},
[3254] = {ID=3254,Desc="亚洲免费淫色电影下载"},
[3255] = {ID=3255,Desc="毛看棋器"},
[3256] = {ID=3256,Desc="骚屄淫水泛滥"},
[3257] = {ID=3257,Desc="亚洲色妹妹"},
[3258] = {ID=3258,Desc="肉棒插进美穴"},
[3259] = {ID=3259,Desc="长途汽车上的淫乱乘客"},
[3260] = {ID=3260,Desc="少妇偷情"},
[3261] = {ID=3261,Desc="肉棒的抽送"},
[3262] = {ID=3262,Desc="激情小说"},
[3263] = {ID=3263,Desc="顶级影片禁书禁图"},
[3264] = {ID=3264,Desc="制服美妇"},
[3265] = {ID=3265,Desc="又粗又长的肉棒插入阴道里"},
[3266] = {ID=3266,Desc="小澤圓(小沢まどか)的退隱作"},
[3267] = {ID=3267,Desc="激情打炮"},
[3268] = {ID=3268,Desc="毛高校群体事件"},
[3269] = {ID=3269,Desc="吮吸小穴"},
[3270] = {ID=3270,Desc="淫荡少妇穴"},
[3271] = {ID=3271,Desc="动漫激情淫色"},
[3272] = {ID=3272,Desc="成人午夜电影"},
[3273] = {ID=3273,Desc="毛江八"},
[3274] = {ID=3274,Desc="安眠酮"},
[3275] = {ID=3275,Desc="免费午夜成人影院"},
[3276] = {ID=3276,Desc="肉棍狂插嫩穴"},
[3277] = {ID=3277,Desc="毛干妳妈"},
[3278] = {ID=3278,Desc="毛舔西"},
[3279] = {ID=3279,Desc="激情成人视频聊天室"},
[3280] = {ID=3280,Desc="淫液不断从穴里流出"},
[3281] = {ID=3281,Desc="掰开她的小穴"},
[3282] = {ID=3282,Desc="日本淫荡电影"},
[3283] = {ID=3283,Desc="经典免费淫电影下载"},
[3284] = {ID=3284,Desc="色妹妹乱伦理小说"},
[3285] = {ID=3285,Desc="诱惑视频"},
[3286] = {ID=3286,Desc="藏青會"},
[3287] = {ID=3287,Desc="李金华"},
[3288] = {ID=3288,Desc="騷逼"},
[3289] = {ID=3289,Desc="错那吗逼"},
[3290] = {ID=3290,Desc="少妇淫心我要看淫心情迷电影淫心情迷电影"},
[3291] = {ID=3291,Desc="如果你未满34周岁请自觉离开。"},
[3292] = {ID=3292,Desc="激情meimei聊天室"},
[3293] = {ID=3293,Desc="激情美穴"},
[3294] = {ID=3294,Desc="情色俱乐部meinv奸淫。黄色电影裸体电影PP点点激情电影"},
[3295] = {ID=3295,Desc="jiejie被插的好爽"},
[3296] = {ID=3296,Desc="毛窃听器材"},
[3297] = {ID=3297,Desc="jiejie的阴户好嫩啊"},
[3298] = {ID=3298,Desc="大鸡吧在她的小嘴抽送"},
[3299] = {ID=3299,Desc="嘴唇吸小肉缝"},
[3300] = {ID=3300,Desc="毛鸡巴"},
[3301] = {ID=3301,Desc="操78"},
[3302] = {ID=3302,Desc="无套自拍"},
[3303] = {ID=3303,Desc="在线看淫色电影"},
[3304] = {ID=3304,Desc="毛烟草局"},
[3305] = {ID=3305,Desc="meimei嫩穴被狂插"},
[3306] = {ID=3306,Desc="操测绘局"},
[3307] = {ID=3307,Desc="xinguangming鸟你"},
[3308] = {ID=3308,Desc="我操了美丽的女律师"},
[3309] = {ID=3309,Desc="毛干妳娘"},
[3310] = {ID=3310,Desc="毛枪决现场"},
[3311] = {ID=3311,Desc="无码电影"},
[3312] = {ID=3312,Desc="毛纠察员"},
[3313] = {ID=3313,Desc="教你怎样延迟射精28岁以下禁免费淫电影a片"},
[3314] = {ID=3314,Desc="姐姐的穴好大啊"},
[3315] = {ID=3315,Desc="王汉斌"},
[3316] = {ID=3316,Desc="小騷比"},
[3317] = {ID=3317,Desc="姐都快被你搞死了"},
[3318] = {ID=3318,Desc="毛以茎至洞"},
[3319] = {ID=3319,Desc="怎样延迟射精23岁以下禁"},
[3320] = {ID=3320,Desc="好弟弟使劲干姐姐"},
[3321] = {ID=3321,Desc="刘永川"},
[3322] = {ID=3322,Desc="亞洲有碼"},
[3323] = {ID=3323,Desc="前凸后翘"},
[3324] = {ID=3324,Desc="点击观看*林心如做爱*色情电影*免费淫"},
[3325] = {ID=3325,Desc="强奸40岁处女全过程/淫妹阴毛小穴"},
[3326] = {ID=3326,Desc="电影试看片"},
[3327] = {ID=3327,Desc="fuck他祖宗"},
[3328] = {ID=3328,Desc="强奸22岁处女全过程/淫妹阴毛小穴"},
[3329] = {ID=3329,Desc="戴秉囯"},
[3330] = {ID=3330,Desc="白肌美女?琴也"},
[3331] = {ID=3331,Desc="欧美两性淫乱"},
[3332] = {ID=3332,Desc="毛新生网"},
[3333] = {ID=3333,Desc="他母親"},
[3334] = {ID=3334,Desc="床上夫妻激情自拍图"},
[3335] = {ID=3335,Desc="91bb成人小电影"},
[3336] = {ID=3336,Desc="蕩女"},
[3337] = {ID=3337,Desc="熟女颜射"},
[3338] = {ID=3338,Desc="罗礼诗"},
[3339] = {ID=3339,Desc="法@纶"},
[3340] = {ID=3340,Desc="哥哥插入我的小穴"},
[3341] = {ID=3341,Desc="你以为你装屄就能骗我"},
[3342] = {ID=3342,Desc="毛法西斯"},
[3343] = {ID=3343,Desc="台湾电影网龙游龙洲影院日本娱乐性免费电影在线"},
[3344] = {ID=3344,Desc="三个呆婊"},
[3345] = {ID=3345,Desc="淫术炼金士"},
[3346] = {ID=3346,Desc="日本大型黄色美女做爱"},
[3347] = {ID=3347,Desc="欧美淫图"},
[3348] = {ID=3348,Desc="爱抚淫女的阴户"},
[3349] = {ID=3349,Desc="台湾午夜色情"},
[3350] = {ID=3350,Desc="省長兒媳婦"},
[3351] = {ID=3351,Desc="圣角色扮演学园~大泽萌"},
[3352] = {ID=3352,Desc="做愛"},
[3353] = {ID=3353,Desc="fuck天安门"},
[3354] = {ID=3354,Desc="美女发春激情在线电影"},
[3355] = {ID=3355,Desc="法^^纶"},
[3356] = {ID=3356,Desc="香港激情图源成人色情论坛脱衣美女做爱"},
[3357] = {ID=3357,Desc="fuck氵去"},
[3358] = {ID=3358,Desc="卖B发论公"},
[3359] = {ID=3359,Desc="蒙独"},
[3360] = {ID=3360,Desc="狂插淫洞"},
[3361] = {ID=3361,Desc="黄慈萍"},
[3362] = {ID=3362,Desc="导航色站"},
[3363] = {ID=3363,Desc="倪育贤"},
[3364] = {ID=3364,Desc="性爱日记"},
[3365] = {ID=3365,Desc="meinv穴"},
[3366] = {ID=3366,Desc="肉棒在阴唇上摩擦传来快感"},
[3367] = {ID=3367,Desc="色情视频聊天"},
[3368] = {ID=3368,Desc="色狐狸网址"},
[3369] = {ID=3369,Desc="大波粉B"},
[3370] = {ID=3370,Desc="贱种"},
[3371] = {ID=3371,Desc="*法*轮*功*靠"},
[3372] = {ID=3372,Desc="狂插嫂子穴"},
[3373] = {ID=3373,Desc="少妇扒开阴道图"},
[3374] = {ID=3374,Desc="毛佛教"},
[3375] = {ID=3375,Desc="第十六次代表"},
[3376] = {ID=3376,Desc="性奴会"},
[3377] = {ID=3377,Desc="黑社会大姐大性欲很旺盛"},
[3378] = {ID=3378,Desc="激情潮喷"},
[3379] = {ID=3379,Desc="毛色情电影"},
[3380] = {ID=3380,Desc="沃尔开西"},
[3381] = {ID=3381,Desc="激情小說"},
[3382] = {ID=3382,Desc="妈浪女骚"},
[3383] = {ID=3383,Desc="淫欧美淫暴"},
[3384] = {ID=3384,Desc="在线免费观看性感摸特日本性感奶霸图片骚"},
[3385] = {ID=3385,Desc="亚洲激情论坛"},
[3386] = {ID=3386,Desc="激插"},
[3387] = {ID=3387,Desc="龟头顺着肉壁插入她的阴户"},
[3388] = {ID=3388,Desc="阿姨的阴唇好大啊"},
[3389] = {ID=3389,Desc="成人激情午夜"},
[3390] = {ID=3390,Desc="戴秉國"},
[3391] = {ID=3391,Desc="第7色大型黄色网站"},
[3392] = {ID=3392,Desc="蒙獨"},
[3393] = {ID=3393,Desc="姐姐的穴好紧啊"},
[3394] = {ID=3394,Desc="共產主義"},
[3395] = {ID=3395,Desc="小嫩逼"},
[3396] = {ID=3396,Desc="小浪穴┅大鸡巴"},
[3397] = {ID=3397,Desc="fuck杀人犯"},
[3398] = {ID=3398,Desc="毛董贱华"},
[3399] = {ID=3399,Desc="一边一国"},
[3400] = {ID=3400,Desc="成人激情免费电影院"},
[3401] = {ID=3401,Desc="韩联潮"},
[3402] = {ID=3402,Desc="本站10006多部激情电影全部免费试看"},
[3403] = {ID=3403,Desc="毛光明日报"},
[3404] = {ID=3404,Desc="激情妹妹聊天室"},
[3405] = {ID=3405,Desc="………好舒服喔"},
[3406] = {ID=3406,Desc="操操你妈屄"},
[3407] = {ID=3407,Desc="軍國主義"},
[3408] = {ID=3408,Desc="法@綸"},
[3409] = {ID=3409,Desc="蕩婦"},
[3410] = {ID=3410,Desc="六四參加者回憶錄"},
[3411] = {ID=3411,Desc="淫女穴影院"},
[3412] = {ID=3412,Desc="操达赖喇嘛"},
[3413] = {ID=3413,Desc="台湾成人免费情色电影"},
[3414] = {ID=3414,Desc="淫色电影"},
[3415] = {ID=3415,Desc="毛妳妈的"},
[3416] = {ID=3416,Desc="十八岁美女护士电影网站"},
[3417] = {ID=3417,Desc="你的肉棒干"},
[3418] = {ID=3418,Desc="fuck推油"},
[3419] = {ID=3419,Desc="毛小鸡鸡"},
[3420] = {ID=3420,Desc="大鸡巴坚挺插淫穴"},
[3421] = {ID=3421,Desc="新疆独立"},
[3422] = {ID=3422,Desc="尹庆民"},
[3423] = {ID=3423,Desc="d7se淫色穴图片和美女发春激情3级片试看"},
[3424] = {ID=3424,Desc="(ATHENA)奥様欲情日記"},
[3425] = {ID=3425,Desc="网址之家"},
[3426] = {ID=3426,Desc="野性姐妹花"},
[3427] = {ID=3427,Desc="法^^綸"},
[3428] = {ID=3428,Desc="毛洗脑班"},
[3429] = {ID=3429,Desc="外**掛"},
[3430] = {ID=3430,Desc="夫妇乐园"},
[3431] = {ID=3431,Desc="亚洲成人激情淫影院"},
[3432] = {ID=3432,Desc="毛联易互动"},
[3433] = {ID=3433,Desc="日本激情动漫"},
[3434] = {ID=3434,Desc="肏穴"},
[3435] = {ID=3435,Desc="驶你娘"},
[3436] = {ID=3436,Desc="虎虎虎~淫秽的身体"},
[3437] = {ID=3437,Desc="口淫"},
[3438] = {ID=3438,Desc="狂操穴喷出阴精"},
[3439] = {ID=3439,Desc="所盗摄护士jiejie性感美腿图"},
[3440] = {ID=3440,Desc="来插我"},
[3441] = {ID=3441,Desc="激情淫洞小说"},
[3442] = {ID=3442,Desc="处女阴道特写爽图"},
[3443] = {ID=3443,Desc="本站10006多部激情电影全部免费试看三天"},
[3444] = {ID=3444,Desc="徐才厚"},
[3445] = {ID=3445,Desc="ㄐ八"},
[3446] = {ID=3446,Desc="在线淫穴"},
[3447] = {ID=3447,Desc="午夜激情电影网"},
[3448] = {ID=3448,Desc="自由亚洲电台"},
[3449] = {ID=3449,Desc="操机掰"},
[3450] = {ID=3450,Desc="毛计生委"},
[3451] = {ID=3451,Desc="贯通两极法"},
[3452] = {ID=3452,Desc="干妳马"},
[3453] = {ID=3453,Desc="發$侖"},
[3454] = {ID=3454,Desc="日本暴淫网"},
[3455] = {ID=3455,Desc="情色成人"},
[3456] = {ID=3456,Desc="濕了還說不要"},
[3457] = {ID=3457,Desc="臭作"},
[3458] = {ID=3458,Desc="三個代婊"},
[3459] = {ID=3459,Desc="肉穴"},
[3460] = {ID=3460,Desc="舔雞巴"},
[3461] = {ID=3461,Desc="温柔女孩操屄竟如此陶醉"},
[3462] = {ID=3462,Desc="李小朋"},
[3463] = {ID=3463,Desc="色色五月天"},
[3464] = {ID=3464,Desc="我扒开了她的阴道"},
[3465] = {ID=3465,Desc="肉棒插入小姨的肉縫"},
[3466] = {ID=3466,Desc="淫乱工作"},
[3467] = {ID=3467,Desc="H動漫"},
[3468] = {ID=3468,Desc="美女做爱激情电影"},
[3469] = {ID=3469,Desc="公审李鹏"},
[3470] = {ID=3470,Desc="免费淫色强奸电影"},
[3471] = {ID=3471,Desc="成人午夜场,吸精痴女护士"},
[3472] = {ID=3472,Desc="露陰照"},
[3473] = {ID=3473,Desc="超级色情网站"},
[3474] = {ID=3474,Desc="奴畜抄"},
[3475] = {ID=3475,Desc="自拍写真"},
[3476] = {ID=3476,Desc="Bitch"},
[3477] = {ID=3477,Desc="外**挂"},
[3478] = {ID=3478,Desc="和两勇男玩50P"},
[3479] = {ID=3479,Desc="抽插29岁处女meimei淫叫不断"},
[3480] = {ID=3480,Desc="淫之插穴虐待破处流血"},
[3481] = {ID=3481,Desc="众明星乱淫禁书"},
[3482] = {ID=3482,Desc="现役看护妇电影下载"},
[3483] = {ID=3483,Desc="江湖淫娘"},
[3484] = {ID=3484,Desc="pp244淫色导航"},
[3485] = {ID=3485,Desc="小泉彩~黑人体内射精连续20发"},
[3486] = {ID=3486,Desc="它妈的"},
[3487] = {ID=3487,Desc="钱其琛"},
[3488] = {ID=3488,Desc="發**掄"},
[3489] = {ID=3489,Desc="母奸"},
[3490] = {ID=3490,Desc="內射美婦"},
[3491] = {ID=3491,Desc="外—挂"},
[3492] = {ID=3492,Desc="淫女信息"},
[3493] = {ID=3493,Desc="fuck死gd"},
[3494] = {ID=3494,Desc="毛抑制剂"},
[3495] = {ID=3495,Desc="是鸡"},
[3496] = {ID=3496,Desc="大陆性美女淫穴"},
[3497] = {ID=3497,Desc="狂操操小小姨穴"},
[3498] = {ID=3498,Desc="fuck死gm"},
[3499] = {ID=3499,Desc="幼交图嫩女兽交"},
[3500] = {ID=3500,Desc="情色文學"},
[3501] = {ID=3501,Desc="鮮族"},
[3502] = {ID=3502,Desc="中文情色网址导航"},
[3503] = {ID=3503,Desc="多党执政"},
[3504] = {ID=3504,Desc="少妇被鸡吧操"},
[3505] = {ID=3505,Desc="和两勇男玩52P"},
[3506] = {ID=3506,Desc="情色文学"},
[3507] = {ID=3507,Desc="含住我的小鸡鸡"},
[3508] = {ID=3508,Desc="臺灣帝國"},
[3509] = {ID=3509,Desc="免费淫电影网址大全"},
[3510] = {ID=3510,Desc="操你祖宗"},
[3511] = {ID=3511,Desc="龜投"},
[3512] = {ID=3512,Desc="meinv护士被奸"},
[3513] = {ID=3513,Desc="毛塞你老母"},
[3514] = {ID=3514,Desc="紅火女郎~真央~壓倒性的震撼力~汙染女人的快感"},
[3515] = {ID=3515,Desc="嫂子的阴道好大啊"},
[3516] = {ID=3516,Desc="色迷城"},
[3517] = {ID=3517,Desc="宁王府淫色"},
[3518] = {ID=3518,Desc="和两勇男玩51P"},
[3519] = {ID=3519,Desc="操表妹操"},
[3520] = {ID=3520,Desc="王冶坪"},
[3521] = {ID=3521,Desc="梅花屄"},
[3522] = {ID=3522,Desc="新疆打砸抢"},
[3523] = {ID=3523,Desc="豬容基"},
[3524] = {ID=3524,Desc="淫荡少女穴"},
[3525] = {ID=3525,Desc="激情淫色"},
[3526] = {ID=3526,Desc="穴淫"},
[3527] = {ID=3527,Desc="贱B"},
[3528] = {ID=3528,Desc="和阿姨淫穴"},
[3529] = {ID=3529,Desc="香港成人激情影院"},
[3530] = {ID=3530,Desc="外—掛"},
[3531] = {ID=3531,Desc="作ai"},
[3532] = {ID=3532,Desc="亞洲淫图"},
[3533] = {ID=3533,Desc="黨中央"},
[3534] = {ID=3534,Desc="干妹妹小穴"},
[3535] = {ID=3535,Desc="我和小啊姨在车上做"},
[3536] = {ID=3536,Desc="又肥又嫩的小骚屄儿"},
[3537] = {ID=3537,Desc="华西列夫斯基"},
[3538] = {ID=3538,Desc="和两勇男玩53P"},
[3539] = {ID=3539,Desc="国际足坛五大"},
[3540] = {ID=3540,Desc="成人激情图库"},
[3541] = {ID=3541,Desc="毛李弘旨"},
[3542] = {ID=3542,Desc="嫩B弓虽女干"},
[3543] = {ID=3543,Desc="龟头碰到子宫口"},
[3544] = {ID=3544,Desc="制服美婦"},
[3545] = {ID=3545,Desc="发**纶"},
[3546] = {ID=3546,Desc="又大又肥的阴道"},
[3547] = {ID=3547,Desc="毛官逼民反"},
[3548] = {ID=3548,Desc="狂插小穴"},
[3549] = {ID=3549,Desc="穴海"},
[3550] = {ID=3550,Desc="妹妹社区淫色"},
[3551] = {ID=3551,Desc="征服小姐"},
[3552] = {ID=3552,Desc="龟投"},
[3553] = {ID=3553,Desc="战牌靠"},
[3554] = {ID=3554,Desc="古柯"},
[3555] = {ID=3555,Desc="羅幹"},
[3556] = {ID=3556,Desc="淫荡教师穴"},
[3557] = {ID=3557,Desc="吹喇叭"},
[3558] = {ID=3558,Desc="大鸡巴顶进meimei的小穴"},
[3559] = {ID=3559,Desc="淫妇自慰"},
[3560] = {ID=3560,Desc="套弄鸡巴"},
[3561] = {ID=3561,Desc="笨屄"},
[3562] = {ID=3562,Desc="獸奸"},
[3563] = {ID=3563,Desc="學生愛國運動正名"},
[3564] = {ID=3564,Desc="激情小浪穴"},
[3565] = {ID=3565,Desc="法轮工"},
[3566] = {ID=3566,Desc="淫城乱伦屋"},
[3567] = {ID=3567,Desc="白嫩meinv穴"},
[3568] = {ID=3568,Desc="新斷線"},
[3569] = {ID=3569,Desc="淫水横流"},
[3570] = {ID=3570,Desc="摇头丸"},
[3571] = {ID=3571,Desc="滚那吗瘟比"},
[3572] = {ID=3572,Desc="女人被迷奸的时候也很爽"},
[3573] = {ID=3573,Desc="大鸡巴在她的小嘴抽送"},
[3574] = {ID=3574,Desc="美女与猪性交电影"},
[3575] = {ID=3575,Desc="经插进我的穴了"},
[3576] = {ID=3576,Desc="卡通美女淫乱图"},
[3577] = {ID=3577,Desc="百家性大型黄站"},
[3578] = {ID=3578,Desc="穴爽"},
[3579] = {ID=3579,Desc="激情最新网址"},
[3580] = {ID=3580,Desc="肉壁包容着鸡吧很舒服啊"},
[3581] = {ID=3581,Desc="毛分裂祖国"},
[3582] = {ID=3582,Desc="毛龟孙子"},
[3583] = {ID=3583,Desc="黄色小说"},
[3584] = {ID=3584,Desc="妹妹淫图"},
[3585] = {ID=3585,Desc="毛麻醉乙醚"},
[3586] = {ID=3586,Desc="花瓣正在潺潺地渗出蜜汁"},
[3587] = {ID=3587,Desc="我和jiejie的淫乱史"},
[3588] = {ID=3588,Desc="统独"},
[3589] = {ID=3589,Desc="插妻子小穴"},
[3590] = {ID=3590,Desc="旅館自拍"},
[3591] = {ID=3591,Desc="雞巴"},
[3592] = {ID=3592,Desc="他媽ㄉ王八蛋"},
[3593] = {ID=3593,Desc="法~~綸"},
[3594] = {ID=3594,Desc="本站10001多部激情电影全部免费试看"},
[3595] = {ID=3595,Desc="李继耐"},
[3596] = {ID=3596,Desc="毛摩门教"},
[3597] = {ID=3597,Desc="操插妳"},
[3598] = {ID=3598,Desc="顾顺章"},
[3599] = {ID=3599,Desc="六四参加者"},
[3600] = {ID=3600,Desc="日本激情淫色动画片"},
[3601] = {ID=3601,Desc="亀頭"},
[3602] = {ID=3602,Desc="淫奸表姐论坛"},
[3603] = {ID=3603,Desc="森田めぐみ"},
[3604] = {ID=3604,Desc="免费性爱电影"},
[3605] = {ID=3605,Desc="阴道夹的我好紧"},
[3606] = {ID=3606,Desc="淫奸表妹"},
[3607] = {ID=3607,Desc="在线淫影院"},
[3608] = {ID=3608,Desc="阳物"},
[3609] = {ID=3609,Desc="香港成人电影网五月成人情色论坛"},
[3610] = {ID=3610,Desc="美女极品嫩穴"},
[3611] = {ID=3611,Desc="多黨執政"},
[3612] = {ID=3612,Desc="毛卖国求荣"},
[3613] = {ID=3613,Desc="在线免费观看黄片A片"},
[3614] = {ID=3614,Desc="色情网址网上做爱"},
[3615] = {ID=3615,Desc="┅┅别再磨了┅┅痒死啦!┅┅快"},
[3616] = {ID=3616,Desc="粗大的肉棒………我受不了"},
[3617] = {ID=3617,Desc="毒龍舔腳"},
[3618] = {ID=3618,Desc="爱妻淫穴"},
[3619] = {ID=3619,Desc="熟女亂倫"},
[3620] = {ID=3620,Desc="奸淫……好舒服"},
[3621] = {ID=3621,Desc="少妇房中自淫,和两勇男玩17P,操得直叫爽"},
[3622] = {ID=3622,Desc="淫奸护士姐姐穴"},
[3623] = {ID=3623,Desc="情色电影网站"},
[3624] = {ID=3624,Desc="民主墙"},
[3625] = {ID=3625,Desc="操你老母"},
[3626] = {ID=3626,Desc="乳頭"},
[3627] = {ID=3627,Desc="肉簫"},
[3628] = {ID=3628,Desc="免费成人激情电影"},
[3629] = {ID=3629,Desc="104bb成人小电影"},
[3630] = {ID=3630,Desc="姐姐的肥穴"},
[3631] = {ID=3631,Desc="曹剛川"},
[3632] = {ID=3632,Desc="淫奸美女"},
[3633] = {ID=3633,Desc="爽死你淫图"},
[3634] = {ID=3634,Desc="插入小姨的子宫"},
[3635] = {ID=3635,Desc="猛插"},
[3636] = {ID=3636,Desc="荣誉之战I--钢甲洪流"},
[3637] = {ID=3637,Desc="罗富和"},
[3638] = {ID=3638,Desc="榮譽之戰I--鋼甲洪流"},
[3639] = {ID=3639,Desc="馒头屄"},
[3640] = {ID=3640,Desc="氣性坏疽病"},
[3641] = {ID=3641,Desc="妖艷醫生"},
[3642] = {ID=3642,Desc="陰毛"},
[3643] = {ID=3643,Desc="春色AV激情片"},
[3644] = {ID=3644,Desc="18DY性爱电影"},
[3645] = {ID=3645,Desc="賽你老母"},
[3646] = {ID=3646,Desc="让你操"},
[3647] = {ID=3647,Desc="淫女淫洞"},
[3648] = {ID=3648,Desc="刘澜涛"},
[3649] = {ID=3649,Desc="抽插26岁处女妹妹淫叫不断"},
[3650] = {ID=3650,Desc="欧美淫女在线看电影"},
[3651] = {ID=3651,Desc="碧雪情天"},
[3652] = {ID=3652,Desc="亚洲淫色网站"},
[3653] = {ID=3653,Desc="极品成人A片无码"},
[3654] = {ID=3654,Desc="肉棒插到花心深处"},
[3655] = {ID=3655,Desc="毛麻醉枪"},
[3656] = {ID=3656,Desc="fuck台独"},
[3657] = {ID=3657,Desc="狂插日本学生妹"},
[3658] = {ID=3658,Desc="怪獸總動員"},
[3659] = {ID=3659,Desc="淫女老师"},
[3660] = {ID=3660,Desc="毛鸡奸"},
[3661] = {ID=3661,Desc="全免费淫电影"},
[3662] = {ID=3662,Desc="干你良"},
[3663] = {ID=3663,Desc="街头篮球"},
[3664] = {ID=3664,Desc="政治打击"},
[3665] = {ID=3665,Desc="瀨名"},
[3666] = {ID=3666,Desc="露出了娇小鲜嫩的阴道"},
[3667] = {ID=3667,Desc="吳德"},
[3668] = {ID=3668,Desc="李禄"},
[3669] = {ID=3669,Desc="fuck世界日报"},
[3670] = {ID=3670,Desc="抽插55岁处女妹妹淫叫不断"},
[3671] = {ID=3671,Desc="毛王昊"},
[3672] = {ID=3672,Desc="陰水"},
[3673] = {ID=3673,Desc="fofg媽的"},
[3674] = {ID=3674,Desc="幹的你"},
[3675] = {ID=3675,Desc="肉箫"},
[3676] = {ID=3676,Desc="發*侖"},
[3677] = {ID=3677,Desc="毛税务总局"},
[3678] = {ID=3678,Desc="劉奇葆"},
[3679] = {ID=3679,Desc="騷貨"},
[3680] = {ID=3680,Desc="fuck受虐狂"},
[3681] = {ID=3681,Desc="易丹轩"},
[3682] = {ID=3682,Desc="免费淫女看电影网站"},
[3683] = {ID=3683,Desc="特码"},
[3684] = {ID=3684,Desc="X妈牛比"},
[3685] = {ID=3685,Desc="公子开"},
[3686] = {ID=3686,Desc="日朱骏"},
[3687] = {ID=3687,Desc="蓬浪"},
[3688] = {ID=3688,Desc="王子傑"},
[3689] = {ID=3689,Desc="淫护士"},
[3690] = {ID=3690,Desc="插妹妹小穴"},
[3691] = {ID=3691,Desc="手记注册日韩5010部激情电影"},
[3692] = {ID=3692,Desc="毛李瑞环"},
[3693] = {ID=3693,Desc="李鹏*"},
[3694] = {ID=3694,Desc="许世友"},
[3695] = {ID=3695,Desc="吴弘达"},
[3696] = {ID=3696,Desc="好肥的阴户"},
[3697] = {ID=3697,Desc="六四事件"},
[3698] = {ID=3698,Desc="瞒报"},
[3699] = {ID=3699,Desc="群奸"},
[3700] = {ID=3700,Desc="手指扒开红嫩的阴唇"},
[3701] = {ID=3701,Desc="毛轮功"},
[3702] = {ID=3702,Desc="鹿城最新娱乐小说"},
[3703] = {ID=3703,Desc="性饥渴"},
[3704] = {ID=3704,Desc="捏你奶子"},
[3705] = {ID=3705,Desc="毛性爱"},
[3706] = {ID=3706,Desc="妹妹黄站"},
[3707] = {ID=3707,Desc="艷舞淫業"},
[3708] = {ID=3708,Desc="華國鋒"},
[3709] = {ID=3709,Desc="最强美乳おたま初解禁"},
[3710] = {ID=3710,Desc="成人之家"},
[3711] = {ID=3711,Desc="無碼精選"},
[3712] = {ID=3712,Desc="阴茎把子宫顶烂"},
[3713] = {ID=3713,Desc="最新99bb)有名女优~及川奈央-痴女教师"},
[3714] = {ID=3714,Desc="你妈了妹"},
[3715] = {ID=3715,Desc="无界浏览"},
[3716] = {ID=3716,Desc="錢運錄"},
[3717] = {ID=3717,Desc="捅比"},
[3718] = {ID=3718,Desc="中青旅创格"},
[3719] = {ID=3719,Desc="免费试看激情成人电影"},
[3720] = {ID=3720,Desc="鸡吧插进肥嫩的小骚屄"},
[3721] = {ID=3721,Desc="BT激情"},
[3722] = {ID=3722,Desc="艳星诱惑"},
[3723] = {ID=3723,Desc="操嫩穴"},
[3724] = {ID=3724,Desc="日本熟母"},
[3725] = {ID=3725,Desc="操你大爷"},
[3726] = {ID=3726,Desc="强奸23岁处女全过程/淫妹阴毛小穴"},
[3727] = {ID=3727,Desc="大纪元新闻网"},
[3728] = {ID=3728,Desc="免费成人情色激情视频聊天"},
[3729] = {ID=3729,Desc="肉缝"},
[3730] = {ID=3730,Desc="黄祸"},
[3731] = {ID=3731,Desc="干她妈"},
[3732] = {ID=3732,Desc="插穴图"},
[3733] = {ID=3733,Desc="整根阴茎没入她空虚已久的阴户"},
[3734] = {ID=3734,Desc="法$$淪"},
[3735] = {ID=3735,Desc="日本美女吃精图"},
[3736] = {ID=3736,Desc="发沦"},
[3737] = {ID=3737,Desc="强奸28岁处女全过程/淫妹阴毛小穴"},
[3738] = {ID=3738,Desc="法@@綸"},
[3739] = {ID=3739,Desc="毛欢城互动"},
[3740] = {ID=3740,Desc="95bb成人小电影"},
[3741] = {ID=3741,Desc="亚洲激情网"},
[3742] = {ID=3742,Desc="我的小穴好爽"},
[3743] = {ID=3743,Desc="免费在线淫奸mm电影"},
[3744] = {ID=3744,Desc="換妻"},
[3745] = {ID=3745,Desc="毛梅花网"},
[3746] = {ID=3746,Desc="紫彩乃潮吹赛红音"},
[3747] = {ID=3747,Desc="龟头挤进了jiejie的小穴"},
[3748] = {ID=3748,Desc="成人色情网站"},
[3749] = {ID=3749,Desc="毛十八摸"},
[3750] = {ID=3750,Desc="你它妈的"},
[3751] = {ID=3751,Desc="手指对她阴蒂的刺激"},
[3752] = {ID=3752,Desc="中条英机"},
[3753] = {ID=3753,Desc="尉健行"},
[3754] = {ID=3754,Desc="免费电影未亡人柔肌"},
[3755] = {ID=3755,Desc="国际法院"},
[3756] = {ID=3756,Desc="王军涛"},
[3757] = {ID=3757,Desc="肛门拳交"},
[3758] = {ID=3758,Desc="毛受虐狂"},
[3759] = {ID=3759,Desc="吴德"},
[3760] = {ID=3760,Desc="銀民吧"},
[3761] = {ID=3761,Desc="2。23會議"},
[3762] = {ID=3762,Desc="教你如何鉴别处男处女的方法(组图)18岁禁看"},
[3763] = {ID=3763,Desc="操插你妈"},
[3764] = {ID=3764,Desc="少妇房中自淫,和两勇男玩8P,操得直叫爽"},
[3765] = {ID=3765,Desc="干洋妞穴"},
[3766] = {ID=3766,Desc="毛鸠屎"},
[3767] = {ID=3767,Desc="出售此号"},
[3768] = {ID=3768,Desc="粗鸡巴"},
[3769] = {ID=3769,Desc="和妹妹肏屄"},
[3770] = {ID=3770,Desc="淫乱小说"},
[3771] = {ID=3771,Desc="毛卵"},
[3772] = {ID=3772,Desc="台湾18岁成人"},
[3773] = {ID=3773,Desc="張宏堡"},
[3774] = {ID=3774,Desc="日本精選無碼DVD"},
[3775] = {ID=3775,Desc="毛杀人犯"},
[3776] = {ID=3776,Desc="我将肉棒狠狠插入漂亮的老师小淫嘴抽插数十次"},
[3777] = {ID=3777,Desc="强奸34岁处女全过程/淫妹阴毛小穴"},
[3778] = {ID=3778,Desc="少妇房中自淫,和两勇男玩19P,操得直叫爽"},
[3779] = {ID=3779,Desc="淫水横溢"},
[3780] = {ID=3780,Desc="淫女吃尿"},
[3781] = {ID=3781,Desc="嫩缝"},
[3782] = {ID=3782,Desc="外··挂"},
[3783] = {ID=3783,Desc="fuck舔西"},
[3784] = {ID=3784,Desc="亞洲淫娃"},
[3785] = {ID=3785,Desc="人体炸弹"},
[3786] = {ID=3786,Desc="法^纶"},
[3787] = {ID=3787,Desc="亲亲小芳"},
[3788] = {ID=3788,Desc="毒品"},
[3789] = {ID=3789,Desc="插妳"},
[3790] = {ID=3790,Desc="教你怎样延迟射精22岁以下禁免费淫电影a片"},
[3791] = {ID=3791,Desc="fuck他妈的"},
[3792] = {ID=3792,Desc="天安门大屠杀"},
[3793] = {ID=3793,Desc="痛批政法委"},
[3794] = {ID=3794,Desc="毛南联盟"},
[3795] = {ID=3795,Desc="肉縫"},
[3796] = {ID=3796,Desc="蒋中正"},
[3797] = {ID=3797,Desc="毛独立"},
[3798] = {ID=3798,Desc="免费成人A片"},
[3799] = {ID=3799,Desc="黑省副省長"},
[3800] = {ID=3800,Desc="封从德"},
[3801] = {ID=3801,Desc="淫欲日本"},
[3802] = {ID=3802,Desc="黑省副省长"},
[3803] = {ID=3803,Desc="淫贱妹妹贴图论坛"},
[3804] = {ID=3804,Desc="發^^論"},
[3805] = {ID=3805,Desc="淫女浪穴"},
[3806] = {ID=3806,Desc="内衣模特露点走光"},
[3807] = {ID=3807,Desc="成人激情聊天室"},
[3808] = {ID=3808,Desc="發@侖"},
[3809] = {ID=3809,Desc="韓國自拍無碼系列之二)"},
[3810] = {ID=3810,Desc="色情电影"},
[3811] = {ID=3811,Desc="毛台独"},
[3812] = {ID=3812,Desc="妈……你的小穴好插"},
[3813] = {ID=3813,Desc="江绵恒"},
[3814] = {ID=3814,Desc="东西南北论坛"},
[3815] = {ID=3815,Desc="曼施坦因"},
[3816] = {ID=3816,Desc="成人激情淫洞网站"},
[3817] = {ID=3817,Desc="中国孤儿院"},
[3818] = {ID=3818,Desc="淫色贴图"},
[3819] = {ID=3819,Desc="胡緊套"},
[3820] = {ID=3820,Desc="姐姐的屄"},
[3821] = {ID=3821,Desc="长身丝袜meinv~赤く烂れたマンコが痛"},
[3822] = {ID=3822,Desc="狂插淫荡女护士"},
[3823] = {ID=3823,Desc="毛玉杵"},
[3824] = {ID=3824,Desc="亚洲艳情男女图吧"},
[3825] = {ID=3825,Desc="法@@纶"},
[3826] = {ID=3826,Desc="瑪雅網"},
[3827] = {ID=3827,Desc="求你插插我吧好痒"},
[3828] = {ID=3828,Desc="台湾民國"},
[3829] = {ID=3829,Desc="法耣功"},
[3830] = {ID=3830,Desc="骚逼大型成人色站"},
[3831] = {ID=3831,Desc="教你怎样延迟射精26岁以下禁免费淫电影a片"},
[3832] = {ID=3832,Desc="我淫我色淫色导航"},
[3833] = {ID=3833,Desc="淫乱小姨子小说"},
[3834] = {ID=3834,Desc="令人喷血的春宫108姿势"},
[3835] = {ID=3835,Desc="法~~纶"},
[3836] = {ID=3836,Desc="台湾民国"},
[3837] = {ID=3837,Desc="法磮功"},
[3838] = {ID=3838,Desc="毛叶剑英"},
[3839] = {ID=3839,Desc="猪操"},
[3840] = {ID=3840,Desc="胡紧涛"},
[3841] = {ID=3841,Desc="龟头压挤阴道"},
[3842] = {ID=3842,Desc="用劲吸吮咬舐着湿润的穴肉"},
[3843] = {ID=3843,Desc="k粉"},
[3844] = {ID=3844,Desc="手记注册日韩5022部激情电影"},
[3845] = {ID=3845,Desc="少女床上自拍"},
[3846] = {ID=3846,Desc="狂插日本美女护士"},
[3847] = {ID=3847,Desc="色mm激情论坛"},
[3848] = {ID=3848,Desc="嫩縫"},
[3849] = {ID=3849,Desc="李少民"},
[3850] = {ID=3850,Desc="陳曉寧"},
[3851] = {ID=3851,Desc="毛小泉"},
[3852] = {ID=3852,Desc="法^綸"},
[3853] = {ID=3853,Desc="江核心"},
[3854] = {ID=3854,Desc="林长盛"},
[3855] = {ID=3855,Desc="89年的斗争"},
[3856] = {ID=3856,Desc="廁所偷拍"},
[3857] = {ID=3857,Desc="完全免费淫电影"},
[3858] = {ID=3858,Desc="肉棒伸入她的口中"},
[3859] = {ID=3859,Desc="幼女玩性"},
[3860] = {ID=3860,Desc="法倫"},
[3861] = {ID=3861,Desc="Image)ヌーディストGALビーチ"},
[3862] = {ID=3862,Desc="天天干贴图"},
[3863] = {ID=3863,Desc="晚年周恩来"},
[3864] = {ID=3864,Desc="淫妻的穴"},
[3865] = {ID=3865,Desc="大鸡巴好趐┅┅趐┅┅快┅┅别揉了"},
[3866] = {ID=3866,Desc="妈个b"},
[3867] = {ID=3867,Desc="咬着龟头"},
[3868] = {ID=3868,Desc="操操你八辈祖宗"},
[3869] = {ID=3869,Desc="唐人街情色导航"},
[3870] = {ID=3870,Desc="成人两性电影"},
[3871] = {ID=3871,Desc="迪里夏提"},
[3872] = {ID=3872,Desc="毛游行"},
[3873] = {ID=3873,Desc="午夜电影"},
[3874] = {ID=3874,Desc="熟女乱伦"},
[3875] = {ID=3875,Desc="解放軍306醫院"},
[3876] = {ID=3876,Desc="PP电影"},
[3877] = {ID=3877,Desc="八九学潮"},
[3878] = {ID=3878,Desc="┅干的妈好爽"},
[3879] = {ID=3879,Desc="色情网站"},
[3880] = {ID=3880,Desc="教你怎样延迟射精18岁以下禁"},
[3881] = {ID=3881,Desc="meinv口含鸡吧玩内射"},
[3882] = {ID=3882,Desc="操操gM"},
[3883] = {ID=3883,Desc="走光偷拍"},
[3884] = {ID=3884,Desc="無碼淫女"},
[3885] = {ID=3885,Desc="淫民欧美激情贴图"},
[3886] = {ID=3886,Desc="好弟弟使劲干jiejie"},
[3887] = {ID=3887,Desc="侬着冈峦"},
[3888] = {ID=3888,Desc="淫女疯狂偷情"},
[3889] = {ID=3889,Desc="毛卖ID"},
[3890] = {ID=3890,Desc="狂插日本少妇"},
[3891] = {ID=3891,Desc="屎妳娘"},
[3892] = {ID=3892,Desc="fuck傻子"},
[3893] = {ID=3893,Desc="粉嫩美少女穴让你插"},
[3894] = {ID=3894,Desc="毛淫"},
[3895] = {ID=3895,Desc="肉棒在姐姐的阴道里"},
[3896] = {ID=3896,Desc="操mm嫩穴"},
[3897] = {ID=3897,Desc="甜嫩穴"},
[3898] = {ID=3898,Desc="民主党派"},
[3899] = {ID=3899,Desc="大花B"},
[3900] = {ID=3900,Desc="法侖"},
[3901] = {ID=3901,Desc="插小穴的快感"},
[3902] = {ID=3902,Desc="狗b新光明"},
[3903] = {ID=3903,Desc="香港色情影星meinv裸体"},
[3904] = {ID=3904,Desc="嫩鲍"},
[3905] = {ID=3905,Desc="小姨的穴"},
[3906] = {ID=3906,Desc="幹妳馬"},
[3907] = {ID=3907,Desc="亚洲激情片"},
[3908] = {ID=3908,Desc="亚洲情色"},
[3909] = {ID=3909,Desc="毛新闻办"},
[3910] = {ID=3910,Desc="赵海青"},
[3911] = {ID=3911,Desc="台湾18dy电影"},
[3912] = {ID=3912,Desc="陈至立"},
[3913] = {ID=3913,Desc="含屌"},
[3914] = {ID=3914,Desc="操吃屎"},
[3915] = {ID=3915,Desc="浪女叫春成人招妓网色性网电影性暴力电影"},
[3916] = {ID=3916,Desc="fuck吴仪"},
[3917] = {ID=3917,Desc="午夜激情"},
[3918] = {ID=3918,Desc="骚洞"},
[3919] = {ID=3919,Desc="成人激情论坛"},
[3920] = {ID=3920,Desc="春光外泻"},
[3921] = {ID=3921,Desc="插她"},
[3922] = {ID=3922,Desc="法伦"},
[3923] = {ID=3923,Desc="免费电影妖艷醫生"},
[3924] = {ID=3924,Desc="龟奴"},
[3925] = {ID=3925,Desc="毛傻卵"},
[3926] = {ID=3926,Desc="绝品meinvが恍惚颜の绝顶快感"},
[3927] = {ID=3927,Desc="毛邮政局"},
[3928] = {ID=3928,Desc="外*掛"},
[3929] = {ID=3929,Desc="免费激情论坛"},
[3930] = {ID=3930,Desc="外/挂"},
[3931] = {ID=3931,Desc="美女护士被奸"},
[3932] = {ID=3932,Desc="预审查"},
[3933] = {ID=3933,Desc="胡乔木"},
[3934] = {ID=3934,Desc="fuck小泉"},
[3935] = {ID=3935,Desc="插的jiejie好爽"},
[3936] = {ID=3936,Desc="熟女顏射"},
[3937] = {ID=3937,Desc="亚洲情色淫穴"},
[3938] = {ID=3938,Desc="狂插日本meinv护士"},
[3939] = {ID=3939,Desc="骚母"},
[3940] = {ID=3940,Desc="用手指分开两片肥嫩的阴唇,露出了那娇小鲜嫩的小屄洞"},
[3941] = {ID=3941,Desc="水扁"},
[3942] = {ID=3942,Desc="司马璐"},
[3943] = {ID=3943,Desc="龟头对准菊门"},
[3944] = {ID=3944,Desc="袁纯清"},
[3945] = {ID=3945,Desc="插你丫的"},
[3946] = {ID=3946,Desc="法仑"},
[3947] = {ID=3947,Desc="毛三民主义"},
[3948] = {ID=3948,Desc="外-挂"},
[3949] = {ID=3949,Desc="粉红色的大阴唇正紧紧的闭合着"},
[3950] = {ID=3950,Desc="奸淫空姐"},
[3951] = {ID=3951,Desc="漂亮。女記者採訪時被逼姦"},
[3952] = {ID=3952,Desc="屄儿好┅┅好爽!┅┅好舒服!┅┅"},
[3953] = {ID=3953,Desc="毛性无能"},
[3954] = {ID=3954,Desc="日逼"},
[3955] = {ID=3955,Desc="18岁淫乱"},
[3956] = {ID=3956,Desc="外/掛"},
[3957] = {ID=3957,Desc="激情淫穴导航"},
[3958] = {ID=3958,Desc="足腳交"},
[3959] = {ID=3959,Desc="儿子淫奸jiejie"},
[3960] = {ID=3960,Desc="对著暴露的美穴狂插"},
[3961] = {ID=3961,Desc="法$$论"},
[3962] = {ID=3962,Desc="聶榮臻"},
[3963] = {ID=3963,Desc="草你妈靠"},
[3964] = {ID=3964,Desc="Bao皮"},
[3965] = {ID=3965,Desc="三反五反"},
[3966] = {ID=3966,Desc="龜头"},
[3967] = {ID=3967,Desc="强制浣肠"},
[3968] = {ID=3968,Desc="淫兽学园"},
[3969] = {ID=3969,Desc="韩日成人激情电影"},
[3970] = {ID=3970,Desc="把肉茎舔乾净"},
[3971] = {ID=3971,Desc="法沦功"},
[3972] = {ID=3972,Desc="法婨功"},
[3973] = {ID=3973,Desc="龟头"},
[3974] = {ID=3974,Desc="毛恐怖主义"},
[3975] = {ID=3975,Desc="天安門母親"},
[3976] = {ID=3976,Desc="猖妓"},
[3977] = {ID=3977,Desc="外-掛"},
[3978] = {ID=3978,Desc="毛傻吊"},
[3979] = {ID=3979,Desc="朱林"},
[3980] = {ID=3980,Desc="韩启德"},
[3981] = {ID=3981,Desc="色站导航"},
[3982] = {ID=3982,Desc="大鸡巴顶进妹妹的小穴"},
[3983] = {ID=3983,Desc="你馬的"},
[3984] = {ID=3984,Desc="法@@掄"},
[3985] = {ID=3985,Desc="香港激情性爱影院"},
[3986] = {ID=3986,Desc="練完瑜伽功做?才爽呢(國產3p)"},
[3987] = {ID=3987,Desc="变态心魔女仲村"},
[3988] = {ID=3988,Desc="骚水"},
[3989] = {ID=3989,Desc="龜奴"},
[3990] = {ID=3990,Desc="色情聊天室"},
[3991] = {ID=3991,Desc="騷穴"},
[3992] = {ID=3992,Desc="成人圖片"},
[3993] = {ID=3993,Desc="拉登"},
[3994] = {ID=3994,Desc="蔣彥永上書"},
[3995] = {ID=3995,Desc="綜聯數碼"},
[3996] = {ID=3996,Desc="色情五月天"},
[3997] = {ID=3997,Desc="肉棒插入meimei小穴"},
[3998] = {ID=3998,Desc="羞耻母"},
[3999] = {ID=3999,Desc="免费成人两性影院"},
[4000] = {ID=4000,Desc="吴仁华"},
[4001] = {ID=4001,Desc="老师被干小穴"},
[4002] = {ID=4002,Desc="抽插56岁处女meimei淫叫不断"},
[4003] = {ID=4003,Desc="蒋彦永上书"},
[4004] = {ID=4004,Desc="国外meinv黄网"},
[4005] = {ID=4005,Desc="性愛圖片"},
[4006] = {ID=4006,Desc="牙齿轻咬着阴核"},
[4007] = {ID=4007,Desc="淫荡姐姐勾引小弟玩操屄"},
[4008] = {ID=4008,Desc="朱溶剂"},
[4009] = {ID=4009,Desc="插淫妇骚穴"},
[4010] = {ID=4010,Desc="李宏志"},
[4011] = {ID=4011,Desc="邓笑贫"},
[4012] = {ID=4012,Desc="fuck文化部"},
[4013] = {ID=4013,Desc="肉棒抽插…不要"},
[4014] = {ID=4014,Desc="她的阴道乳房真美"},
[4015] = {ID=4015,Desc="毛彭真"},
[4016] = {ID=4016,Desc="發論功"},
[4017] = {ID=4017,Desc="台湾成人网站"},
[4018] = {ID=4018,Desc="阳具插入小穴中"},
[4019] = {ID=4019,Desc="插入内射"},
[4020] = {ID=4020,Desc="大鸡吧塞进逼里使劲插我"},
[4021] = {ID=4021,Desc="日本淫妞"},
[4022] = {ID=4022,Desc="哥哥我爽晕了"},
[4023] = {ID=4023,Desc="谭绍文"},
[4024] = {ID=4024,Desc="阳具对准她湿润的小穴口"},
[4025] = {ID=4025,Desc="日本色诱女郎图库激情成人视频聊天室"},
[4026] = {ID=4026,Desc="三去车仑"},
[4027] = {ID=4027,Desc="鲍岳桥"},
[4028] = {ID=4028,Desc="毛美国"},
[4029] = {ID=4029,Desc="法~淪"},
[4030] = {ID=4030,Desc="两性淫乱小说阅读"},
[4031] = {ID=4031,Desc="发@伦"},
[4032] = {ID=4032,Desc="胡XX"},
[4033] = {ID=4033,Desc="强奸护士"},
[4034] = {ID=4034,Desc="连胜德"},
[4035] = {ID=4035,Desc="淫穴把整个龟头吸住"},
[4036] = {ID=4036,Desc="射入阴道里"},
[4037] = {ID=4037,Desc="女教师家访遭遇体剃毛内射肛交口爆喷尿虐待"},
[4038] = {ID=4038,Desc="毛人大代表"},
[4039] = {ID=4039,Desc="成人论坛导航"},
[4040] = {ID=4040,Desc="极品金牌素人口交系列"},
[4041] = {ID=4041,Desc="操操XX"},
[4042] = {ID=4042,Desc="法$$論"},
[4043] = {ID=4043,Desc="hkhk68"},
[4044] = {ID=4044,Desc="胸涛乳浪"},
[4045] = {ID=4045,Desc="亚洲淫色俱乐部"},
[4046] = {ID=4046,Desc="奴隶调教"},
[4047] = {ID=4047,Desc="毛一夜情"},
[4048] = {ID=4048,Desc="好爽┅好舒服小骚穴"},
[4049] = {ID=4049,Desc="狂插林心如穴"},
[4050] = {ID=4050,Desc="368成人网站"},
[4051] = {ID=4051,Desc="乱伦父女"},
[4052] = {ID=4052,Desc="國產偷拍"},
[4053] = {ID=4053,Desc="Gold"},
[4054] = {ID=4054,Desc="发@仑"},
[4055] = {ID=4055,Desc="日軍"},
[4056] = {ID=4056,Desc="性愛插穴"},
[4057] = {ID=4057,Desc="15年前的“共和国卫士”"},
[4058] = {ID=4058,Desc="又硬又大的肉棒"},
[4059] = {ID=4059,Desc="插入……大肉棒"},
[4060] = {ID=4060,Desc="台湾小穴自拍护士做爱"},
[4061] = {ID=4061,Desc="潮吹喷射地狱"},
[4062] = {ID=4062,Desc="毛卖B"},
[4063] = {ID=4063,Desc="吗的靠"},
[4064] = {ID=4064,Desc="将手指插入她的穴里"},
[4065] = {ID=4065,Desc="法@@抡"},
[4066] = {ID=4066,Desc="抽插20岁处女meimei淫叫不断"},
[4067] = {ID=4067,Desc="不要!嗯──啊啊、啊啊!”"},
[4068] = {ID=4068,Desc="亚洲激情帖图"},
[4069] = {ID=4069,Desc="獸交"},
[4070] = {ID=4070,Desc="毛吴仪"},
[4071] = {ID=4071,Desc="无码炮图"},
[4072] = {ID=4072,Desc="毛穆斯林"},
[4073] = {ID=4073,Desc="肉棒就顺着湿滑的阴道口插进去了一半"},
[4074] = {ID=4074,Desc="台灣狗"},
[4075] = {ID=4075,Desc="哦……再快……小屄要美死丁……"},
[4076] = {ID=4076,Desc="性色俱乐部"},
[4077] = {ID=4077,Desc="发$$轮"},
[4078] = {ID=4078,Desc="倫功"},
[4079] = {ID=4079,Desc="女学生嫩B"},
[4080] = {ID=4080,Desc="外@挂"},
[4081] = {ID=4081,Desc="fuck他马的"},
[4082] = {ID=4082,Desc="自民党"},
[4083] = {ID=4083,Desc="毛一中一台"},
[4084] = {ID=4084,Desc="毛吕秀莲"},
[4085] = {ID=4085,Desc="大鸡巴用力的往小穴里面狠插"},
[4086] = {ID=4086,Desc="陵辱面接4人淫乱娘"},
[4087] = {ID=4087,Desc="毛罗干"},
[4088] = {ID=4088,Desc="她的阴道好深啊"},
[4089] = {ID=4089,Desc="本站10020多部激情电影全部免费试看"},
[4090] = {ID=4090,Desc="鸡8"},
[4091] = {ID=4091,Desc="和阿姨作爱"},
[4092] = {ID=4092,Desc="毛卖QQ"},
[4093] = {ID=4093,Desc="操藏独"},
[4094] = {ID=4094,Desc="淫语连连"},
[4095] = {ID=4095,Desc="如果你未满19周岁请自觉离开。"},
[4096] = {ID=4096,Desc="插的meimei流淫水"},
[4097] = {ID=4097,Desc="三去车侖"},
[4098] = {ID=4098,Desc="外?挂"},
[4099] = {ID=4099,Desc="日本激情电影"},
[4100] = {ID=4100,Desc="令人喷血的春宫108姿势(组图)22岁禁看"},
[4101] = {ID=4101,Desc="让我操高潮淫水一直流溅"},
[4102] = {ID=4102,Desc="無界流覽"},
[4103] = {ID=4103,Desc="外?掛"},
[4104] = {ID=4104,Desc="好大的阴户啊"},
[4105] = {ID=4105,Desc="性感动感美女日本幼少女性感写真"},
[4106] = {ID=4106,Desc="亚洲激情影院"},
[4107] = {ID=4107,Desc="陰蒂"},
[4108] = {ID=4108,Desc="强奸38岁处女全过程/淫妹阴毛小穴"},
[4109] = {ID=4109,Desc="小骚娘们的小嫩骚屄"},
[4110] = {ID=4110,Desc="89风波"},
[4111] = {ID=4111,Desc="蔣彥勇"},
[4112] = {ID=4112,Desc="我日靠"},
[4113] = {ID=4113,Desc="鸡巴对准穴口猛地插进去"},
[4114] = {ID=4114,Desc="嫩鮑"},
[4115] = {ID=4115,Desc="毛滚"},
[4116] = {ID=4116,Desc="毛管理员"},
[4117] = {ID=4117,Desc="亞洲瘋情"},
[4118] = {ID=4118,Desc="淫奸表姐"},
[4119] = {ID=4119,Desc="在线淫电影"},
[4120] = {ID=4120,Desc="淫水狂喷"},
[4121] = {ID=4121,Desc="肉茎"},
[4122] = {ID=4122,Desc="外@掛"},
[4123] = {ID=4123,Desc="好……小……小骚穴"},
[4124] = {ID=4124,Desc="發倫功"},
[4125] = {ID=4125,Desc="……好爽喲"},
[4126] = {ID=4126,Desc="fuck傻屄"},
[4127] = {ID=4127,Desc="操插你"},
[4128] = {ID=4128,Desc="日本激情淫影院"},
[4129] = {ID=4129,Desc="日你妈啦逼"},
[4130] = {ID=4130,Desc="免费黄色淫电影一社会男子在宾馆里强奸一"},
[4131] = {ID=4131,Desc="如果你未满27周岁请自觉离开。"},
[4132] = {ID=4132,Desc="台湾成人黄色电影"},
[4133] = {ID=4133,Desc="大鸡巴插小穴"},
[4134] = {ID=4134,Desc="八九年那个春夏之交"},
[4135] = {ID=4135,Desc="小穴疯狂地吮吸着我的阳精"},
[4136] = {ID=4136,Desc="三去车仑工力"},
[4137] = {ID=4137,Desc="18dy村妓"},
[4138] = {ID=4138,Desc="本站10008多部激情电影全部免费试看"},
[4139] = {ID=4139,Desc="胸濤乳浪"},
[4140] = {ID=4140,Desc="毛国土资源部"},
[4141] = {ID=4141,Desc="骚棍"},
[4142] = {ID=4142,Desc="刘华清"},
[4143] = {ID=4143,Desc="手指抠肉洞"},
[4144] = {ID=4144,Desc="骚棒"},
[4145] = {ID=4145,Desc="强奸美女狂插处女阴道"},
[4146] = {ID=4146,Desc="插淫屄"},
[4147] = {ID=4147,Desc="毛贱逼"},
[4148] = {ID=4148,Desc="陰阜高聳"},
[4149] = {ID=4149,Desc="周六性吧"},
[4150] = {ID=4150,Desc="儿子的肉棒好长啊"},
[4151] = {ID=4151,Desc="红色的小穴"},
[4152] = {ID=4152,Desc="本站10011多部激情电影全部免费试看三天"},
[4153] = {ID=4153,Desc="抽插51岁处女妹妹淫叫不断"},
[4154] = {ID=4154,Desc="VIP激情成人电影"},
[4155] = {ID=4155,Desc="89暴乱"},
[4156] = {ID=4156,Desc="三级电影淫电影艳情电影"},
[4157] = {ID=4157,Desc="毛穆罕默德"},
[4158] = {ID=4158,Desc="淫水爱液"},
[4159] = {ID=4159,Desc="純情尤物由美"},
[4160] = {ID=4160,Desc="鸡巴抽插好……爽"},
[4161] = {ID=4161,Desc="25dy淫色贴图"},
[4162] = {ID=4162,Desc="民警当副院长"},
[4163] = {ID=4163,Desc="肉莖"},
[4164] = {ID=4164,Desc="杨巍"},
[4165] = {ID=4165,Desc="鸡芭"},
[4166] = {ID=4166,Desc="我湿淋淋的阴道"},
[4167] = {ID=4167,Desc="陷阱超人哗哗曼"},
[4168] = {ID=4168,Desc="欧美成人漫画贴图区"},
[4169] = {ID=4169,Desc="如果你未满35周岁请自觉离开。"},
[4170] = {ID=4170,Desc="和平演变"},
[4171] = {ID=4171,Desc="狗操"},
[4172] = {ID=4172,Desc="她的阴户好嫩啊"},
[4173] = {ID=4173,Desc="meimei的穴好紧"},
[4174] = {ID=4174,Desc="鄒德威"},
[4175] = {ID=4175,Desc="法$纶"},
[4176] = {ID=4176,Desc="教你怎样延迟射精32岁以下禁免费淫电影a片"},
[4177] = {ID=4177,Desc="妓女靠"},
[4178] = {ID=4178,Desc="肉棒狠狠地插进小淫穴中"},
[4179] = {ID=4179,Desc="淫穴电影"},
[4180] = {ID=4180,Desc="毛氵去"},
[4181] = {ID=4181,Desc="龟头插小穴"},
[4182] = {ID=4182,Desc="机掰"},
[4183] = {ID=4183,Desc="毛舆论钳制"},
[4184] = {ID=4184,Desc="啊┅┅用力┅┅用力插烂我的淫穴"},
[4185] = {ID=4185,Desc="meimei的嫩阴户"},
[4186] = {ID=4186,Desc="毛卖比"},
[4187] = {ID=4187,Desc="粗制吗啡"},
[4188] = {ID=4188,Desc="插进"},
[4189] = {ID=4189,Desc="海洛因"},
[4190] = {ID=4190,Desc="杨帆"},
[4191] = {ID=4191,Desc="毛他母亲"},
[4192] = {ID=4192,Desc="meinv极品嫩穴"},
[4193] = {ID=4193,Desc="龟头顶破了处女膜"},
[4194] = {ID=4194,Desc="口內爆射"},
[4195] = {ID=4195,Desc="龟头插进了小穴"},
[4196] = {ID=4196,Desc="悲惨-双胞胎一起被奸"},
[4197] = {ID=4197,Desc="365情色网"},
[4198] = {ID=4198,Desc="靠你妈"},
[4199] = {ID=4199,Desc="meimei的阴唇好嫩啊"},
[4200] = {ID=4200,Desc="玉乳"},
[4201] = {ID=4201,Desc="法*綸"},
[4202] = {ID=4202,Desc="小屄又湿又滑"},
[4203] = {ID=4203,Desc="王丹"},
[4204] = {ID=4204,Desc="少女被强奸到高潮时偷拍小A片免费淫电影a片"},
[4205] = {ID=4205,Desc="淫乱插穴好爽"},
[4206] = {ID=4206,Desc="淫浪少妇和医生疯狂做爱"},
[4207] = {ID=4207,Desc="淫电影//教你怎样延迟射精"},
[4208] = {ID=4208,Desc="呂秀蓮"},
[4209] = {ID=4209,Desc="风骚欲女爽爽网"},
[4210] = {ID=4210,Desc="情色图片成人小说"},
[4211] = {ID=4211,Desc="虐奴"},
[4212] = {ID=4212,Desc="陰莖"},
[4213] = {ID=4213,Desc="教你怎样延迟射精41岁以下禁免费淫电影a片"},
[4214] = {ID=4214,Desc="淫色贴图小说"},
[4215] = {ID=4215,Desc="狂插老师穴"},
[4216] = {ID=4216,Desc="大*FA"},
[4217] = {ID=4217,Desc="屙民"},
[4218] = {ID=4218,Desc="色情小说"},
[4219] = {ID=4219,Desc="激情淫穴小站"},
[4220] = {ID=4220,Desc="美女淫图"},
[4221] = {ID=4221,Desc="無碼體驗"},
[4222] = {ID=4222,Desc="不像我讓你打~"},
[4223] = {ID=4223,Desc="露毛"},
[4224] = {ID=4224,Desc="项怀诚"},
[4225] = {ID=4225,Desc="刘青"},
[4226] = {ID=4226,Desc="成人午夜剧场"},
[4227] = {ID=4227,Desc="把我的穴插烂了"},
[4228] = {ID=4228,Desc="睪丸"},
[4229] = {ID=4229,Desc="一元激情电影"},
[4230] = {ID=4230,Desc="鹿城娱乐情色"},
[4231] = {ID=4231,Desc="抽插27岁处女meimei淫叫不断"},
[4232] = {ID=4232,Desc="中天萬方"},
[4233] = {ID=4233,Desc="亮穴"},
[4234] = {ID=4234,Desc="成人"},
[4235] = {ID=4235,Desc="欧美做爱"},
[4236] = {ID=4236,Desc="香港激情淫色贴图网"},
[4237] = {ID=4237,Desc="发^仑"},
[4238] = {ID=4238,Desc="狂插处女穴"},
[4239] = {ID=4239,Desc="巡府媳"},
[4240] = {ID=4240,Desc="台湾独立"},
[4241] = {ID=4241,Desc="色网阴道特写强奸24岁处女全过程"},
[4242] = {ID=4242,Desc="迷姦雙胞妹妹"},
[4243] = {ID=4243,Desc="龟头挤进了她的阴道"},
[4244] = {ID=4244,Desc="毛东亚病夫"},
[4245] = {ID=4245,Desc="成人免费"},
[4246] = {ID=4246,Desc="我跟妹妹肏穴"},
[4247] = {ID=4247,Desc="性之站"},
[4248] = {ID=4248,Desc="去你媽的"},
[4249] = {ID=4249,Desc="台湾十八两性电影"},
[4250] = {ID=4250,Desc="獨占動畫~肛門"},
[4251] = {ID=4251,Desc="好紧的阴道啊"},
[4252] = {ID=4252,Desc="淫色全免费"},
[4253] = {ID=4253,Desc="抠穴"},
[4254] = {ID=4254,Desc="陰茎"},
[4255] = {ID=4255,Desc="痛经"},
[4256] = {ID=4256,Desc="杨元元"},
[4257] = {ID=4257,Desc="操XX"},
[4258] = {ID=4258,Desc="日本黄色电影"},
[4259] = {ID=4259,Desc="本站10007多部激情电影全部免费试看三天"},
[4260] = {ID=4260,Desc="成人激情性爱电影"},
[4261] = {ID=4261,Desc="大鸡吧插人阴户"},
[4262] = {ID=4262,Desc="毛鸦片"},
[4263] = {ID=4263,Desc="色mm激情图片"},
[4264] = {ID=4264,Desc="睡着的武神"},
[4265] = {ID=4265,Desc="發$$綸"},
[4266] = {ID=4266,Desc="用肥嫩的小穴套弄着我的阳具"},
[4267] = {ID=4267,Desc="毛吗啡"},
[4268] = {ID=4268,Desc="包pi"},
[4269] = {ID=4269,Desc="拒绝食堂"},
[4270] = {ID=4270,Desc="谢非"},
[4271] = {ID=4271,Desc="毛淫靡"},
[4272] = {ID=4272,Desc="疯狂jiejie教弟弟小说"},
[4273] = {ID=4273,Desc="妹妹乱伦理淫穴"},
[4274] = {ID=4274,Desc="情色视频聊天"},
[4275] = {ID=4275,Desc="se淫乱姐姐小说"},
[4276] = {ID=4276,Desc="法*纶"},
[4277] = {ID=4277,Desc="鹿城黄站"},
[4278] = {ID=4278,Desc="無網界"},
[4279] = {ID=4279,Desc="六月四日"},
[4280] = {ID=4280,Desc="情色天崖"},
[4281] = {ID=4281,Desc="发抡"},
[4282] = {ID=4282,Desc="十五周年"},
[4283] = {ID=4283,Desc="都市2046"},
[4284] = {ID=4284,Desc="抽插37岁处女妹妹淫叫不断"},
[4285] = {ID=4285,Desc="林保华"},
[4286] = {ID=4286,Desc="發~~綸"},
[4287] = {ID=4287,Desc="89暴亂"},
[4288] = {ID=4288,Desc="法崘功"},
[4289] = {ID=4289,Desc="淫奸少妇论坛"},
[4290] = {ID=4290,Desc="日本免费激情学生美"},
[4291] = {ID=4291,Desc="圣泉学淫"},
[4292] = {ID=4292,Desc="成人情色论坛导航"},
[4293] = {ID=4293,Desc="黄色网站"},
[4294] = {ID=4294,Desc="色mm穴激情图片"},
[4295] = {ID=4295,Desc="抽插26岁处女meimei淫叫不断"},
[4296] = {ID=4296,Desc="张春桥"},
[4297] = {ID=4297,Desc="林樵清"},
[4298] = {ID=4298,Desc="少女激情自拍"},
[4299] = {ID=4299,Desc="屄毛"},
[4300] = {ID=4300,Desc="FLG妈B发抡"},
[4301] = {ID=4301,Desc="亚洲淫穴电影"},
[4302] = {ID=4302,Desc="舔屁眼"},
[4303] = {ID=4303,Desc="18淫书"},
[4304] = {ID=4304,Desc="日本激情淫色下载"},
[4305] = {ID=4305,Desc="插穴淫图"},
[4306] = {ID=4306,Desc="劉延東"},
[4307] = {ID=4307,Desc="精液射在妹妹的子宮"},
[4308] = {ID=4308,Desc="我日你妈"},
[4309] = {ID=4309,Desc="Tibet国"},
[4310] = {ID=4310,Desc="『第一爽图区』"},
[4311] = {ID=4311,Desc="用舌头舔着他的马"},
[4312] = {ID=4312,Desc="激情美女贴图九九情色"},
[4313] = {ID=4313,Desc="強制飲尿便器小野悠美"},
[4314] = {ID=4314,Desc="毛明慧网"},
[4315] = {ID=4315,Desc="18dy电影"},
[4316] = {ID=4316,Desc="操曹刚川"},
[4317] = {ID=4317,Desc="大鸡巴插进了的小穴"},
[4318] = {ID=4318,Desc="日本激情淫色影院"},
[4319] = {ID=4319,Desc="很黄很暴力"},
[4320] = {ID=4320,Desc="小犬蠢一狼"},
[4321] = {ID=4321,Desc="王勝俊"},
[4322] = {ID=4322,Desc="藏独靠"},
[4323] = {ID=4323,Desc="宋书元"},
[4324] = {ID=4324,Desc="外$掛"},
[4325] = {ID=4325,Desc="万维读者论坛"},
[4326] = {ID=4326,Desc="瘟B"},
[4327] = {ID=4327,Desc="銷魂洞"},
[4328] = {ID=4328,Desc="毛卖淫"},
[4329] = {ID=4329,Desc="小穴被插"},
[4330] = {ID=4330,Desc="高级应招女"},
[4331] = {ID=4331,Desc="肉棍子"},
[4332] = {ID=4332,Desc="发^伦"},
[4333] = {ID=4333,Desc="毛唐家璇"},
[4334] = {ID=4334,Desc="抽插53岁处女妹妹淫叫不断"},
[4335] = {ID=4335,Desc="情色成人基地"},
[4336] = {ID=4336,Desc="連続失禁"},
[4337] = {ID=4337,Desc="外*挂"},
[4338] = {ID=4338,Desc="空姐护士淫荡图片"},
[4339] = {ID=4339,Desc="在线免费观看性感mo特日本性感奶霸图片骚"},
[4340] = {ID=4340,Desc="教你如何鉴别处男处女的方法(组图)18岁禁看免费淫电影a片"},
[4341] = {ID=4341,Desc="臺灣黨"},
[4342] = {ID=4342,Desc="又长又大的肉棒"},
[4343] = {ID=4343,Desc="风雨神州论坛"},
[4344] = {ID=4344,Desc="骚b"},
[4345] = {ID=4345,Desc="男人阁-套图站"},
[4346] = {ID=4346,Desc="陸肆"},
[4347] = {ID=4347,Desc="李录"},
[4348] = {ID=4348,Desc="裸體少婦"},
[4349] = {ID=4349,Desc="毛密洞"},
[4350] = {ID=4350,Desc="淫乱熟女"},
[4351] = {ID=4351,Desc="幹你媽逼"},
[4352] = {ID=4352,Desc="抽插23岁处女meimei淫叫不断"},
[4353] = {ID=4353,Desc="毛meimei贴图区"},
[4354] = {ID=4354,Desc="毛东突组织"},
[4355] = {ID=4355,Desc="美女激情视频聊天室"},
[4356] = {ID=4356,Desc="鸡吧阴茎插嫩穴小穴"},
[4357] = {ID=4357,Desc="奸杀meinv大学生"},
[4358] = {ID=4358,Desc="放荡少妇宾馆"},
[4359] = {ID=4359,Desc="fuck驶你公"},
[4360] = {ID=4360,Desc="回民暴動"},
[4361] = {ID=4361,Desc="一面做愛"},
[4362] = {ID=4362,Desc="娇小鲜嫩的小屄"},
[4363] = {ID=4363,Desc="温家保"},
[4364] = {ID=4364,Desc="毛体育总局"},
[4365] = {ID=4365,Desc="代开发票"},
[4366] = {ID=4366,Desc="18成人网"},
[4367] = {ID=4367,Desc="屌毛"},
[4368] = {ID=4368,Desc="手记注册日韩5007部激情电影"},
[4369] = {ID=4369,Desc="教你怎样延迟射精29岁以下禁免费淫电影a片"},
[4370] = {ID=4370,Desc="毛手机复制"},
[4371] = {ID=4371,Desc="黃片"},
[4372] = {ID=4372,Desc="龟头缓慢地从我的阴道中戳入拉出"},
[4373] = {ID=4373,Desc="少妇房中自淫,和两勇男玩12P,操得直叫爽"},
[4374] = {ID=4374,Desc="meinv主持27小时全天激情热舞"},
[4375] = {ID=4375,Desc="手机注册激情网站"},
[4376] = {ID=4376,Desc="手记注册日韩5016部激情电影"},
[4377] = {ID=4377,Desc="十年动乱"},
[4378] = {ID=4378,Desc="毛宋祖英"},
[4379] = {ID=4379,Desc="沦功"},
[4380] = {ID=4380,Desc="激情潮噴"},
[4381] = {ID=4381,Desc="大鸡巴紧紧的插穴"},
[4382] = {ID=4382,Desc="……插的……好舒服"},
[4383] = {ID=4383,Desc="法$綸"},
[4384] = {ID=4384,Desc="浪女淫水"},
[4385] = {ID=4385,Desc="车牌反光"},
[4386] = {ID=4386,Desc="meimei的小穴好紧啊"},
[4387] = {ID=4387,Desc="淫乱jiejie小说"},
[4388] = {ID=4388,Desc="掰开嫩穴"},
[4389] = {ID=4389,Desc="贱bi"},
[4390] = {ID=4390,Desc="肏姐姐屄"},
[4391] = {ID=4391,Desc="纪念松岛MM引退大作-松岛枫合集4"},
[4392] = {ID=4392,Desc="爽穴"},
[4393] = {ID=4393,Desc="淫护士小说"},
[4394] = {ID=4394,Desc="她的阴道真紧"},
[4395] = {ID=4395,Desc="王刚"},
[4396] = {ID=4396,Desc="毛骚B"},
[4397] = {ID=4397,Desc="東熱空姐"},
[4398] = {ID=4398,Desc="免费在线成人电影"},
[4399] = {ID=4399,Desc="免费淫色电影网站"},
[4400] = {ID=4400,Desc="超恶い状态10人の俗人たち"},
[4401] = {ID=4401,Desc="睾丸"},
[4402] = {ID=4402,Desc="免费淫女骚穴在线看电影"},
[4403] = {ID=4403,Desc="com流氓"},
[4404] = {ID=4404,Desc="回民暴动"},
[4405] = {ID=4405,Desc="流出大量淫水"},
[4406] = {ID=4406,Desc="淫乱"},
[4407] = {ID=4407,Desc="淫奸女教师"},
[4408] = {ID=4408,Desc="台湾帝国"},
[4409] = {ID=4409,Desc="东土耳其斯坦"},
[4410] = {ID=4410,Desc="毛胡锦涛"},
[4411] = {ID=4411,Desc="飞扬论坛"},
[4412] = {ID=4412,Desc="激情动漫成人"},
[4413] = {ID=4413,Desc="王克"},
[4414] = {ID=4414,Desc="如果你未满24周岁请自觉离开。"},
[4415] = {ID=4415,Desc="亚洲淫色"},
[4416] = {ID=4416,Desc="司马义·铁力瓦尔地"},
[4417] = {ID=4417,Desc="靠你媽"},
[4418] = {ID=4418,Desc="干的爽"},
[4419] = {ID=4419,Desc="美女网站脱衣美女百分百作爱"},
[4420] = {ID=4420,Desc="百海"},
[4421] = {ID=4421,Desc="抽插到高潮"},
[4422] = {ID=4422,Desc="两腿之间"},
[4423] = {ID=4423,Desc="哥哥的大肉棒"},
[4424] = {ID=4424,Desc="扒开她的嫩阴道"},
[4425] = {ID=4425,Desc="免费桃色电影不需注册"},
[4426] = {ID=4426,Desc="六四運動"},
[4427] = {ID=4427,Desc="点击观看*林心如做爱*色情电影"},
[4428] = {ID=4428,Desc="三级淫水写真"},
[4429] = {ID=4429,Desc="于浩成"},
[4430] = {ID=4430,Desc="日本情色电影"},
[4431] = {ID=4431,Desc="寇晓伟"},
[4432] = {ID=4432,Desc="外$挂"},
[4433] = {ID=4433,Desc="毛胡锦淘"},
[4434] = {ID=4434,Desc="先奸后杀"},
[4435] = {ID=4435,Desc="毛圣女峰"},
[4436] = {ID=4436,Desc="游戏发奖员"},
[4437] = {ID=4437,Desc="性感誘惑"},
[4438] = {ID=4438,Desc="發淪"},
[4439] = {ID=4439,Desc="一码中特"},
[4440] = {ID=4440,Desc="臺灣建國"},
[4441] = {ID=4441,Desc="要色色"},
[4442] = {ID=4442,Desc="女儿的阴道好大啊"},
[4443] = {ID=4443,Desc="fuck賣.國"},
[4444] = {ID=4444,Desc="倭国"},
[4445] = {ID=4445,Desc="毛三个代婊"},
[4446] = {ID=4446,Desc="王兆国"},
[4447] = {ID=4447,Desc="阿姨的阴户好肥啊"},
[4448] = {ID=4448,Desc="白烂"},
[4449] = {ID=4449,Desc="和两勇男玩18P"},
[4450] = {ID=4450,Desc="姐姐的阴户"},
[4451] = {ID=4451,Desc="成人淫图"},
[4452] = {ID=4452,Desc="王兆國"},
[4453] = {ID=4453,Desc="醬豬媳"},
[4454] = {ID=4454,Desc="台湾盲人meinv在家疯狂做爱"},
[4455] = {ID=4455,Desc="外~挂"},
[4456] = {ID=4456,Desc="中宣部是中國的愛滋病"},
[4457] = {ID=4457,Desc="18岁少女处夜激情性爱电影"},
[4458] = {ID=4458,Desc="毛六?四"},
[4459] = {ID=4459,Desc="和两勇男玩17P"},
[4460] = {ID=4460,Desc="择民"},
[4461] = {ID=4461,Desc="淫色贴图导航"},
[4462] = {ID=4462,Desc="淫电影//教你如何鉴别处男处女的方法(组图)18岁禁看"},
[4463] = {ID=4463,Desc="手记注册日韩5025部激情电影"},
[4464] = {ID=4464,Desc="操插深些"},
[4465] = {ID=4465,Desc="激情淫穴影院"},
[4466] = {ID=4466,Desc="抽插27岁处女妹妹淫叫不断"},
[4467] = {ID=4467,Desc="娘饿比"},
[4468] = {ID=4468,Desc="威而钢"},
[4469] = {ID=4469,Desc="法@@沦"},
[4470] = {ID=4470,Desc="成人网我该死免费视频"},
[4471] = {ID=4471,Desc="fuck税务总局"},
[4472] = {ID=4472,Desc="娘個比"},
[4473] = {ID=4473,Desc="入穴一游"},
[4474] = {ID=4474,Desc="89風波"},
[4475] = {ID=4475,Desc="肛門噴水"},
[4476] = {ID=4476,Desc="和两勇男玩19P"},
[4477] = {ID=4477,Desc="张大权"},
[4478] = {ID=4478,Desc="bt淫色电影"},
[4479] = {ID=4479,Desc="绿色环保手机"},
[4480] = {ID=4480,Desc="毛阴蒂"},
[4481] = {ID=4481,Desc="中国共产党"},
[4482] = {ID=4482,Desc="在线免费淫电影"},
[4483] = {ID=4483,Desc="陈蒙"},
[4484] = {ID=4484,Desc="好粗的大肉棒"},
[4485] = {ID=4485,Desc="插那吗逼"},
[4486] = {ID=4486,Desc="射雕淫女传9"},
[4487] = {ID=4487,Desc="李洪"},
[4488] = {ID=4488,Desc="王兆囯"},
[4489] = {ID=4489,Desc="私立淫乱学园"},
[4490] = {ID=4490,Desc="好硬的大肉棒"},
[4491] = {ID=4491,Desc="胡緊濤"},
[4492] = {ID=4492,Desc="我和女大学生在公共汽车上做爱"},
[4493] = {ID=4493,Desc="教你怎样延迟射精20岁以下禁免费淫电影a片"},
[4494] = {ID=4494,Desc="jiejie的肥穴"},
[4495] = {ID=4495,Desc="小穴套着鸡巴"},
[4496] = {ID=4496,Desc="免费淫电影吴宗宪搞笑语录(19禁看)"},
[4497] = {ID=4497,Desc="毛温家宝"},
[4498] = {ID=4498,Desc="胡喬木"},
[4499] = {ID=4499,Desc="卖淫"},
[4500] = {ID=4500,Desc="又嫩又紧的穴"},
[4501] = {ID=4501,Desc="告全體線民書"},
[4502] = {ID=4502,Desc="毛妳娘的"},
[4503] = {ID=4503,Desc="日本激情漫画贴图"},
[4504] = {ID=4504,Desc="狂插小浪妹"},
[4505] = {ID=4505,Desc="盜撮"},
[4506] = {ID=4506,Desc="大B私服"},
[4507] = {ID=4507,Desc="抽插36岁处女meimei淫叫不断"},
[4508] = {ID=4508,Desc="遲浩田"},
[4509] = {ID=4509,Desc="乳丰穴嫩激情性电影"},
[4510] = {ID=4510,Desc="浪穴被你插得爽死了"},
[4511] = {ID=4511,Desc="法**淪"},
[4512] = {ID=4512,Desc="老师含住我的小弟弟"},
[4513] = {ID=4513,Desc="毛倭寇"},
[4514] = {ID=4514,Desc="淫絲蕩襪"},
[4515] = {ID=4515,Desc="毛工商局"},
[4516] = {ID=4516,Desc="傅作義"},
[4517] = {ID=4517,Desc="新黨"},
[4518] = {ID=4518,Desc="宫泽Keito无修正第二弹"},
[4519] = {ID=4519,Desc="鸡鸡插入穴嫩"},
[4520] = {ID=4520,Desc="精液浴"},
[4521] = {ID=4521,Desc="干骚女"},
[4522] = {ID=4522,Desc="meimei的大阴唇好嫩啊"},
[4523] = {ID=4523,Desc="綠色數码"},
[4524] = {ID=4524,Desc="毛硬挺"},
[4525] = {ID=4525,Desc="狂插美女护士小说"},
[4526] = {ID=4526,Desc="凸肉优"},
[4527] = {ID=4527,Desc="龟头插入肉洞里"},
[4528] = {ID=4528,Desc="和两勇男玩10P"},
[4529] = {ID=4529,Desc="滥逼"},
[4530] = {ID=4530,Desc="少妇小穴被操的很爽"},
[4531] = {ID=4531,Desc="用我的舌头刮着她的阴蒂"},
[4532] = {ID=4532,Desc="一对熟女间的性虐游戏"},
[4533] = {ID=4533,Desc="极品嫩穴"},
[4534] = {ID=4534,Desc="妹妹的穴好紧"},
[4535] = {ID=4535,Desc="放蕩熟女"},
[4536] = {ID=4536,Desc="双龙入洞"},
[4537] = {ID=4537,Desc="弟弟的肉棒好大啊"},
[4538] = {ID=4538,Desc="法**沦"},
[4539] = {ID=4539,Desc="长长的肉棒插进我的阴道里"},
[4540] = {ID=4540,Desc="毛叫床"},
[4541] = {ID=4541,Desc="捅我"},
[4542] = {ID=4542,Desc="品色堂永远免费开放注册中"},
[4543] = {ID=4543,Desc="本站10020多部激情电影全部免费试看三天"},
[4544] = {ID=4544,Desc="淫水直流"},
[4545] = {ID=4545,Desc="淫奸meimei的屄"},
[4546] = {ID=4546,Desc="fuck温家保"},
[4547] = {ID=4547,Desc="阿姨的肥阴唇"},
[4548] = {ID=4548,Desc="免费黄色淫奸电影3级片a片手握着我的大鸡巴"},
[4549] = {ID=4549,Desc="湿了还说不要"},
[4550] = {ID=4550,Desc="吸精痴女护士"},
[4551] = {ID=4551,Desc="香港激情图源成人色情论坛脱衣美女做愛"},
[4552] = {ID=4552,Desc="杀你全家"},
[4553] = {ID=4553,Desc="插妹妹淫屄"},
[4554] = {ID=4554,Desc="自制手枪"},
[4555] = {ID=4555,Desc="手机激情淫色网址"},
[4556] = {ID=4556,Desc="盗撮"},
[4557] = {ID=4557,Desc="av电影"},
[4558] = {ID=4558,Desc="毛托管理事会"},
[4559] = {ID=4559,Desc="美女野兽做爱淫图"},
[4560] = {ID=4560,Desc="无需手机注册激情电影"},
[4561] = {ID=4561,Desc="又顶到我的子宫"},
[4562] = {ID=4562,Desc="和两勇男玩12P"},
[4563] = {ID=4563,Desc="就去诱惑"},
[4564] = {ID=4564,Desc="舔奶"},
[4565] = {ID=4565,Desc="戳那吗B"},
[4566] = {ID=4566,Desc="汕頭頻傳擄童割器官"},
[4567] = {ID=4567,Desc="口射"},
[4568] = {ID=4568,Desc="民族分裂"},
[4569] = {ID=4569,Desc="裸体小姐作爱视频彩福联盟社区"},
[4570] = {ID=4570,Desc="龜公"},
[4571] = {ID=4571,Desc="放荡少女少妇"},
[4572] = {ID=4572,Desc="台湾免费淫电影"},
[4573] = {ID=4573,Desc="11月更新成人导航"},
[4574] = {ID=4574,Desc="亚洲激情meimei"},
[4575] = {ID=4575,Desc="钟山风雨论坛"},
[4576] = {ID=4576,Desc="全国人大"},
[4577] = {ID=4577,Desc="和两勇男玩11P"},
[4578] = {ID=4578,Desc="法^沦"},
[4579] = {ID=4579,Desc="我与网吧老板娘"},
[4580] = {ID=4580,Desc="毛新闻出版总署"},
[4581] = {ID=4581,Desc="密穴"},
[4582] = {ID=4582,Desc="27dy淫色贴图"},
[4583] = {ID=4583,Desc="十八岁禁入电影"},
[4584] = {ID=4584,Desc="和两勇男玩14P"},
[4585] = {ID=4585,Desc="龟公"},
[4586] = {ID=4586,Desc="毛你爷爷的"},
[4587] = {ID=4587,Desc="奸淫电车"},
[4588] = {ID=4588,Desc="包皮"},
[4589] = {ID=4589,Desc="厕所盗摄护士jiejie"},
[4590] = {ID=4590,Desc="舌头穴"},
[4591] = {ID=4591,Desc="毛贱货"},
[4592] = {ID=4592,Desc="淫奸阿姨论坛"},
[4593] = {ID=4593,Desc="毛僵贼民"},
[4594] = {ID=4594,Desc="淫奸小姨子"},
[4595] = {ID=4595,Desc="滾那嗎B"},
[4596] = {ID=4596,Desc="和两勇男玩13P"},
[4597] = {ID=4597,Desc="台湾成人19贴图"},
[4598] = {ID=4598,Desc="肉棒好粗"},
[4599] = {ID=4599,Desc="韩光"},
[4600] = {ID=4600,Desc="熟女護士亂舞"},
[4601] = {ID=4601,Desc="痴美女醫生松島"},
[4602] = {ID=4602,Desc="豐唇豔姬"},
[4603] = {ID=4603,Desc="经典炮图"},
[4604] = {ID=4604,Desc="日片罕见3P加肛交"},
[4605] = {ID=4605,Desc="爱液"},
[4606] = {ID=4606,Desc="全家死光光"},
[4607] = {ID=4607,Desc="和两勇男玩16P"},
[4608] = {ID=4608,Desc="屄……爽死……了……嗯……嗯……快……快"},
[4609] = {ID=4609,Desc="精选明星扒b图"},
[4610] = {ID=4610,Desc="淫液沾满阴道"},
[4611] = {ID=4611,Desc="做爱大全"},
[4612] = {ID=4612,Desc="田纪雲"},
[4613] = {ID=4613,Desc="毛仆街"},
[4614] = {ID=4614,Desc="cdjp李鹏*"},
[4615] = {ID=4615,Desc="大鸡巴干妹妹"},
[4616] = {ID=4616,Desc="三民主义"},
[4617] = {ID=4617,Desc="毛阴茎"},
[4618] = {ID=4618,Desc="私¥服"},
[4619] = {ID=4619,Desc="毛一国两制"},
[4620] = {ID=4620,Desc="和两勇男玩15P"},
[4621] = {ID=4621,Desc="贩毒"},
[4622] = {ID=4622,Desc="插入蜜穴"},
[4623] = {ID=4623,Desc="毛嫩b"},
[4624] = {ID=4624,Desc="作爱"},
[4625] = {ID=4625,Desc="阴茎插小穴"},
[4626] = {ID=4626,Desc="高級逼"},
[4627] = {ID=4627,Desc="美少婦"},
[4628] = {ID=4628,Desc="射精女皇系列Ladies"},
[4629] = {ID=4629,Desc="fuck外"},
[4630] = {ID=4630,Desc="免费激情网"},
[4631] = {ID=4631,Desc="淫液从密穴"},
[4632] = {ID=4632,Desc="俄罗斯美少女惨遭蹂躏-嫩的不能再嫩"},
[4633] = {ID=4633,Desc="漂亮女站着撒尿躺下被操"},
[4634] = {ID=4634,Desc="發$$論"},
[4635] = {ID=4635,Desc="朝天穴"},
[4636] = {ID=4636,Desc="创世之子猎艳之旅"},
[4637] = {ID=4637,Desc="阴茎被火热而湿润的阴道所包含着"},
[4638] = {ID=4638,Desc="毛六-四"},
[4639] = {ID=4639,Desc="蒋彦永"},
[4640] = {ID=4640,Desc="av貼圖"},
[4641] = {ID=4641,Desc="陈良"},
[4642] = {ID=4642,Desc="MM视频聊天室"},
[4643] = {ID=4643,Desc="叫床"},
[4644] = {ID=4644,Desc="中国激情淫色贴图"},
[4645] = {ID=4645,Desc="12岁处女开包现场"},
[4646] = {ID=4646,Desc="中俄边界"},
[4647] = {ID=4647,Desc="欲望成人3GP视频"},
[4648] = {ID=4648,Desc="毛发抡"},
[4649] = {ID=4649,Desc="呆卵"},
[4650] = {ID=4650,Desc="外卦"},
[4651] = {ID=4651,Desc="肉棒插入风骚少妇穴"},
[4652] = {ID=4652,Desc="MM嫩穴"},
[4653] = {ID=4653,Desc="少妇房中自淫,和两勇男玩3P,操得直叫爽"},
[4654] = {ID=4654,Desc="正清網"},
[4655] = {ID=4655,Desc="好紧的阴户"},
[4656] = {ID=4656,Desc="被10个猛男轮奸草得血直流"},
[4657] = {ID=4657,Desc="情欲奸岳母"},
[4658] = {ID=4658,Desc="林文漪"},
[4659] = {ID=4659,Desc="情色導航"},
[4660] = {ID=4660,Desc="激情套图"},
[4661] = {ID=4661,Desc="倖存"},
[4662] = {ID=4662,Desc="發掄功"},
[4663] = {ID=4663,Desc="一面打電話給現任男友"},
[4664] = {ID=4664,Desc="操女人穴"},
[4665] = {ID=4665,Desc="白石ひより-完全攻略"},
[4666] = {ID=4666,Desc="狗娘"},
[4667] = {ID=4667,Desc="新疆獨立"},
[4668] = {ID=4668,Desc="陰締"},
[4669] = {ID=4669,Desc="插进鲜嫩的小穴"},
[4670] = {ID=4670,Desc="fuck尉健行"},
[4671] = {ID=4671,Desc="迷魂药"},
[4672] = {ID=4672,Desc="mai骚"},
[4673] = {ID=4673,Desc="淫色俱乐部"},
[4674] = {ID=4674,Desc="小嫩鸡"},
[4675] = {ID=4675,Desc="张昭富"},
[4676] = {ID=4676,Desc="奇淫宝鉴"},
[4677] = {ID=4677,Desc="韩桂芝"},
[4678] = {ID=4678,Desc="18dy淫间道"},
[4679] = {ID=4679,Desc="午夜免费爽电影"},
[4680] = {ID=4680,Desc="大陆激情淫穴小说"},
[4681] = {ID=4681,Desc="汕尾事件"},
[4682] = {ID=4682,Desc="严家其"},
[4683] = {ID=4683,Desc="粗大肉棒插入蜜穴"},
[4684] = {ID=4684,Desc="103bb成人小电影"},
[4685] = {ID=4685,Desc="强奸21岁处女全过程/淫妹阴毛小穴"},
[4686] = {ID=4686,Desc="干少妇小穴"},
[4687] = {ID=4687,Desc="舔吮她的阴唇"},
[4688] = {ID=4688,Desc="嫩穴狂插还流水"},
[4689] = {ID=4689,Desc="圣角色扮演学园"},
[4690] = {ID=4690,Desc="色图乡"},
[4691] = {ID=4691,Desc="暴力虐待"},
[4692] = {ID=4692,Desc="轮盘赌"},
[4693] = {ID=4693,Desc="艳乳"},
[4694] = {ID=4694,Desc="淫奸熟睡的妈妈亚洲床上色情图库少女做爱"},
[4695] = {ID=4695,Desc="弟弟淫奸熟睡姐姐"},
[4696] = {ID=4696,Desc="蝴蝶谷黄站"},
[4697] = {ID=4697,Desc="又硬又粗的肉棒"},
[4698] = {ID=4698,Desc="陽精"},
[4699] = {ID=4699,Desc="法~~論"},
[4700] = {ID=4700,Desc="毛二乙基酰胺"},
[4701] = {ID=4701,Desc="爱滋"},
[4702] = {ID=4702,Desc="日本成人激情"},
[4703] = {ID=4703,Desc="fuck他母亲"},
[4704] = {ID=4704,Desc="法@淪"},
[4705] = {ID=4705,Desc="操淫荡"},
[4706] = {ID=4706,Desc="抽插43岁处女meimei淫叫不断"},
[4707] = {ID=4707,Desc="迅雷下载免费淫乱电影"},
[4708] = {ID=4708,Desc="春夏自由论坛"},
[4709] = {ID=4709,Desc="20岁女大学生被强#(组图)全过程"},
[4710] = {ID=4710,Desc="插他"},
[4711] = {ID=4711,Desc="骚逼小姨"},
[4712] = {ID=4712,Desc="未满18岁的请自行离开"},
[4713] = {ID=4713,Desc="日本成人激情淫穴"},
[4714] = {ID=4714,Desc="操meimei"},
[4715] = {ID=4715,Desc="两岸三地论坛"},
[4716] = {ID=4716,Desc="牛B,牛比"},
[4717] = {ID=4717,Desc="激情成人影院"},
[4718] = {ID=4718,Desc="肉棒在阴道中疯狂抽射"},
[4719] = {ID=4719,Desc="毛狗b"},
[4720] = {ID=4720,Desc="臺幣"},
[4721] = {ID=4721,Desc="大会堂"},
[4722] = {ID=4722,Desc="喔…快…爽死"},
[4723] = {ID=4723,Desc="暴操淫荡小妹妹"},
[4724] = {ID=4724,Desc="免费性爱电影网"},
[4725] = {ID=4725,Desc="免費偷窺網"},
[4726] = {ID=4726,Desc="窩窩客"},
[4727] = {ID=4727,Desc="淫B浪穴"},
[4728] = {ID=4728,Desc="哪有a片"},
[4729] = {ID=4729,Desc="又肥又紧的屄"},
[4730] = {ID=4730,Desc="李宏旨"},
[4731] = {ID=4731,Desc="避孕套"},
[4732] = {ID=4732,Desc="黄色免费电影美女"},
[4733] = {ID=4733,Desc="孫逸仙"},
[4734] = {ID=4734,Desc="张伟国"},
[4735] = {ID=4735,Desc="毛田纪云"},
[4736] = {ID=4736,Desc="激情视频聊天论坛"},
[4737] = {ID=4737,Desc="藏青社"},
[4738] = {ID=4738,Desc="陰精"},
[4739] = {ID=4739,Desc="大鸡吧插meimei淫屄"},
[4740] = {ID=4740,Desc="干您娘"},
[4741] = {ID=4741,Desc="你他媽的"},
[4742] = {ID=4742,Desc="淫水从穴门流出"},
[4743] = {ID=4743,Desc="弟弟摸姐姐胸部小说"},
[4744] = {ID=4744,Desc="阿旺晋美"},
[4745] = {ID=4745,Desc="日本無碼o"},
[4746] = {ID=4746,Desc="法^^淪"},
[4747] = {ID=4747,Desc="吸毒犯"},
[4748] = {ID=4748,Desc="三个代表"},
[4749] = {ID=4749,Desc="温家宝"},
[4750] = {ID=4750,Desc="肉棒插入子宫"},
[4751] = {ID=4751,Desc="快干我!快干我┅┅我要被干"},
[4752] = {ID=4752,Desc="我含着阴茎"},
[4753] = {ID=4753,Desc="插你"},
[4754] = {ID=4754,Desc="龔學平"},
[4755] = {ID=4755,Desc="朱容基"},
[4756] = {ID=4756,Desc="全球公審江澤民"},
[4757] = {ID=4757,Desc="岡巒"},
[4758] = {ID=4758,Desc="雞巴暴脹"},
[4759] = {ID=4759,Desc="激情淫色网站导航"},
[4760] = {ID=4760,Desc="抽插36岁处女妹妹淫叫不断"},
[4761] = {ID=4761,Desc="激情裸聊"},
[4762] = {ID=4762,Desc="亚洲淫影院"},
[4763] = {ID=4763,Desc="欧美两性淫乱图片"},
[4764] = {ID=4764,Desc="小雞巴"},
[4765] = {ID=4765,Desc="穴口挤出淫水"},
[4766] = {ID=4766,Desc="她的小穴插了进去"},
[4767] = {ID=4767,Desc="毛信访局"},
[4768] = {ID=4768,Desc="外~掛"},
[4769] = {ID=4769,Desc="法~~论"},
[4770] = {ID=4770,Desc="聚丰"},
[4771] = {ID=4771,Desc="新绝代双骄"},
[4772] = {ID=4772,Desc="手指插的进小淫穴"},
[4773] = {ID=4773,Desc="肥嫩的阴穴"},
[4774] = {ID=4774,Desc="捏弄"},
[4775] = {ID=4775,Desc="黃色影視"},
[4776] = {ID=4776,Desc="倚天屠龙别记"},
[4777] = {ID=4777,Desc="蒙古達子"},
[4778] = {ID=4778,Desc="阴蒂"},
[4779] = {ID=4779,Desc="完全免费淫色电影"},
[4780] = {ID=4780,Desc="美騷婦"},
[4781] = {ID=4781,Desc="弟弟淫奸jiejie论坛"},
[4782] = {ID=4782,Desc="淫奸熟睡的妈妈"},
[4783] = {ID=4783,Desc="独夫"},
[4784] = {ID=4784,Desc="免费色情激情电影网站"},
[4785] = {ID=4785,Desc="三級片"},
[4786] = {ID=4786,Desc="温家寶"},
[4787] = {ID=4787,Desc="艳情小说"},
[4788] = {ID=4788,Desc="fuck王乐泉"},
[4789] = {ID=4789,Desc="外\挂"},
[4790] = {ID=4790,Desc="fuck温馨"},
[4791] = {ID=4791,Desc="女友下班后被别人献花接走给操了"},
[4792] = {ID=4792,Desc="抽插46岁处女meimei淫叫不断"},
[4793] = {ID=4793,Desc="操你八辈祖宗"},
[4794] = {ID=4794,Desc="世界日報"},
[4795] = {ID=4795,Desc="插你娘"},
[4796] = {ID=4796,Desc="情色六月天mm淫乱"},
[4797] = {ID=4797,Desc="血逼"},
[4798] = {ID=4798,Desc="自慰"},
[4799] = {ID=4799,Desc="下流地帶"},
[4800] = {ID=4800,Desc="鸡巴插进了的小穴"},
[4801] = {ID=4801,Desc="小泉"},
[4802] = {ID=4802,Desc="亚洲/无码"},
[4803] = {ID=4803,Desc="fuck小穴"},
[4804] = {ID=4804,Desc="熟女乱伦联盟"},
[4805] = {ID=4805,Desc="下流地带"},
[4806] = {ID=4806,Desc="阴茎"},
[4807] = {ID=4807,Desc="校园激情淫色"},
[4808] = {ID=4808,Desc="爽女美图"},
[4809] = {ID=4809,Desc="12次下跪"},
[4810] = {ID=4810,Desc="王太華"},
[4811] = {ID=4811,Desc="淫亂軍團"},
[4812] = {ID=4812,Desc="冈村宁次"},
[4813] = {ID=4813,Desc="臺灣民國"},
[4814] = {ID=4814,Desc="和条友做爱"},
[4815] = {ID=4815,Desc="扒穴"},
[4816] = {ID=4816,Desc="cao靠"},
[4817] = {ID=4817,Desc="田紀云"},
[4818] = {ID=4818,Desc="舔屄"},
[4819] = {ID=4819,Desc="誘色uu"},
[4820] = {ID=4820,Desc="肏又嫩又紧的穴"},
[4821] = {ID=4821,Desc="嫩穴肉縫"},
[4822] = {ID=4822,Desc="賣B"},
[4823] = {ID=4823,Desc="美女主持27小时全天激情热舞"},
[4824] = {ID=4824,Desc="干你媽b"},
[4825] = {ID=4825,Desc="少女嫩穴被插出血"},
[4826] = {ID=4826,Desc="和两勇男玩29P"},
[4827] = {ID=4827,Desc="毛伊斯兰"},
[4828] = {ID=4828,Desc="se淫乱jiejie小说"},
[4829] = {ID=4829,Desc="舔舔私处meimei嗷嗷叫"},
[4830] = {ID=4830,Desc="陆肆"},
[4831] = {ID=4831,Desc="狂操搔逼妈妈"},
[4832] = {ID=4832,Desc="骚妹爽图"},
[4833] = {ID=4833,Desc="阿芙蓉"},
[4834] = {ID=4834,Desc="刘少奇"},
[4835] = {ID=4835,Desc="週六性吧"},
[4836] = {ID=4836,Desc="做ai"},
[4837] = {ID=4837,Desc="阴莖"},
[4838] = {ID=4838,Desc="日本激情淫穴电影"},
[4839] = {ID=4839,Desc="吴仪"},
[4840] = {ID=4840,Desc="毛反日"},
[4841] = {ID=4841,Desc="挖挂"},
[4842] = {ID=4842,Desc="愛妻淫穴"},
[4843] = {ID=4843,Desc="淫荡老师穴"},
[4844] = {ID=4844,Desc="无网界浏览"},
[4845] = {ID=4845,Desc="18男人摸摸B"},
[4846] = {ID=4846,Desc="毛佛祖"},
[4847] = {ID=4847,Desc="┅舒服死大鸡巴插"},
[4848] = {ID=4848,Desc="舐她的小穴"},
[4849] = {ID=4849,Desc="激情淫色视屏"},
[4850] = {ID=4850,Desc="发~~仑"},
[4851] = {ID=4851,Desc="淫奸处女穴论坛"},
[4852] = {ID=4852,Desc="色空寺"},
[4853] = {ID=4853,Desc="臺灣民国"},
[4854] = {ID=4854,Desc="靖国神社"},
[4855] = {ID=4855,Desc="毛学潮"},
[4856] = {ID=4856,Desc="廖承志"},
[4857] = {ID=4857,Desc="插你媽"},
[4858] = {ID=4858,Desc="meimei乱伦理淫穴"},
[4859] = {ID=4859,Desc="崔英杰"},
[4860] = {ID=4860,Desc="桃園蜜洞"},
[4861] = {ID=4861,Desc="嫩逼"},
[4862] = {ID=4862,Desc="他ㄇㄉ"},
[4863] = {ID=4863,Desc="大龟头在花心深处"},
[4864] = {ID=4864,Desc="捅进了她的阴道"},
[4865] = {ID=4865,Desc="台湾女人裸体贴图"},
[4866] = {ID=4866,Desc="戴红"},
[4867] = {ID=4867,Desc="毛观世音"},
[4868] = {ID=4868,Desc="喷雾型迷药"},
[4869] = {ID=4869,Desc="抽插31岁处女meimei淫叫不断王辅臣"},
[4870] = {ID=4870,Desc="春光外瀉"},
[4871] = {ID=4871,Desc="苯甲醯甲荃芽子堿"},
[4872] = {ID=4872,Desc="二乙基酰胺"},
[4873] = {ID=4873,Desc="fuck性爱"},
[4874] = {ID=4874,Desc="本站10003多部激情电影全部免费试看三天"},
[4875] = {ID=4875,Desc="发~~伦"},
[4876] = {ID=4876,Desc="性飢渴"},
[4877] = {ID=4877,Desc="黄色免费超级淫图"},
[4878] = {ID=4878,Desc="美女插穴"},
[4879] = {ID=4879,Desc="毛厕洞"},
[4880] = {ID=4880,Desc="林彪"},
[4881] = {ID=4881,Desc="极品成人电影"},
[4882] = {ID=4882,Desc="和两勇男玩24P"},
[4883] = {ID=4883,Desc="傅铁山"},
[4884] = {ID=4884,Desc="粗长的肉棒粉嫩的玉门里进出"},
[4885] = {ID=4885,Desc="日本淫图"},
[4886] = {ID=4886,Desc="龔学平"},
[4887] = {ID=4887,Desc="ㄐ掰"},
[4888] = {ID=4888,Desc="法~沦"},
[4889] = {ID=4889,Desc="萬鋼"},
[4890] = {ID=4890,Desc="淫水流出图强*免费淫电影"},
[4891] = {ID=4891,Desc="刘千石"},
[4892] = {ID=4892,Desc="免费淫电影吴宗宪搞笑语录(18禁看)"},
[4893] = {ID=4893,Desc="抽插18岁处女meimei淫叫不断"},
[4894] = {ID=4894,Desc="九评"},
[4895] = {ID=4895,Desc="乱伦淫书丝袜淫图"},
[4896] = {ID=4896,Desc="和两勇男玩23P"},
[4897] = {ID=4897,Desc="毛后庭"},
[4898] = {ID=4898,Desc="小姐打飞机"},
[4899] = {ID=4899,Desc="华通时事论坛"},
[4900] = {ID=4900,Desc="迷姦雙胞meimei"},
[4901] = {ID=4901,Desc="免费淫奸黄色电影"},
[4902] = {ID=4902,Desc="和两勇男玩22P"},
[4903] = {ID=4903,Desc="激情XXX电影("},
[4904] = {ID=4904,Desc="徐匡迪"},
[4905] = {ID=4905,Desc="生孩子没屁眼"},
[4906] = {ID=4906,Desc="全球公审江泽民"},
[4907] = {ID=4907,Desc="国民党万岁"},
[4908] = {ID=4908,Desc="伸入姐姐裙内"},
[4909] = {ID=4909,Desc="(盗摄)女子公共澡堂!"},
[4910] = {ID=4910,Desc="avi免费淫电影下载"},
[4911] = {ID=4911,Desc="和两勇男玩21P"},
[4912] = {ID=4912,Desc="成人色网站"},
[4913] = {ID=4913,Desc="少女一丝不挂做爱淫水直流!"},
[4914] = {ID=4914,Desc="朱毛"},
[4915] = {ID=4915,Desc="亚洲黄站"},
[4916] = {ID=4916,Desc="近親相姦"},
[4917] = {ID=4917,Desc="刘正荣"},
[4918] = {ID=4918,Desc="开放杂志"},
[4919] = {ID=4919,Desc="嫩穴肉缝"},
[4920] = {ID=4920,Desc="妹妹等你大鸡吧来插"},
[4921] = {ID=4921,Desc="毛客服"},
[4922] = {ID=4922,Desc="meimei┅┅爽快┅┅死了"},
[4923] = {ID=4923,Desc="护士穴"},
[4924] = {ID=4924,Desc="pp点点激情播放"},
[4925] = {ID=4925,Desc="斧头镰刀"},
[4926] = {ID=4926,Desc="公车淫奸meimei"},
[4927] = {ID=4927,Desc="裸聊日本成人电影"},
[4928] = {ID=4928,Desc="毛狂操你全家"},
[4929] = {ID=4929,Desc="日本淫色贴图区"},
[4930] = {ID=4930,Desc="meinv做爱激情电影"},
[4931] = {ID=4931,Desc="毛拉姆斯菲尔德"},
[4932] = {ID=4932,Desc="淫奸嫂子穴"},
[4933] = {ID=4933,Desc="和两勇男玩28P"},
[4934] = {ID=4934,Desc="胡主席"},
[4935] = {ID=4935,Desc="桑國衛"},
[4936] = {ID=4936,Desc="蔵獨"},
[4937] = {ID=4937,Desc="遊戲管理者"},
[4938] = {ID=4938,Desc="ying"},
[4939] = {ID=4939,Desc="弟弟mojiejie胸部小说"},
[4940] = {ID=4940,Desc="台湾成人18贴图"},
[4941] = {ID=4941,Desc="手记注册日韩5013部激情电影"},
[4942] = {ID=4942,Desc="和两勇男玩27P"},
[4943] = {ID=4943,Desc="弟弟淫奸jiejie"},
[4944] = {ID=4944,Desc="免费淫奸女A片"},
[4945] = {ID=4945,Desc="俏臀摄魄"},
[4946] = {ID=4946,Desc="操薄一波"},
[4947] = {ID=4947,Desc="作爱聚会"},
[4948] = {ID=4948,Desc="和两勇男玩26P"},
[4949] = {ID=4949,Desc="李雪峰"},
[4950] = {ID=4950,Desc="下陰"},
[4951] = {ID=4951,Desc="近親相奸"},
[4952] = {ID=4952,Desc="如果你未满32周岁请自觉离开。"},
[4953] = {ID=4953,Desc="赣您娘"},
[4954] = {ID=4954,Desc="驶你母"},
[4955] = {ID=4955,Desc="國產AV"},
[4956] = {ID=4956,Desc="操操你妈"},
[4957] = {ID=4957,Desc="365情色"},
[4958] = {ID=4958,Desc="台湾身份证"},
[4959] = {ID=4959,Desc="毛新义安"},
[4960] = {ID=4960,Desc="肉棒在小穴里好爽"},
[4961] = {ID=4961,Desc="和两勇男玩25P"},
[4962] = {ID=4962,Desc="吳邦國"},
[4963] = {ID=4963,Desc="成人黄色电影"},
[4964] = {ID=4964,Desc="毛台湾党"},
[4965] = {ID=4965,Desc="於天瑞"},
[4966] = {ID=4966,Desc="插入內射"},
[4967] = {ID=4967,Desc="肉棒刺入我的小穴"},
[4968] = {ID=4968,Desc="册那娘饿比"},
[4969] = {ID=4969,Desc="法~~轮"},
[4970] = {ID=4970,Desc="毛妈卖妈屁"},
[4971] = {ID=4971,Desc="國軍"},
[4972] = {ID=4972,Desc="亚洲激情妹妹"},
[4973] = {ID=4973,Desc="大肉茎插进小肉洞"},
[4974] = {ID=4974,Desc="毛亲民党"},
[4975] = {ID=4975,Desc="教你怎样延迟射精33岁以下禁免费淫电影a片"},
[4976] = {ID=4976,Desc="小姐打飛機"},
[4977] = {ID=4977,Desc="黄色免费电影"},
[4978] = {ID=4978,Desc="温家堡"},
[4979] = {ID=4979,Desc="法$$纶"},
[4980] = {ID=4980,Desc="歡迎G12情色電影院"},
[4981] = {ID=4981,Desc="手记注册日韩5015部激情电影"},
[4982] = {ID=4982,Desc="唐人電視臺"},
[4983] = {ID=4983,Desc="淫民俱乐部和meinv发春激情3级片试看"},
[4984] = {ID=4984,Desc="廖锡龙"},
[4985] = {ID=4985,Desc="dse淫乱小姨小说"},
[4986] = {ID=4986,Desc="海盗的悠闲生活"},
[4987] = {ID=4987,Desc="野外操B更刺激"},
[4988] = {ID=4988,Desc="法^淪"},
[4989] = {ID=4989,Desc="老鸨"},
[4990] = {ID=4990,Desc="凸肉優"},
[4991] = {ID=4991,Desc="狂插meinv穴"},
[4992] = {ID=4992,Desc="吞精騷妹"},
[4993] = {ID=4993,Desc="发$仑"},
[4994] = {ID=4994,Desc="新闻出版署"},
[4995] = {ID=4995,Desc="妈的b"},
[4996] = {ID=4996,Desc="美乳鬥豔"},
[4997] = {ID=4997,Desc="滚那吗B"},
[4998] = {ID=4998,Desc="fuck王兆国"},
[4999] = {ID=4999,Desc="妹妹美图网"},
[5000] = {ID=5000,Desc="娇妻偷欢超爽日本电影"},
[5001] = {ID=5001,Desc="和两勇男玩20P"},
[5002] = {ID=5002,Desc="杨月清"},
[5003] = {ID=5003,Desc="成人午夜"},
[5004] = {ID=5004,Desc="高文谦"},
[5005] = {ID=5005,Desc="激情爽电影,夜夜最消魂!"},
[5006] = {ID=5006,Desc="色网联盟"},
[5007] = {ID=5007,Desc="吳儀"},
[5008] = {ID=5008,Desc="zhengjian皮条"},
[5009] = {ID=5009,Desc="毛二逼"},
[5010] = {ID=5010,Desc="佳静安定片"},
[5011] = {ID=5011,Desc="毛恩格斯"},
[5012] = {ID=5012,Desc="寂寞自摸"},
[5013] = {ID=5013,Desc="欧美激情淫色贴图区"},
[5014] = {ID=5014,Desc="新任教师の淫行物语"},
[5015] = {ID=5015,Desc="学生妹meinv在野外偷情"},
[5016] = {ID=5016,Desc="23dy淫色贴图"},
[5017] = {ID=5017,Desc="吳邦囯"},
[5018] = {ID=5018,Desc="法~~輪"},
[5019] = {ID=5019,Desc="学生暴动"},
[5020] = {ID=5020,Desc="淫荡少妇露逼自拍"},
[5021] = {ID=5021,Desc="齐墨"},
[5022] = {ID=5022,Desc="吾爾開希"},
[5023] = {ID=5023,Desc="fuck投毒杀人"},
[5024] = {ID=5024,Desc="何候華"},
[5025] = {ID=5025,Desc="手记注册日韩5000部激情电影"},
[5026] = {ID=5026,Desc="激情玩穴网"},
[5027] = {ID=5027,Desc="妹妹的嫩阴唇"},
[5028] = {ID=5028,Desc="毛妳老母的"},
[5029] = {ID=5029,Desc="meimei的屄"},
[5030] = {ID=5030,Desc="马场大亨"},
[5031] = {ID=5031,Desc="肉棒插入穴中"},
[5032] = {ID=5032,Desc="学联"},
[5033] = {ID=5033,Desc="淫荡妈妈之办公室助理"},
[5034] = {ID=5034,Desc="发$伦"},
[5035] = {ID=5035,Desc="外_掛"},
[5036] = {ID=5036,Desc="毛买财富"},
[5037] = {ID=5037,Desc="肉蒲团"},
[5038] = {ID=5038,Desc="发*仑"},
[5039] = {ID=5039,Desc="做爱爽图"},
[5040] = {ID=5040,Desc="法$$綸"},
[5041] = {ID=5041,Desc="taobao靠"},
[5042] = {ID=5042,Desc="插你妈"},
[5043] = {ID=5043,Desc="母子乱伦"},
[5044] = {ID=5044,Desc="东条英机"},
[5045] = {ID=5045,Desc="杨振"},
[5046] = {ID=5046,Desc="周百刚"},
[5047] = {ID=5047,Desc="毛主席复活"},
[5048] = {ID=5048,Desc="浓浓的精液喷入了子宫"},
[5049] = {ID=5049,Desc="極品奶妹"},
[5050] = {ID=5050,Desc="肉蒲團"},
[5051] = {ID=5051,Desc="发$$论"},
[5052] = {ID=5052,Desc="用手指玩弄着阴户"},
[5053] = {ID=5053,Desc="法@@淪"},
[5054] = {ID=5054,Desc="Biao子"},
[5055] = {ID=5055,Desc="堕淫"},
[5056] = {ID=5056,Desc="亲吻小屄"},
[5057] = {ID=5057,Desc="日本第一av女优武藤兰被10男糟蹋全记录1小时"},
[5058] = {ID=5058,Desc="操濫妳那騷穴"},
[5059] = {ID=5059,Desc="精液榨取"},
[5060] = {ID=5060,Desc="毛澤東"},
[5061] = {ID=5061,Desc="外_挂"},
[5062] = {ID=5062,Desc="陈破空"},
[5063] = {ID=5063,Desc="色网阴道特写强奸31岁处女全过程"},
[5064] = {ID=5064,Desc="壮汉给纯情处女开苞"},
[5065] = {ID=5065,Desc="fa轮"},
[5066] = {ID=5066,Desc="去你的"},
[5067] = {ID=5067,Desc="黄色影视"},
[5068] = {ID=5068,Desc="熟妇骚器"},
[5069] = {ID=5069,Desc="天安門事件"},
[5070] = {ID=5070,Desc="毛吴官正"},
[5071] = {ID=5071,Desc="毛食捻屎"},
[5072] = {ID=5072,Desc="红楼绮梦"},
[5073] = {ID=5073,Desc="毛发正念"},
[5074] = {ID=5074,Desc="香港顶极淫片"},
[5075] = {ID=5075,Desc="臺灣共和國"},
[5076] = {ID=5076,Desc="外\掛"},
[5077] = {ID=5077,Desc="小澤瑪利亞~~誘惑色情"},
[5078] = {ID=5078,Desc="盐酸二氢埃托啡"},
[5079] = {ID=5079,Desc="免费淫电影网址"},
[5080] = {ID=5080,Desc="bt成人"},
[5081] = {ID=5081,Desc="大龟头碰到阴户底部最敏感的地方"},
[5082] = {ID=5082,Desc="强*十八岁美女护士"},
[5083] = {ID=5083,Desc="三唑仑"},
[5084] = {ID=5084,Desc="成人图片"},
[5085] = {ID=5085,Desc="zhengjian皮條"},
[5086] = {ID=5086,Desc="李昌"},
[5087] = {ID=5087,Desc="大肉棒干我的小穴和屁眼"},
[5088] = {ID=5088,Desc="戴相龙"},
[5089] = {ID=5089,Desc="发*伦"},
[5090] = {ID=5090,Desc="那嗎B"},
[5091] = {ID=5091,Desc="那娘错比"},
[5092] = {ID=5092,Desc="21世纪中国基金会"},
[5093] = {ID=5093,Desc="毛干七八"},
[5094] = {ID=5094,Desc="強姦物語"},
[5095] = {ID=5095,Desc="黑鮑娇"},
[5096] = {ID=5096,Desc="蒋介石"},
[5097] = {ID=5097,Desc="乱伦熟睡的jiejie"},
[5098] = {ID=5098,Desc="就去色色"},
[5099] = {ID=5099,Desc="毛狗日"},
[5100] = {ID=5100,Desc="六四死難者"},
[5101] = {ID=5101,Desc="肉棒顶到花心"},
[5102] = {ID=5102,Desc="赵南"},
[5103] = {ID=5103,Desc="毛社科院"},
[5104] = {ID=5104,Desc="亚洲淫色图"},
[5105] = {ID=5105,Desc="肉棒插进阴户内"},
[5106] = {ID=5106,Desc="沈彤"},
[5107] = {ID=5107,Desc="大鸡巴操得我好爽啊"},
[5108] = {ID=5108,Desc="干阿姨的骚穴"},
[5109] = {ID=5109,Desc="韓啟德"},
[5110] = {ID=5110,Desc="在线清晰日本超爽mm毛"},
[5111] = {ID=5111,Desc="好紧的小穴"},
[5112] = {ID=5112,Desc="meinv视频短片"},
[5113] = {ID=5113,Desc="苏晓康"},
[5114] = {ID=5114,Desc="滕文生"},
[5115] = {ID=5115,Desc="操射"},
[5116] = {ID=5116,Desc="淫荡女mm的嫩穴"},
[5117] = {ID=5117,Desc="sm调教"},
[5118] = {ID=5118,Desc="美乳看護學生"},
[5119] = {ID=5119,Desc="毛胡耀邦"},
[5120] = {ID=5120,Desc="陰部"},
[5121] = {ID=5121,Desc="柴玲"},
[5122] = {ID=5122,Desc="毛死gd"},
[5123] = {ID=5123,Desc="免费淫奸女A片段"},
[5124] = {ID=5124,Desc="插烂妹妹小屄"},
[5125] = {ID=5125,Desc="外陰"},
[5126] = {ID=5126,Desc="操草你妈"},
[5127] = {ID=5127,Desc="两性午夜激情电影"},
[5128] = {ID=5128,Desc="fuck售软件"},
[5129] = {ID=5129,Desc="毛死gm"},
[5130] = {ID=5130,Desc="毛生孩子没屁眼"},
[5131] = {ID=5131,Desc="汤光中"},
[5132] = {ID=5132,Desc="日你妈啦屄"},
[5133] = {ID=5133,Desc="小穴好紧"},
[5134] = {ID=5134,Desc="女做爱光盘亚洲"},
[5135] = {ID=5135,Desc="发*沦"},
[5136] = {ID=5136,Desc="乱伦熟睡的姐姐"},
[5137] = {ID=5137,Desc="淫奸妹妹论坛"},
[5138] = {ID=5138,Desc="高潮白漿"},
[5139] = {ID=5139,Desc="淫色成人网址导航"},
[5140] = {ID=5140,Desc="干老师的穴好爽"},
[5141] = {ID=5141,Desc="和少妇做爱好爽"},
[5142] = {ID=5142,Desc="法^倫"},
[5143] = {ID=5143,Desc="澳洲光明网"},
[5144] = {ID=5144,Desc="淫洞"},
[5145] = {ID=5145,Desc="一夜情交友"},
[5146] = {ID=5146,Desc="咪咪圖片"},
[5147] = {ID=5147,Desc="发~抡"},
[5148] = {ID=5148,Desc="国产幼女屄屄套图"},
[5149] = {ID=5149,Desc="淫女床上的自慰"},
[5150] = {ID=5150,Desc="毛江泽民"},
[5151] = {ID=5151,Desc="姐弟激情淫色"},
[5152] = {ID=5152,Desc="黄色图片"},
[5153] = {ID=5153,Desc="20岁女大学生被强#(组图)全过程免费淫"},
[5154] = {ID=5154,Desc="好色妹妹电影做爱论坛"},
[5155] = {ID=5155,Desc="平反六四"},
[5156] = {ID=5156,Desc="姐姐的阴唇好大啊"},
[5157] = {ID=5157,Desc="最淫成人贴图区"},
[5158] = {ID=5158,Desc="fuck吴"},
[5159] = {ID=5159,Desc="小鸡鸡"},
[5160] = {ID=5160,Desc="成人网站"},
[5161] = {ID=5161,Desc="fuck社会主义"},
[5162] = {ID=5162,Desc="邪恶的党"},
[5163] = {ID=5163,Desc="阴部翻过来看超拽"},
[5164] = {ID=5164,Desc="千年"},
[5165] = {ID=5165,Desc="张钢"},
[5166] = {ID=5166,Desc="meinv插穴"},
[5167] = {ID=5167,Desc="免注册台湾18dy"},
[5168] = {ID=5168,Desc="弟弟的大肉棒"},
[5169] = {ID=5169,Desc="WANZ)强制猥亵"},
[5170] = {ID=5170,Desc="妹妹的阴道真紧"},
[5171] = {ID=5171,Desc="毛妈批"},
[5172] = {ID=5172,Desc="东突暴动和独立"},
[5173] = {ID=5173,Desc="精液射进小姨的子宫"},
[5174] = {ID=5174,Desc="舔舐着阴道内壁"},
[5175] = {ID=5175,Desc="少女免费激情电影"},
[5176] = {ID=5176,Desc="毛皮条"},
[5177] = {ID=5177,Desc="鹿城激情淫色贴图"},
[5178] = {ID=5178,Desc="強制浣腸"},
[5179] = {ID=5179,Desc="操打炮"},
[5180] = {ID=5180,Desc="毛身份生成器"},
[5181] = {ID=5181,Desc="毛睾丸"},
[5182] = {ID=5182,Desc="法^侖"},
[5183] = {ID=5183,Desc="红卫兵"},
[5184] = {ID=5184,Desc="操抽插"},
[5185] = {ID=5185,Desc="小穴任由大鸡吧来回抽插"},
[5186] = {ID=5186,Desc="美脚残酷物语膣壁浸透汁"},
[5187] = {ID=5187,Desc="毛强效失意药"},
[5188] = {ID=5188,Desc="處女小穴"},
[5189] = {ID=5189,Desc="淫奸处女"},
[5190] = {ID=5190,Desc="乱伦"},
[5191] = {ID=5191,Desc="和妈妈玩插穴"},
[5192] = {ID=5192,Desc="毛肉洞"},
[5193] = {ID=5193,Desc="黃色網站"},
[5194] = {ID=5194,Desc="发$沦"},
[5195] = {ID=5195,Desc="秘密調教凌辱"},
[5196] = {ID=5196,Desc="fuck西藏独立"},
[5197] = {ID=5197,Desc="澳洲光明網"},
[5198] = {ID=5198,Desc="快活林黄站"},
[5199] = {ID=5199,Desc="fuck煞逼"},
[5200] = {ID=5200,Desc="免费黄色网站电影"},
[5201] = {ID=5201,Desc="幹你良"},
[5202] = {ID=5202,Desc="日韩meimei嫩穴淫图"},
[5203] = {ID=5203,Desc="乳交"},
[5204] = {ID=5204,Desc="fuck台湾共产党"},
[5205] = {ID=5205,Desc="美體豔姿"},
[5206] = {ID=5206,Desc="毛精子"},
[5207] = {ID=5207,Desc="肉棒快速抽插"},
[5208] = {ID=5208,Desc="林心如做爱*色情电影*免费淫电影a片"},
[5209] = {ID=5209,Desc="淫乱军团"},
[5210] = {ID=5210,Desc="法^伦"},
[5211] = {ID=5211,Desc="毛小乳头"},
[5212] = {ID=5212,Desc="好色cc"},
[5213] = {ID=5213,Desc="台湾色色导航"},
[5214] = {ID=5214,Desc="毛澤东"},
[5215] = {ID=5215,Desc="抚弄后插入小穴"},
[5216] = {ID=5216,Desc="日本美女图库"},
[5217] = {ID=5217,Desc="亚洲成人激情影院"},
[5218] = {ID=5218,Desc="毛阳具"},
[5219] = {ID=5219,Desc="抽插50岁处女meimei淫叫不断"},
[5220] = {ID=5220,Desc="露穴"},
[5221] = {ID=5221,Desc="激情文学区"},
[5222] = {ID=5222,Desc="卖。国"},
[5223] = {ID=5223,Desc="淫乱秘史"},
[5224] = {ID=5224,Desc="台湾裸体贴图成人免费电影"},
[5225] = {ID=5225,Desc="男人最爱的淫图"},
[5226] = {ID=5226,Desc="裸体少妇"},
[5227] = {ID=5227,Desc="乱交"},
[5228] = {ID=5228,Desc="不用注册淫电影网站"},
[5229] = {ID=5229,Desc="天安門屠殺"},
[5230] = {ID=5230,Desc="黄色免费电影meinv"},
[5231] = {ID=5231,Desc="内射魅惑の美少女精液滋滋往外冒"},
[5232] = {ID=5232,Desc="肉棒插入嘴"},
[5233] = {ID=5233,Desc="毛弓虽女干"},
[5234] = {ID=5234,Desc="新唐人電視臺"},
[5235] = {ID=5235,Desc="毛孙逸仙"},
[5236] = {ID=5236,Desc="操屄"},
[5237] = {ID=5237,Desc="毛丫头养的"},
[5238] = {ID=5238,Desc="妹妹的屄好紧啊"},
[5239] = {ID=5239,Desc="操陈水扁"},
[5240] = {ID=5240,Desc="我和小姨淫"},
[5241] = {ID=5241,Desc="姚依林"},
[5242] = {ID=5242,Desc="你的小穴好温暖…"},
[5243] = {ID=5243,Desc="群阴会"},
[5244] = {ID=5244,Desc="毛国务院"},
[5245] = {ID=5245,Desc="两个中国"},
[5246] = {ID=5246,Desc="毛工力"},
[5247] = {ID=5247,Desc="妹妞露穴"},
[5248] = {ID=5248,Desc="毛枪决女犯"},
[5249] = {ID=5249,Desc="在线淫洞影院"},
[5250] = {ID=5250,Desc="最新娱乐黄站"},
[5251] = {ID=5251,Desc="处女性开苞"},
[5252] = {ID=5252,Desc="成人午夜激情电影"},
[5253] = {ID=5253,Desc="发@沦"},
[5254] = {ID=5254,Desc="金发表姨子的鲜嫩蜜穴"},
[5255] = {ID=5255,Desc="台湾成人23贴图"},
[5256] = {ID=5256,Desc="九評共產黨"},
[5257] = {ID=5257,Desc="江折民"},
[5258] = {ID=5258,Desc="肉棒插入肥肥的淫道"},
[5259] = {ID=5259,Desc="粗大的龟头"},
[5260] = {ID=5260,Desc="黄色漫画"},
[5261] = {ID=5261,Desc="王涵万"},
[5262] = {ID=5262,Desc="台湾党"},
[5263] = {ID=5263,Desc="插婷婷小穴"},
[5264] = {ID=5264,Desc="奸淫少妇穴"},
[5265] = {ID=5265,Desc="天安门惨案"},
[5266] = {ID=5266,Desc="疯狂抽插嫩穴"},
[5267] = {ID=5267,Desc="日本淫色贴图"},
[5268] = {ID=5268,Desc="肉棒插进蜜穴"},
[5269] = {ID=5269,Desc="meinv激情性交射精电影"},
[5270] = {ID=5270,Desc="香港成人色网址大全"},
[5271] = {ID=5271,Desc="法^仑"},
[5272] = {ID=5272,Desc="妳媽的"},
[5273] = {ID=5273,Desc="肉棒的抽插淫荡少妇穴"},
[5274] = {ID=5274,Desc="欧美成人激情网站"},
[5275] = {ID=5275,Desc="毛日你娘"},
[5276] = {ID=5276,Desc="抽插25岁处女妹妹淫叫不断"},
[5277] = {ID=5277,Desc="毛新党"},
[5278] = {ID=5278,Desc="被老师强奸的小初中生"},
[5279] = {ID=5279,Desc="手记注册日韩5018部激情电影"},
[5280] = {ID=5280,Desc="黄色免费电影淫电影在快要射精时迅速地将"},
[5281] = {ID=5281,Desc="姐的嫩阴道"},
[5282] = {ID=5282,Desc="棒阴道好痒痒"},
[5283] = {ID=5283,Desc="弟弟的肉棒好粗"},
[5284] = {ID=5284,Desc="用力刺激小穴"},
[5285] = {ID=5285,Desc="干小姐小穴"},
[5286] = {ID=5286,Desc="我的小屄儿好痒"},
[5287] = {ID=5287,Desc="阴道图片"},
[5288] = {ID=5288,Desc="私**服"},
[5289] = {ID=5289,Desc="张震"},
[5290] = {ID=5290,Desc="性交課"},
[5291] = {ID=5291,Desc="免费淫虫在线看电影"},
[5292] = {ID=5292,Desc="麻醉钢枪"},
[5293] = {ID=5293,Desc="强奸29岁处女全过程/淫妹阴毛小穴"},
[5294] = {ID=5294,Desc="性爱擂台"},
[5295] = {ID=5295,Desc="柯慶施"},
[5296] = {ID=5296,Desc="法^^沦"},
[5297] = {ID=5297,Desc="中国美女淫色贴图"},
[5298] = {ID=5298,Desc="高潮白浆"},
[5299] = {ID=5299,Desc="成人午夜激情聊天室"},
[5300] = {ID=5300,Desc="毛日你妈"},
[5301] = {ID=5301,Desc="幹穴"},
[5302] = {ID=5302,Desc="精子射到妈妈的穴里"},
[5303] = {ID=5303,Desc="毛狗操"},
[5304] = {ID=5304,Desc="毛佛展千手法"},
[5305] = {ID=5305,Desc="王希哲"},
[5306] = {ID=5306,Desc="妈妈你的穴好紧"},
[5307] = {ID=5307,Desc="操淫荡妹妹穴"},
[5308] = {ID=5308,Desc="妈个比"},
[5309] = {ID=5309,Desc="淫meimei电影论坛"},
[5310] = {ID=5310,Desc="┅┅妈舒服死了"},
[5311] = {ID=5311,Desc="毛金日成"},
[5312] = {ID=5312,Desc="龟头抵制花心顶住子宫口"},
[5313] = {ID=5313,Desc="亚洲贴图区月宫"},
[5314] = {ID=5314,Desc="meinv主持24小时全天激情热舞"},
[5315] = {ID=5315,Desc="勾魂少妇"},
[5316] = {ID=5316,Desc="勾魂少婦"},
[5317] = {ID=5317,Desc="免费在线淫电影欣赏"},
[5318] = {ID=5318,Desc="毛六四"},
[5319] = {ID=5319,Desc="蒙古达子"},
[5320] = {ID=5320,Desc="干炮插穴"},
[5321] = {ID=5321,Desc="冊那"},
[5322] = {ID=5322,Desc="解放军306医院"},
[5323] = {ID=5323,Desc="共产党靠"},
[5324] = {ID=5324,Desc="肉棒插入浪穴"},
[5325] = {ID=5325,Desc="外@@掛"},
[5326] = {ID=5326,Desc="女儿的阴道好嫩啊"},
[5327] = {ID=5327,Desc="免费淫电影a片。母子淫*乱轮现场看扶正肉棒"},
[5328] = {ID=5328,Desc="香港免费淫电影"},
[5329] = {ID=5329,Desc="毛苹果日报"},
[5330] = {ID=5330,Desc="范田紗~120%!H喜不自禁住在一起日記"},
[5331] = {ID=5331,Desc="阴茎把淫穴塞满"},
[5332] = {ID=5332,Desc="教你怎样延迟射精18岁以下禁免费淫电影a片"},
[5333] = {ID=5333,Desc="李文斌"},
[5334] = {ID=5334,Desc="免费淫色电影下载"},
[5335] = {ID=5335,Desc="淫荡家族群体性交"},
[5336] = {ID=5336,Desc="meinv激情视频聊天室"},
[5337] = {ID=5337,Desc="毛美国之音"},
[5338] = {ID=5338,Desc="插你老母"},
[5339] = {ID=5339,Desc="淫奸护士穴"},
[5340] = {ID=5340,Desc="鸡吧刺入她肛门"},
[5341] = {ID=5341,Desc="中国娱乐黄站"},
[5342] = {ID=5342,Desc="骚浪淫水的小屄儿"},
[5343] = {ID=5343,Desc="麥角酸二乙基酰胺"},
[5344] = {ID=5344,Desc="干穴"},
[5345] = {ID=5345,Desc="指点江山论坛"},
[5346] = {ID=5346,Desc="幼男做爱妹妹做爱"},
[5347] = {ID=5347,Desc="淫奸阿姨穴"},
[5348] = {ID=5348,Desc="八九风波"},
[5349] = {ID=5349,Desc="白小姐"},
[5350] = {ID=5350,Desc="毛董建华"},
[5351] = {ID=5351,Desc="毛外\挂"},
[5352] = {ID=5352,Desc="错那吗比"},
[5353] = {ID=5353,Desc="pp241淫色导航"},
[5354] = {ID=5354,Desc="毛外汇局"},
[5355] = {ID=5355,Desc="假阳具插穴"},
[5356] = {ID=5356,Desc="艳妇淫女"},
[5357] = {ID=5357,Desc="本站10002多部激情电影全部免费试看三天"},
[5358] = {ID=5358,Desc="哥哥淫奸meimei穴"},
[5359] = {ID=5359,Desc="無碼炮圖"},
[5360] = {ID=5360,Desc="法功"},
[5361] = {ID=5361,Desc="淫水嫩穴"},
[5362] = {ID=5362,Desc="毛迷歼药"},
[5363] = {ID=5363,Desc="弓虽女干"},
[5364] = {ID=5364,Desc="亚洲成人激情视频"},
[5365] = {ID=5365,Desc="94bb成人小电影"},
[5366] = {ID=5366,Desc="家庭乱伦小说"},
[5367] = {ID=5367,Desc="马巧珍"},
[5368] = {ID=5368,Desc="毛外_挂"},
[5369] = {ID=5369,Desc="册那"},
[5370] = {ID=5370,Desc="可爱双胞胎美幼少女的性趣[亚无][402mb]"},
[5371] = {ID=5371,Desc="毛铁道部"},
[5372] = {ID=5372,Desc="大鸡巴狠狠插进了她那又肥又嫩的小骚屄儿"},
[5373] = {ID=5373,Desc="二穴中出"},
[5374] = {ID=5374,Desc="无码体验"},
[5375] = {ID=5375,Desc="外@@挂"},
[5376] = {ID=5376,Desc="日本18淫电影网"},
[5377] = {ID=5377,Desc="咪咪图片"},
[5378] = {ID=5378,Desc="情色谷"},
[5379] = {ID=5379,Desc="奸淫护士穴"},
[5380] = {ID=5380,Desc="卡通美女淫色贴图"},
[5381] = {ID=5381,Desc="发^抡"},
[5382] = {ID=5382,Desc="口交"},
[5383] = {ID=5383,Desc="自由民主论坛"},
[5384] = {ID=5384,Desc="扒开她两扇阴唇"},
[5385] = {ID=5385,Desc="免注册在线淫电影"},
[5386] = {ID=5386,Desc="反党"},
[5387] = {ID=5387,Desc="骚鸡"},
[5388] = {ID=5388,Desc="淫荡痴女贴图"},
[5389] = {ID=5389,Desc="幹你老母"},
[5390] = {ID=5390,Desc="一邊一國"},
[5391] = {ID=5391,Desc="成人色情网站初中女生偷拍"},
[5392] = {ID=5392,Desc="dick呂秀蓮"},
[5393] = {ID=5393,Desc="fuck射精"},
[5394] = {ID=5394,Desc="幹你老比"},
[5395] = {ID=5395,Desc="mm乱淫自拍图片"},
[5396] = {ID=5396,Desc="激情淫色mp3"},
[5397] = {ID=5397,Desc="儿子的肉棒顶到妈妈的花心"},
[5398] = {ID=5398,Desc="毛狂操"},
[5399] = {ID=5399,Desc="爱女人"},
[5400] = {ID=5400,Desc="新华社"},
[5401] = {ID=5401,Desc="法@倫"},
[5402] = {ID=5402,Desc="……浪穴……大肉棍"},
[5403] = {ID=5403,Desc="毛李登辉"},
[5404] = {ID=5404,Desc="pp点点激情"},
[5405] = {ID=5405,Desc="淫色搔女网"},
[5406] = {ID=5406,Desc="鸡巴对准淫穴"},
[5407] = {ID=5407,Desc="毛李红志"},
[5408] = {ID=5408,Desc="淫女穴"},
[5409] = {ID=5409,Desc="美乳斗艳"},
[5410] = {ID=5410,Desc="毛天鹅之旅"},
[5411] = {ID=5411,Desc="nana无修正AV女优ハメ撮り"},
[5412] = {ID=5412,Desc="弟大物勃"},
[5413] = {ID=5413,Desc="天天干貼圖"},
[5414] = {ID=5414,Desc="共和国卫士"},
[5415] = {ID=5415,Desc="fuck审计署"},
[5416] = {ID=5416,Desc="反共"},
[5417] = {ID=5417,Desc="性交课"},
[5418] = {ID=5418,Desc="大鸡巴干meimei"},
[5419] = {ID=5419,Desc="六合采"},
[5420] = {ID=5420,Desc="分裂国家"},
[5421] = {ID=5421,Desc="姐弟淫乱还玩3P"},
[5422] = {ID=5422,Desc="毛系统公告"},
[5423] = {ID=5423,Desc="法*功"},
[5424] = {ID=5424,Desc="免费妹妹黄色淫乱电影"},
[5425] = {ID=5425,Desc="淫賤少女"},
[5426] = {ID=5426,Desc="騷妹妹"},
[5427] = {ID=5427,Desc="男女激情淫乱图片穴"},
[5428] = {ID=5428,Desc="肉把鸡巴包得紧紧"},
[5429] = {ID=5429,Desc="東北xx網"},
[5430] = {ID=5430,Desc="毛警匪一家"},
[5431] = {ID=5431,Desc="毛龟公"},
[5432] = {ID=5432,Desc="操操蛋"},
[5433] = {ID=5433,Desc="毛睾"},
[5434] = {ID=5434,Desc="毛五星红旗"},
[5435] = {ID=5435,Desc="拉姆斯菲爾德"},
[5436] = {ID=5436,Desc="fuck西藏天葬"},
[5437] = {ID=5437,Desc="fuck王岐山"},
[5438] = {ID=5438,Desc="阴道图打手枪专用"},
[5439] = {ID=5439,Desc="又肥又紧的阴道"},
[5440] = {ID=5440,Desc="高清性愛"},
[5441] = {ID=5441,Desc="淫奸处女电影"},
[5442] = {ID=5442,Desc="毛发抡功"},
[5443] = {ID=5443,Desc="毛傻比"},
[5444] = {ID=5444,Desc="成人图片导航"},
[5445] = {ID=5445,Desc="激爽电影VIP会员注册区"},
[5446] = {ID=5446,Desc="色情工厂"},
[5447] = {ID=5447,Desc="ji女"},
[5448] = {ID=5448,Desc="不要注册激情免费电影"},
[5449] = {ID=5449,Desc="午夜成人场"},
[5450] = {ID=5450,Desc="陳水扁"},
[5451] = {ID=5451,Desc="毛煞逼"},
[5452] = {ID=5452,Desc="毛游戏管理员"},
[5453] = {ID=5453,Desc="毛性虐待"},
[5454] = {ID=5454,Desc="雞8"},
[5455] = {ID=5455,Desc="亚洲成人午夜场"},
[5456] = {ID=5456,Desc="fuck王刚"},
[5457] = {ID=5457,Desc="注册通道看情色电影"},
[5458] = {ID=5458,Desc="色网阴道特写强奸26岁处女全过程"},
[5459] = {ID=5459,Desc="抽插29岁处女妹妹淫叫不断"},
[5460] = {ID=5460,Desc="乱伦都市"},
[5461] = {ID=5461,Desc="fuck系统讯息"},
[5462] = {ID=5462,Desc="淫妻浪女"},
[5463] = {ID=5463,Desc="男人若妻夢交"},
[5464] = {ID=5464,Desc="戈万钧"},
[5465] = {ID=5465,Desc="捅逼"},
[5466] = {ID=5466,Desc="父女激情淫色"},
[5467] = {ID=5467,Desc="操你八輩祖宗"},
[5468] = {ID=5468,Desc="毛何候华"},
[5469] = {ID=5469,Desc="保卫台湾"},
[5470] = {ID=5470,Desc="肉棒插蜜穴"},
[5471] = {ID=5471,Desc="抽插53岁处女meimei淫叫不断"},
[5472] = {ID=5472,Desc="白虎嫩B"},
[5473] = {ID=5473,Desc="达尔富尔"},
[5474] = {ID=5474,Desc="毛阴唇"},
[5475] = {ID=5475,Desc="法@侖"},
[5476] = {ID=5476,Desc="激情自拍小电影"},
[5477] = {ID=5477,Desc="抽插55岁处女meimei淫叫不断"},
[5478] = {ID=5478,Desc="高橋英4套片合共"},
[5479] = {ID=5479,Desc="少妇自慰"},
[5480] = {ID=5480,Desc="儿子淫奸姐姐"},
[5481] = {ID=5481,Desc="八九民运"},
[5482] = {ID=5482,Desc="毛升达毕业证"},
[5483] = {ID=5483,Desc="王炳章"},
[5484] = {ID=5484,Desc="翘臀嫩穴"},
[5485] = {ID=5485,Desc="被干"},
[5486] = {ID=5486,Desc="毛肉棒"},
[5487] = {ID=5487,Desc="哥哥干的人家好舒服啊"},
[5488] = {ID=5488,Desc="月宫套图社"},
[5489] = {ID=5489,Desc="法lun功"},
[5490] = {ID=5490,Desc="教你怎样延迟射精36岁以下禁免费淫电影a片"},
[5491] = {ID=5491,Desc="操mm穴交"},
[5492] = {ID=5492,Desc="陰門"},
[5493] = {ID=5493,Desc="催情药"},
[5494] = {ID=5494,Desc="激情淫影院"},
[5495] = {ID=5495,Desc="日本灌肠"},
[5496] = {ID=5496,Desc="suck你媽的"},
[5497] = {ID=5497,Desc="在线淫电影,免费淫色情电影"},
[5498] = {ID=5498,Desc="激情四川方言版"},
[5499] = {ID=5499,Desc="姦淫電車"},
[5500] = {ID=5500,Desc="姬胜德"},
[5501] = {ID=5501,Desc="蔣經國"},
[5502] = {ID=5502,Desc="韓正"},
[5503] = {ID=5503,Desc="手记注册日韩5012部激情电影"},
[5504] = {ID=5504,Desc="台湾成人24贴图"},
[5505] = {ID=5505,Desc="女儿淫奸妈妈穴"},
[5506] = {ID=5506,Desc="日本顶级淫片"},
[5507] = {ID=5507,Desc="摸擦小肥穴"},
[5508] = {ID=5508,Desc="14色se成人站"},
[5509] = {ID=5509,Desc="性学教授"},
[5510] = {ID=5510,Desc="小阴唇被鸡巴猛的塞进去"},
[5511] = {ID=5511,Desc="法@伦"},
[5512] = {ID=5512,Desc="妳老母的"},
[5513] = {ID=5513,Desc="李紅志"},
[5514] = {ID=5514,Desc="毛肉棍"},
[5515] = {ID=5515,Desc="大鸡巴插入肉穴"},
[5516] = {ID=5516,Desc="精品性交图"},
[5517] = {ID=5517,Desc="瑞士金融大学"},
[5518] = {ID=5518,Desc="成人色情导航"},
[5519] = {ID=5519,Desc="完全免费在线淫电影"},
[5520] = {ID=5520,Desc="色狼俱乐部"},
[5521] = {ID=5521,Desc="滾那嗎老比"},
[5522] = {ID=5522,Desc="孫中山"},
[5523] = {ID=5523,Desc="陰阜"},
[5524] = {ID=5524,Desc="淫电影//居然花钱请人教性爱姿势(组图)"},
[5525] = {ID=5525,Desc="可卡因"},
[5526] = {ID=5526,Desc="张林"},
[5527] = {ID=5527,Desc="meinv淫图"},
[5528] = {ID=5528,Desc="淫图新社区"},
[5529] = {ID=5529,Desc="鲍戈"},
[5530] = {ID=5530,Desc="妈妈嫩穴…痒"},
[5531] = {ID=5531,Desc="顏射"},
[5532] = {ID=5532,Desc="午夜激情妹妹"},
[5533] = {ID=5533,Desc="馬巧珍"},
[5534] = {ID=5534,Desc="姑妈的阴道好紧啊"},
[5535] = {ID=5535,Desc="处女开包"},
[5536] = {ID=5536,Desc="亞洲性虐"},
[5537] = {ID=5537,Desc="法@仑"},
[5538] = {ID=5538,Desc="日你全家"},
[5539] = {ID=5539,Desc="發~~掄"},
[5540] = {ID=5540,Desc="去她妈"},
[5541] = {ID=5541,Desc="姐姐的阴道好紧啊"},
[5542] = {ID=5542,Desc="分裂國家"},
[5543] = {ID=5543,Desc="毛淫荡"},
[5544] = {ID=5544,Desc="毛联合国"},
[5545] = {ID=5545,Desc="…你的穴太紧了"},
[5546] = {ID=5546,Desc="招鸡"},
[5547] = {ID=5547,Desc="fuck倭寇"},
[5548] = {ID=5548,Desc="本站10022多部激情电影全部免费试看"},
[5549] = {ID=5549,Desc="丁香社区"},
[5550] = {ID=5550,Desc="发仑"},
[5551] = {ID=5551,Desc="张志清"},
[5552] = {ID=5552,Desc="毛钱其琛"},
[5553] = {ID=5553,Desc="狠狠地肏"},
[5554] = {ID=5554,Desc="丁香社區"},
[5555] = {ID=5555,Desc="┅我要泄了┅┅喔"},
[5556] = {ID=5556,Desc="无毛穴"},
[5557] = {ID=5557,Desc="发伦"},
[5558] = {ID=5558,Desc="毛高丽棒子"},
[5559] = {ID=5559,Desc="日本灌腸"},
[5560] = {ID=5560,Desc="X媽牛比"},
[5561] = {ID=5561,Desc="少妇的骚穴淫液"},
[5562] = {ID=5562,Desc="你的大鸡巴好粗"},
[5563] = {ID=5563,Desc="成人激情论坛导航"},
[5564] = {ID=5564,Desc="李洪智"},
[5565] = {ID=5565,Desc="处女淫荡色情网址大全"},
[5566] = {ID=5566,Desc="陳雲"},
[5567] = {ID=5567,Desc="美女小穴贴图偷拍少女乳房"},
[5568] = {ID=5568,Desc="江独裁"},
[5569] = {ID=5569,Desc="大话战国"},
[5570] = {ID=5570,Desc="性色社区"},
[5571] = {ID=5571,Desc="淫荡俱乐部"},
[5572] = {ID=5572,Desc="母子乱伦之淫穴"},
[5573] = {ID=5573,Desc="毛回民暴动"},
[5574] = {ID=5574,Desc="那吗老比"},
[5575] = {ID=5575,Desc="賽妳阿母"},
[5576] = {ID=5576,Desc="法腀功"},
[5577] = {ID=5577,Desc="台獨分子"},
[5578] = {ID=5578,Desc="鲍彤"},
[5579] = {ID=5579,Desc="六四平暴"},
[5580] = {ID=5580,Desc="酥胸誘惑"},
[5581] = {ID=5581,Desc="大法弟子"},
[5582] = {ID=5582,Desc="公审江泽民"},
[5583] = {ID=5583,Desc="可卡叶"},
[5584] = {ID=5584,Desc="韓啓德"},
[5585] = {ID=5585,Desc="毛江主席"},
[5586] = {ID=5586,Desc="在线免费激情裸聊"},
[5587] = {ID=5587,Desc="法西斯"},
[5588] = {ID=5588,Desc="AV足球賽11男VS11女大對決"},
[5589] = {ID=5589,Desc="毛环保总局"},
[5590] = {ID=5590,Desc="洞洞淫水清晰大图"},
[5591] = {ID=5591,Desc="针对台湾"},
[5592] = {ID=5592,Desc="独立台湾会"},
[5593] = {ID=5593,Desc="儿子顶到姐姐的花心"},
[5594] = {ID=5594,Desc="懆您娘"},
[5595] = {ID=5595,Desc="发^^仑"},
[5596] = {ID=5596,Desc="穴图"},
[5597] = {ID=5597,Desc="色链"},
[5598] = {ID=5598,Desc="杨尚昆"},
[5599] = {ID=5599,Desc="粗大的鸡巴插入穴洞"},
[5600] = {ID=5600,Desc="強姦處女"},
[5601] = {ID=5601,Desc="法*倫"},
[5602] = {ID=5602,Desc="現役看護婦下载"},
[5603] = {ID=5603,Desc="公交车上操女大学生"},
[5604] = {ID=5604,Desc="淫荡女护士"},
[5605] = {ID=5605,Desc="穴圖"},
[5606] = {ID=5606,Desc="少妇房中自淫,和两勇男玩1P,操得直叫爽"},
[5607] = {ID=5607,Desc="亚洲午夜成人影院中心"},
[5608] = {ID=5608,Desc="三K党"},
[5609] = {ID=5609,Desc="护士脱衣图台湾激情电影"},
[5610] = {ID=5610,Desc="免费淫电影"},
[5611] = {ID=5611,Desc="fuck网管"},
[5612] = {ID=5612,Desc="少妇嫩穴扒开嫩穴扒开嫩穴"},
[5613] = {ID=5613,Desc="手记注册日韩5023部激情电影"},
[5614] = {ID=5614,Desc="成人电影免费成人电影"},
[5615] = {ID=5615,Desc="发^^伦"},
[5616] = {ID=5616,Desc="激情成人淫片"},
[5617] = {ID=5617,Desc="妳她妈的"},
[5618] = {ID=5618,Desc="人大代表大會"},
[5619] = {ID=5619,Desc="成人论坛"},
[5620] = {ID=5620,Desc="張震"},
[5621] = {ID=5621,Desc="逼你老母"},
[5622] = {ID=5622,Desc="操日本淫女穴"},
[5623] = {ID=5623,Desc="精蟲"},
[5624] = {ID=5624,Desc="中共"},
[5625] = {ID=5625,Desc="毛三陪女"},
[5626] = {ID=5626,Desc="啊……快插啊……小屄美死了"},
[5627] = {ID=5627,Desc="陳奎元"},
[5628] = {ID=5628,Desc="大波騷婦"},
[5629] = {ID=5629,Desc="小骚洞"},
[5630] = {ID=5630,Desc="本。拉登"},
[5631] = {ID=5631,Desc="成人导航"},
[5632] = {ID=5632,Desc="纪登奎"},
[5633] = {ID=5633,Desc="毛管理人员"},
[5634] = {ID=5634,Desc="牛逼靠"},
[5635] = {ID=5635,Desc="刘亦菲淫阴道流血色片"},
[5636] = {ID=5636,Desc="懆您妈"},
[5637] = {ID=5637,Desc="发**轮"},
[5638] = {ID=5638,Desc="黄色免费淫乱电影强奸片"},
[5639] = {ID=5639,Desc="毛共匪"},
[5640] = {ID=5640,Desc="扒开嫩穴"},
[5641] = {ID=5641,Desc="ハイパー×潮吹きハイパ"},
[5642] = {ID=5642,Desc="U/R靠"},
[5643] = {ID=5643,Desc="媽B"},
[5644] = {ID=5644,Desc="淫色小说网短片色情"},
[5645] = {ID=5645,Desc="阿扁萬歲"},
[5646] = {ID=5646,Desc="香港激情淫色区"},
[5647] = {ID=5647,Desc="鸡巴插进娇嫩的花蕊"},
[5648] = {ID=5648,Desc="法*侖"},
[5649] = {ID=5649,Desc="阿姨的阴道好大啊"},
[5650] = {ID=5650,Desc="兆鴻"},
[5651] = {ID=5651,Desc="妈逼"},
[5652] = {ID=5652,Desc="情色照片"},
[5653] = {ID=5653,Desc="紧穴"},
[5654] = {ID=5654,Desc="瞳-饮精地狱!监禁无限中出"},
[5655] = {ID=5655,Desc="哥哥使劲插我"},
[5656] = {ID=5656,Desc="野鸡"},
[5657] = {ID=5657,Desc="贺国强"},
[5658] = {ID=5658,Desc="強暴"},
[5659] = {ID=5659,Desc="毛看棋软件"},
[5660] = {ID=5660,Desc="免注册淫电影爱的色放"},
[5661] = {ID=5661,Desc="血腥图片"},
[5662] = {ID=5662,Desc="処女強奪3穴串挿輪姦"},
[5663] = {ID=5663,Desc="毛日你"},
[5664] = {ID=5664,Desc="法$倫"},
[5665] = {ID=5665,Desc="操那吗比"},
[5666] = {ID=5666,Desc="鹽酸二氢埃托啡"},
[5667] = {ID=5667,Desc="射进小穴"},
[5668] = {ID=5668,Desc="粗硬大肉棍…"},
[5669] = {ID=5669,Desc="本站10013多部激情电影全部免费试看三天"},
[5670] = {ID=5670,Desc="视频聊天导航"},
[5671] = {ID=5671,Desc="騷婦掰B"},
[5672] = {ID=5672,Desc="掰穴打洞"},
[5673] = {ID=5673,Desc="法^^抡"},
[5674] = {ID=5674,Desc="偷情宝鉴"},
[5675] = {ID=5675,Desc="吴方城"},
[5676] = {ID=5676,Desc="森水Cocoa"},
[5677] = {ID=5677,Desc="立即登陆观看激情爽片"},
[5678] = {ID=5678,Desc="肉棒噗嗤一声插入阴道"},
[5679] = {ID=5679,Desc="日本成人贴图区论坛"},
[5680] = {ID=5680,Desc="午夜剧场成人视频聊天"},
[5681] = {ID=5681,Desc="淫荡美眉就喜欢玩男人"},
[5682] = {ID=5682,Desc="做愛寫真集"},
[5683] = {ID=5683,Desc="阴道"},
[5684] = {ID=5684,Desc="直操她嘴射精"},
[5685] = {ID=5685,Desc="强奸44岁处女全过程/淫妹阴毛小穴"},
[5686] = {ID=5686,Desc="淫水四益"},
[5687] = {ID=5687,Desc="阴茎在子宫口游荡"},
[5688] = {ID=5688,Desc="幹炮"},
[5689] = {ID=5689,Desc="公车淫奸jiejie"},
[5690] = {ID=5690,Desc="装逼靠"},
[5691] = {ID=5691,Desc="小穴被大鸡吧胀的好痒"},
[5692] = {ID=5692,Desc="卡弗蒂"},
[5693] = {ID=5693,Desc="色狼论坛"},
[5694] = {ID=5694,Desc="免费淫色贴图"},
[5695] = {ID=5695,Desc="昝愛宗"},
[5696] = {ID=5696,Desc="骚穴怒放"},
[5697] = {ID=5697,Desc="毛他妈的"},
[5698] = {ID=5698,Desc="干进妹妹的小穴"},
[5699] = {ID=5699,Desc="鸡巴用力深度插入"},
[5700] = {ID=5700,Desc="淫奸jiejie论坛"},
[5701] = {ID=5701,Desc="媽比"},
[5702] = {ID=5702,Desc="姐弟激情淫秽"},
[5703] = {ID=5703,Desc="成人影視"},
[5704] = {ID=5704,Desc="下载黄色淫乱电影"},
[5705] = {ID=5705,Desc="都市乱伦"},
[5706] = {ID=5706,Desc="日本情色淫电影"},
[5707] = {ID=5707,Desc="肉棒深深插入纖弱的肉洞裡"},
[5708] = {ID=5708,Desc="鹿城娛樂"},
[5709] = {ID=5709,Desc="穴居人淫色贴图"},
[5710] = {ID=5710,Desc="共黨"},
[5711] = {ID=5711,Desc="免费在线淫电影网站"},
[5712] = {ID=5712,Desc="中共中央中华人民共和国"},
[5713] = {ID=5713,Desc="毛多维新闻"},
[5714] = {ID=5714,Desc="打倒中國共產黨"},
[5715] = {ID=5715,Desc="18dy影院"},
[5716] = {ID=5716,Desc="舔哥哥鸡巴"},
[5717] = {ID=5717,Desc="杨白冰"},
[5718] = {ID=5718,Desc="成人影视"},
[5719] = {ID=5719,Desc="清纯派美女可爱的让人想狂干她!【RMVB/195MB】"},
[5720] = {ID=5720,Desc="淫语痴女"},
[5721] = {ID=5721,Desc="日你妈靠"},
[5722] = {ID=5722,Desc="色天堂18禁"},
[5723] = {ID=5723,Desc="毛淫货"},
[5724] = {ID=5724,Desc="眾志成城"},
[5725] = {ID=5725,Desc="肉棒狂插好爽"},
[5726] = {ID=5726,Desc="华建敏"},
[5727] = {ID=5727,Desc="毛淫贱"},
[5728] = {ID=5728,Desc="你妈靠"},
[5729] = {ID=5729,Desc="少女被强奸到高潮时偷拍小A片"},
[5730] = {ID=5730,Desc="毛肉棍子"},
[5731] = {ID=5731,Desc="毛人代会"},
[5732] = {ID=5732,Desc="他吗的"},
[5733] = {ID=5733,Desc="韓桂芝"},
[5734] = {ID=5734,Desc="jiejie的小穴被大鸡巴插得好舒服哟"},
[5735] = {ID=5735,Desc="毛发轮"},
[5736] = {ID=5736,Desc="靠母"},
[5737] = {ID=5737,Desc="發~~淪"},
[5738] = {ID=5738,Desc="法鯩功"},
[5739] = {ID=5739,Desc="厕所偷拍"},
[5740] = {ID=5740,Desc="強姦"},
[5741] = {ID=5741,Desc="欧美淫乱美女论坛"},
[5742] = {ID=5742,Desc="六四参加者回忆录"},
[5743] = {ID=5743,Desc="大粗肉棒插入阴户"},
[5744] = {ID=5744,Desc="本站10014多部激情电影全部免费试看"},
[5745] = {ID=5745,Desc="达赖"},
[5746] = {ID=5746,Desc="台湾分裂"},
[5747] = {ID=5747,Desc="肏我的小屄"},
[5748] = {ID=5748,Desc="李弘旨"},
[5749] = {ID=5749,Desc="色情淫图"},
[5750] = {ID=5750,Desc="做愛自拍"},
[5751] = {ID=5751,Desc="mm在线电影a片3级片"},
[5752] = {ID=5752,Desc="极欲燃烧"},
[5753] = {ID=5753,Desc="中国人都在上的四大当"},
[5754] = {ID=5754,Desc="儿届中央政治局委员"},
[5755] = {ID=5755,Desc="操穴喷水"},
[5756] = {ID=5756,Desc="fuck十八摸"},
[5757] = {ID=5757,Desc="杀人犯"},
[5758] = {ID=5758,Desc="少妇野外淫穴"},
[5759] = {ID=5759,Desc="免费淫色妹妹电影"},
[5760] = {ID=5760,Desc="插在小穴里的肉棒"},
[5761] = {ID=5761,Desc="吴百益"},
[5762] = {ID=5762,Desc="肉棒在阴道内喷射"},
[5763] = {ID=5763,Desc="怎样延迟射精25岁以下禁"},
[5764] = {ID=5764,Desc="肉棒深入花心"},
[5765] = {ID=5765,Desc="天皇陛下"},
[5766] = {ID=5766,Desc="色妹妹大型黄站"},
[5767] = {ID=5767,Desc="淫奸少女贴图淫奸女护士贴图淫暴亚洲"},
[5768] = {ID=5768,Desc="好死不如赖活着"},
[5769] = {ID=5769,Desc="mm电影小片段试看免费淫影片"},
[5770] = {ID=5770,Desc="达賴"},
[5771] = {ID=5771,Desc="fuck威而钢"},
[5772] = {ID=5772,Desc="天安门屠城"},
[5773] = {ID=5773,Desc="免费激情电影"},
[5774] = {ID=5774,Desc="激情书屋男女做爱片段"},
[5775] = {ID=5775,Desc="迷藥"},
[5776] = {ID=5776,Desc="灼热的龟头紧顶住柔嫩的菊花口"},
[5777] = {ID=5777,Desc="朱蒙"},
[5778] = {ID=5778,Desc="午夜激爽电影网【成人电影色区】"},
[5779] = {ID=5779,Desc="歐美無套"},
[5780] = {ID=5780,Desc="毛外-挂"},
[5781] = {ID=5781,Desc="鸡巴狠狠插入娇嫩夹紧的阴道中"},
[5782] = {ID=5782,Desc="馬萬祺"},
[5783] = {ID=5783,Desc="淫色电影论坛"},
[5784] = {ID=5784,Desc="肉棒深插"},
[5785] = {ID=5785,Desc="狗乘"},
[5786] = {ID=5786,Desc="咪咪情色"},
[5787] = {ID=5787,Desc="私服"},
[5788] = {ID=5788,Desc="淫乱金发meinv"},
[5789] = {ID=5789,Desc="阴部"},
[5790] = {ID=5790,Desc="玩弄她的骚屄嫩肉"},
[5791] = {ID=5791,Desc="你姥姥的"},
[5792] = {ID=5792,Desc="爽爽爽台湾成人贴图"},
[5793] = {ID=5793,Desc="毛外/挂"},
[5794] = {ID=5794,Desc="webgame。com。cn靠"},
[5795] = {ID=5795,Desc="无码内射"},
[5796] = {ID=5796,Desc="淫荡痴女"},
[5797] = {ID=5797,Desc="大鸡吧寸寸深入直顶她小屄的花心"},
[5798] = {ID=5798,Desc="女同志淫乱贴图"},
[5799] = {ID=5799,Desc="性爱频道"},
[5800] = {ID=5800,Desc="激情淫色动画片"},
[5801] = {ID=5801,Desc="操你全家"},
[5802] = {ID=5802,Desc="毛妓女"},
[5803] = {ID=5803,Desc="毛水去车仑"},
[5804] = {ID=5804,Desc="双峰微颤"},
[5805] = {ID=5805,Desc="妹妹穴"},
[5806] = {ID=5806,Desc="教你怎样延迟射精19岁以下禁免费淫电影a片"},
[5807] = {ID=5807,Desc="毛国际法院"},
[5808] = {ID=5808,Desc="毛黄"},
[5809] = {ID=5809,Desc="大鸡巴顶进meimei的花心"},
[5810] = {ID=5810,Desc="买卖枪支"},
[5811] = {ID=5811,Desc="fuck五星红旗"},
[5812] = {ID=5812,Desc="哥哥的肉棒好长啊"},
[5813] = {ID=5813,Desc="教你怎样延迟射精24岁以下禁免费淫电影a片"},
[5814] = {ID=5814,Desc="毛胡紧套"},
[5815] = {ID=5815,Desc="塞你娘"},
[5816] = {ID=5816,Desc="尖阁列岛"},
[5817] = {ID=5817,Desc="舔的下体湿润阴毛"},
[5818] = {ID=5818,Desc="丽春苑"},
[5819] = {ID=5819,Desc="陈晓宁"},
[5820] = {ID=5820,Desc="骚屄娘们儿"},
[5821] = {ID=5821,Desc="发~沦"},
[5822] = {ID=5822,Desc="老少乱伦"},
[5823] = {ID=5823,Desc="激情小电影"},
[5824] = {ID=5824,Desc="幹妳媽"},
[5825] = {ID=5825,Desc="手记注册日韩5001部激情电影"},
[5826] = {ID=5826,Desc="郑万通"},
[5827] = {ID=5827,Desc="成人小說"},
[5828] = {ID=5828,Desc="强奸30岁处女全过程/淫妹阴毛小穴"},
[5829] = {ID=5829,Desc="狂操你全家"},
[5830] = {ID=5830,Desc="台湾成人21贴图"},
[5831] = {ID=5831,Desc="孫家正"},
[5832] = {ID=5832,Desc="美女口含鸡吧玩内射"},
[5833] = {ID=5833,Desc="赛你娘"},
[5834] = {ID=5834,Desc="小电影免费看高潮屋贴图做爱视频表演"},
[5835] = {ID=5835,Desc="日本美女鲍鱼贴图区"},
[5836] = {ID=5836,Desc="av贴图"},
[5837] = {ID=5837,Desc="民主潮"},
[5838] = {ID=5838,Desc="(人妻。com)人妻の情事2"},
[5839] = {ID=5839,Desc="婷婷淫色贴图"},
[5840] = {ID=5840,Desc="做爱视频下载"},
[5841] = {ID=5841,Desc="毛切七"},
[5842] = {ID=5842,Desc="鹿城色妹妹大型黄站"},
[5843] = {ID=5843,Desc="106bb成人小电影"},
[5844] = {ID=5844,Desc="中国大型免费成人黄色图片区"},
[5845] = {ID=5845,Desc="毛牛比"},
[5846] = {ID=5846,Desc="操博讯"},
[5847] = {ID=5847,Desc="姨妈和我乱伦理小说"},
[5848] = {ID=5848,Desc="猛插小嫩穴"},
[5849] = {ID=5849,Desc="台湾成人视频聊天"},
[5850] = {ID=5850,Desc="meinv激情SM处女淫水"},
[5851] = {ID=5851,Desc="錢其琛"},
[5852] = {ID=5852,Desc="毛官商勾结"},
[5853] = {ID=5853,Desc="台灣倫亂網"},
[5854] = {ID=5854,Desc="美女穴"},
[5855] = {ID=5855,Desc="煞筆"},
[5856] = {ID=5856,Desc="黄色靠"},
[5857] = {ID=5857,Desc="毛贾庆林"},
[5858] = {ID=5858,Desc="操催情药"},
[5859] = {ID=5859,Desc="本站10017多部激情电影全部免费试看"},
[5860] = {ID=5860,Desc="吸精痴女"},
[5861] = {ID=5861,Desc="你把妈的穴穴插满了"},
[5862] = {ID=5862,Desc="毛王八蛋"},
[5863] = {ID=5863,Desc="激情解码两性电影"},
[5864] = {ID=5864,Desc="亞洲風暴情色"},
[5865] = {ID=5865,Desc="毛狗屁"},
[5866] = {ID=5866,Desc="赛妳阿母"},
[5867] = {ID=5867,Desc="毛毛XX"},
[5868] = {ID=5868,Desc="遗精"},
[5869] = {ID=5869,Desc="毛狗屎"},
[5870] = {ID=5870,Desc="毛温家保"},
[5871] = {ID=5871,Desc="操大*FA弟*子"},
[5872] = {ID=5872,Desc="最大的性虐待及另類性生活網站"},
[5873] = {ID=5873,Desc="粉嫩淫臀"},
[5874] = {ID=5874,Desc="韩国三级电影"},
[5875] = {ID=5875,Desc="无码做爱"},
[5876] = {ID=5876,Desc="欧美激情淫色贴图"},
[5877] = {ID=5877,Desc="淫語痴女"},
[5878] = {ID=5878,Desc="毛奶子"},
[5879] = {ID=5879,Desc="毛军委"},
[5880] = {ID=5880,Desc="毛新光明"},
[5881] = {ID=5881,Desc="法^^掄"},
[5882] = {ID=5882,Desc="毛王岐山"},
[5883] = {ID=5883,Desc="廖晖"},
[5884] = {ID=5884,Desc="香港激情论坛"},
[5885] = {ID=5885,Desc="李沛瑶"},
[5886] = {ID=5886,Desc="王洪文"},
[5887] = {ID=5887,Desc="龟头顶在花心深处"},
[5888] = {ID=5888,Desc="廖暉"},
[5889] = {ID=5889,Desc="又骚又大的屄"},
[5890] = {ID=5890,Desc="激情淫穴小说"},
[5891] = {ID=5891,Desc="六四死难者"},
[5892] = {ID=5892,Desc="姐姐的阴户好嫩啊"},
[5893] = {ID=5893,Desc="免费成人电影"},
[5894] = {ID=5894,Desc="美女下体淫水直流"},
[5895] = {ID=5895,Desc="口交靠"},
[5896] = {ID=5896,Desc="小姨令我射了好几次"},
[5897] = {ID=5897,Desc="极品奶妹"},
[5898] = {ID=5898,Desc="淫戰群P"},
[5899] = {ID=5899,Desc="毛鸡芭"},
[5900] = {ID=5900,Desc="毛严方军"},
[5901] = {ID=5901,Desc="林心如做爱网"},
[5902] = {ID=5902,Desc="那嗎老比"},
[5903] = {ID=5903,Desc="和姐姐肏屄"},
[5904] = {ID=5904,Desc="幹妳娘"},
[5905] = {ID=5905,Desc="天天情色"},
[5906] = {ID=5906,Desc="色书库"},
[5907] = {ID=5907,Desc="六。四事件"},
[5908] = {ID=5908,Desc="厕奴"},
[5909] = {ID=5909,Desc="女醫師過度輪姦陰道麻痺+大量中出強制飲尿小便斗"},
[5910] = {ID=5910,Desc="鸡巴插入肉洞"},
[5911] = {ID=5911,Desc="教你怎样延迟射精21岁以下禁免费淫电影a片"},
[5912] = {ID=5912,Desc="發**綸"},
[5913] = {ID=5913,Desc="厕所盗摄护士姐姐性感美腿图"},
[5914] = {ID=5914,Desc="毛军妓"},
[5915] = {ID=5915,Desc="百家性黄站"},
[5916] = {ID=5916,Desc="田紀雲"},
[5917] = {ID=5917,Desc="又猛插几下"},
[5918] = {ID=5918,Desc="儿子淫奸jiejie穴"},
[5919] = {ID=5919,Desc="本站10016多部激情电影全部免费试看三天"},
[5920] = {ID=5920,Desc="jiejie的阴户"},
[5921] = {ID=5921,Desc="美女激情SM处女淫水"},
[5922] = {ID=5922,Desc="于大海"},
[5923] = {ID=5923,Desc="操大便"},
[5924] = {ID=5924,Desc="粗大的肉棒"},
[5925] = {ID=5925,Desc="李兰菊"},
[5926] = {ID=5926,Desc="阴道口湿淋淋的"},
[5927] = {ID=5927,Desc="家庭乱伦"},
[5928] = {ID=5928,Desc="少妇操尿穴"},
[5929] = {ID=5929,Desc="本站10015多部激情电影全部免费试看三天"},
[5930] = {ID=5930,Desc="毛胡乔木"},
[5931] = {ID=5931,Desc="将肉棒插在阴道里面"},
[5932] = {ID=5932,Desc="淫meimei成人娱乐"},
[5933] = {ID=5933,Desc="fuck傻吊"},
[5934] = {ID=5934,Desc="又肥又嫩的阴户"},
[5935] = {ID=5935,Desc="政治協商會議"},
[5936] = {ID=5936,Desc="日本激情淫影片下载"},
[5937] = {ID=5937,Desc="它妈地"},
[5938] = {ID=5938,Desc="又骚又淫的屄"},
[5939] = {ID=5939,Desc="免费淫奸女护士图片"},
[5940] = {ID=5940,Desc="淘宝靠"},
[5941] = {ID=5941,Desc="儿子淫奸姐姐穴"},
[5942] = {ID=5942,Desc="肉棒狂插流出淫液"},
[5943] = {ID=5943,Desc="淫民激情文学图库"},
[5944] = {ID=5944,Desc="龟头直抵子宫口"},
[5945] = {ID=5945,Desc="bt淫色电影免费下载"},
[5946] = {ID=5946,Desc="meimei淫图"},
[5947] = {ID=5947,Desc="国产无码"},
[5948] = {ID=5948,Desc="毛斧头镰刀"},
[5949] = {ID=5949,Desc="淫阴贴图"},
[5950] = {ID=5950,Desc="法~倫"},
[5951] = {ID=5951,Desc="淫水狂流"},
[5952] = {ID=5952,Desc="白立忱"},
[5953] = {ID=5953,Desc="抽插33岁处女妹妹淫叫不断"},
[5954] = {ID=5954,Desc="毛王太华"},
[5955] = {ID=5955,Desc="毛龟头"},
[5956] = {ID=5956,Desc="fuck天安门一代"},
[5957] = {ID=5957,Desc="一党"},
[5958] = {ID=5958,Desc="操meinv穴"},
[5959] = {ID=5959,Desc="张万年"},
[5960] = {ID=5960,Desc="激情成人午夜"},
[5961] = {ID=5961,Desc="99bb成人小电影"},
[5962] = {ID=5962,Desc="毛他祖宗"},
[5963] = {ID=5963,Desc="那娘瘟比"},
[5964] = {ID=5964,Desc="粉穴嫩逼"},
[5965] = {ID=5965,Desc="粉嫩粉嫩的小穴流水"},
[5966] = {ID=5966,Desc="精液喷射小穴"},
[5967] = {ID=5967,Desc="至淫绝地"},
[5968] = {ID=5968,Desc="插后庭"},
[5969] = {ID=5969,Desc="淫荡美女医生"},
[5970] = {ID=5970,Desc="meimei的穴好多水"},
[5971] = {ID=5971,Desc="和阿姨玩插穴游戏"},
[5972] = {ID=5972,Desc="公審李鵬"},
[5973] = {ID=5973,Desc="手指用力扣进小穴"},
[5974] = {ID=5974,Desc="阴茎被肉壁紧紧的夹着"},
[5975] = {ID=5975,Desc="毛驶你老母"},
[5976] = {ID=5976,Desc="淫液流入穴"},
[5977] = {ID=5977,Desc="姊姊的小骚屄"},
[5978] = {ID=5978,Desc="无疆界"},
[5979] = {ID=5979,Desc="性感美女淫穴"},
[5980] = {ID=5980,Desc="淫液顺着肉洞流下"},
[5981] = {ID=5981,Desc="日本激情淫穴片"},
[5982] = {ID=5982,Desc="自插小穴"},
[5983] = {ID=5983,Desc="自慰摳穴"},
[5984] = {ID=5984,Desc="一根材激情五月天"},
[5985] = {ID=5985,Desc="毛狗娘"},
[5986] = {ID=5986,Desc="极品激情电影"},
[5987] = {ID=5987,Desc="美女鸡吧图"},
[5988] = {ID=5988,Desc="韩日成人激情影院"},
[5989] = {ID=5989,Desc="硕大的肉棒"},
[5990] = {ID=5990,Desc="色情电影免费看"},
[5991] = {ID=5991,Desc="毛外—挂"},
[5992] = {ID=5992,Desc="淫乱姐姐小说"},
[5993] = {ID=5993,Desc="操护士的穴"},
[5994] = {ID=5994,Desc="自拍美穴"},
[5995] = {ID=5995,Desc="成人黄色网站"},
[5996] = {ID=5996,Desc="不玩了靠"},
[5997] = {ID=5997,Desc="法~侖"},
[5998] = {ID=5998,Desc="日本淫色动画片"},
[5999] = {ID=5999,Desc="粗……肉洞"},
[6000] = {ID=6000,Desc="挺进小穴"},
[6001] = {ID=6001,Desc="强奸25岁处女全过程/*妹阴毛小穴"},
[6002] = {ID=6002,Desc="莲花逼"},
[6003] = {ID=6003,Desc="毛监察部"},
[6004] = {ID=6004,Desc="操大东亚共荣"},
[6005] = {ID=6005,Desc="将肉棒插进她身体的最深处"},
[6006] = {ID=6006,Desc="欧美淫乱meinv论坛"},
[6007] = {ID=6007,Desc="戳B"},
[6008] = {ID=6008,Desc="狼族淫色群交蜜穴"},
[6009] = {ID=6009,Desc="fuck圣女峰"},
[6010] = {ID=6010,Desc="台湾建国运动组织"},
[6011] = {ID=6011,Desc="抽插49岁处女meimei淫叫不断"},
[6012] = {ID=6012,Desc="一股滚热的精液从插得紫红的龟头马眼里激射而出"},
[6013] = {ID=6013,Desc="淫电影"},
[6014] = {ID=6014,Desc="fuck文物局"},
[6015] = {ID=6015,Desc="婷婷激情俱乐部"},
[6016] = {ID=6016,Desc="肉棒狂插"},
[6017] = {ID=6017,Desc="毛发论"},
[6018] = {ID=6018,Desc="肉棒顶开阴唇"},
[6019] = {ID=6019,Desc="男女激情电影"},
[6020] = {ID=6020,Desc="情色藝術天空"},
[6021] = {ID=6021,Desc="激情淫色网站"},
[6022] = {ID=6022,Desc="日韩淫女电影"},
[6023] = {ID=6023,Desc="龟头在阴道里抽插"},
[6024] = {ID=6024,Desc="meinv发春激情在线电影"},
[6025] = {ID=6025,Desc="哥哥粗大的肉棒"},
[6026] = {ID=6026,Desc="我漂亮的老师狗爬式做爱现场"},
[6027] = {ID=6027,Desc="傅作义"},
[6028] = {ID=6028,Desc="干进她穴内的龟头"},
[6029] = {ID=6029,Desc="陰部特寫"},
[6030] = {ID=6030,Desc="插进少女粉红阴道"},
[6031] = {ID=6031,Desc="抽插31岁处女妹妹淫叫不断"},
[6032] = {ID=6032,Desc="羅富和"},
[6033] = {ID=6033,Desc="ㄙㄞ你老师"},
[6034] = {ID=6034,Desc="色meimei乱伦理小说"},
[6035] = {ID=6035,Desc="母子淫奸乱轮现场看"},
[6036] = {ID=6036,Desc="猛嫩穴把肉棒包得紧紧"},
[6037] = {ID=6037,Desc="儿子的大肉棒"},
[6038] = {ID=6038,Desc="妹妹的嫩阴户"},
[6039] = {ID=6039,Desc="毛蒙古独立"},
[6040] = {ID=6040,Desc="淫师荡母"},
[6041] = {ID=6041,Desc="教你怎样延迟射精"},
[6042] = {ID=6042,Desc="露B"},
[6043] = {ID=6043,Desc="毛联易"},
[6044] = {ID=6044,Desc="りすぎ家庭教師"},
[6045] = {ID=6045,Desc="52淫色导航"},
[6046] = {ID=6046,Desc="香港激情淫电影"},
[6047] = {ID=6047,Desc="熟妇人妻"},
[6048] = {ID=6048,Desc="小穴……好爽"},
[6049] = {ID=6049,Desc="又大又硬的肉棒"},
[6050] = {ID=6050,Desc="色猫情色论坛"},
[6051] = {ID=6051,Desc="刘宾雁"},
[6052] = {ID=6052,Desc="你媽比"},
[6053] = {ID=6053,Desc="好长的肉棒"},
[6054] = {ID=6054,Desc="乔冠华"},
[6055] = {ID=6055,Desc="法~伦"},
[6056] = {ID=6056,Desc="黄色三级片"},
[6057] = {ID=6057,Desc="蔡崇国"},
[6058] = {ID=6058,Desc="温加宝"},
[6059] = {ID=6059,Desc="反革命暴亂"},
[6060] = {ID=6060,Desc="插妈妈的小穴"},
[6061] = {ID=6061,Desc="发^沦"},
[6062] = {ID=6062,Desc="废物"},
[6063] = {ID=6063,Desc="唐家璇"},
[6064] = {ID=6064,Desc="又鳥女幹"},
[6065] = {ID=6065,Desc="台湾成人22贴图"},
[6066] = {ID=6066,Desc="阴阜"},
[6067] = {ID=6067,Desc="刚发育好的处女就这么被干"},
[6068] = {ID=6068,Desc="本站可能有不适合未成年人观看的内容"},
[6069] = {ID=6069,Desc="噴精"},
[6070] = {ID=6070,Desc="穴门美女图库"},
[6071] = {ID=6071,Desc="蜜穴贴图"},
[6072] = {ID=6072,Desc="淫奸mm电影"},
[6073] = {ID=6073,Desc="成人在线免费淫电影"},
[6074] = {ID=6074,Desc="法~仑"},
[6075] = {ID=6075,Desc="阴门"},
[6076] = {ID=6076,Desc="三夫妻结伴旅游换妻大乱交"},
[6077] = {ID=6077,Desc="淫民激情文学图库欣赏"},
[6078] = {ID=6078,Desc="反革命暴乱"},
[6079] = {ID=6079,Desc="毛我操你"},
[6080] = {ID=6080,Desc="毛欢城"},
[6081] = {ID=6081,Desc="mo擦小肥穴"},
[6082] = {ID=6082,Desc="淫虎成人导航"},
[6083] = {ID=6083,Desc="エロい女中出し20連発姫野愛"},
[6084] = {ID=6084,Desc="淫奸小姨电影"},
[6085] = {ID=6085,Desc="本站绝无任何形式木马病毒"},
[6086] = {ID=6086,Desc="骚姐乱伦"},
[6087] = {ID=6087,Desc="無套自拍"},
[6088] = {ID=6088,Desc="白虎少婦"},
[6089] = {ID=6089,Desc="毛麻醉药"},
[6090] = {ID=6090,Desc="粗大的阴茎与紧窄的阴道壁之间的剧烈磨擦"},
[6091] = {ID=6091,Desc="jiejie的嫩阴唇"},
[6092] = {ID=6092,Desc="賣比"},
[6093] = {ID=6093,Desc="張榕明"},
[6094] = {ID=6094,Desc="慰春情"},
[6095] = {ID=6095,Desc="凌锋"},
[6096] = {ID=6096,Desc="黃色電影"},
[6097] = {ID=6097,Desc="迅雷下载淫乱电影"},
[6098] = {ID=6098,Desc="陰道"},
[6099] = {ID=6099,Desc="夫妻激情自拍图"},
[6100] = {ID=6100,Desc="歡迎G10情色電影院"},
[6101] = {ID=6101,Desc="插B"},
[6102] = {ID=6102,Desc="洪吟"},
[6103] = {ID=6103,Desc="看单亲妈妈给儿子的性启蒙"},
[6104] = {ID=6104,Desc="性交靠"},
[6105] = {ID=6105,Desc="懂文华"},
[6106] = {ID=6106,Desc="雞芭"},
[6107] = {ID=6107,Desc="毛公安"},
[6108] = {ID=6108,Desc="放荡熟女"},
[6109] = {ID=6109,Desc="肉穴肥肥的裹着阴茎"},
[6110] = {ID=6110,Desc="激情裸体"},
[6111] = {ID=6111,Desc="性免费电影"},
[6112] = {ID=6112,Desc="黄色做爱电影"},
[6113] = {ID=6113,Desc="西藏喇嘛"},
[6114] = {ID=6114,Desc="六四以後"},
[6115] = {ID=6115,Desc="王从吾"},
[6116] = {ID=6116,Desc="烫的大鸡巴在小穴里来回抽插"},
[6117] = {ID=6117,Desc="免费视频裸聊"},
[6118] = {ID=6118,Desc="丰满的视频聊天主持"},
[6119] = {ID=6119,Desc="熊焱"},
[6120] = {ID=6120,Desc="和嫂嫂淫穴"},
[6121] = {ID=6121,Desc="狂插妹妹穴"},
[6122] = {ID=6122,Desc="厕所盗摄护士姐姐"},
[6123] = {ID=6123,Desc="李瑞环"},
[6124] = {ID=6124,Desc="插你全家"},
[6125] = {ID=6125,Desc="鬼畜輪奸"},
[6126] = {ID=6126,Desc="fuck傻卵"},
[6127] = {ID=6127,Desc="插小穴妹妹直流水"},
[6128] = {ID=6128,Desc="迷药"},
[6129] = {ID=6129,Desc="婷婷激情网"},
[6130] = {ID=6130,Desc="肉棒插入又大又深的穴"},
[6131] = {ID=6131,Desc="我使劲快速抽插龟头好麻"},
[6132] = {ID=6132,Desc="插入她的搔B爽死了"},
[6133] = {ID=6133,Desc="肉摩擦她处女的肉穴深处"},
[6134] = {ID=6134,Desc="纶功"},
[6135] = {ID=6135,Desc="插妹妹图"},
[6136] = {ID=6136,Desc="激情淫贴图网"},
[6137] = {ID=6137,Desc="狂插护士穴"},
[6138] = {ID=6138,Desc="吮吸肉棒"},
[6139] = {ID=6139,Desc="毛一党专制"},
[6140] = {ID=6140,Desc="我操靠"},
[6141] = {ID=6141,Desc="陈昌智"},
[6142] = {ID=6142,Desc="操操逼"},
[6143] = {ID=6143,Desc="妓院"},
[6144] = {ID=6144,Desc="阳具在她的蜜穴里抽插"},
[6145] = {ID=6145,Desc="熊炎"},
[6146] = {ID=6146,Desc="香港激情淫色贴图区"},
[6147] = {ID=6147,Desc="8仙靠"},
[6148] = {ID=6148,Desc="毛喷你"},
[6149] = {ID=6149,Desc="大众成人网站"},
[6150] = {ID=6150,Desc="捅进她的阴道"},
[6151] = {ID=6151,Desc="姐姐被轮奸"},
[6152] = {ID=6152,Desc="舌頭穴"},
[6153] = {ID=6153,Desc="催眠悪用集団轮奸30连発"},
[6154] = {ID=6154,Desc="骚嫩的蜜穴紧紧地裹着大鸡巴"},
[6155] = {ID=6155,Desc="李洪志"},
[6156] = {ID=6156,Desc="立花里子のレズビアン母乳M女コレクション"},
[6157] = {ID=6157,Desc="八九風波"},
[6158] = {ID=6158,Desc="西藏獨立"},
[6159] = {ID=6159,Desc="日本无码成人电影"},
[6160] = {ID=6160,Desc="阿片烟"},
[6161] = {ID=6161,Desc="大陆鹿城黄站"},
[6162] = {ID=6162,Desc="操护士"},
[6163] = {ID=6163,Desc="共铲党"},
[6164] = {ID=6164,Desc="激情淫色论坛"},
[6165] = {ID=6165,Desc="激情淫穴小少妇"},
[6166] = {ID=6166,Desc="法錀功"},
[6167] = {ID=6167,Desc="亚洲色meimei"},
[6168] = {ID=6168,Desc="王沪宁"},
[6169] = {ID=6169,Desc="狂操空姐"},
[6170] = {ID=6170,Desc="毛高校骚乱"},
[6171] = {ID=6171,Desc="法轮功"},
[6172] = {ID=6172,Desc="騷雞"},
[6173] = {ID=6173,Desc="fofg妈的"},
[6174] = {ID=6174,Desc="干妳妈"},
[6175] = {ID=6175,Desc="彭佩云"},
[6176] = {ID=6176,Desc="六-四"},
[6177] = {ID=6177,Desc="淫meimei"},
[6178] = {ID=6178,Desc="幹拎娘"},
[6179] = {ID=6179,Desc="婷婷淫女小说"},
[6180] = {ID=6180,Desc="荣毅仁"},
[6181] = {ID=6181,Desc="抽插小穴"},
[6182] = {ID=6182,Desc="豔照門"},
[6183] = {ID=6183,Desc="臭西化"},
[6184] = {ID=6184,Desc="d7se淫色贴图"},
[6185] = {ID=6185,Desc="騷B熟女"},
[6186] = {ID=6186,Desc="免费淫电影在线观看"},
[6187] = {ID=6187,Desc="H淫乱乳娘"},
[6188] = {ID=6188,Desc="法@掄"},
[6189] = {ID=6189,Desc="豬操"},
[6190] = {ID=6190,Desc="江猪"},
[6191] = {ID=6191,Desc="万淫堂"},
[6192] = {ID=6192,Desc="令人喷血的春宫108姿势(组图)19岁禁看"},
[6193] = {ID=6193,Desc="BT亚洲无码影片"},
[6194] = {ID=6194,Desc="肉棒小浪穴┅"},
[6195] = {ID=6195,Desc="臺灣狗"},
[6196] = {ID=6196,Desc="淫荡的嫂子"},
[6197] = {ID=6197,Desc="宁王府淫图导航"},
[6198] = {ID=6198,Desc="成人图库,操女人穴,色情贴图,性交贴图,操MM穴,超级淫图"},
[6199] = {ID=6199,Desc="肉棒顶入小穴口"},
[6200] = {ID=6200,Desc="你色吗"},
[6201] = {ID=6201,Desc="干妳娘"},
[6202] = {ID=6202,Desc="稻生美纪"},
[6203] = {ID=6203,Desc="做愛電影"},
[6204] = {ID=6204,Desc="女儿的阴道好紧啊"},
[6205] = {ID=6205,Desc="操妳妈"},
[6206] = {ID=6206,Desc="淫水四濺"},
[6207] = {ID=6207,Desc="激情淫色贴图论坛"},
[6208] = {ID=6208,Desc="我受不了啦!┅┅好勇猛的鸡巴"},
[6209] = {ID=6209,Desc="冉英"},
[6210] = {ID=6210,Desc="免费午夜电影"},
[6211] = {ID=6211,Desc="毛台湾帝国"},
[6212] = {ID=6212,Desc="黄家骁"},
[6213] = {ID=6213,Desc="抽插39岁处女meimei淫叫不断"},
[6214] = {ID=6214,Desc="六。四"},
[6215] = {ID=6215,Desc="美国小姐淫荡舔乳照"},
[6216] = {ID=6216,Desc="炮友之家"},
[6217] = {ID=6217,Desc="好嫩的屄啊"},
[6218] = {ID=6218,Desc="免费淫色电影论坛"},
[6219] = {ID=6219,Desc="毛射精"},
[6220] = {ID=6220,Desc="歡歡娛樂時空"},
[6221] = {ID=6221,Desc="毛西藏独立"},
[6222] = {ID=6222,Desc="人大代表"},
[6223] = {ID=6223,Desc="h站靠"},
[6224] = {ID=6224,Desc="法抡功"},
[6225] = {ID=6225,Desc="逼痒"},
[6226] = {ID=6226,Desc="情兽"},
[6227] = {ID=6227,Desc="夏夏娱乐免费黄站"},
[6228] = {ID=6228,Desc="法轮大法"},
[6229] = {ID=6229,Desc="林心如特级片"},
[6230] = {ID=6230,Desc="你弄得阿姨爽死了"},
[6231] = {ID=6231,Desc="毛膏药旗"},
[6232] = {ID=6232,Desc="麗春苑"},
[6233] = {ID=6233,Desc="狂乳激揺"},
[6234] = {ID=6234,Desc="緊穴"},
[6235] = {ID=6235,Desc="超美少女系列"},
[6236] = {ID=6236,Desc="本站10019多部激情电影全部免费试看"},
[6237] = {ID=6237,Desc="激情电影"},
[6238] = {ID=6238,Desc="激情成人桃色电影"},
[6239] = {ID=6239,Desc="爸干得你┅┅舒服"},
[6240] = {ID=6240,Desc="台湾情色網"},
[6241] = {ID=6241,Desc="在乳房和阴道摸弄"},
[6242] = {ID=6242,Desc="美乳美穴"},
[6243] = {ID=6243,Desc="女卫生间盗摄图"},
[6244] = {ID=6244,Desc="淫水四溅"},
[6245] = {ID=6245,Desc="毛去你妈的"},
[6246] = {ID=6246,Desc="毛李宏旨"},
[6247] = {ID=6247,Desc="毛妳马的"},
[6248] = {ID=6248,Desc="免费黄色电影/色情电影/激情电影/黄色电影/我该死/A片"},
[6249] = {ID=6249,Desc="乌兰夫"},
[6250] = {ID=6250,Desc="肉棒精液淫液阴精"},
[6251] = {ID=6251,Desc="免费淫色影院"},
[6252] = {ID=6252,Desc="肉棒好粗啊"},
[6253] = {ID=6253,Desc="花和尚成人论坛"},
[6254] = {ID=6254,Desc="摸你雞巴"},
[6255] = {ID=6255,Desc="劉少奇"},
[6256] = {ID=6256,Desc="日本激情片"},
[6257] = {ID=6257,Desc="怎么能知道女性手淫过"},
[6258] = {ID=6258,Desc="大龟头顶住了她的花心深处"},
[6259] = {ID=6259,Desc="小泉恶搞"},
[6260] = {ID=6260,Desc="大肉棒插入阴户内"},
[6261] = {ID=6261,Desc="給處女開苞"},
[6262] = {ID=6262,Desc="插护士穴真爽"},
[6263] = {ID=6263,Desc="こどもの时间VOL。1-7"},
[6264] = {ID=6264,Desc="妹妹的阴道好紧啊"},
[6265] = {ID=6265,Desc="怎样延迟射精18岁以下禁"},
[6266] = {ID=6266,Desc="亚洲穴贴图激情自拍穴"},
[6267] = {ID=6267,Desc="毛经社理事会"},
[6268] = {ID=6268,Desc="法(轮)功"},
[6269] = {ID=6269,Desc="淫女教师小说"},
[6270] = {ID=6270,Desc="枪淫少妇"},
[6271] = {ID=6271,Desc="本站10021多部激情电影全部免费试看三天"},
[6272] = {ID=6272,Desc="日本av女优"},
[6273] = {ID=6273,Desc="逼癢"},
[6274] = {ID=6274,Desc="伦乱小说大全"},
[6275] = {ID=6275,Desc="三极试看片"},
[6276] = {ID=6276,Desc="少妇自淫"},
[6277] = {ID=6277,Desc="鄭萬通"},
[6278] = {ID=6278,Desc="淫水橫溢"},
[6279] = {ID=6279,Desc="肉棒插进子宫了"},
[6280] = {ID=6280,Desc="毛阴户"},
[6281] = {ID=6281,Desc="又紧又嫩的屄儿"},
[6282] = {ID=6282,Desc="大型黄站"},
[6283] = {ID=6283,Desc="毛塞白"},
[6284] = {ID=6284,Desc="激情黄色在线"},
[6285] = {ID=6285,Desc="傻鳥"},
[6286] = {ID=6286,Desc="fuck新疆独立"},
[6287] = {ID=6287,Desc="抽插47岁处女妹妹淫叫不断"},
[6288] = {ID=6288,Desc="meinv穴自拍"},
[6289] = {ID=6289,Desc="二屄"},
[6290] = {ID=6290,Desc="妈卖妈屁"},
[6291] = {ID=6291,Desc="操车仑"},
[6292] = {ID=6292,Desc="大鸡吧来回抽插着小穴"},
[6293] = {ID=6293,Desc="毛克林顿"},
[6294] = {ID=6294,Desc="fuck透视眼镜"},
[6295] = {ID=6295,Desc="毛可待因"},
[6296] = {ID=6296,Desc="六四民運"},
[6297] = {ID=6297,Desc="黃色漫畫"},
[6298] = {ID=6298,Desc="毛傻屄"},
[6299] = {ID=6299,Desc="干机掰"},
[6300] = {ID=6300,Desc="毛日他娘"},
[6301] = {ID=6301,Desc="少婦偷情"},
[6302] = {ID=6302,Desc="色网阴道特写强奸32岁处女全过程"},
[6303] = {ID=6303,Desc="在线黄色电影"},
[6304] = {ID=6304,Desc="毛发展研究中心"},
[6305] = {ID=6305,Desc="成人激情视频聊天室秘密入口"},
[6306] = {ID=6306,Desc="东条"},
[6307] = {ID=6307,Desc="色聊人午夜激情聊天"},
[6308] = {ID=6308,Desc="巨炮肉穴"},
[6309] = {ID=6309,Desc="老师的淫液"},
[6310] = {ID=6310,Desc="手记注册日韩5029部激情电影"},
[6311] = {ID=6311,Desc="龟头抽插小穴"},
[6312] = {ID=6312,Desc="周總理"},
[6313] = {ID=6313,Desc="乳峰"},
[6314] = {ID=6314,Desc="fuck我干"},
[6315] = {ID=6315,Desc="毛马克思"},
[6316] = {ID=6316,Desc="成人导航网"},
[6317] = {ID=6317,Desc="乳房急促而有节奏的起伏着"},
[6318] = {ID=6318,Desc="操他"},
[6319] = {ID=6319,Desc="毛耶和华"},
[6320] = {ID=6320,Desc="肥嫩嫩的大陰唇粉紅色的小陰唇"},
[6321] = {ID=6321,Desc="一边一国独裁"},
[6322] = {ID=6322,Desc="插你爸"},
[6323] = {ID=6323,Desc="色网阴道特写强奸28岁处女全过程"},
[6324] = {ID=6324,Desc="娇妻超市被奸"},
[6325] = {ID=6325,Desc="射了"},
[6326] = {ID=6326,Desc="龟头在阴道中抽插"},
[6327] = {ID=6327,Desc="大鸡吧狠狠插进了她那又肥又嫩的小骚屄儿"},
[6328] = {ID=6328,Desc="二奶大赛"},
[6329] = {ID=6329,Desc="98bb成人小电影"},
[6330] = {ID=6330,Desc="雞院"},
[6331] = {ID=6331,Desc="摸陰蒂"},
[6332] = {ID=6332,Desc="激情淫少女穴"},
[6333] = {ID=6333,Desc="操得直叫爽"},
[6334] = {ID=6334,Desc="妈个老比"},
[6335] = {ID=6335,Desc="阴阜高耸"},
[6336] = {ID=6336,Desc="强奸20岁处女全过程/*妹阴毛小穴"},
[6337] = {ID=6337,Desc="淫影院论坛"},
[6338] = {ID=6338,Desc="丰满肥大有阴唇湿润了"},
[6339] = {ID=6339,Desc="六四民运"},
[6340] = {ID=6340,Desc="唐人电视台"},
[6341] = {ID=6341,Desc="现场做爱偷拍电影"},
[6342] = {ID=6342,Desc="欧美乱淫贴图"},
[6343] = {ID=6343,Desc="宮路ナオミ"},
[6344] = {ID=6344,Desc="毛骡干"},
[6345] = {ID=6345,Desc="淫荡少妇白洁"},
[6346] = {ID=6346,Desc="麻醉枪"},
[6347] = {ID=6347,Desc="法抡"},
[6348] = {ID=6348,Desc="T浓厚中出FUCK"},
[6349] = {ID=6349,Desc="六四平反"},
[6350] = {ID=6350,Desc="顶到阿姨的花心"},
[6351] = {ID=6351,Desc="歡迎G9情色電影院"},
[6352] = {ID=6352,Desc="娘b"},
[6353] = {ID=6353,Desc="法*掄"},
[6354] = {ID=6354,Desc="射你"},
[6355] = {ID=6355,Desc="发^^抡"},
[6356] = {ID=6356,Desc="山本五十六"},
[6357] = {ID=6357,Desc="如果你未满26周岁请自觉离开。"},
[6358] = {ID=6358,Desc="淫奸护士论坛"},
[6359] = {ID=6359,Desc="乳尻"},
[6360] = {ID=6360,Desc="色情工廠"},
[6361] = {ID=6361,Desc="棒插到妈妈的穴里"},
[6362] = {ID=6362,Desc="fuck售号"},
[6363] = {ID=6363,Desc="中國政府"},
[6364] = {ID=6364,Desc="激情淫色小穴"},
[6365] = {ID=6365,Desc="抽插淫水"},
[6366] = {ID=6366,Desc="毛肛"},
[6367] = {ID=6367,Desc="無碼無套"},
[6368] = {ID=6368,Desc="妈的靠"},
[6369] = {ID=6369,Desc="乳尖"},
[6370] = {ID=6370,Desc="成人午夜影院"},
[6371] = {ID=6371,Desc="雞雞"},
[6372] = {ID=6372,Desc="强奸24岁处女全过程/淫妹阴毛小穴"},
[6373] = {ID=6373,Desc="大波骚妇"},
[6374] = {ID=6374,Desc="少妇扒开阴道图-淫賤少女阴唇特写图免费淫电影a片"},
[6375] = {ID=6375,Desc="淫水橫流"},
[6376] = {ID=6376,Desc="色电影"},
[6377] = {ID=6377,Desc="fuck唐家璇"},
[6378] = {ID=6378,Desc="极品激情影院"},
[6379] = {ID=6379,Desc="又硬又大的肉棒插入阴户"},
[6380] = {ID=6380,Desc="程真"},
[6381] = {ID=6381,Desc="龟头在她的阴户里抽插"},
[6382] = {ID=6382,Desc="仑功"},
[6383] = {ID=6383,Desc="kan66免费电影"},
[6384] = {ID=6384,Desc="顶级学妹美穴淫图"},
[6385] = {ID=6385,Desc="巨乳俏女医"},
[6386] = {ID=6386,Desc="美女含双棍玩内射"},
[6387] = {ID=6387,Desc="正見網"},
[6388] = {ID=6388,Desc="转法轮"},
[6389] = {ID=6389,Desc="发@@仑"},
[6390] = {ID=6390,Desc="六四以后"},
[6391] = {ID=6391,Desc="吳桂賢"},
[6392] = {ID=6392,Desc="开粉红小阴唇"},
[6393] = {ID=6393,Desc="日本大型黄色meinv做爱"},
[6394] = {ID=6394,Desc="發~輪"},
[6395] = {ID=6395,Desc="台灣豬"},
[6396] = {ID=6396,Desc="亚洲激情淫贴图"},
[6397] = {ID=6397,Desc="淫水淋湿的阴毛"},
[6398] = {ID=6398,Desc="亂倫熟女網"},
[6399] = {ID=6399,Desc="肉棒捅入阴道里"},
[6400] = {ID=6400,Desc="淫荡小护士"},
[6401] = {ID=6401,Desc="fuck社保基金会"},
[6402] = {ID=6402,Desc="大陆性meinv淫穴"},
[6403] = {ID=6403,Desc="童屹"},
[6404] = {ID=6404,Desc="操布雷尔"},
[6405] = {ID=6405,Desc="毛想上你"},
[6406] = {ID=6406,Desc="风骚小护士"},
[6407] = {ID=6407,Desc="@sshole靠"},
[6408] = {ID=6408,Desc="cha你"},
[6409] = {ID=6409,Desc="厕所盗摄护士姐姐性感"},
[6410] = {ID=6410,Desc="龟头狂插肉洞"},
[6411] = {ID=6411,Desc="亚洲激情淫搔穴贴图"},
[6412] = {ID=6412,Desc="fuck外挂"},
[6413] = {ID=6413,Desc="毛情色"},
[6414] = {ID=6414,Desc="李弘志"},
[6415] = {ID=6415,Desc="法@抡"},
[6416] = {ID=6416,Desc="泡365免费电影"},
[6417] = {ID=6417,Desc="董建華"},
[6418] = {ID=6418,Desc="处女流水淫图"},
[6419] = {ID=6419,Desc="草你媽"},
[6420] = {ID=6420,Desc="小浪穴"},
[6421] = {ID=6421,Desc="淫色网址导航"},
[6422] = {ID=6422,Desc="毛老母"},
[6423] = {ID=6423,Desc="淫浪女"},
[6424] = {ID=6424,Desc="汽车爆炸案"},
[6425] = {ID=6425,Desc="抽插50岁处女妹妹淫叫不断"},
[6426] = {ID=6426,Desc="插比"},
[6427] = {ID=6427,Desc="張梅穎"},
[6428] = {ID=6428,Desc="萬人暴"},
[6429] = {ID=6429,Desc="法掄"},
[6430] = {ID=6430,Desc="激情淫色贴图网址"},
[6431] = {ID=6431,Desc="粉红色的小嫩逼淫"},
[6432] = {ID=6432,Desc="妈要吃你的肉棒"},
[6433] = {ID=6433,Desc="操你奶奶"},
[6434] = {ID=6434,Desc="董必武"},
[6435] = {ID=6435,Desc="狡猾的风水相师"},
[6436] = {ID=6436,Desc="粗挺的阴茎上沾满了处子的鲜血"},
[6437] = {ID=6437,Desc="性器"},
[6438] = {ID=6438,Desc="阿姨的阴道好大"},
[6439] = {ID=6439,Desc="林榮一"},
[6440] = {ID=6440,Desc="癡乳"},
[6441] = {ID=6441,Desc="性感妖娆"},
[6442] = {ID=6442,Desc="肥嫩的阴唇"},
[6443] = {ID=6443,Desc="妹妹嫩穴被狂插"},
[6444] = {ID=6444,Desc="毛妹妹免费电影"},
[6445] = {ID=6445,Desc="梁保华"},
[6446] = {ID=6446,Desc="发@@伦"},
[6447] = {ID=6447,Desc="毛小穴"},
[6448] = {ID=6448,Desc="1989#事件"},
[6449] = {ID=6449,Desc="骚妹妹"},
[6450] = {ID=6450,Desc="母子淫奸乱轮现场看,瞄準她的肉穴插了進去……"},
[6451] = {ID=6451,Desc="扬震"},
[6452] = {ID=6452,Desc="韦国清"},
[6453] = {ID=6453,Desc="成人激情电影通道"},
[6454] = {ID=6454,Desc="湿淋淋的阴道被肉棒插出血"},
[6455] = {ID=6455,Desc="淫民俱乐部做爱顶级"},
[6456] = {ID=6456,Desc="激情淫咪咪贴图区"},
[6457] = {ID=6457,Desc="毛检察院"},
[6458] = {ID=6458,Desc="东京热5月新片"},
[6459] = {ID=6459,Desc="小泽玛丽亚7~淫乱的肉体"},
[6460] = {ID=6460,Desc="淫少妇"},
[6461] = {ID=6461,Desc="鸡巴靠"},
[6462] = {ID=6462,Desc="免费视频激情聊天室"},
[6463] = {ID=6463,Desc="台湾18黄网亚洲华人bbs性论坛"},
[6464] = {ID=6464,Desc="毛窃听器"},
[6465] = {ID=6465,Desc="美国淫女在线看电影欣赏mm乱淫自拍图片"},
[6466] = {ID=6466,Desc="賓周"},
[6467] = {ID=6467,Desc="胡景涛"},
[6468] = {ID=6468,Desc="WEB战牌靠"},
[6469] = {ID=6469,Desc="東京熱最受歡迎長腿meinv~藤澤安奈~腿長人又漂亮"},
[6470] = {ID=6470,Desc="激凸走光"},
[6471] = {ID=6471,Desc="法~~掄"},
[6472] = {ID=6472,Desc="孙文"},
[6473] = {ID=6473,Desc="草你娘"},
[6474] = {ID=6474,Desc="令人喷血的春宫108姿势(组图)18岁禁看"},
[6475] = {ID=6475,Desc="四我周"},
[6476] = {ID=6476,Desc="毛摇头玩"},
[6477] = {ID=6477,Desc="fuck四人帮"},
[6478] = {ID=6478,Desc="午夜的诱惑网友自拍"},
[6479] = {ID=6479,Desc="少女艳星诱惑色图"},
[6480] = {ID=6480,Desc="法$抡"},
[6481] = {ID=6481,Desc="BT无码区"},
[6482] = {ID=6482,Desc="干八个meinv的小穴"},
[6483] = {ID=6483,Desc="免费淫爆影片"},
[6484] = {ID=6484,Desc="mimi淫色贴图"},
[6485] = {ID=6485,Desc="毛肉壁"},
[6486] = {ID=6486,Desc="深愛色色"},
[6487] = {ID=6487,Desc="meimei的阴道好嫩啊"},
[6488] = {ID=6488,Desc="狂插meinv护士小说"},
[6489] = {ID=6489,Desc="毛台联"},
[6490] = {ID=6490,Desc="口爆吞精"},
[6491] = {ID=6491,Desc="20dy淫色贴图"},
[6492] = {ID=6492,Desc="淫色贴图网"},
[6493] = {ID=6493,Desc="性感妖嬈"},
[6494] = {ID=6494,Desc="毛独立台湾会"},
[6495] = {ID=6495,Desc="蒋震文"},
[6496] = {ID=6496,Desc="大龟头在我的阴道口来回磨擦"},
[6497] = {ID=6497,Desc="發^輪"},
[6498] = {ID=6498,Desc="淫奸姐姐小说"},
[6499] = {ID=6499,Desc="台湾黄色成人电影"},
[6500] = {ID=6500,Desc="草你妈"},
[6501] = {ID=6501,Desc="日本姐弟乱伦小说"},
[6502] = {ID=6502,Desc="阿姨的阴户好紧"},
[6503] = {ID=6503,Desc="免费成人激情视频聊天"},
[6504] = {ID=6504,Desc="公媳亂"},
[6505] = {ID=6505,Desc="少女被插"},
[6506] = {ID=6506,Desc="婷婷成人激情网站"},
[6507] = {ID=6507,Desc="21dy淫色贴图"},
[6508] = {ID=6508,Desc="奶大屄肥"},
[6509] = {ID=6509,Desc="黃色圖片"},
[6510] = {ID=6510,Desc="李鵬"},
[6511] = {ID=6511,Desc="免費A片"},
[6512] = {ID=6512,Desc="淫荡贵妇"},
[6513] = {ID=6513,Desc="獨立臺灣會"},
[6514] = {ID=6514,Desc="奇淫的老板娘"},
[6515] = {ID=6515,Desc="meimei穴"},
[6516] = {ID=6516,Desc="fuck生孩子没屁眼"},
[6517] = {ID=6517,Desc="温暖的冬夜老师拼命亲吻我"},
[6518] = {ID=6518,Desc="肉棒抽插……的爽死了"},
[6519] = {ID=6519,Desc="朱胜文"},
[6520] = {ID=6520,Desc="吾尔开希"},
[6521] = {ID=6521,Desc="钱运录"},
[6522] = {ID=6522,Desc="秦真"},
[6523] = {ID=6523,Desc="高自联"},
[6524] = {ID=6524,Desc="毛经济社会理事会"},
[6525] = {ID=6525,Desc="操陈至立"},
[6526] = {ID=6526,Desc="爆乳人妻"},
[6527] = {ID=6527,Desc="迷奸药"},
[6528] = {ID=6528,Desc="狂插处女血流不止!"},
[6529] = {ID=6529,Desc="饱满的乳房肥嫩的阴唇又肥又嫩的小骚屄儿"},
[6530] = {ID=6530,Desc="操财政部"},
[6531] = {ID=6531,Desc="毛国研室"},
[6532] = {ID=6532,Desc="北大三角地论坛"},
[6533] = {ID=6533,Desc="发~仑"},
[6534] = {ID=6534,Desc="大鸡巴干进妹妹的小穴"},
[6535] = {ID=6535,Desc="bi样"},
[6536] = {ID=6536,Desc="品嘗不倫主婦"},
[6537] = {ID=6537,Desc="小姨子穴"},
[6538] = {ID=6538,Desc="粉嫩小淫穴"},
[6539] = {ID=6539,Desc="捅入她的阴道里"},
[6540] = {ID=6540,Desc="白立朴"},
[6541] = {ID=6541,Desc="帶链"},
[6542] = {ID=6542,Desc="婊子靠"},
[6543] = {ID=6543,Desc="肉棒乱插"},
[6544] = {ID=6544,Desc="meinv出租车内强行进入"},
[6545] = {ID=6545,Desc="fuck死全家"},
[6546] = {ID=6546,Desc="猛舔她的肥穴"},
[6547] = {ID=6547,Desc="扉之陰"},
[6548] = {ID=6548,Desc="操大法"},
[6549] = {ID=6549,Desc="又粗又大的肉棒"},
[6550] = {ID=6550,Desc="江八点"},
[6551] = {ID=6551,Desc="李至伦"},
[6552] = {ID=6552,Desc="张磊"},
[6553] = {ID=6553,Desc="淫奸meimei电影论坛"},
[6554] = {ID=6554,Desc="阿弥陀佛"},
[6555] = {ID=6555,Desc="台湾建国"},
[6556] = {ID=6556,Desc="莫伟强"},
[6557] = {ID=6557,Desc="免费淫电影,免费淫色情电影"},
[6558] = {ID=6558,Desc="馬万祺"},
[6559] = {ID=6559,Desc="激情淫片"},
[6560] = {ID=6560,Desc="哥哥淫奸妹妹穴"},
[6561] = {ID=6561,Desc="本站10012多部激情电影全部免费试看"},
[6562] = {ID=6562,Desc="宋平"},
[6563] = {ID=6563,Desc="发~伦"},
[6564] = {ID=6564,Desc="成人色情网"},
[6565] = {ID=6565,Desc="姐弟激情淫影片"},
[6566] = {ID=6566,Desc="毛傻子"},
[6567] = {ID=6567,Desc="大龟头顶住子宫深处"},
[6568] = {ID=6568,Desc="王文京"},
[6569] = {ID=6569,Desc="洪志"},
[6570] = {ID=6570,Desc="九评共产党"},
[6571] = {ID=6571,Desc="中共/中共中央"},
[6572] = {ID=6572,Desc="乳射"},
[6573] = {ID=6573,Desc="大花逼"},
[6574] = {ID=6574,Desc="手记注册日韩5020部激情电影"},
[6575] = {ID=6575,Desc="教室炉轮奸精液过剰注入"},
[6576] = {ID=6576,Desc="美媚穴贴图"},
[6577] = {ID=6577,Desc="杀你一家"},
[6578] = {ID=6578,Desc="又大又嫩的穴"},
[6579] = {ID=6579,Desc="淫乱电影"},
[6580] = {ID=6580,Desc="【亚洲/无码】【生奸中出无套内射-相沢、夏樹、"},
[6581] = {ID=6581,Desc="淫色电影免费在线观看"},
[6582] = {ID=6582,Desc="日本激情淫"},
[6583] = {ID=6583,Desc="艳舞淫业"},
[6584] = {ID=6584,Desc="强奸17岁处女全过程"},
[6585] = {ID=6585,Desc="法$掄"},
[6586] = {ID=6586,Desc="淫奸电影少妇扒开阴道"},
[6587] = {ID=6587,Desc="杜冷丁"},
[6588] = {ID=6588,Desc="肉棒插入肉缝"},
[6589] = {ID=6589,Desc="你它马的"},
[6590] = {ID=6590,Desc="扒开嫩阴道"},
[6591] = {ID=6591,Desc="法*抡"},
[6592] = {ID=6592,Desc="徐邦秦"},
[6593] = {ID=6593,Desc="奴隸調教"},
[6594] = {ID=6594,Desc="淫水漣漣"},
[6595] = {ID=6595,Desc="無碼"},
[6596] = {ID=6596,Desc="少妇房中自淫,和两勇男玩9P,操得直叫爽"},
[6597] = {ID=6597,Desc="操你"},
[6598] = {ID=6598,Desc="淫电影//处女第一次阴道做爱全过程(全套图片)"},
[6599] = {ID=6599,Desc="淫妻乱交"},
[6600] = {ID=6600,Desc="免费色情电影"},
[6601] = {ID=6601,Desc="林心如淫电影"},
[6602] = {ID=6602,Desc="色meimei成人论"},
[6603] = {ID=6603,Desc="毛麻醉钢枪"},
[6604] = {ID=6604,Desc="毛社。会。正。义。力。量"},
[6605] = {ID=6605,Desc="扉之阴"},
[6606] = {ID=6606,Desc="毛共产主义"},
[6607] = {ID=6607,Desc="淫奸meinv图"},
[6608] = {ID=6608,Desc="毛特别公告"},
[6609] = {ID=6609,Desc="urban靠"},
[6610] = {ID=6610,Desc="av成人"},
[6611] = {ID=6611,Desc="日韩成人激情电影"},
[6612] = {ID=6612,Desc="她奶奶的"},
[6613] = {ID=6613,Desc="激情淫贴图"},
[6614] = {ID=6614,Desc="朱嘉明"},
[6615] = {ID=6615,Desc="食屎"},
[6616] = {ID=6616,Desc="毛国防部"},
[6617] = {ID=6617,Desc="露逼"},
[6618] = {ID=6618,Desc="任弼时"},
[6619] = {ID=6619,Desc="情色小电影"},
[6620] = {ID=6620,Desc="宁王府导航"},
[6621] = {ID=6621,Desc="强奸林心如扒开阴道"},
[6622] = {ID=6622,Desc="周铁农"},
[6623] = {ID=6623,Desc="插你祖宗"},
[6624] = {ID=6624,Desc="溫泉室的男女"},
[6625] = {ID=6625,Desc="淫屄儿"},
[6626] = {ID=6626,Desc="胡景濤"},
[6627] = {ID=6627,Desc="射进女儿的屁眼里"},
[6628] = {ID=6628,Desc="fuck透视软件"},
[6629] = {ID=6629,Desc="舔她的花蕊"},
[6630] = {ID=6630,Desc="我和小少妇乱伦理淫穴"},
[6631] = {ID=6631,Desc="PP一点通"},
[6632] = {ID=6632,Desc="母子交歡"},
[6633] = {ID=6633,Desc="天安門大屠殺"},
[6634] = {ID=6634,Desc="日本卡通淫色动画片"},
[6635] = {ID=6635,Desc="公车淫奸姐姐"},
[6636] = {ID=6636,Desc="大陆淫乱美女图图片"},
[6637] = {ID=6637,Desc="無界"},
[6638] = {ID=6638,Desc="鬼畜轮奸"},
[6639] = {ID=6639,Desc="让我的肉棒缓缓的插进潮湿饥饿的娇嫩的肉洞里"},
[6640] = {ID=6640,Desc="于永波"},
[6641] = {ID=6641,Desc="性奴"},
[6642] = {ID=6642,Desc="成人文學"},
[6643] = {ID=6643,Desc="操吹箫"},
[6644] = {ID=6644,Desc="精液喷涌而出"},
[6645] = {ID=6645,Desc="毛日X妈"},
[6646] = {ID=6646,Desc="六月four日"},
[6647] = {ID=6647,Desc="骚姐姐"},
[6648] = {ID=6648,Desc="毛外挂"},
[6649] = {ID=6649,Desc="成人文学"},
[6650] = {ID=6650,Desc="免费成人激情视频聊天室"},
[6651] = {ID=6651,Desc="日本黄色小电影"},
[6652] = {ID=6652,Desc="插少女阴道"},
[6653] = {ID=6653,Desc="母子交欢"},
[6654] = {ID=6654,Desc="中国天使成人网我该死免费视频"},
[6655] = {ID=6655,Desc="江獨裁"},
[6656] = {ID=6656,Desc="滾那嗎"},
[6657] = {ID=6657,Desc="毛懒教"},
[6658] = {ID=6658,Desc="丁關根"},
[6659] = {ID=6659,Desc="肉棒弄得湿溜溜的"},
[6660] = {ID=6660,Desc="猪聋畸"},
[6661] = {ID=6661,Desc="楊帆"},
[6662] = {ID=6662,Desc="刘全喜"},
[6663] = {ID=6663,Desc="毛普京"},
[6664] = {ID=6664,Desc="疯狂抽送"},
[6665] = {ID=6665,Desc="淫电影//少妇扒开阴道图-淫賤少女阴唇特写图"},
[6666] = {ID=6666,Desc="89bb成人小电影"},
[6667] = {ID=6667,Desc="中国meinv淫色贴图"},
[6668] = {ID=6668,Desc="毛国民党万岁"},
[6669] = {ID=6669,Desc="和护士jiejie淫穴"},
[6670] = {ID=6670,Desc="操你妈屄"},
[6671] = {ID=6671,Desc="毛屁眼"},
[6672] = {ID=6672,Desc="小穴插的紧紧"},
[6673] = {ID=6673,Desc="淫穴淫水流"},
[6674] = {ID=6674,Desc="55sss偷拍区"},
[6675] = {ID=6675,Desc="55sss偷拍區"},
[6676] = {ID=6676,Desc="脱内裤"},
[6677] = {ID=6677,Desc="發~論"},
[6678] = {ID=6678,Desc="毛卖逼"},
[6679] = {ID=6679,Desc="兔meimei色色贴图区"},
[6680] = {ID=6680,Desc="毛夜情"},
[6681] = {ID=6681,Desc="宁王府成人论坛导航"},
[6682] = {ID=6682,Desc="淫荡口交"},
[6683] = {ID=6683,Desc="摩門教"},
[6684] = {ID=6684,Desc="他馬的"},
[6685] = {ID=6685,Desc="人妻熟女"},
[6686] = {ID=6686,Desc="小骚穴┅┅好舒服"},
[6687] = {ID=6687,Desc="操陈毅"},
[6688] = {ID=6688,Desc="蜜穴肉棒肉縫"},
[6689] = {ID=6689,Desc="少妇大穴VS驴吊"},
[6690] = {ID=6690,Desc="把舌头伸入姐姐的"},
[6691] = {ID=6691,Desc="發~~倫"},
[6692] = {ID=6692,Desc="日本免费黄站"},
[6693] = {ID=6693,Desc="於永波"},
[6694] = {ID=6694,Desc="64事件"},
[6695] = {ID=6695,Desc="郭平"},
[6696] = {ID=6696,Desc="肛門拳交"},
[6697] = {ID=6697,Desc="毛强硬发言"},
[6698] = {ID=6698,Desc="法车仑工力"},
[6699] = {ID=6699,Desc="法~~抡"},
[6700] = {ID=6700,Desc="灨你娘"},
[6701] = {ID=6701,Desc="我讓朋友強姦我的小姨子"},
[6702] = {ID=6702,Desc="大城舞衣子(有碼無碼)大合輯~~~超優!!(可分開下載哦!!!)"},
[6703] = {ID=6703,Desc="操妳娘"},
[6704] = {ID=6704,Desc="合成淫色贴图"},
[6705] = {ID=6705,Desc="fuck晚年周恩来"},
[6706] = {ID=6706,Desc="小穴┅┅好棒┅┅好爽"},
[6707] = {ID=6707,Desc="操医生小穴"},
[6708] = {ID=6708,Desc="淫妹妹电影"},
[6709] = {ID=6709,Desc="强奸42岁处女全过程/淫妹阴毛小穴"},
[6710] = {ID=6710,Desc="妈逼靠"},
[6711] = {ID=6711,Desc="大肉棒刺入肉穴"},
[6712] = {ID=6712,Desc="吴桂贤"},
[6713] = {ID=6713,Desc="成人激情视频聊天"},
[6714] = {ID=6714,Desc="阴道好肥啊"},
[6715] = {ID=6715,Desc="Taiwan国"},
[6716] = {ID=6716,Desc="日本淫色电影"},
[6717] = {ID=6717,Desc="色情靠"},
[6718] = {ID=6718,Desc="無毛美少女"},
[6719] = {ID=6719,Desc="毛王乐泉"},
[6720] = {ID=6720,Desc="小魚兒與花無缺"},
[6721] = {ID=6721,Desc="中宣部是中国社会的艾滋病"},
[6722] = {ID=6722,Desc="女秘书做爱吞精图"},
[6723] = {ID=6723,Desc="少妇房中自淫,和两勇男玩14P,操得直叫爽"},
[6724] = {ID=6724,Desc="毛法(轮)功"},
[6725] = {ID=6725,Desc="厲無畏"},
[6726] = {ID=6726,Desc="店長推薦最新強片Sky"},
[6727] = {ID=6727,Desc="操妹妹"},
[6728] = {ID=6728,Desc="杨震"},
[6729] = {ID=6729,Desc="發**論"},
[6730] = {ID=6730,Desc="法轮公"},
[6731] = {ID=6731,Desc="爽图网"},
[6732] = {ID=6732,Desc="出售账号靠"},
[6733] = {ID=6733,Desc="法轮共"},
[6734] = {ID=6734,Desc="穴太紧了"},
[6735] = {ID=6735,Desc="毛神通加持法"},
[6736] = {ID=6736,Desc="毛我干"},
[6737] = {ID=6737,Desc="免费操小姨子"},
[6738] = {ID=6738,Desc="今晚我把表姐操上了"},
[6739] = {ID=6739,Desc="欧美激情"},
[6740] = {ID=6740,Desc="天天任我淫"},
[6741] = {ID=6741,Desc="统独论坛"},
[6742] = {ID=6742,Desc="毛阝月"},
[6743] = {ID=6743,Desc="激情淫色故事"},
[6744] = {ID=6744,Desc="fuck新闻出版"},
[6745] = {ID=6745,Desc="操妳媽"},
[6746] = {ID=6746,Desc="欧美暴淫"},
[6747] = {ID=6747,Desc="啊……我的小屄……给你……肏得好……舒服……啊"},
[6748] = {ID=6748,Desc="金新月"},
[6749] = {ID=6749,Desc="靓穴meinv"},
[6750] = {ID=6750,Desc="操那嗎逼"},
[6751] = {ID=6751,Desc="子女任职名单"},
[6752] = {ID=6752,Desc="谷牧"},
[6753] = {ID=6753,Desc="俞正声"},
[6754] = {ID=6754,Desc="淫穴小说"},
[6755] = {ID=6755,Desc="台湾成人25贴图"},
[6756] = {ID=6756,Desc="致幻劑"},
[6757] = {ID=6757,Desc="法沦"},
[6758] = {ID=6758,Desc="毛乡巴佬"},
[6759] = {ID=6759,Desc="黄色做爱小说"},
[6760] = {ID=6760,Desc="成人激情影视区在线视频脱衣服"},
[6761] = {ID=6761,Desc="昝爱宗"},
[6762] = {ID=6762,Desc="歐美大乳"},
[6763] = {ID=6763,Desc="淫秽小电影"},
[6764] = {ID=6764,Desc="致幻剂"},
[6765] = {ID=6765,Desc="法輪功"},
[6766] = {ID=6766,Desc="肥嫩的小骚屄儿阴部"},
[6767] = {ID=6767,Desc="meinv淫色贴图区"},
[6768] = {ID=6768,Desc="弟弟粗大的肉棒"},
[6769] = {ID=6769,Desc="人民代表大会"},
[6770] = {ID=6770,Desc="成人激情电影网"},
[6771] = {ID=6771,Desc="大……鸡巴……操得……很……很……舒服"},
[6772] = {ID=6772,Desc="江择民"},
[6773] = {ID=6773,Desc="大亂交"},
[6774] = {ID=6774,Desc="农村公公与媳妇乱伦"},
[6775] = {ID=6775,Desc="超激情电影快速注册"},
[6776] = {ID=6776,Desc="毛水利部"},
[6777] = {ID=6777,Desc="恥辱醫護免费"},
[6778] = {ID=6778,Desc="我也要泄了"},
[6779] = {ID=6779,Desc="操产权局"},
[6780] = {ID=6780,Desc="毛国管局"},
[6781] = {ID=6781,Desc="法~掄"},
[6782] = {ID=6782,Desc="肏妹妹屄"},
[6783] = {ID=6783,Desc="毛投毒杀人"},
[6784] = {ID=6784,Desc="搖頭丸"},
[6785] = {ID=6785,Desc="看着有点舍不得操"},
[6786] = {ID=6786,Desc="89學潮"},
[6787] = {ID=6787,Desc="法@@仑"},
[6788] = {ID=6788,Desc="伦理淫穴小说"},
[6789] = {ID=6789,Desc="阿呀娃娃"},
[6790] = {ID=6790,Desc="毛三唑仑"},
[6791] = {ID=6791,Desc="性交自拍"},
[6792] = {ID=6792,Desc="无码做爱淫图"},
[6793] = {ID=6793,Desc="好紧的阴道"},
[6794] = {ID=6794,Desc="妹妹的小阴户"},
[6795] = {ID=6795,Desc="火辣辣免费爽片"},
[6796] = {ID=6796,Desc="火辣写真"},
[6797] = {ID=6797,Desc="用手指分开两片肥嫩的阴唇"},
[6798] = {ID=6798,Desc="肉棒插入妹妹小穴"},
[6799] = {ID=6799,Desc="毛徐光春"},
[6800] = {ID=6800,Desc="她妈靠"},
[6801] = {ID=6801,Desc="姨妈的肥阴唇"},
[6802] = {ID=6802,Desc="法*淪"},
[6803] = {ID=6803,Desc="挺着硬梆梆的肉棒"},
[6804] = {ID=6804,Desc="網路公祭"},
[6805] = {ID=6805,Desc="欧女乱欲"},
[6806] = {ID=6806,Desc="骚姨妈"},
[6807] = {ID=6807,Desc="电影小片段试看免费淫影片"},
[6808] = {ID=6808,Desc="一夜情聊天室"},
[6809] = {ID=6809,Desc="天安门屠杀"},
[6810] = {ID=6810,Desc="龚学平"},
[6811] = {ID=6811,Desc="六四之後"},
[6812] = {ID=6812,Desc="毛哈批"},
[6813] = {ID=6813,Desc="嫂嫂我要"},
[6814] = {ID=6814,Desc="最淫熟女网"},
[6815] = {ID=6815,Desc="肉棒插入淫荡少妇穴"},
[6816] = {ID=6816,Desc="陰道圖片"},
[6817] = {ID=6817,Desc="把精液射进我的小穴里"},
[6818] = {ID=6818,Desc="亚洲激情淫色网址"},
[6819] = {ID=6819,Desc="韩正"},
[6820] = {ID=6820,Desc="邓力群"},
[6821] = {ID=6821,Desc="性交贴图"},
[6822] = {ID=6822,Desc="乱伦淫书成人网"},
[6823] = {ID=6823,Desc="三级片看美国女人的性交"},
[6824] = {ID=6824,Desc="淫逼嫩穴清晰图"},
[6825] = {ID=6825,Desc="恥辱醫護"},
[6826] = {ID=6826,Desc="手记注册日韩5030部激情电影"},
[6827] = {ID=6827,Desc="操女人嫩穴"},
[6828] = {ID=6828,Desc="毛游戏发奖员"},
[6829] = {ID=6829,Desc="男女激情淫影片播放"},
[6830] = {ID=6830,Desc="淫女刮毛"},
[6831] = {ID=6831,Desc="毒販"},
[6832] = {ID=6832,Desc="少妇房中自淫,和两勇男玩0P,操得直叫爽"},
[6833] = {ID=6833,Desc="激情日本电影_成人情色电影_成人小电影"},
[6834] = {ID=6834,Desc="meimei淫水"},
[6835] = {ID=6835,Desc="卢跃刚"},
[6836] = {ID=6836,Desc="余英时"},
[6837] = {ID=6837,Desc="激情做爱色情淫妇做爱"},
[6838] = {ID=6838,Desc="美女偷拍成人小说激情网"},
[6839] = {ID=6839,Desc="亚洲成人激情"},
[6840] = {ID=6840,Desc="神话R。Y。L"},
[6841] = {ID=6841,Desc="毛卫生部"},
[6842] = {ID=6842,Desc="共*党"},
[6843] = {ID=6843,Desc="日九城"},
[6844] = {ID=6844,Desc="卡通动漫美女淫乱"},
[6845] = {ID=6845,Desc="毛胡主席"},
[6846] = {ID=6846,Desc="台湾共产党"},
[6847] = {ID=6847,Desc="UR靠"},
[6848] = {ID=6848,Desc="毛贺国强"},
[6849] = {ID=6849,Desc="台湾国"},
[6850] = {ID=6850,Desc="抽插48岁处女妹妹淫叫不断"},
[6851] = {ID=6851,Desc="捏你雞巴"},
[6852] = {ID=6852,Desc="fuck温加宝"},
[6853] = {ID=6853,Desc="疆独"},
[6854] = {ID=6854,Desc="护士淫乱"},
[6855] = {ID=6855,Desc="新唐人"},
[6856] = {ID=6856,Desc="插得好爽啊"},
[6857] = {ID=6857,Desc="发@抡"},
[6858] = {ID=6858,Desc="任你淫"},
[6859] = {ID=6859,Desc="鄧小平"},
[6860] = {ID=6860,Desc="周鉄農"},
[6861] = {ID=6861,Desc="两片暗紅的陰唇一張一合"},
[6862] = {ID=6862,Desc="幼逼"},
[6863] = {ID=6863,Desc="熟美婦淫交實錄"},
[6864] = {ID=6864,Desc="美少妇的哀羞"},
[6865] = {ID=6865,Desc="硕大龟头紧紧顶著她的阴道"},
[6866] = {ID=6866,Desc="肉洞深处不断地蠕动"},
[6867] = {ID=6867,Desc="王秀丽"},
[6868] = {ID=6868,Desc="淫乱色情小说"},
[6869] = {ID=6869,Desc="fuck王昊"},
[6870] = {ID=6870,Desc="24dy淫色贴图"},
[6871] = {ID=6871,Desc="星光伴我淫"},
[6872] = {ID=6872,Desc="和姐姐插穴"},
[6873] = {ID=6873,Desc="午夜激情免费电影免费看激情小电影"},
[6874] = {ID=6874,Desc="打倒中国"},
[6875] = {ID=6875,Desc="激情贴图"},
[6876] = {ID=6876,Desc="淫荡妖艳女医生"},
[6877] = {ID=6877,Desc="少妇做爱小说"},
[6878] = {ID=6878,Desc="原千寻~白领迷奸"},
[6879] = {ID=6879,Desc="怎样延迟射精20岁以下禁"},
[6880] = {ID=6880,Desc="毛网管"},
[6881] = {ID=6881,Desc="qq视频脱衣秀亚洲少女韩国无码片"},
[6882] = {ID=6882,Desc="淫奸姐姐"},
[6883] = {ID=6883,Desc="肉棒插入肉穴"},
[6884] = {ID=6884,Desc="法@沦"},
[6885] = {ID=6885,Desc="干meimei小穴"},
[6886] = {ID=6886,Desc="毒贩"},
[6887] = {ID=6887,Desc="167网址宽频影院网"},
[6888] = {ID=6888,Desc="日本激情免费小电影"},
[6889] = {ID=6889,Desc="(无)导航网站连接"},
[6890] = {ID=6890,Desc="李大钊"},
[6891] = {ID=6891,Desc="薑春雲"},
[6892] = {ID=6892,Desc="你他马的"},
[6893] = {ID=6893,Desc="毛多维周刊"},
[6894] = {ID=6894,Desc="免费meimei黄色淫乱电影"},
[6895] = {ID=6895,Desc="法淪"},
[6896] = {ID=6896,Desc="草拟妈"},
[6897] = {ID=6897,Desc="疆獨"},
[6898] = {ID=6898,Desc="如果你未满18周岁请自觉离开。"},
[6899] = {ID=6899,Desc="日韩淫乱美女图"},
[6900] = {ID=6900,Desc="滾那嗎錯比"},
[6901] = {ID=6901,Desc="人民之声论坛"},
[6902] = {ID=6902,Desc="se中国"},
[6903] = {ID=6903,Desc="厕所盗摄meinv"},
[6904] = {ID=6904,Desc="fuck统计局"},
[6905] = {ID=6905,Desc="毛高俊"},
[6906] = {ID=6906,Desc="他妈地"},
[6907] = {ID=6907,Desc="蒙古独立"},
[6908] = {ID=6908,Desc="日本情色无码光碟"},
[6909] = {ID=6909,Desc="大肉棒插进我的肉屄"},
[6910] = {ID=6910,Desc="如果你未满25周岁请自觉离开。"},
[6911] = {ID=6911,Desc="動漫色圖"},
[6912] = {ID=6912,Desc="性感乳娘"},
[6913] = {ID=6913,Desc="情色成人大全"},
[6914] = {ID=6914,Desc="淫荡的妈妈8淫荡护士9淫荡空姐"},
[6915] = {ID=6915,Desc="好紧的屄"},
[6916] = {ID=6916,Desc="鹿城百家性大型网站"},
[6917] = {ID=6917,Desc="成人视频"},
[6918] = {ID=6918,Desc="武雷"},
[6919] = {ID=6919,Desc="大乱交"},
[6920] = {ID=6920,Desc="干你媽逼"},
[6921] = {ID=6921,Desc="淫奸护士穴论坛"},
[6922] = {ID=6922,Desc="法@@倫"},
[6923] = {ID=6923,Desc="欧洲男女激情淫乱穴"},
[6924] = {ID=6924,Desc="明慧網"},
[6925] = {ID=6925,Desc="阴道夹裹住阴茎"},
[6926] = {ID=6926,Desc="卖淫女全过程"},
[6927] = {ID=6927,Desc="未满21岁的请自行离开"},
[6928] = {ID=6928,Desc="操小姨子"},
[6929] = {ID=6929,Desc="淫奸小姨淫水流"},
[6930] = {ID=6930,Desc="毛联大"},
[6931] = {ID=6931,Desc="强奸20岁处女全过程/淫妹阴毛小穴"},
[6932] = {ID=6932,Desc="日本有码"},
[6933] = {ID=6933,Desc="毛威而柔"},
[6934] = {ID=6934,Desc="fuck王太华"},
[6935] = {ID=6935,Desc="那吗逼"},
[6936] = {ID=6936,Desc="免费看三级电影淫电影艳情电影"},
[6937] = {ID=6937,Desc="拉案)"},
[6938] = {ID=6938,Desc="毛六合彩"},
[6939] = {ID=6939,Desc="64動亂"},
[6940] = {ID=6940,Desc="欧美靓穴小小论坛帖图母子姐弟淫……男男激情欧美淫贴图"},
[6941] = {ID=6941,Desc="下载淫电影"},
[6942] = {ID=6942,Desc="淫电影艳情电影"},
[6943] = {ID=6943,Desc="骚B熟女"},
[6944] = {ID=6944,Desc="贾育台"},
[6945] = {ID=6945,Desc="张伟华"},
[6946] = {ID=6946,Desc="富人与农民工"},
[6947] = {ID=6947,Desc="毛台湾共产党"},
[6948] = {ID=6948,Desc="金日成"},
[6949] = {ID=6949,Desc="法$沦"},
[6950] = {ID=6950,Desc="性愛擂臺"},
[6951] = {ID=6951,Desc="免费黄色淫秽"},
[6952] = {ID=6952,Desc="司馬義?鐵力瓦爾地"},
[6953] = {ID=6953,Desc="日本有碼"},
[6954] = {ID=6954,Desc="百家性大型黄站meimei"},
[6955] = {ID=6955,Desc="赛他娘"},
[6956] = {ID=6956,Desc="免费情色电影情色五月天"},
[6957] = {ID=6957,Desc="毛售号"},
[6958] = {ID=6958,Desc="阳具在他的穴里大幅抽插"},
[6959] = {ID=6959,Desc="宁王府"},
[6960] = {ID=6960,Desc="亚洲激情淫影院"},
[6961] = {ID=6961,Desc="薛伟"},
[6962] = {ID=6962,Desc="肏肉~X屄爽歪歪"},
[6963] = {ID=6963,Desc="强奸大奶嫩逼meinv"},
[6964] = {ID=6964,Desc="毛王宝森"},
[6965] = {ID=6965,Desc="淫奸妹妹电影"},
[6966] = {ID=6966,Desc="法碖功"},
[6967] = {ID=6967,Desc="中华时事"},
[6968] = {ID=6968,Desc="素人著エロ俱樂部"},
[6969] = {ID=6969,Desc="办公室性欲"},
[6970] = {ID=6970,Desc="大肉棒在妈妈的阴道"},
[6971] = {ID=6971,Desc="朱熔基"},
[6972] = {ID=6972,Desc="毛审计署"},
[6973] = {ID=6973,Desc="怎样免费看淫电影"},
[6974] = {ID=6974,Desc="毛世界日报"},
[6975] = {ID=6975,Desc="插姐妹小穴"},
[6976] = {ID=6976,Desc="胡锦濤"},
[6977] = {ID=6977,Desc="风骚女友浴室放荡"},
[6978] = {ID=6978,Desc="ㄙㄞ你老母"},
[6979] = {ID=6979,Desc="小穴里抽插"},
[6980] = {ID=6980,Desc="糖糖小穴"},
[6981] = {ID=6981,Desc="小泽玛丽亚~闷绝痉挛无限制潮吹"},
[6982] = {ID=6982,Desc="毛阴核"},
[6983] = {ID=6983,Desc="干jiejie小穴"},
[6984] = {ID=6984,Desc="fuck倭国"},
[6985] = {ID=6985,Desc="强奸43岁处女全过程/淫妹阴毛小穴"},
[6986] = {ID=6986,Desc="黎阳评"},
[6987] = {ID=6987,Desc="集體性愛"},
[6988] = {ID=6988,Desc="少妇激情电影"},
[6989] = {ID=6989,Desc="解放軍鎮壓"},
[6990] = {ID=6990,Desc="龚學平"},
[6991] = {ID=6991,Desc="fuck无界浏览器"},
[6992] = {ID=6992,Desc="美国成人激情淫洞网站"},
[6993] = {ID=6993,Desc="三去車仑"},
[6994] = {ID=6994,Desc="幹死CS"},
[6995] = {ID=6995,Desc="fuck十年动乱"},
[6996] = {ID=6996,Desc="性交"},
[6997] = {ID=6997,Desc="法*沦"},
[6998] = {ID=6998,Desc="少妇房中自淫,和两勇男玩18P,操得直叫爽"},
[6999] = {ID=6999,Desc="淫妇周艳茹和儿子的性战"},
[7000] = {ID=7000,Desc="毛特码"},
[7001] = {ID=7001,Desc="高校骚乱"},
[7002] = {ID=7002,Desc="毛驶你老师"},
[7003] = {ID=7003,Desc="法@@伦"},
[7004] = {ID=7004,Desc="小嫩穴贴图"},
[7005] = {ID=7005,Desc="法~~淪"},
[7006] = {ID=7006,Desc="马良骏"},
[7007] = {ID=7007,Desc="法~抡"},
[7008] = {ID=7008,Desc="免费淫奸女直接试看"},
[7009] = {ID=7009,Desc="手机注册色情电影网站"},
[7010] = {ID=7010,Desc="美國之音"},
[7011] = {ID=7011,Desc="江八条"},
[7012] = {ID=7012,Desc="淫荡女优放荡插逼"},
[7013] = {ID=7013,Desc="妹妹的大阴户"},
[7014] = {ID=7014,Desc="超性感裸体艳舞"},
[7015] = {ID=7015,Desc="成人片"},
[7016] = {ID=7016,Desc="幾芭"},
[7017] = {ID=7017,Desc="绵恒"},
[7018] = {ID=7018,Desc="把你的小穴夹紧……用力……"},
[7019] = {ID=7019,Desc="不用注册免费淫"},
[7020] = {ID=7020,Desc="小姨子的阴道好紧啊"},
[7021] = {ID=7021,Desc="d7se淫色穴图片和meinv发春激情3级片试看"},
[7022] = {ID=7022,Desc="强奸33岁处女全过程/淫妹阴毛小穴"},
[7023] = {ID=7023,Desc="淫奸阿姨电影"},
[7024] = {ID=7024,Desc="正见网"},
[7025] = {ID=7025,Desc="法$淪"},
[7026] = {ID=7026,Desc="法@@侖"},
[7027] = {ID=7027,Desc="插死你"},
[7028] = {ID=7028,Desc="公车淫奸妹妹"},
[7029] = {ID=7029,Desc="一夜情异物插穴性爱网"},
[7030] = {ID=7030,Desc="成人激情色情电影"},
[7031] = {ID=7031,Desc="亲情淫乱"},
[7032] = {ID=7032,Desc="骚逼"},
[7033] = {ID=7033,Desc="粗肉棒"},
[7034] = {ID=7034,Desc="淫奸女同事穴"},
[7035] = {ID=7035,Desc="我就去色"},
[7036] = {ID=7036,Desc="林心如被疯狂轮奸"},
[7037] = {ID=7037,Desc="在线淫电影网站"},
[7038] = {ID=7038,Desc="舌头在小穴周围舔弄"},
[7039] = {ID=7039,Desc="郭岩华"},
[7040] = {ID=7040,Desc="肉棒插进了湿湿的阴道"},
[7041] = {ID=7041,Desc="免费淫水流"},
[7042] = {ID=7042,Desc="天安門屠城"},
[7043] = {ID=7043,Desc="法^掄"},
[7044] = {ID=7044,Desc="歡迎光臨亞洲瘋情"},
[7045] = {ID=7045,Desc="無碼小處女"},
[7046] = {ID=7046,Desc="龟头顶开阴户"},
[7047] = {ID=7047,Desc="周子玉"},
[7048] = {ID=7048,Desc="淫荡少妇"},
[7049] = {ID=7049,Desc="老騷比"},
[7050] = {ID=7050,Desc="台湾19岁成人"},
[7051] = {ID=7051,Desc="棉条"},
[7052] = {ID=7052,Desc="陳希同"},
[7053] = {ID=7053,Desc="肛门喷水"},
[7054] = {ID=7054,Desc="强奸46岁处女全过程/淫妹阴毛小穴"},
[7055] = {ID=7055,Desc="NPC靠"},
[7056] = {ID=7056,Desc="大陆温州鹿城黄站"},
[7057] = {ID=7057,Desc="王子淫传"},
[7058] = {ID=7058,Desc="余秋里"},
[7059] = {ID=7059,Desc="毛短信群发器"},
[7060] = {ID=7060,Desc="蔣彥永"},
[7061] = {ID=7061,Desc="射奶"},
[7062] = {ID=7062,Desc="fuck台联"},
[7063] = {ID=7063,Desc="毛欲火焚身"},
[7064] = {ID=7064,Desc="徐向前"},
[7065] = {ID=7065,Desc="发论公"},
[7066] = {ID=7066,Desc="干妈妈的小穴穴"},
[7067] = {ID=7067,Desc="廁所盜攝"},
[7068] = {ID=7068,Desc="fuck外交部"},
[7069] = {ID=7069,Desc="三去車侖"},
[7070] = {ID=7070,Desc="我和网吧老板娘"},
[7071] = {ID=7071,Desc="胡锦淘"},
[7072] = {ID=7072,Desc="365淫色贴图"},
[7073] = {ID=7073,Desc="meimei嫩穴"},
[7074] = {ID=7074,Desc="毛你大爷"},
[7075] = {ID=7075,Desc="TMD靠"},
[7076] = {ID=7076,Desc="密室淫行"},
[7077] = {ID=7077,Desc="日本激情淫骚穴"},
[7078] = {ID=7078,Desc="fuck兴奋剂"},
[7079] = {ID=7079,Desc="强奸17岁处女全过程/淫妹阴毛小穴"},
[7080] = {ID=7080,Desc="小穴好爽"},
[7081] = {ID=7081,Desc="泽民"},
[7082] = {ID=7082,Desc="蜜穴被阴茎插入"},
[7083] = {ID=7083,Desc="劉伯承"},
[7084] = {ID=7084,Desc="鸡巴全根没入"},
[7085] = {ID=7085,Desc="淫色宝贝导航"},
[7086] = {ID=7086,Desc="明慧网"},
[7087] = {ID=7087,Desc="床上激情自拍图"},
[7088] = {ID=7088,Desc="瞄準她的肉穴插了進去……"},
[7089] = {ID=7089,Desc="江罗"},
[7090] = {ID=7090,Desc="A片大放送"},
[7091] = {ID=7091,Desc="用手指挖她的小穴,弄得她娇喘连连"},
[7092] = {ID=7092,Desc="哦……你插的好深啊……又顶到我的子宫……啊"},
[7093] = {ID=7093,Desc="毛燕玲论坛"},
[7094] = {ID=7094,Desc="肏meimei淫屄"},
[7095] = {ID=7095,Desc="香港成人激情论坛"},
[7096] = {ID=7096,Desc="吴宏达"},
[7097] = {ID=7097,Desc="毛肛交"},
[7098] = {ID=7098,Desc="死刑过程"},
[7099] = {ID=7099,Desc="妹妹的阴唇好嫩啊"},
[7100] = {ID=7100,Desc="免费品嘗不倫主婦"},
[7101] = {ID=7101,Desc="抽插28岁处女meimei淫叫不断"},
[7102] = {ID=7102,Desc="皇军"},
[7103] = {ID=7103,Desc="操吹喇叭"},
[7104] = {ID=7104,Desc="捅B"},
[7105] = {ID=7105,Desc="毛鸟gM"},
[7106] = {ID=7106,Desc="婷婷激情淫液"},
[7107] = {ID=7107,Desc="六四以前"},
[7108] = {ID=7108,Desc="大肉棒插进了她的体内"},
[7109] = {ID=7109,Desc="用舌头对着阴道阴蒂等地方用力地舔着"},
[7110] = {ID=7110,Desc="毛发奖使者"},
[7111] = {ID=7111,Desc="毛我日你"},
[7112] = {ID=7112,Desc="本站10005多部激情电影全部免费试看"},
[7113] = {ID=7113,Desc="荡妖艳女医生"},
[7114] = {ID=7114,Desc="fuck希望之声"},
[7115] = {ID=7115,Desc="淫电影//令人喷血的春宫108姿势(组图)18岁禁看"},
[7116] = {ID=7116,Desc="幼女口交"},
[7117] = {ID=7117,Desc="狂插嫩穴"},
[7118] = {ID=7118,Desc="meimei小穴好紧"},
[7119] = {ID=7119,Desc="阴道深处"},
[7120] = {ID=7120,Desc="天安門事件1989"},
[7121] = {ID=7121,Desc="郁慕明"},
[7122] = {ID=7122,Desc="外$$挂"},
[7123] = {ID=7123,Desc="fuck小乳头"},
[7124] = {ID=7124,Desc="fuck天安门屠杀"},
[7125] = {ID=7125,Desc="国外A片电影-美国色情电影一点点激情下载"},
[7126] = {ID=7126,Desc="偷窺圖片"},
[7127] = {ID=7127,Desc="毛驶你爸"},
[7128] = {ID=7128,Desc="免费成人聊天室"},
[7129] = {ID=7129,Desc="jiejie的嫩阴户"},
[7130] = {ID=7130,Desc="胡启立"},
[7131] = {ID=7131,Desc="激情淫色漫画论坛"},
[7132] = {ID=7132,Desc="亚洲成人激情网站"},
[7133] = {ID=7133,Desc="素人初撮り生中出し"},
[7134] = {ID=7134,Desc="去氧麻黃碱或安非他命"},
[7135] = {ID=7135,Desc="强奸18岁处女全过程/*妹阴毛小穴"},
[7136] = {ID=7136,Desc="免费淫乱卡通动画片"},
[7137] = {ID=7137,Desc="淫荡家教"},
[7138] = {ID=7138,Desc="张萬年"},
[7139] = {ID=7139,Desc="365成人贴图"},
[7140] = {ID=7140,Desc="毛黄菊"},
[7141] = {ID=7141,Desc="44lian色站大全"},
[7142] = {ID=7142,Desc="情色图片"},
[7143] = {ID=7143,Desc="少妇白洁"},
[7144] = {ID=7144,Desc="日本淫荡少妇"},
[7145] = {ID=7145,Desc="毛公安部"},
[7146] = {ID=7146,Desc="亚洲meinv"},
[7147] = {ID=7147,Desc="幼女情色论坛"},
[7148] = {ID=7148,Desc="积克馆"},
[7149] = {ID=7149,Desc="鸡巴插肉缝"},
[7150] = {ID=7150,Desc="舔着两片湿润的阴唇"},
[7151] = {ID=7151,Desc="龙洲影院日本娱乐性免费"},
[7152] = {ID=7152,Desc="胡锦滔"},
[7153] = {ID=7153,Desc="金瓶梅情色網"},
[7154] = {ID=7154,Desc="淫蕩貴婦"},
[7155] = {ID=7155,Desc="发论功"},
[7156] = {ID=7156,Desc="插入妈妈的穴好爽"},
[7157] = {ID=7157,Desc="肉棒插入乱伦射精"},
[7158] = {ID=7158,Desc="婷婷成人激情淫洞"},
[7159] = {ID=7159,Desc="万润南"},
[7160] = {ID=7160,Desc="老师嫩穴"},
[7161] = {ID=7161,Desc="彭真"},
[7162] = {ID=7162,Desc="干丰满少妇"},
[7163] = {ID=7163,Desc="買幣"},
[7164] = {ID=7164,Desc="干妳老母"},
[7165] = {ID=7165,Desc="掰穴"},
[7166] = {ID=7166,Desc="鸡巴猛插"},
[7167] = {ID=7167,Desc="江八條"},
[7168] = {ID=7168,Desc="插进小穴射了"},
[7169] = {ID=7169,Desc="毛奸你"},
[7170] = {ID=7170,Desc="恐怖主义"},
[7171] = {ID=7171,Desc="性爱插穴"},
[7172] = {ID=7172,Desc="你呀的鸡巴长歪了吧"},
[7173] = {ID=7173,Desc="採花堂"},
[7174] = {ID=7174,Desc="干一家"},
[7175] = {ID=7175,Desc="宋庆龄"},
[7176] = {ID=7176,Desc="姐姐和我乱伦理电影"},
[7177] = {ID=7177,Desc="淫荡┅插"},
[7178] = {ID=7178,Desc="法~~沦"},
[7179] = {ID=7179,Desc="少妇房中自淫"},
[7180] = {ID=7180,Desc="發倫"},
[7181] = {ID=7181,Desc="毛孙中山"},
[7182] = {ID=7182,Desc="爱图公园论坛"},
[7183] = {ID=7183,Desc="毛希望之声"},
[7184] = {ID=7184,Desc="六?四"},
[7185] = {ID=7185,Desc="富豪们的疯狂做/爱方式"},
[7186] = {ID=7186,Desc="肏烂你的屄"},
[7187] = {ID=7187,Desc="成人小电影"},
[7188] = {ID=7188,Desc="天安门录影带"},
[7189] = {ID=7189,Desc="狂舔少妇两腿之间"},
[7190] = {ID=7190,Desc="365情色小说"},
[7191] = {ID=7191,Desc="淫乱护士激情电影"},
[7192] = {ID=7192,Desc="肏meimei屄"},
[7193] = {ID=7193,Desc="大奶骚女"},
[7194] = {ID=7194,Desc="招雞"},
[7195] = {ID=7195,Desc="亂交"},
[7196] = {ID=7196,Desc="免费黄色淫乱电影"},
[7197] = {ID=7197,Desc="日本风骚女电影"},
[7198] = {ID=7198,Desc="法^^侖"},
[7199] = {ID=7199,Desc="在线观看淫电影"},
[7200] = {ID=7200,Desc="弟弟的肉棒又粗又大"},
[7201] = {ID=7201,Desc="肉棒又粗又大少女又痛又爽"},
[7202] = {ID=7202,Desc="少修正"},
[7203] = {ID=7203,Desc="被操"},
[7204] = {ID=7204,Desc="女老板一丝不挂躺在我身边"},
[7205] = {ID=7205,Desc="骚妇露逼"},
[7206] = {ID=7206,Desc="和親jiejie作愛"},
[7207] = {ID=7207,Desc="見到這個美女就會有性欲"},
[7208] = {ID=7208,Desc="把肉棒抽出来"},
[7209] = {ID=7209,Desc="咬着她的奶头干了她"},
[7210] = {ID=7210,Desc="几芭"},
[7211] = {ID=7211,Desc="毛商务部"},
[7212] = {ID=7212,Desc="日本淫色漫画"},
[7213] = {ID=7213,Desc="品色激情电影"},
[7214] = {ID=7214,Desc="fuck特码"},
[7215] = {ID=7215,Desc="肉棒抽出她嘴中"},
[7216] = {ID=7216,Desc="林心如色情贴图"},
[7217] = {ID=7217,Desc="发$抡"},
[7218] = {ID=7218,Desc="曰gM"},
[7219] = {ID=7219,Desc="任建新"},
[7220] = {ID=7220,Desc="毛贱"},
[7221] = {ID=7221,Desc="鑽插"},
[7222] = {ID=7222,Desc="肉棒插进来肉穴"},
[7223] = {ID=7223,Desc="妈妈挺动雪白的肥臀"},
[7224] = {ID=7224,Desc="鸡巴顶在女儿的嫩穴"},
[7225] = {ID=7225,Desc="李紅智"},
[7226] = {ID=7226,Desc="大型色站"},
[7227] = {ID=7227,Desc="新鄭和"},
[7228] = {ID=7228,Desc="U-R靠"},
[7229] = {ID=7229,Desc="和妹妹玩插穴"},
[7230] = {ID=7230,Desc="翹臀嫩逼"},
[7231] = {ID=7231,Desc="在线激情淫电影"},
[7232] = {ID=7232,Desc="法^^仑"},
[7233] = {ID=7233,Desc="蒙尘药"},
[7234] = {ID=7234,Desc="張筱雨"},
[7235] = {ID=7235,Desc="毛胡紧掏"},
[7236] = {ID=7236,Desc="舔她的小洞洞"},
[7237] = {ID=7237,Desc="免费淫色meimei电影"},
[7238] = {ID=7238,Desc="免费成人娱乐電影"},
[7239] = {ID=7239,Desc="小骚逼"},
[7240] = {ID=7240,Desc="鸡鸡"},
[7241] = {ID=7241,Desc="法^^伦"},
[7242] = {ID=7242,Desc="性交极品大片"},
[7243] = {ID=7243,Desc="学生淫图"},
[7244] = {ID=7244,Desc="毛鬼村"},
[7245] = {ID=7245,Desc="毛塞你老师"},
[7246] = {ID=7246,Desc="毛淫秽"},
[7247] = {ID=7247,Desc="89学潮"},
[7248] = {ID=7248,Desc="毛色情服务"},
[7249] = {ID=7249,Desc="弟弟淫奸姐姐论坛"},
[7250] = {ID=7250,Desc="阎明复"},
[7251] = {ID=7251,Desc="淫色护士小说"},
[7252] = {ID=7252,Desc="熟睡中的妹妹"},
[7253] = {ID=7253,Desc="强*十八岁meinv护士看完保证你打飞机免费电影网站"},
[7254] = {ID=7254,Desc="外$$掛"},
[7255] = {ID=7255,Desc="性教育片-性教育电影"},
[7256] = {ID=7256,Desc="劉淇"},
[7257] = {ID=7257,Desc="全球华人春节联欢晚会"},
[7258] = {ID=7258,Desc="毛湿透的内裤"},
[7259] = {ID=7259,Desc="日本av"},
[7260] = {ID=7260,Desc="精子射到姐姐的穴里"},
[7261] = {ID=7261,Desc="公车上干女司机"},
[7262] = {ID=7262,Desc="学生爱国者运动证明"},
[7263] = {ID=7263,Desc="偷窥拍摄"},
[7264] = {ID=7264,Desc="颜射"},
[7265] = {ID=7265,Desc="夏夏小说黄站"},
[7266] = {ID=7266,Desc="注册免费淫电影"},
[7267] = {ID=7267,Desc="曹长青"},
[7268] = {ID=7268,Desc="干的好爽……要爽死我了"},
[7269] = {ID=7269,Desc="盜竊犯"},
[7270] = {ID=7270,Desc="操她妈"},
[7271] = {ID=7271,Desc="百家性大型bt黄站"},
[7272] = {ID=7272,Desc="李建國"},
[7273] = {ID=7273,Desc="宁王府成人导航"},
[7274] = {ID=7274,Desc="李建国"},
[7275] = {ID=7275,Desc="海底水中插屄~Aqua"},
[7276] = {ID=7276,Desc="李淑娴"},
[7277] = {ID=7277,Desc="毛教育部"},
[7278] = {ID=7278,Desc="都市情爱乱伦淫妻古典武侠制服明星性爱宝典24式教材"},
[7279] = {ID=7279,Desc="毛阴水"},
[7280] = {ID=7280,Desc="师春生"},
[7281] = {ID=7281,Desc="动漫激情淫色贴图"},
[7282] = {ID=7282,Desc="发伦功"},
[7283] = {ID=7283,Desc="好大的肉棒"},
[7284] = {ID=7284,Desc="发*抡"},
[7285] = {ID=7285,Desc="少女bb图"},
[7286] = {ID=7286,Desc="64动乱"},
[7287] = {ID=7287,Desc="不斷收緊陰道來吞噬我的龟头"},
[7288] = {ID=7288,Desc="神通加持法"},
[7289] = {ID=7289,Desc="MM被干小穴"},
[7290] = {ID=7290,Desc="教師禁斷接吻"},
[7291] = {ID=7291,Desc="胡锦涛"},
[7292] = {ID=7292,Desc="强奸meinv狂插处女阴道"},
[7293] = {ID=7293,Desc="操她"},
[7294] = {ID=7294,Desc="被插"},
[7295] = {ID=7295,Desc="公公狂操儿媳妇小穴"},
[7296] = {ID=7296,Desc="102bb成人小电影"},
[7297] = {ID=7297,Desc="幹機掰"},
[7298] = {ID=7298,Desc="溫傢寳"},
[7299] = {ID=7299,Desc="少妇操b图"},
[7300] = {ID=7300,Desc="毛阴毛"},
[7301] = {ID=7301,Desc="抽插44岁处女meimei淫叫不断"},
[7302] = {ID=7302,Desc="周恩來"},
[7303] = {ID=7303,Desc="發侖"},
[7304] = {ID=7304,Desc="再用力插…。啊"},
[7305] = {ID=7305,Desc="狂插小浪穴"},
[7306] = {ID=7306,Desc="┅插┅小穴┅插我"},
[7307] = {ID=7307,Desc="13点靠"},
[7308] = {ID=7308,Desc="公交车上淫乱小穴狂插"},
[7309] = {ID=7309,Desc="干小蜜洞"},
[7310] = {ID=7310,Desc="操妳"},
[7311] = {ID=7311,Desc="輪奸大meinv"},
[7312] = {ID=7312,Desc="毛枪支弹药"},
[7313] = {ID=7313,Desc="钱国梁"},
[7314] = {ID=7314,Desc="毛李宏志"},
[7315] = {ID=7315,Desc="亂倫"},
[7316] = {ID=7316,Desc="日本淫虫在线看电影"},
[7317] = {ID=7317,Desc="淫亂"},
[7318] = {ID=7318,Desc="毛王刚"},
[7319] = {ID=7319,Desc="毛江猪媳"},
[7320] = {ID=7320,Desc="法^抡"},
[7321] = {ID=7321,Desc="江澤民"},
[7322] = {ID=7322,Desc="赵洪祝"},
[7323] = {ID=7323,Desc="法^^倫"},
[7324] = {ID=7324,Desc="西藏独立"},
[7325] = {ID=7325,Desc="蒋彦勇"},
[7326] = {ID=7326,Desc="逼毛"},
[7327] = {ID=7327,Desc="淫书"},
[7328] = {ID=7328,Desc="毛吴邦国"},
[7329] = {ID=7329,Desc="握着他的鸡巴上下套弄"},
[7330] = {ID=7330,Desc="六四周年祭"},
[7331] = {ID=7331,Desc="淫液流入"},
[7332] = {ID=7332,Desc="肉棒狂插嫩穴"},
[7333] = {ID=7333,Desc="巨乳meinvRINA无码第2弹"},
[7334] = {ID=7334,Desc="董建华"},
[7335] = {ID=7335,Desc="去妳的"},
[7336] = {ID=7336,Desc="AV女优-杏子"},
[7337] = {ID=7337,Desc="封淫"},
[7338] = {ID=7338,Desc="淫女"},
[7339] = {ID=7339,Desc="骚浪美女"},
[7340] = {ID=7340,Desc="毛卖。国"},
[7341] = {ID=7341,Desc="毛江青"},
[7342] = {ID=7342,Desc="成人情色贴图"},
[7343] = {ID=7343,Desc="大粗鸡巴插进小穴"},
[7344] = {ID=7344,Desc="毛回回"},
[7345] = {ID=7345,Desc="日韩免费午夜电影"},
[7346] = {ID=7346,Desc="鸡巴在她的阴道里抽插"},
[7347] = {ID=7347,Desc="毛国防科工委"},
[7348] = {ID=7348,Desc="中国社会进步党"},
[7349] = {ID=7349,Desc="姐弟淫穴小说"},
[7350] = {ID=7350,Desc="毛骚逼"},
[7351] = {ID=7351,Desc="大鸡吧插进阴道"},
[7352] = {ID=7352,Desc="阿兵哥艳遇录"},
[7353] = {ID=7353,Desc="逼样"},
[7354] = {ID=7354,Desc="出租汽车罢工"},
[7355] = {ID=7355,Desc="成人激情"},
[7356] = {ID=7356,Desc="哥哥淫奸meimei论坛"},
[7357] = {ID=7357,Desc="本站10003多部激情电影全部免费试看"},
[7358] = {ID=7358,Desc="烂游戏靠"},
[7359] = {ID=7359,Desc="淫*女电影片段试看"},
[7360] = {ID=7360,Desc="彭德懷"},
[7361] = {ID=7361,Desc="毛乳交"},
[7362] = {ID=7362,Desc="阿兵哥言语录"},
[7363] = {ID=7363,Desc="王震"},
[7364] = {ID=7364,Desc="日本淫蕩孕婦"},
[7365] = {ID=7365,Desc="塞你老母"},
[7366] = {ID=7366,Desc="日死你"},
[7367] = {ID=7367,Desc="大鸡巴在她的蜜穴里抽插"},
[7368] = {ID=7368,Desc="日屄"},
[7369] = {ID=7369,Desc="免费台湾18电影"},
[7370] = {ID=7370,Desc="日本淫乱漫画图片"},
[7371] = {ID=7371,Desc="中华人民实话实说"},
[7372] = {ID=7372,Desc="淪功"},
[7373] = {ID=7373,Desc="阿里布达年代记"},
[7374] = {ID=7374,Desc="全免费淫色电影"},
[7375] = {ID=7375,Desc="抽插22岁处女meimei淫叫不断"},
[7376] = {ID=7376,Desc="香港激情淫色影院"},
[7377] = {ID=7377,Desc="女教師赤版免费下载"},
[7378] = {ID=7378,Desc="迷奸系列"},
[7379] = {ID=7379,Desc="法輪大法"},
[7380] = {ID=7380,Desc="在乳房和阴道mo弄"},
[7381] = {ID=7381,Desc="发@论"},
[7382] = {ID=7382,Desc="带套肛交"},
[7383] = {ID=7383,Desc="毛售ID"},
[7384] = {ID=7384,Desc="强奸大奶嫩逼美女"},
[7385] = {ID=7385,Desc="操布莱尔"},
[7386] = {ID=7386,Desc="18dy淫色贴图"},
[7387] = {ID=7387,Desc="淫花宫色女中心"},
[7388] = {ID=7388,Desc="欢迎点击进入观看/林/心如/20岁处女偷拍/免费A。B片"},
[7389] = {ID=7389,Desc="无毛美少女"},
[7390] = {ID=7390,Desc="精水"},
[7391] = {ID=7391,Desc="国产熟女做爱深喉肛交无码"},
[7392] = {ID=7392,Desc="濫逼"},
[7393] = {ID=7393,Desc="屌鸠"},
[7394] = {ID=7394,Desc="张立昌"},
[7395] = {ID=7395,Desc="嫩B弓雖女幹"},
[7396] = {ID=7396,Desc="激情淫色文章论坛"},
[7397] = {ID=7397,Desc="幼女狗交"},
[7398] = {ID=7398,Desc="私#服"},
[7399] = {ID=7399,Desc="花样性交"},
[7400] = {ID=7400,Desc="無網界流覽"},
[7401] = {ID=7401,Desc="郭伯雄"},
[7402] = {ID=7402,Desc="男人若妻夢交下载"},
[7403] = {ID=7403,Desc="厕所盗摄meinv性感"},
[7404] = {ID=7404,Desc="做雞"},
[7405] = {ID=7405,Desc="教你如何延迟射精"},
[7406] = {ID=7406,Desc="艷情小說"},
[7407] = {ID=7407,Desc="欧美尤物炮图图库"},
[7408] = {ID=7408,Desc="发$轮"},
[7409] = {ID=7409,Desc="想不到的黑幕"},
[7410] = {ID=7410,Desc="色狼論壇"},
[7411] = {ID=7411,Desc="20岁处女偷拍/免费A。B片"},
[7412] = {ID=7412,Desc="私%服"},
[7413] = {ID=7413,Desc="法蜦功"},
[7414] = {ID=7414,Desc="欧美清晰打炮能看的淫乱"},
[7415] = {ID=7415,Desc="毛神经病"},
[7416] = {ID=7416,Desc="孙中山"},
[7417] = {ID=7417,Desc="妈的穴让你插"},
[7418] = {ID=7418,Desc="幼妓"},
[7419] = {ID=7419,Desc="色猪猪成人导航"},
[7420] = {ID=7420,Desc="(現映社)女の最強は30代エロ真っ只中"},
[7421] = {ID=7421,Desc="冰毒"},
[7422] = {ID=7422,Desc="那媽"},
[7423] = {ID=7423,Desc="強姦你"},
[7424] = {ID=7424,Desc="毛恐怖份子"},
[7425] = {ID=7425,Desc="达癞"},
[7426] = {ID=7426,Desc="神風痴女生中出!【MKV/767MB】"},
[7427] = {ID=7427,Desc="免费偷窥网"},
[7428] = {ID=7428,Desc="宋任穷"},
[7429] = {ID=7429,Desc="非常不错的人妻轮奸"},
[7430] = {ID=7430,Desc="姦淫未成年的小女护士"},
[7431] = {ID=7431,Desc="台湾岛国"},
[7432] = {ID=7432,Desc="精液射进小穴里到了高潮"},
[7433] = {ID=7433,Desc="jiejie的肥阴户"},
[7434] = {ID=7434,Desc="鸡巴插进穴"},
[7435] = {ID=7435,Desc="欣赏特级毛片pp"},
[7436] = {ID=7436,Desc="三个代婊"},
[7437] = {ID=7437,Desc="毛三个呆婊"},
[7438] = {ID=7438,Desc="那可汀"},
[7439] = {ID=7439,Desc="rivals靠"},
[7440] = {ID=7440,Desc="干老师的穴"},
[7441] = {ID=7441,Desc="奸淫"},
[7442] = {ID=7442,Desc="台湾是主权国家"},
[7443] = {ID=7443,Desc="操操比"},
[7444] = {ID=7444,Desc="操那吗逼"},
[7445] = {ID=7445,Desc="賣党求榮"},
[7446] = {ID=7446,Desc="少女被操喷精图"},
[7447] = {ID=7447,Desc="抽插20岁处女妹妹淫叫不断"},
[7448] = {ID=7448,Desc="人學生妹妹"},
[7449] = {ID=7449,Desc="色魔堂电影论坛"},
[7450] = {ID=7450,Desc="丁香欧美成人贴图区"},
[7451] = {ID=7451,Desc="僵賊民"},
[7452] = {ID=7452,Desc="骚女淫频乐园"},
[7453] = {ID=7453,Desc="免费淫电影下载"},
[7454] = {ID=7454,Desc="幹她"},
[7455] = {ID=7455,Desc="强奸meinv"},
[7456] = {ID=7456,Desc="多維社"},
[7457] = {ID=7457,Desc="毛高校暴乱"},
[7458] = {ID=7458,Desc="日本女优激情电影"},
[7459] = {ID=7459,Desc="四川独立"},
[7460] = {ID=7460,Desc="颜射自拍"},
[7461] = {ID=7461,Desc="嫩女~嫩屄~插的红肿喷浆"},
[7462] = {ID=7462,Desc="誘惑視頻"},
[7463] = {ID=7463,Desc="私*服"},
[7464] = {ID=7464,Desc="fuck天皇陛下"},
[7465] = {ID=7465,Desc="熟婦"},
[7466] = {ID=7466,Desc="阴茎在我阴道里急速抽送"},
[7467] = {ID=7467,Desc="多位东热女优参演"},
[7468] = {ID=7468,Desc="幹七八"},
[7469] = {ID=7469,Desc="鸡吧勃起插入阴道"},
[7470] = {ID=7470,Desc="插的小穴都流水了"},
[7471] = {ID=7471,Desc="激情人体18禁"},
[7472] = {ID=7472,Desc="狂插meimei的小穴"},
[7473] = {ID=7473,Desc="fuck吴官正"},
[7474] = {ID=7474,Desc="發~綸"},
[7475] = {ID=7475,Desc="毛上妳"},
[7476] = {ID=7476,Desc="幼女性交"},
[7477] = {ID=7477,Desc="謝長廷"},
[7478] = {ID=7478,Desc="挺动阿姨雪白肥臂"},
[7479] = {ID=7479,Desc="册那娘比"},
[7480] = {ID=7480,Desc="强奸39岁处女全过程/淫妹阴毛小穴"},
[7481] = {ID=7481,Desc="幼女"},
[7482] = {ID=7482,Desc="日X妈"},
[7483] = {ID=7483,Desc="大奶騷女"},
[7484] = {ID=7484,Desc="向忠发"},
[7485] = {ID=7485,Desc="中公網"},
[7486] = {ID=7486,Desc="愛幼閣"},
[7487] = {ID=7487,Desc="曾庆紅"},
[7488] = {ID=7488,Desc="欧美淫色贴图"},
[7489] = {ID=7489,Desc="我和meimei肏穴"},
[7490] = {ID=7490,Desc="私/服"},
[7491] = {ID=7491,Desc="法**論"},
[7492] = {ID=7492,Desc="那妈"},
[7493] = {ID=7493,Desc="私-服"},
[7494] = {ID=7494,Desc="苏兆征"},
[7495] = {ID=7495,Desc="六月联盟"},
[7496] = {ID=7496,Desc="淫水翻騰"},
[7497] = {ID=7497,Desc="强奸美女"},
[7498] = {ID=7498,Desc="六四點擊"},
[7499] = {ID=7499,Desc="宁王府娱乐"},
[7500] = {ID=7500,Desc="陈慕华"},
[7501] = {ID=7501,Desc="淫穴兽交"},
[7502] = {ID=7502,Desc="胡锦涛靠"},
[7503] = {ID=7503,Desc="蔡和森"},
[7504] = {ID=7504,Desc="风骚护士"},
[7505] = {ID=7505,Desc="东方互通"},
[7506] = {ID=7506,Desc="阴茎在子宫喷射黏液"},
[7507] = {ID=7507,Desc="阴部特写"},
[7508] = {ID=7508,Desc="高丽樸"},
[7509] = {ID=7509,Desc="我也要泄了┅┅喔"},
[7510] = {ID=7510,Desc="免费淫电影吴宗宪搞笑语录(27禁看)"},
[7511] = {ID=7511,Desc="通用娼婦"},
[7512] = {ID=7512,Desc="成人聊天室"},
[7513] = {ID=7513,Desc="一夜情的免费电影"},
[7514] = {ID=7514,Desc="欧美激情淫电影"},
[7515] = {ID=7515,Desc="日她"},
[7516] = {ID=7516,Desc="红嫩的小肉穴"},
[7517] = {ID=7517,Desc="日本激情淫穴"},
[7518] = {ID=7518,Desc="江戲子"},
[7519] = {ID=7519,Desc="做爱图片"},
[7520] = {ID=7520,Desc="蒋彦勇上书"},
[7521] = {ID=7521,Desc="狂插荡护士"},
[7522] = {ID=7522,Desc="美神ルナ"},
[7523] = {ID=7523,Desc="毛傻逼"},
[7524] = {ID=7524,Desc="李铁映"},
[7525] = {ID=7525,Desc="騷浪人妻"},
[7526] = {ID=7526,Desc="毛军长发威"},
[7527] = {ID=7527,Desc="法轮大法靠"},
[7528] = {ID=7528,Desc="婷婷淫色"},
[7529] = {ID=7529,Desc="丰唇艳姬"},
[7530] = {ID=7530,Desc="嗎的"},
[7531] = {ID=7531,Desc="BT色工厂"},
[7532] = {ID=7532,Desc="川岛芳子"},
[7533] = {ID=7533,Desc="淫叫"},
[7534] = {ID=7534,Desc="中年美婦"},
[7535] = {ID=7535,Desc="本站10007多部激情电影全部免费试看"},
[7536] = {ID=7536,Desc="阴道好紧啊"},
[7537] = {ID=7537,Desc="外~~挂"},
[7538] = {ID=7538,Desc="淫民堂"},
[7539] = {ID=7539,Desc="孙逸仙"},
[7540] = {ID=7540,Desc="CUP爆乳家庭教师"},
[7541] = {ID=7541,Desc="fuck商务部"},
[7542] = {ID=7542,Desc="成人漫画"},
[7543] = {ID=7543,Desc="小姨子淫色导航"},
[7544] = {ID=7544,Desc="MM激情视频聊天"},
[7545] = {ID=7545,Desc="台湾情色香港顶级淫片"},
[7546] = {ID=7546,Desc="毛妹妹淫色"},
[7547] = {ID=7547,Desc="少妇房中自淫,和两勇男玩7P,操得直叫爽"},
[7548] = {ID=7548,Desc="午夜激情宽频影院"},
[7549] = {ID=7549,Desc="插屁眼"},
[7550] = {ID=7550,Desc="干她"},
[7551] = {ID=7551,Desc="我和jiejie"},
[7552] = {ID=7552,Desc="小骚屄儿妹妹"},
[7553] = {ID=7553,Desc="极品做爱套图"},
[7554] = {ID=7554,Desc="强奸你"},
[7555] = {ID=7555,Desc="支持台湾"},
[7556] = {ID=7556,Desc="婷婷激情小说"},
[7557] = {ID=7557,Desc="毛生春袋"},
[7558] = {ID=7558,Desc="爷爷顶到嫂子的花心"},
[7559] = {ID=7559,Desc="新疆分裂"},
[7560] = {ID=7560,Desc="搖头丸"},
[7561] = {ID=7561,Desc="法**论"},
[7562] = {ID=7562,Desc="毛胡紧涛"},
[7563] = {ID=7563,Desc="強姦媽媽…肉缝"},
[7564] = {ID=7564,Desc="乳溝"},
[7565] = {ID=7565,Desc="610办公室"},
[7566] = {ID=7566,Desc="发$$抡"},
[7567] = {ID=7567,Desc="大奶头"},
[7568] = {ID=7568,Desc="中公网"},
[7569] = {ID=7569,Desc="韩杼滨"},
[7570] = {ID=7570,Desc="毛私—服"},
[7571] = {ID=7571,Desc="亚洲最大激情电影"},
[7572] = {ID=7572,Desc="小嫩穴流血了"},
[7573] = {ID=7573,Desc="eight仙靠"},
[7574] = {ID=7574,Desc="刘文胜"},
[7575] = {ID=7575,Desc="又长粗的肉棒"},
[7576] = {ID=7576,Desc="好嫩的阴户"},
[7577] = {ID=7577,Desc="挺入阴道"},
[7578] = {ID=7578,Desc="董贱华"},
[7579] = {ID=7579,Desc="…你的鸡巴"},
[7580] = {ID=7580,Desc="亚洲激情淫少妇贴图"},
[7581] = {ID=7581,Desc="李作鹏"},
[7582] = {ID=7582,Desc="瘸腿帮"},
[7583] = {ID=7583,Desc="徐水良"},
[7584] = {ID=7584,Desc="阴茎挺进狭窄的阴户"},
[7585] = {ID=7585,Desc="日本激情视频聊天室"},
[7586] = {ID=7586,Desc="好色meimei电影做爱论坛"},
[7587] = {ID=7587,Desc="歡迎G8情色電影院"},
[7588] = {ID=7588,Desc="妹妹小穴好紧"},
[7589] = {ID=7589,Desc="淫穴电影网"},
[7590] = {ID=7590,Desc="八九年那個春夏之交"},
[7591] = {ID=7591,Desc="恼杀美巨乳美女~吉川萌"},
[7592] = {ID=7592,Desc="肉棒沾满了唾液"},
[7593] = {ID=7593,Desc="亞洲自然超可愛美巨乳"},
[7594] = {ID=7594,Desc="幼图"},
[7595] = {ID=7595,Desc="毛强奸犯"},
[7596] = {ID=7596,Desc="男男激情影院"},
[7597] = {ID=7597,Desc="外~~掛"},
[7598] = {ID=7598,Desc="淫欲世家"},
[7599] = {ID=7599,Desc="…好棒啊……好舒服"},
[7600] = {ID=7600,Desc="何勇"},
[7601] = {ID=7601,Desc="毛广电局"},
[7602] = {ID=7602,Desc="幼圖"},
[7603] = {ID=7603,Desc="小屄儿里又暖又紧"},
[7604] = {ID=7604,Desc="亚洲激情淫色文章"},
[7605] = {ID=7605,Desc="日本小泉"},
[7606] = {ID=7606,Desc="江流氓"},
[7607] = {ID=7607,Desc="meimei的嫩屄"},
[7608] = {ID=7608,Desc="jiejie被轮奸"},
[7609] = {ID=7609,Desc="18dy免费观看"},
[7610] = {ID=7610,Desc="免费放淫电影**日本高校女生性交"},
[7611] = {ID=7611,Desc="好紧的屄啊"},
[7612] = {ID=7612,Desc="祁建"},
[7613] = {ID=7613,Desc="18岁少女处夜激情性爱电影下载中心"},
[7614] = {ID=7614,Desc="毛系统讯息"},
[7615] = {ID=7615,Desc="阴道夹的好紧"},
[7616] = {ID=7616,Desc="发*论"},
[7617] = {ID=7617,Desc="嫩穴把肉棒包得紧紧"},
[7618] = {ID=7618,Desc="午夜激情美穴"},
[7619] = {ID=7619,Desc="激情淫乱图片穴欧美男人淫色贴图"},
[7620] = {ID=7620,Desc="麦司卡林"},
[7621] = {ID=7621,Desc="鬼轮奸"},
[7622] = {ID=7622,Desc="操赤匪"},
[7623] = {ID=7623,Desc="插入meimei穴中"},
[7624] = {ID=7624,Desc="淫色释放贴图"},
[7625] = {ID=7625,Desc="性交吞精"},
[7626] = {ID=7626,Desc="肉棒插入湿淋淋的肉洞"},
[7627] = {ID=7627,Desc="田纪云"},
[7628] = {ID=7628,Desc="麦角酸二乙基酰胺"},
[7629] = {ID=7629,Desc="淫奸处女论坛"},
[7630] = {ID=7630,Desc="8?9靠"},
[7631] = {ID=7631,Desc="日本成人激情电影"},
[7632] = {ID=7632,Desc="fuck湿透的内裤"},
[7633] = {ID=7633,Desc="欧美激情淫色下载"},
[7634] = {ID=7634,Desc="发$论"},
[7635] = {ID=7635,Desc="阿姨的阴道好紧啊"},
[7636] = {ID=7636,Desc="fuck升达毕业证"},
[7637] = {ID=7637,Desc="周恩来"},
[7638] = {ID=7638,Desc="免费bb电影"},
[7639] = {ID=7639,Desc="野性家庭女教师"},
[7640] = {ID=7640,Desc="母女雙飛"},
[7641] = {ID=7641,Desc="黄色电影"},
[7642] = {ID=7642,Desc="囘良玉"},
[7643] = {ID=7643,Desc="針孔偷拍"},
[7644] = {ID=7644,Desc="毛妈B"},
[7645] = {ID=7645,Desc="我淫我色导航"},
[7646] = {ID=7646,Desc="私?服"},
[7647] = {ID=7647,Desc="張萬年"},
[7648] = {ID=7648,Desc="操戳你"},
[7649] = {ID=7649,Desc="娼妓"},
[7650] = {ID=7650,Desc="娼妇"},
[7651] = {ID=7651,Desc="我日你"},
[7652] = {ID=7652,Desc="党中央"},
[7653] = {ID=7653,Desc="毛嫖客"},
[7654] = {ID=7654,Desc="色界"},
[7655] = {ID=7655,Desc="經典炮圖"},
[7656] = {ID=7656,Desc="令人喷血的春宫108姿势(组图)20岁禁看"},
[7657] = {ID=7657,Desc="激情电影免费下载裸体meinv乳房图"},
[7658] = {ID=7658,Desc="幹妳老母"},
[7659] = {ID=7659,Desc="射了还说要"},
[7660] = {ID=7660,Desc="成人電影"},
[7661] = {ID=7661,Desc="買財富"},
[7662] = {ID=7662,Desc="黄色激情电影"},
[7663] = {ID=7663,Desc="午夜激情电影"},
[7664] = {ID=7664,Desc="掰开MM嫩穴"},
[7665] = {ID=7665,Desc="鸡吧顶住阴道口"},
[7666] = {ID=7666,Desc="日本性爱电影"},
[7667] = {ID=7667,Desc="穿豹紋的meinv,很有野性美。看她咬著肉根就可看出來。"},
[7668] = {ID=7668,Desc="黑毛屄"},
[7669] = {ID=7669,Desc="meinv电影"},
[7670] = {ID=7670,Desc="日本人淫乱操淫荡少妇操淫荡妹妹"},
[7671] = {ID=7671,Desc="性欲喘息女教師"},
[7672] = {ID=7672,Desc="夫妻作爱电影"},
[7673] = {ID=7673,Desc="ASS李弘旨"},
[7674] = {ID=7674,Desc="肉棒插入肉洞"},
[7675] = {ID=7675,Desc="幾巴"},
[7676] = {ID=7676,Desc="妹妹张开双腿等你操"},
[7677] = {ID=7677,Desc="色网阴道特写强奸27岁处女全过程"},
[7678] = {ID=7678,Desc="插淫穴的快感"},
[7679] = {ID=7679,Desc="你是鴨"},
[7680] = {ID=7680,Desc="操丰满小穴"},
[7681] = {ID=7681,Desc="小嘴吞吐的肉棒"},
[7682] = {ID=7682,Desc="东北独立"},
[7683] = {ID=7683,Desc="肏jiejie屄"},
[7684] = {ID=7684,Desc="本站的免费成人电影"},
[7685] = {ID=7685,Desc="草嫣"},
[7686] = {ID=7686,Desc="少妇床上欲火难耐自mo图"},
[7687] = {ID=7687,Desc="作弊器"},
[7688] = {ID=7688,Desc="操淫女穴贴图"},
[7689] = {ID=7689,Desc="强奸36岁处女全过程/淫妹阴毛小穴"},
[7690] = {ID=7690,Desc="镇压学生"},
[7691] = {ID=7691,Desc="毛鸡鸡"},
[7692] = {ID=7692,Desc="免费淫电影网站"},
[7693] = {ID=7693,Desc="小姨的嫩阴道"},
[7694] = {ID=7694,Desc="裸体meimei林心如穴"},
[7695] = {ID=7695,Desc="不需付费的色情电影"},
[7696] = {ID=7696,Desc="淫电影//令人喷血的春宫108姿势"},
[7697] = {ID=7697,Desc="弟弟的肉棒好长啊"},
[7698] = {ID=7698,Desc="李月月鸟"},
[7699] = {ID=7699,Desc="乱伦小荡妇"},
[7700] = {ID=7700,Desc="最新一本道~超级名模系列第13弹"},
[7701] = {ID=7701,Desc="成人免费影院"},
[7702] = {ID=7702,Desc="草的你媽"},
[7703] = {ID=7703,Desc="湿淋淋的阴道"},
[7704] = {ID=7704,Desc="SM处女淫水图"},
[7705] = {ID=7705,Desc="臭鸡巴"},
[7706] = {ID=7706,Desc="午夜成人"},
[7707] = {ID=7707,Desc="保证你打飞机"},
[7708] = {ID=7708,Desc="香港激情片色情工厂直播香港彩福联盟激情"},
[7709] = {ID=7709,Desc="玛雅网"},
[7710] = {ID=7710,Desc="發^綸"},
[7711] = {ID=7711,Desc="激情黄色电影"},
[7712] = {ID=7712,Desc="毛国家主席"},
[7713] = {ID=7713,Desc="足球经理在线"},
[7714] = {ID=7714,Desc="无套内射"},
[7715] = {ID=7715,Desc="毛共狗"},
[7716] = {ID=7716,Desc="百家性大型黄站视频"},
[7717] = {ID=7717,Desc="激情3级片试看"},
[7718] = {ID=7718,Desc="鸡毛信文汇"},
[7719] = {ID=7719,Desc="宁王府成人"},
[7720] = {ID=7720,Desc="张小平"},
[7721] = {ID=7721,Desc="针孔摄像机"},
[7722] = {ID=7722,Desc="野性家庭女教師"},
[7723] = {ID=7723,Desc="法*"},
[7724] = {ID=7724,Desc="免费顶级欲图禁片"},
[7725] = {ID=7725,Desc="26dy淫色贴图"},
[7726] = {ID=7726,Desc="肉棒狂插穴口"},
[7727] = {ID=7727,Desc="毛蒙独"},
[7728] = {ID=7728,Desc="天安门母亲运动"},
[7729] = {ID=7729,Desc="fuck石进"},
[7730] = {ID=7730,Desc="干妈妈的爽"},
[7731] = {ID=7731,Desc="马英九"},
[7732] = {ID=7732,Desc="人大常委"},
[7733] = {ID=7733,Desc="步非烟"},
[7734] = {ID=7734,Desc="干保姆小穴"},
[7735] = {ID=7735,Desc="葫芦案"},
[7736] = {ID=7736,Desc="本站10013多部激情电影全部免费试看"},
[7737] = {ID=7737,Desc="免费淫色电影-无需注册"},
[7738] = {ID=7738,Desc="淫骚穴电影"},
[7739] = {ID=7739,Desc="搓揉裸露在外的那对奶子"},
[7740] = {ID=7740,Desc="你是鸡"},
[7741] = {ID=7741,Desc="你是鸭"},
[7742] = {ID=7742,Desc="去氧麻黄碱或安非他命"},
[7743] = {ID=7743,Desc="钻插"},
[7744] = {ID=7744,Desc="淫奸meimei穴"},
[7745] = {ID=7745,Desc="中年美妇"},
[7746] = {ID=7746,Desc="抽插32岁处女meimei淫叫不断"},
[7747] = {ID=7747,Desc="淫乱潮吹"},
[7748] = {ID=7748,Desc="午夜影院秘密通道_免费不需注册看电影"},
[7749] = {ID=7749,Desc="毛妹妹黄站"},
[7750] = {ID=7750,Desc="江豬媳"},
[7751] = {ID=7751,Desc="伦功"},
[7752] = {ID=7752,Desc="和护士姐姐淫穴"},
[7753] = {ID=7753,Desc="meinv淫水狂流"},
[7754] = {ID=7754,Desc="鲜嫩蜜穴"},
[7755] = {ID=7755,Desc="两性激情电影"},
[7756] = {ID=7756,Desc="香港激情淫色贴图"},
[7757] = {ID=7757,Desc="999日本妹"},
[7758] = {ID=7758,Desc="母子淫奸乱轮现场看……扶正肉棒"},
[7759] = {ID=7759,Desc="李先念"},
[7760] = {ID=7760,Desc="吸精痴女護士"},
[7761] = {ID=7761,Desc="中文搜性網"},
[7762] = {ID=7762,Desc="黄色免费淫电影网"},
[7763] = {ID=7763,Desc="苏秀文"},
[7764] = {ID=7764,Desc="夜色城"},
[7765] = {ID=7765,Desc="老师小穴"},
[7766] = {ID=7766,Desc="他妈ㄉ王八蛋"},
[7767] = {ID=7767,Desc="18岁女生主动让男生开苞全过程◥免费黄色电影"},
[7768] = {ID=7768,Desc="國民黨萬歲"},
[7769] = {ID=7769,Desc="日本激情淫色贴图"},
[7770] = {ID=7770,Desc="毛华建敏"},
[7771] = {ID=7771,Desc="激情视频聊天"},
[7772] = {ID=7772,Desc="肉棒插入骚穴"},
[7773] = {ID=7773,Desc="邓颖超"},
[7774] = {ID=7774,Desc="肉棒好大啊"},
[7775] = {ID=7775,Desc="淫电影免费在线观看"},
[7776] = {ID=7776,Desc="发~纶"},
[7777] = {ID=7777,Desc="十七大"},
[7778] = {ID=7778,Desc="fuck想上你"},
[7779] = {ID=7779,Desc="毛吗啡片"},
[7780] = {ID=7780,Desc="操少妇嫩穴"},
[7781] = {ID=7781,Desc="白漿四濺"},
[7782] = {ID=7782,Desc="他奶奶"},
[7783] = {ID=7783,Desc="酣乐欣"},
[7784] = {ID=7784,Desc="狂插儿媳妇的阴道"},
[7785] = {ID=7785,Desc="李克強"},
[7786] = {ID=7786,Desc="李克强"},
[7787] = {ID=7787,Desc="刘士贤"},
[7788] = {ID=7788,Desc="駛你老師"},
[7789] = {ID=7789,Desc="美女吞精"},
[7790] = {ID=7790,Desc="东热美女一个比一个强"},
[7791] = {ID=7791,Desc="台湾成人电影"},
[7792] = {ID=7792,Desc="jiejie的穴好大啊"},
[7793] = {ID=7793,Desc="福摩薩"},
[7794] = {ID=7794,Desc="强奸25岁处女全过程/淫妹阴毛小穴"},
[7795] = {ID=7795,Desc="狂插妹妹的小穴"},
[7796] = {ID=7796,Desc="阿雅娃娃"},
[7797] = {ID=7797,Desc="夫妻3p"},
[7798] = {ID=7798,Desc="少妇扒开阴道图-淫賤少女阴唇特写图"},
[7799] = {ID=7799,Desc="fuck台湾共和国"},
[7800] = {ID=7800,Desc="抽插54岁处女妹妹淫叫不断"},
[7801] = {ID=7801,Desc="熟妇"},
[7802] = {ID=7802,Desc="免费dse淫乱图片"},
[7803] = {ID=7803,Desc="成人免费电影"},
[7804] = {ID=7804,Desc="毛威而钢"},
[7805] = {ID=7805,Desc="淫电影//教你怎样延迟射精18岁以下禁免费淫电影a片"},
[7806] = {ID=7806,Desc="亞無碼"},
[7807] = {ID=7807,Desc="买财富"},
[7808] = {ID=7808,Desc="操成人片"},
[7809] = {ID=7809,Desc="淫声浪语"},
[7810] = {ID=7810,Desc="剛度"},
[7811] = {ID=7811,Desc="又大又嫩的阴户"},
[7812] = {ID=7812,Desc="江戏子"},
[7813] = {ID=7813,Desc="干他妈"},
[7814] = {ID=7814,Desc="淫色少妇狗小说大全"},
[7815] = {ID=7815,Desc="淫图淫片全部免费"},
[7816] = {ID=7816,Desc="┅大力插┅大鸡巴"},
[7817] = {ID=7817,Desc="MM的小嫩穴"},
[7818] = {ID=7818,Desc="台湾狗"},
[7819] = {ID=7819,Desc="用你的阴茎插我的阴道"},
[7820] = {ID=7820,Desc="鴉片"},
[7821] = {ID=7821,Desc="fuck乡巴佬"},
[7822] = {ID=7822,Desc="咪咪色界"},
[7823] = {ID=7823,Desc="最淫大陆成人贴图电影区"},
[7824] = {ID=7824,Desc="台湾身材一流美女楼梯性爱"},
[7825] = {ID=7825,Desc="插你奶奶"},
[7826] = {ID=7826,Desc="台湾独"},
[7827] = {ID=7827,Desc="淫民激情文学图库下载淫民激情文学图库专题"},
[7828] = {ID=7828,Desc="毛驶你母"},
[7829] = {ID=7829,Desc="淫奸少妇穴"},
[7830] = {ID=7830,Desc="顶级乱伦高潮淫水"},
[7831] = {ID=7831,Desc="普京"},
[7832] = {ID=7832,Desc="毛靠"},
[7833] = {ID=7833,Desc="免费妹妹黄色淫乱"},
[7834] = {ID=7834,Desc="女教师禽兽轮奸陷阱"},
[7835] = {ID=7835,Desc="亚洲有码"},
[7836] = {ID=7836,Desc="X到喷屎尿"},
[7837] = {ID=7837,Desc="毛賊東"},
[7838] = {ID=7838,Desc="家庭教师は女子校生"},
[7839] = {ID=7839,Desc="大史纪"},
[7840] = {ID=7840,Desc="操陈良宇"},
[7841] = {ID=7841,Desc="海天英雄傳"},
[7842] = {ID=7842,Desc="鹿城娱乐成人俱乐部"},
[7843] = {ID=7843,Desc="朱容雞"},
[7844] = {ID=7844,Desc="处女淫水图台湾女人裸"},
[7845] = {ID=7845,Desc="毛胡XX"},
[7846] = {ID=7846,Desc="刘山青"},
[7847] = {ID=7847,Desc="兔妹妹贴图区"},
[7848] = {ID=7848,Desc="大肉棒"},
[7849] = {ID=7849,Desc="愛液橫流"},
[7850] = {ID=7850,Desc="最新成人激情电影网站"},
[7851] = {ID=7851,Desc="撅起大白腚"},
[7852] = {ID=7852,Desc="fuck社科院"},
[7853] = {ID=7853,Desc="强奸32岁处女全过程/淫妹阴毛小穴"},
[7854] = {ID=7854,Desc="大阳具从后面插入她的小穴"},
[7855] = {ID=7855,Desc="賀國強"},
[7856] = {ID=7856,Desc="龟头喷射出浓浓的精液"},
[7857] = {ID=7857,Desc="淫亂工作"},
[7858] = {ID=7858,Desc="陆委会"},
[7859] = {ID=7859,Desc="免费淫色妹妹电影网"},
[7860] = {ID=7860,Desc="毛发改委"},
[7861] = {ID=7861,Desc="淫圖"},
[7862] = {ID=7862,Desc="苏振华"},
[7863] = {ID=7863,Desc="(Waap)女教師"},
[7864] = {ID=7864,Desc="荡女"},
[7865] = {ID=7865,Desc="操婊子"},
[7866] = {ID=7866,Desc="毛傻B"},
[7867] = {ID=7867,Desc="亚洲激情淫穴"},
[7868] = {ID=7868,Desc="淫图"},
[7869] = {ID=7869,Desc="大鸡吧在小穴内壁摩擦"},
[7870] = {ID=7870,Desc="要射了"},
[7871] = {ID=7871,Desc="肉棒已经整根插入穴中"},
[7872] = {ID=7872,Desc="大众色情成人网"},
[7873] = {ID=7873,Desc="fuck双峰微颤"},
[7874] = {ID=7874,Desc="ボディフェティッシュ"},
[7875] = {ID=7875,Desc="毛干妳老母"},
[7876] = {ID=7876,Desc="∪R靠"},
[7877] = {ID=7877,Desc="肥穴自拍"},
[7878] = {ID=7878,Desc="发骚"},
[7879] = {ID=7879,Desc="法谪"},
[7880] = {ID=7880,Desc="六四屠殺"},
[7881] = {ID=7881,Desc="奶挺臀翹"},
[7882] = {ID=7882,Desc="mabinogi"},
[7883] = {ID=7883,Desc="济南建设路"},
[7884] = {ID=7884,Desc="g片"},
[7885] = {ID=7885,Desc="駛你老母"},
[7886] = {ID=7886,Desc="spikegirls"},
[7887] = {ID=7887,Desc="日你娘"},
[7888] = {ID=7888,Desc="淫色少妇做爱淫穴流"},
[7889] = {ID=7889,Desc="*法*輪*功*"},
[7890] = {ID=7890,Desc="侖功"},
[7891] = {ID=7891,Desc="强奸17岁处女全过程/*妹阴毛小穴"},
[7892] = {ID=7892,Desc="奶挺臀翘"},
[7893] = {ID=7893,Desc="肉棍干骚妇"},
[7894] = {ID=7894,Desc="强奸18岁处女全过程/淫妹阴毛小穴"},
[7895] = {ID=7895,Desc="淫穴内好痒"},
[7896] = {ID=7896,Desc="激情午夜"},
[7897] = {ID=7897,Desc="兽欲"},
[7898] = {ID=7898,Desc="fuck万税"},
[7899] = {ID=7899,Desc="厕所盗摄美女性感"},
[7900] = {ID=7900,Desc="石进"},
[7901] = {ID=7901,Desc="meimei的阴唇好大啊"},
[7902] = {ID=7902,Desc="法~~仑"},
[7903] = {ID=7903,Desc="ai滋"},
[7904] = {ID=7904,Desc="你奶"},
[7905] = {ID=7905,Desc="中国复兴论坛"},
[7906] = {ID=7906,Desc="妈**菊花穴"},
[7907] = {ID=7907,Desc="恩格斯"},
[7908] = {ID=7908,Desc="鬼輪奸"},
[7909] = {ID=7909,Desc="Kamikaze_Girls_Vol。12"},
[7910] = {ID=7910,Desc="bb论坛"},
[7911] = {ID=7911,Desc="洪興"},
[7912] = {ID=7912,Desc="台湾淫色网"},
[7913] = {ID=7913,Desc="g点"},
[7914] = {ID=7914,Desc="客戶服務"},
[7915] = {ID=7915,Desc="快……快……幹我……幹……我快忍不住了……哼…"},
[7916] = {ID=7916,Desc="嗯┅┅嗯┅┅舒服死了……妹妹又要丢了"},
[7917] = {ID=7917,Desc="你妈"},
[7918] = {ID=7918,Desc="驶你老母"},
[7919] = {ID=7919,Desc="舌尖舔着肉棒"},
[7920] = {ID=7920,Desc="征途"},
[7921] = {ID=7921,Desc="毛台湾独立"},
[7922] = {ID=7922,Desc="WEB牌戰靠"},
[7923] = {ID=7923,Desc="手机自慰网"},
[7924] = {ID=7924,Desc="外交与方略"},
[7925] = {ID=7925,Desc="明诺东方"},
[7926] = {ID=7926,Desc="操jiejie的穴"},
[7927] = {ID=7927,Desc="fuck手淫"},
[7928] = {ID=7928,Desc="fuck新义安"},
[7929] = {ID=7929,Desc="毛四人帮"},
[7930] = {ID=7930,Desc="吴官正"},
[7931] = {ID=7931,Desc="肉棒插得湿润了"},
[7932] = {ID=7932,Desc="反右题材"},
[7933] = {ID=7933,Desc="cao你"},
[7934] = {ID=7934,Desc="i3hun"},
[7935] = {ID=7935,Desc="干您"},
[7936] = {ID=7936,Desc="轮子功"},
[7937] = {ID=7937,Desc="毛天皇"},
[7938] = {ID=7938,Desc="法~~伦"},
[7939] = {ID=7939,Desc="好紧的穴"},
[7940] = {ID=7940,Desc="辦公室淫亂"},
[7941] = {ID=7941,Desc="kong"},
[7942] = {ID=7942,Desc="免费成人激情影院"},
[7943] = {ID=7943,Desc="安理会"},
[7944] = {ID=7944,Desc="軍民血腥衝突"},
[7945] = {ID=7945,Desc="张宏堡"},
[7946] = {ID=7946,Desc="联通移动秘密通道"},
[7947] = {ID=7947,Desc="夫妻电影"},
[7948] = {ID=7948,Desc="滕仁"},
[7949] = {ID=7949,Desc="公媳性交淫荡图片"},
[7950] = {ID=7950,Desc="大鸡巴┅┅爽"},
[7951] = {ID=7951,Desc="劉雲山"},
[7952] = {ID=7952,Desc="鹿城黄站图"},
[7953] = {ID=7953,Desc="滕人"},
[7954] = {ID=7954,Desc="中科院"},
[7955] = {ID=7955,Desc="少妇房中自淫,和两勇男玩10P,操得直叫爽"},
[7956] = {ID=7956,Desc="毛贼东"},
[7957] = {ID=7957,Desc="政治压迫"},
[7958] = {ID=7958,Desc="下三滥"},
[7959] = {ID=7959,Desc="你姥"},
[7960] = {ID=7960,Desc="陈丕显"},
[7961] = {ID=7961,Desc="駛你公"},
[7962] = {ID=7962,Desc="賣國求榮"},
[7963] = {ID=7963,Desc="王岐山"},
[7964] = {ID=7964,Desc="fuck色情小电影"},
[7965] = {ID=7965,Desc="yuanming噴你"},
[7966] = {ID=7966,Desc="屆中央政治局委員"},
[7967] = {ID=7967,Desc="你娘"},
[7968] = {ID=7968,Desc="美女穴自拍"},
[7969] = {ID=7969,Desc="移彩聯合"},
[7970] = {ID=7970,Desc="吴学灿"},
[7971] = {ID=7971,Desc="法$仑"},
[7972] = {ID=7972,Desc="cock"},
[7973] = {ID=7973,Desc="龟头插花心深处"},
[7974] = {ID=7974,Desc="OLmeinv街上遥控震动A"},
[7975] = {ID=7975,Desc="淫欲"},
[7976] = {ID=7976,Desc="台湾成人骚b"},
[7977] = {ID=7977,Desc="江泽民"},
[7978] = {ID=7978,Desc="激情交友"},
[7979] = {ID=7979,Desc="sega"},
[7980] = {ID=7980,Desc="华国锋"},
[7981] = {ID=7981,Desc="滕任"},
[7982] = {ID=7982,Desc="两性淫乱贴图"},
[7983] = {ID=7983,Desc="又紧又嫩的屄"},
[7984] = {ID=7984,Desc="台湾18dy影院"},
[7985] = {ID=7985,Desc="karma"},
[7986] = {ID=7986,Desc="美国佬"},
[7987] = {ID=7987,Desc="淫荡少妇极品穴"},
[7988] = {ID=7988,Desc="騷姐姐"},
[7989] = {ID=7989,Desc="美女成人"},
[7990] = {ID=7990,Desc="南大自由论坛"},
[7991] = {ID=7991,Desc="色情论坛"},
[7992] = {ID=7992,Desc="出售神符靠"},
[7993] = {ID=7993,Desc="毛干妳"},
[7994] = {ID=7994,Desc="殺你全家"},
[7995] = {ID=7995,Desc="秘书长"},
[7996] = {ID=7996,Desc="成人色情午夜激情"},
[7997] = {ID=7997,Desc="政权"},
[7998] = {ID=7998,Desc="爱因斯坦"},
[7999] = {ID=7999,Desc="法~~侖"},
[8000] = {ID=8000,Desc="神之領域"},
[8001] = {ID=8001,Desc="娘个比"},
[8002] = {ID=8002,Desc="卖党求荣"},
[8003] = {ID=8003,Desc="肉棒入少妇嫩穴嫩穴"},
[8004] = {ID=8004,Desc="蜜穴"},
[8005] = {ID=8005,Desc="法*仑"},
[8006] = {ID=8006,Desc="免费观看女教師赤版"},
[8007] = {ID=8007,Desc="高麗樸"},
[8008] = {ID=8008,Desc="激情少妇"},
[8009] = {ID=8009,Desc="美國佬"},
[8010] = {ID=8010,Desc="成人动漫"},
[8011] = {ID=8011,Desc="免费淫电影吴宗宪搞笑语录(21禁看)"},
[8012] = {ID=8012,Desc="六四正名"},
[8013] = {ID=8013,Desc="天安門錄影帶"},
[8014] = {ID=8014,Desc="色影院"},
[8015] = {ID=8015,Desc="mankind"},
[8016] = {ID=8016,Desc="顺着红嫩的肉缝上下抚弄后插入小穴"},
[8017] = {ID=8017,Desc="毛贱人"},
[8018] = {ID=8018,Desc="初中meimei的小美穴"},
[8019] = {ID=8019,Desc="人民礼堂"},
[8020] = {ID=8020,Desc="疯狂抽插她的小穴"},
[8021] = {ID=8021,Desc="破處"},
[8022] = {ID=8022,Desc="肉棒一阵猛烈的抽插"},
[8023] = {ID=8023,Desc="世纪天成"},
[8024] = {ID=8024,Desc="亚历山大"},
[8025] = {ID=8025,Desc="淫毛"},
[8026] = {ID=8026,Desc="日军"},
[8027] = {ID=8027,Desc="男女激情淫贴图"},
[8028] = {ID=8028,Desc="强奸电影网站"},
[8029] = {ID=8029,Desc="游戏送奖员"},
[8030] = {ID=8030,Desc="操王"},
[8031] = {ID=8031,Desc="嫩鮑魚"},
[8032] = {ID=8032,Desc="你媽"},
[8033] = {ID=8033,Desc="吸吮著我的阳具"},
[8034] = {ID=8034,Desc="淫母"},
[8035] = {ID=8035,Desc="你娘的"},
[8036] = {ID=8036,Desc="我和姐姐的淫乱史"},
[8037] = {ID=8037,Desc="阴唇好嫩啊"},
[8038] = {ID=8038,Desc="言论自由"},
[8039] = {ID=8039,Desc="亚洲成人俱乐部"},
[8040] = {ID=8040,Desc="真主安拉"},
[8041] = {ID=8041,Desc="美腿美穴大屌"},
[8042] = {ID=8042,Desc="法$伦"},
[8043] = {ID=8043,Desc="又大又嫩的屄"},
[8044] = {ID=8044,Desc="統治"},
[8045] = {ID=8045,Desc="222se圖片"},
[8046] = {ID=8046,Desc="操迟浩田"},
[8047] = {ID=8047,Desc="機八"},
[8048] = {ID=8048,Desc="毛塞你母"},
[8049] = {ID=8049,Desc="法~~倫"},
[8050] = {ID=8050,Desc="服务天使"},
[8051] = {ID=8051,Desc="一起玩"},
[8052] = {ID=8052,Desc="错比"},
[8053] = {ID=8053,Desc="淫美贴图区"},
[8054] = {ID=8054,Desc="发~~轮"},
[8055] = {ID=8055,Desc="肏屄好舒服"},
[8056] = {ID=8056,Desc="发^纶"},
[8057] = {ID=8057,Desc="粗肉棒阴户"},
[8058] = {ID=8058,Desc="阴茎被子宫夹住好爽"},
[8059] = {ID=8059,Desc="Jj插入嫩穴"},
[8060] = {ID=8060,Desc="成人激情午夜场"},
[8061] = {ID=8061,Desc="武林外史"},
[8062] = {ID=8062,Desc="强奸31岁处女全过程/淫妹阴毛小穴"},
[8063] = {ID=8063,Desc="肥厚柔软的大阴唇夹着大龟头"},
[8064] = {ID=8064,Desc="俄罗斯激情淫色贴图"},
[8065] = {ID=8065,Desc="法*伦"},
[8066] = {ID=8066,Desc="淫汁"},
[8067] = {ID=8067,Desc="毛外"},
[8068] = {ID=8068,Desc="33bbb走光"},
[8069] = {ID=8069,Desc="伊斯兰"},
[8070] = {ID=8070,Desc="av小电影"},
[8071] = {ID=8071,Desc="马加爵"},
[8072] = {ID=8072,Desc="处女的肉穴给他的肉棒一插到底"},
[8073] = {ID=8073,Desc="快来┅┅插"},
[8074] = {ID=8074,Desc="meinv网站脱衣meinv百分百作爱"},
[8075] = {ID=8075,Desc="调教虐待"},
[8076] = {ID=8076,Desc="成人电影导航"},
[8077] = {ID=8077,Desc="Vol。"},
[8078] = {ID=8078,Desc="帕巴拉·格列朗傑"},
[8079] = {ID=8079,Desc="妹妹的小穴好紧啊"},
[8080] = {ID=8080,Desc="娱乐性大型黄站"},
[8081] = {ID=8081,Desc="复辟"},
[8082] = {ID=8082,Desc="我第一次舔表姐的阴"},
[8083] = {ID=8083,Desc="强奸系列精品"},
[8084] = {ID=8084,Desc="陌生做爱在车里发生"},
[8085] = {ID=8085,Desc="游戏米果"},
[8086] = {ID=8086,Desc="小屄儿温暖滑嫩"},
[8087] = {ID=8087,Desc="十八摸"},
[8088] = {ID=8088,Desc="豔乳"},
[8089] = {ID=8089,Desc="fuck神经病"},
[8090] = {ID=8090,Desc="骚姐乱伦网"},
[8091] = {ID=8091,Desc="无码淫漫"},
[8092] = {ID=8092,Desc="国外成人激情网站"},
[8093] = {ID=8093,Desc="无码彩图"},
[8094] = {ID=8094,Desc="kuai"},
[8095] = {ID=8095,Desc="轮暴"},
[8096] = {ID=8096,Desc="tibetalk"},
[8097] = {ID=8097,Desc="92bb成人小电影"},
[8098] = {ID=8098,Desc="免费淫电影网"},
[8099] = {ID=8099,Desc="干我"},
[8100] = {ID=8100,Desc="狂插白嫩幼女bb还射乳"},
[8101] = {ID=8101,Desc="救援"},
[8102] = {ID=8102,Desc="多維網"},
[8103] = {ID=8103,Desc="巨乳女优"},
[8104] = {ID=8104,Desc="换妻大会"},
[8105] = {ID=8105,Desc="新观察论坛"},
[8106] = {ID=8106,Desc="人妻阴穴"},
[8107] = {ID=8107,Desc="色情帝国黄站"},
[8108] = {ID=8108,Desc="强奸处女"},
[8109] = {ID=8109,Desc="糞"},
[8110] = {ID=8110,Desc="我的肉棒仍然在滴著精液"},
[8111] = {ID=8111,Desc="舔舔私处妹妹嗷嗷叫"},
[8112] = {ID=8112,Desc="侨办"},
[8113] = {ID=8113,Desc="孙大午"},
[8114] = {ID=8114,Desc="插的姐姐好爽"},
[8115] = {ID=8115,Desc="淫奸姐姐电影"},
[8116] = {ID=8116,Desc="法$侖"},
[8117] = {ID=8117,Desc="…太爽了…大鸡巴"},
[8118] = {ID=8118,Desc="狂操少妇逼"},
[8119] = {ID=8119,Desc="伱妈"},
[8120] = {ID=8120,Desc="(桃太郎)ファーストアナル生中出しSpecial"},
[8121] = {ID=8121,Desc="毛我妳老爸"},
[8122] = {ID=8122,Desc="激情淫穴的嫂嫂"},
[8123] = {ID=8123,Desc="毛机巴"},
[8124] = {ID=8124,Desc="代挂"},
[8125] = {ID=8125,Desc="free"},
[8126] = {ID=8126,Desc="日本激情成人乱伦"},
[8127] = {ID=8127,Desc="狂插淫穴淫水"},
[8128] = {ID=8128,Desc="89年的鬥爭"},
[8129] = {ID=8129,Desc="台湾十八电影"},
[8130] = {ID=8130,Desc="小淫虫电影"},
[8131] = {ID=8131,Desc="外阴"},
[8132] = {ID=8132,Desc="外??挂"},
[8133] = {ID=8133,Desc="毛爷爷复活"},
[8134] = {ID=8134,Desc="本站10004多部激情电影全部免费试看"},
[8135] = {ID=8135,Desc="富兰克林"},
[8136] = {ID=8136,Desc="操穴"},
[8137] = {ID=8137,Desc="transvestit"},
[8138] = {ID=8138,Desc="政治"},
[8139] = {ID=8139,Desc="滥交"},
[8140] = {ID=8140,Desc="色貓"},
[8141] = {ID=8141,Desc="肉棒狂插花心深处"},
[8142] = {ID=8142,Desc="回族人吃猪肉"},
[8143] = {ID=8143,Desc="淫河"},
[8144] = {ID=8144,Desc="淫水留入穴中"},
[8145] = {ID=8145,Desc="機吧"},
[8146] = {ID=8146,Desc="林祖涵"},
[8147] = {ID=8147,Desc="水去車仑"},
[8148] = {ID=8148,Desc="抽插44岁处女妹妹淫叫不断"},
[8149] = {ID=8149,Desc="毛精液"},
[8150] = {ID=8150,Desc="列寧"},
[8151] = {ID=8151,Desc="发@纶"},
[8152] = {ID=8152,Desc="44xp。com"},
[8153] = {ID=8153,Desc="又肥又大的骚屄儿"},
[8154] = {ID=8154,Desc="淫色贴图论坛"},
[8155] = {ID=8155,Desc="侬着卵抛"},
[8156] = {ID=8156,Desc="色妹妹成人论"},
[8157] = {ID=8157,Desc="获救"},
[8158] = {ID=8158,Desc="臺灣是主權國家"},
[8159] = {ID=8159,Desc="戳那嗎逼"},
[8160] = {ID=8160,Desc="毛蒋介石"},
[8161] = {ID=8161,Desc="成人黄色三级网站"},
[8162] = {ID=8162,Desc="陳宗興"},
[8163] = {ID=8163,Desc="超meinv优MUGEN"},
[8164] = {ID=8164,Desc="操姐姐的穴"},
[8165] = {ID=8165,Desc="新江湖"},
[8166] = {ID=8166,Desc="性交无码"},
[8167] = {ID=8167,Desc="yuckfu"},
[8168] = {ID=8168,Desc="淫語痴女性欲"},
[8169] = {ID=8169,Desc="毛驶你公"},
[8170] = {ID=8170,Desc="药物奸淫女高校生A片"},
[8171] = {ID=8171,Desc="瓜批"},
[8172] = {ID=8172,Desc="硬绑绑的阴茎插入阴道"},
[8173] = {ID=8173,Desc="王若望"},
[8174] = {ID=8174,Desc="网絡公祭"},
[8175] = {ID=8175,Desc="1989事件"},
[8176] = {ID=8176,Desc="玉蒲园淫书淫图射"},
[8177] = {ID=8177,Desc="三男轮番干一个荡妇"},
[8178] = {ID=8178,Desc="你是雞"},
[8179] = {ID=8179,Desc="外??掛"},
[8180] = {ID=8180,Desc="東京熱最受歡迎長腿美女~藤澤安奈~腿長人又漂亮"},
[8181] = {ID=8181,Desc="强奸27岁处女全过程/淫妹阴毛小穴"},
[8182] = {ID=8182,Desc="毛淫娃"},
[8183] = {ID=8183,Desc="夜夜色大型黄站"},
[8184] = {ID=8184,Desc="fuck田纪云"},
[8185] = {ID=8185,Desc="毛手淫"},
[8186] = {ID=8186,Desc="诱奸"},
[8187] = {ID=8187,Desc="毛回族人吃猪肉"},
[8188] = {ID=8188,Desc="好粗大的肉棒"},
[8189] = {ID=8189,Desc="黑社会"},
[8190] = {ID=8190,Desc="幼穴贴图"},
[8191] = {ID=8191,Desc="含着他的龟头"},
[8192] = {ID=8192,Desc="法輪"},
[8193] = {ID=8193,Desc="花蕊"},
[8194] = {ID=8194,Desc="内测"},
[8195] = {ID=8195,Desc="黑鮑嬌"},
[8196] = {ID=8196,Desc="冈村秀树"},
[8197] = {ID=8197,Desc="捅死你"},
[8198] = {ID=8198,Desc="娘的"},
[8199] = {ID=8199,Desc="曼德拉"},
[8200] = {ID=8200,Desc="插的meimei好爽啊"},
[8201] = {ID=8201,Desc="周贺"},
[8202] = {ID=8202,Desc="digimagics"},
[8203] = {ID=8203,Desc="分开两片肥嫩的阴唇"},
[8204] = {ID=8204,Desc="应招"},
[8205] = {ID=8205,Desc="藓鲍"},
[8206] = {ID=8206,Desc="列宁"},
[8207] = {ID=8207,Desc="人民广场"},
[8208] = {ID=8208,Desc="山西洪洞"},
[8209] = {ID=8209,Desc="淫浪"},
[8210] = {ID=8210,Desc="毛龙新民"},
[8211] = {ID=8211,Desc="海乐神"},
[8212] = {ID=8212,Desc="planetside"},
[8213] = {ID=8213,Desc="淫流"},
[8214] = {ID=8214,Desc="男女激情淫乱穴下载"},
[8215] = {ID=8215,Desc="摩洛客"},
[8216] = {ID=8216,Desc="jiejie的小屄"},
[8217] = {ID=8217,Desc="龙图智库"},
[8218] = {ID=8218,Desc="王寶森"},
[8219] = {ID=8219,Desc="淫浆"},
[8220] = {ID=8220,Desc="高级淫口手淫口交"},
[8221] = {ID=8221,Desc="金瓶梅免费电影院"},
[8222] = {ID=8222,Desc="毛李山"},
[8223] = {ID=8223,Desc="bt淫色贴图"},
[8224] = {ID=8224,Desc="mm穴激情小说"},
[8225] = {ID=8225,Desc="3P炮圖"},
[8226] = {ID=8226,Desc="亚洲色"},
[8227] = {ID=8227,Desc="毛三去车仑"},
[8228] = {ID=8228,Desc="毛奸淫"},
[8229] = {ID=8229,Desc="姐弟乱轮"},
[8230] = {ID=8230,Desc="干林"},
[8231] = {ID=8231,Desc="大鸡巴就慢慢的插入"},
[8232] = {ID=8232,Desc="混沌"},
[8233] = {ID=8233,Desc="聖女峰"},
[8234] = {ID=8234,Desc="超級可愛巨乳妹被狂插得鼻血滿天飛"},
[8235] = {ID=8235,Desc="揚震"},
[8236] = {ID=8236,Desc="怎样延迟射精24岁以下禁"},
[8237] = {ID=8237,Desc="测试员"},
[8238] = {ID=8238,Desc="18dy桃色"},
[8239] = {ID=8239,Desc="穴"},
[8240] = {ID=8240,Desc="師春生"},
[8241] = {ID=8241,Desc="fuck太子党"},
[8242] = {ID=8242,Desc="鸡巴淫沟插B大图"},
[8243] = {ID=8243,Desc="曾庆红"},
[8244] = {ID=8244,Desc="插女教师的屁眼"},
[8245] = {ID=8245,Desc="54xp。com"},
[8246] = {ID=8246,Desc="成人电影网"},
[8247] = {ID=8247,Desc="毛法制办"},
[8248] = {ID=8248,Desc="马国瑞"},
[8249] = {ID=8249,Desc="meimei的阴道真紧"},
[8250] = {ID=8250,Desc="ur靠"},
[8251] = {ID=8251,Desc="带炼"},
[8252] = {ID=8252,Desc="淫电影a片"},
[8253] = {ID=8253,Desc="轮攻"},
[8254] = {ID=8254,Desc="神风特攻队"},
[8255] = {ID=8255,Desc="韓國三級情色电影"},
[8256] = {ID=8256,Desc="手淫~少妇自慰喷淫水"},
[8257] = {ID=8257,Desc="艷照门"},
[8258] = {ID=8258,Desc="幹你妈b"},
[8259] = {ID=8259,Desc="法轮"},
[8260] = {ID=8260,Desc="操神"},
[8261] = {ID=8261,Desc="民族矛盾"},
[8262] = {ID=8262,Desc="淫穴影院"},
[8263] = {ID=8263,Desc="烟草局"},
[8264] = {ID=8264,Desc="劉曉竹"},
[8265] = {ID=8265,Desc="姐姐"},
[8266] = {ID=8266,Desc="淫液"},
[8267] = {ID=8267,Desc="操大波波"},
[8268] = {ID=8268,Desc="干拎娘"},
[8269] = {ID=8269,Desc="综联数码"},
[8270] = {ID=8270,Desc="居然花钱请人教性爱姿势(组图)"},
[8271] = {ID=8271,Desc="淫蕩妖艷女醫生"},
[8272] = {ID=8272,Desc="meimei的小穴……舒服死了……"},
[8273] = {ID=8273,Desc="多人性愛"},
[8274] = {ID=8274,Desc="干机"},
[8275] = {ID=8275,Desc="汉娃娃"},
[8276] = {ID=8276,Desc="邵家健"},
[8277] = {ID=8277,Desc="法踚功"},
[8278] = {ID=8278,Desc="fuck色情电影"},
[8279] = {ID=8279,Desc="測试員"},
[8280] = {ID=8280,Desc="藤井せいら"},
[8281] = {ID=8281,Desc="大参考"},
[8282] = {ID=8282,Desc="(无关键词)导航搜索"},
[8283] = {ID=8283,Desc="一次可看四位美女同床較勁很可愛的女主角"},
[8284] = {ID=8284,Desc="meimei的小淫穴"},
[8285] = {ID=8285,Desc="淫色成人网"},
[8286] = {ID=8286,Desc="毛太监"},
[8287] = {ID=8287,Desc="淫湿"},
[8288] = {ID=8288,Desc="少妇穴"},
[8289] = {ID=8289,Desc="triangleboy"},
[8290] = {ID=8290,Desc="鬼輪姦"},
[8291] = {ID=8291,Desc="abc"},
[8292] = {ID=8292,Desc="乳爆"},
[8293] = {ID=8293,Desc="他ㄇ的"},
[8294] = {ID=8294,Desc="色网阴道特写强奸34岁处女全过程"},
[8295] = {ID=8295,Desc="前任男友"},
[8296] = {ID=8296,Desc="嫩屄"},
[8297] = {ID=8297,Desc="不注册看艳片"},
[8298] = {ID=8298,Desc="小穴被大鸡巴插得好疼啊"},
[8299] = {ID=8299,Desc="轮操"},
[8300] = {ID=8300,Desc="fuck台湾狗"},
[8301] = {ID=8301,Desc="系統訊息"},
[8302] = {ID=8302,Desc="台湾淫色电影"},
[8303] = {ID=8303,Desc="亚洲"},
[8304] = {ID=8304,Desc="毛阴小撕大"},
[8305] = {ID=8305,Desc="賤bi"},
[8306] = {ID=8306,Desc="生鸦片"},
[8307] = {ID=8307,Desc="操小姐穴"},
[8308] = {ID=8308,Desc="fuck孙逸仙"},
[8309] = {ID=8309,Desc="(虎虎虎)风间ゆみ-新婚"},
[8310] = {ID=8310,Desc="色窝窝"},
[8311] = {ID=8311,Desc="connard"},
[8312] = {ID=8312,Desc="自由亞洲電臺"},
[8313] = {ID=8313,Desc="妹妹的阴道好嫩啊"},
[8314] = {ID=8314,Desc="fuck孙中山"},
[8315] = {ID=8315,Desc="毛抗日"},
[8316] = {ID=8316,Desc="谁知道激情网站"},
[8317] = {ID=8317,Desc="香港成人电影网"},
[8318] = {ID=8318,Desc="假钞"},
[8319] = {ID=8319,Desc="毛耶稣"},
[8320] = {ID=8320,Desc="十八岁meinv护士电影网站"},
[8321] = {ID=8321,Desc="賞圖交流園"},
[8322] = {ID=8322,Desc="精液射入花心"},
[8323] = {ID=8323,Desc="國務院"},
[8324] = {ID=8324,Desc="反黨"},
[8325] = {ID=8325,Desc="丝袜足交"},
[8326] = {ID=8326,Desc="fuck特别公告"},
[8327] = {ID=8327,Desc="肉棒插入肉"},
[8328] = {ID=8328,Desc="毛妈比"},
[8329] = {ID=8329,Desc="丁石孙"},
[8330] = {ID=8330,Desc="淫虫电影"},
[8331] = {ID=8331,Desc="免费淫电影试看"},
[8332] = {ID=8332,Desc="李師傅"},
[8333] = {ID=8333,Desc="夫妻乱交"},
[8334] = {ID=8334,Desc="广安第二人民医院"},
[8335] = {ID=8335,Desc="臭鸡"},
[8336] = {ID=8336,Desc="鹿城色meimei大型黄站"},
[8337] = {ID=8337,Desc="揭批书"},
[8338] = {ID=8338,Desc="互淫"},
[8339] = {ID=8339,Desc="管理人员"},
[8340] = {ID=8340,Desc="少妇白洁的淫乱生活"},
[8341] = {ID=8341,Desc="真理組織"},
[8342] = {ID=8342,Desc="丁石孫"},
[8343] = {ID=8343,Desc="手记注册日韩5017部激情电影"},
[8344] = {ID=8344,Desc="插的妈妈好爽"},
[8345] = {ID=8345,Desc="肉棒插进她的密洞使劲的抽送着"},
[8346] = {ID=8346,Desc="我和少妇做爱"},
[8347] = {ID=8347,Desc="guang"},
[8348] = {ID=8348,Desc="狂插美少女穴"},
[8349] = {ID=8349,Desc="手记注册日韩5019部激情电影"},
[8350] = {ID=8350,Desc="小穴流出"},
[8351] = {ID=8351,Desc="免费A片在线"},
[8352] = {ID=8352,Desc="Gカップカリスマ店員松嶋れいな20連発中出し!"},
[8353] = {ID=8353,Desc="国防部"},
[8354] = {ID=8354,Desc="裸女乳房阴道丰臀"},
[8355] = {ID=8355,Desc="制服誘惑"},
[8356] = {ID=8356,Desc="ke"},
[8357] = {ID=8357,Desc="丁加班"},
[8358] = {ID=8358,Desc="尼米兹"},
[8359] = {ID=8359,Desc="fuck天安门事件"},
[8360] = {ID=8360,Desc="你它馬的"},
[8361] = {ID=8361,Desc="操逼你老母"},
[8362] = {ID=8362,Desc="成人激情淫网站"},
[8363] = {ID=8363,Desc="国共合作"},
[8364] = {ID=8364,Desc="毛血逼"},
[8365] = {ID=8365,Desc="wowbank"},
[8366] = {ID=8366,Desc="色网导航"},
[8367] = {ID=8367,Desc="毛流氓"},
[8368] = {ID=8368,Desc="免费视讯妹妹"},
[8369] = {ID=8369,Desc="金庸群俠傳"},
[8370] = {ID=8370,Desc="BT激情无码"},
[8371] = {ID=8371,Desc="迷人阴部护士妹妹也疯狂"},
[8372] = {ID=8372,Desc="毛新手指导员"},
[8373] = {ID=8373,Desc="學生愛國者運動"},
[8374] = {ID=8374,Desc="毛激情小电影"},
[8375] = {ID=8375,Desc="例假"},
[8376] = {ID=8376,Desc="干空姐小穴"},
[8377] = {ID=8377,Desc="成都锦天"},
[8378] = {ID=8378,Desc="透视软件"},
[8379] = {ID=8379,Desc="糾察員"},
[8380] = {ID=8380,Desc="肉棒插入湿湿的肉缝"},
[8381] = {ID=8381,Desc="插屄好舒服"},
[8382] = {ID=8382,Desc="悠游网"},
[8383] = {ID=8383,Desc="那娘錯比"},
[8384] = {ID=8384,Desc="secretchina"},
[8385] = {ID=8385,Desc="江泽民靠"},
[8386] = {ID=8386,Desc="和妹妹做爱"},
[8387] = {ID=8387,Desc="服务器"},
[8388] = {ID=8388,Desc="性交做爱"},
[8389] = {ID=8389,Desc="毛李鹏"},
[8390] = {ID=8390,Desc="狗卵子"},
[8391] = {ID=8391,Desc="开发"},
[8392] = {ID=8392,Desc="少女被逼吃精喝精轮奸灌精"},
[8393] = {ID=8393,Desc="八方链流量交换链"},
[8394] = {ID=8394,Desc="fuck生鸦片"},
[8395] = {ID=8395,Desc="發^^掄"},
[8396] = {ID=8396,Desc="臺灣總統"},
[8397] = {ID=8397,Desc="下载免费黄色淫乱电影"},
[8398] = {ID=8398,Desc="双飞+毒龙直到分享了精液"},
[8399] = {ID=8399,Desc="蒙古独"},
[8400] = {ID=8400,Desc="媽個比"},
[8401] = {ID=8401,Desc="餓比"},
[8402] = {ID=8402,Desc="騷姨媽"},
[8403] = {ID=8403,Desc="毛客户服务人员"},
[8404] = {ID=8404,Desc="gong"},
[8405] = {ID=8405,Desc="冯素英"},
[8406] = {ID=8406,Desc="丝袜写真"},
[8407] = {ID=8407,Desc="调理劳务系"},
[8408] = {ID=8408,Desc="激情淫穴小"},
[8409] = {ID=8409,Desc="测试員"},
[8410] = {ID=8410,Desc="我周容"},
[8411] = {ID=8411,Desc="叫鸡"},
[8412] = {ID=8412,Desc="熟女乱伦网"},
[8413] = {ID=8413,Desc="免费看激情视频免费成人做爱"},
[8414] = {ID=8414,Desc="本站10017多部激情电影全部免费试看三天"},
[8415] = {ID=8415,Desc="风骚欲女"},
[8416] = {ID=8416,Desc="艷照門"},
[8417] = {ID=8417,Desc="乱伦(无码)母爱包("},
[8418] = {ID=8418,Desc="柯赐海"},
[8419] = {ID=8419,Desc="周总理"},
[8420] = {ID=8420,Desc="吴学璨"},
[8421] = {ID=8421,Desc="肉壁紧紧的包著龟头"},
[8422] = {ID=8422,Desc="哥哥的肉棒好大"},
[8423] = {ID=8423,Desc="打到中国"},
[8424] = {ID=8424,Desc="7hero"},
[8425] = {ID=8425,Desc="zhengwunet"},
[8426] = {ID=8426,Desc="拿着鸡巴对准小穴"},
[8427] = {ID=8427,Desc="幼香閣"},
[8428] = {ID=8428,Desc="毛烂B"},
[8429] = {ID=8429,Desc="一起玩遊戲網"},
[8430] = {ID=8430,Desc="高清晰无码内射"},
[8431] = {ID=8431,Desc="紧窄的洞口只能含进半个龟头"},
[8432] = {ID=8432,Desc="游戏管理员"},
[8433] = {ID=8433,Desc="淫乱少妇"},
[8434] = {ID=8434,Desc="圣淫乱学院"},
[8435] = {ID=8435,Desc="小穴被阴茎顶住"},
[8436] = {ID=8436,Desc="捅入妹妹的阴道"},
[8437] = {ID=8437,Desc="母女双飞"},
[8438] = {ID=8438,Desc="希望之聲"},
[8439] = {ID=8439,Desc="淫漿"},
[8440] = {ID=8440,Desc="整根肉棒被紧箍在幽暗深遽的娇嫩小穴内"},
[8441] = {ID=8441,Desc="妻子小穴"},
[8442] = {ID=8442,Desc="超美混血兒(小泽玛利亚出道时的珍藏)"},
[8443] = {ID=8443,Desc="刚度"},
[8444] = {ID=8444,Desc="luo"},
[8445] = {ID=8445,Desc="张健"},
[8446] = {ID=8446,Desc="烂屄"},
[8447] = {ID=8447,Desc="卡通meinv淫乱图"},
[8448] = {ID=8448,Desc="烂屌"},
[8449] = {ID=8449,Desc="叛黨"},
[8450] = {ID=8450,Desc="可可精"},
[8451] = {ID=8451,Desc="淫贱meimei贴图论坛"},
[8452] = {ID=8452,Desc="锦涛"},
[8453] = {ID=8453,Desc="姐姐的肥阴唇"},
[8454] = {ID=8454,Desc="毛发骚"},
[8455] = {ID=8455,Desc="激情淫文章"},
[8456] = {ID=8456,Desc="fuck太监"},
[8457] = {ID=8457,Desc="强奸21岁处女全过程/*妹阴毛小穴"},
[8458] = {ID=8458,Desc="骚meimei成人导航"},
[8459] = {ID=8459,Desc="夹得我好舒服"},
[8460] = {ID=8460,Desc="傅志寰"},
[8461] = {ID=8461,Desc="朱鎔基"},
[8462] = {ID=8462,Desc="免费淫奸黄色淫乱电影"},
[8463] = {ID=8463,Desc="共狗"},
[8464] = {ID=8464,Desc="老騷貨"},
[8465] = {ID=8465,Desc="精液射进穴里视频"},
[8466] = {ID=8466,Desc="日啊"},
[8467] = {ID=8467,Desc="幼香阁"},
[8468] = {ID=8468,Desc="西藏事件"},
[8469] = {ID=8469,Desc="亚/无码"},
[8470] = {ID=8470,Desc="淫奸护士"},
[8471] = {ID=8471,Desc="免费成人网站"},
[8472] = {ID=8472,Desc="创意鹰翔"},
[8473] = {ID=8473,Desc="厕所性感美女清晰淫穴"},
[8474] = {ID=8474,Desc="免费观看王小丫做爱"},
[8475] = {ID=8475,Desc="纪股票市场五卅惨案"},
[8476] = {ID=8476,Desc="插那嗎逼"},
[8477] = {ID=8477,Desc="色窩窩"},
[8478] = {ID=8478,Desc="美女孩含双棍玩内射"},
[8479] = {ID=8479,Desc="张德江"},
[8480] = {ID=8480,Desc="续金瓶梅"},
[8481] = {ID=8481,Desc="ju"},
[8482] = {ID=8482,Desc="18dy大众成人网"},
[8483] = {ID=8483,Desc="淫妹妹"},
[8484] = {ID=8484,Desc="被噁心男搞到高潮不停的立花里子"},
[8485] = {ID=8485,Desc="激情视频聊天室"},
[8486] = {ID=8486,Desc="成人論壇"},
[8487] = {ID=8487,Desc="中央政治局"},
[8488] = {ID=8488,Desc="发~~论"},
[8489] = {ID=8489,Desc="毛新华内情"},
[8490] = {ID=8490,Desc="天遊"},
[8491] = {ID=8491,Desc="pp"},
[8492] = {ID=8492,Desc="毛人民日报"},
[8493] = {ID=8493,Desc="成人联盟"},
[8494] = {ID=8494,Desc="meinv偷拍成人小说激情网香港激情图源成人色情论坛脱衣meinv做愛"},
[8495] = {ID=8495,Desc="制服古典乱伦都市"},
[8496] = {ID=8496,Desc="插陰"},
[8497] = {ID=8497,Desc="操成人电影"},
[8498] = {ID=8498,Desc="傲视"},
[8499] = {ID=8499,Desc="氯胺酮"},
[8500] = {ID=8500,Desc="中国和平"},
[8501] = {ID=8501,Desc="彭德怀"},
[8502] = {ID=8502,Desc="老师的肉棒好大啊"},
[8503] = {ID=8503,Desc="fuck天皇"},
[8504] = {ID=8504,Desc="李師付"},
[8505] = {ID=8505,Desc="国民党"},
[8506] = {ID=8506,Desc="少妇房中自淫,和两勇男玩4P,操得直叫爽"},
[8507] = {ID=8507,Desc="大眾色情成人網"},
[8508] = {ID=8508,Desc="rx008"},
[8509] = {ID=8509,Desc="错那吗B"},
[8510] = {ID=8510,Desc="成人情感裸女裸聊图片"},
[8511] = {ID=8511,Desc="肉縫分開大腿"},
[8512] = {ID=8512,Desc="水去車侖"},
[8513] = {ID=8513,Desc="鸡吧一柱擎天"},
[8514] = {ID=8514,Desc="阳具在阴道里来回抽插"},
[8515] = {ID=8515,Desc="巨大的鸡巴戳了进去"},
[8516] = {ID=8516,Desc="遊戲嚮導"},
[8517] = {ID=8517,Desc="美幼专区"},
[8518] = {ID=8518,Desc="賈慶林"},
[8519] = {ID=8519,Desc="廢墟"},
[8520] = {ID=8520,Desc="斧頭鐮刀"},
[8521] = {ID=8521,Desc="退党"},
[8522] = {ID=8522,Desc="meimei的阴户"},
[8523] = {ID=8523,Desc="淫荡的奸淫"},
[8524] = {ID=8524,Desc="亚洲激情淫色贴图区"},
[8525] = {ID=8525,Desc="马万祺"},
[8526] = {ID=8526,Desc="高速下載!"},
[8527] = {ID=8527,Desc="100ONE"},
[8528] = {ID=8528,Desc="法**纶"},
[8529] = {ID=8529,Desc="一貫道"},
[8530] = {ID=8530,Desc="插着淫穴"},
[8531] = {ID=8531,Desc="漏逼"},
[8532] = {ID=8532,Desc="隱窩窩"},
[8533] = {ID=8533,Desc="熟睡中的meimei"},
[8534] = {ID=8534,Desc="毛无界浏览器"},
[8535] = {ID=8535,Desc="夫妻亂交"},
[8536] = {ID=8536,Desc="毛金正日"},
[8537] = {ID=8537,Desc="酒店援交"},
[8538] = {ID=8538,Desc="小肉粒"},
[8539] = {ID=8539,Desc="fuck外—挂"},
[8540] = {ID=8540,Desc="新义安"},
[8541] = {ID=8541,Desc="劉傑"},
[8542] = {ID=8542,Desc="夜总会"},
[8543] = {ID=8543,Desc="聖堂科技"},
[8544] = {ID=8544,Desc="司法部"},
[8545] = {ID=8545,Desc="插阴"},
[8546] = {ID=8546,Desc="網愛"},
[8547] = {ID=8547,Desc="下三爛"},
[8548] = {ID=8548,Desc="客户服务"},
[8549] = {ID=8549,Desc="免费小淫虫"},
[8550] = {ID=8550,Desc="赌博机"},
[8551] = {ID=8551,Desc="卖血"},
[8552] = {ID=8552,Desc="出售肾"},
[8553] = {ID=8553,Desc="出售器官"},
[8554] = {ID=8554,Desc="眼角膜"},
[8555] = {ID=8555,Desc="求肾"},
[8556] = {ID=8556,Desc="换肾"},
[8557] = {ID=8557,Desc="有偿肾"},
[8558] = {ID=8558,Desc="预测答案"},
[8559] = {ID=8559,Desc="考前预测"},
[8560] = {ID=8560,Desc="押题"},
[8561] = {ID=8561,Desc="代写论文"},
[8562] = {ID=8562,Desc="司考答案"},
[8563] = {ID=8563,Desc="提供答案"},
[8564] = {ID=8564,Desc="考后付款"},
[8565] = {ID=8565,Desc="顺利过"},
[8566] = {ID=8566,Desc="级答案"},
[8567] = {ID=8567,Desc="传送答案"},
[8568] = {ID=8568,Desc="考中答案"},
[8569] = {ID=8569,Desc="无线耳机"},
[8570] = {ID=8570,Desc="语音传送"},
[8571] = {ID=8571,Desc="考试作弊"},
[8572] = {ID=8572,Desc="考前密卷"},
[8573] = {ID=8573,Desc="四六级答案"},
[8574] = {ID=8574,Desc="漏题"},
[8575] = {ID=8575,Desc="短信答案"},
[8576] = {ID=8576,Desc="轻松过"},
[8577] = {ID=8577,Desc="四大舰队"},
[8578] = {ID=8578,Desc="8023部队"},
[8579] = {ID=8579,Desc="防区和任务"},
[8580] = {ID=8580,Desc="编成与基地"},
[8581] = {ID=8581,Desc="空军部署"},
[8582] = {ID=8582,Desc="陆军部署"},
[8583] = {ID=8583,Desc="海军部署"},
[8584] = {ID=8584,Desc="七个军区"},
[8585] = {ID=8585,Desc="七大军区"},
[8586] = {ID=8586,Desc="7个军区"},
[8587] = {ID=8587,Desc="7大军区"},
[8588] = {ID=8588,Desc="不办人事"},
[8589] = {ID=8589,Desc="圣战组织"},
[8590] = {ID=8590,Desc="劣等民族"},
[8591] = {ID=8591,Desc="劣等人"},
[8592] = {ID=8592,Desc="北大校园BBS"},
[8593] = {ID=8593,Desc="回汉冲突"},
[8594] = {ID=8594,Desc="民族冲突"},
[8595] = {ID=8595,Desc="鞭满"},
[8596] = {ID=8596,Desc="关塔摩"},
[8597] = {ID=8597,Desc="民族问题"},
[8598] = {ID=8598,Desc="惨案"},
[8599] = {ID=8599,Desc="红客联盟"},
[8600] = {ID=8600,Desc="中特"},
[8601] = {ID=8601,Desc="一肖"},
[8602] = {ID=8602,Desc="报码"},
[8603] = {ID=8603,Desc="合彩"},
[8604] = {ID=8604,Desc="香港彩"},
[8605] = {ID=8605,Desc="彩宝"},
[8606] = {ID=8606,Desc="3D轮盘"},
[8607] = {ID=8607,Desc="liuhecai"},
[8608] = {ID=8608,Desc="一码"},
[8609] = {ID=8609,Desc="盗取密码"},
[8610] = {ID=8610,Desc="盗取qq"},
[8611] = {ID=8611,Desc="买真枪"},
[8612] = {ID=8612,Desc="手机监听"},
[8613] = {ID=8613,Desc="帮招人"},
[8614] = {ID=8614,Desc="社会混"},
[8615] = {ID=8615,Desc="拜大哥"},
[8616] = {ID=8616,Desc="电警棒"},
[8617] = {ID=8617,Desc="枪支"},
[8618] = {ID=8618,Desc="帮人怀孕"},
[8619] = {ID=8619,Desc="打手"},
[8620] = {ID=8620,Desc="征兵计划"},
[8621] = {ID=8621,Desc="切腹"},
[8622] = {ID=8622,Desc="仿真手枪"},
[8623] = {ID=8623,Desc="做炸弹"},
[8624] = {ID=8624,Desc="买枪"},
[8625] = {ID=8625,Desc="卖枪"},
[8626] = {ID=8626,Desc="ONS"},
[8627] = {ID=8627,Desc="走私车"},
[8628] = {ID=8628,Desc="代孕"},
[8629] = {ID=8629,Desc="史久武"},
[8630] = {ID=8630,Desc="刘亚洲"},
[8631] = {ID=8631,Desc="耀邦"},
[8632] = {ID=8632,Desc="胡锦"},
[8633] = {ID=8633,Desc="邓矮子"},
[8634] = {ID=8634,Desc="xiaoping"},
[8635] = {ID=8635,Desc="邓狗"},
[8636] = {ID=8636,Desc="活体取肾"},
[8637] = {ID=8637,Desc="九抨"},
[8638] = {ID=8638,Desc="车仑大法"},
[8639] = {ID=8639,Desc="XX功"},
[8640] = {ID=8640,Desc="FL大法"},
[8641] = {ID=8641,Desc="zifen"},
[8642] = {ID=8642,Desc="李大轮子"},
[8643] = {ID=8643,Desc="jiuping"},
[8644] = {ID=8644,Desc="影子政府"},
[8645] = {ID=8645,Desc="张宏宝"},
[8646] = {ID=8646,Desc="李晓英"},
[8647] = {ID=8647,Desc="董元辰"},
[8648] = {ID=8648,Desc="大妓院"},
[8649] = {ID=8649,Desc="法0功"},
[8650] = {ID=8650,Desc="法O功"},
[8651] = {ID=8651,Desc="9坪"},
[8652] = {ID=8652,Desc="法L"},
[8653] = {ID=8653,Desc="9评"},
[8654] = {ID=8654,Desc="九凭"},
[8655] = {ID=8655,Desc="LHZ"},
[8656] = {ID=8656,Desc="藏字石"},
[8657] = {ID=8657,Desc="李洪X"},
[8658] = {ID=8658,Desc="9ping"},
[8659] = {ID=8659,Desc="九ping"},
[8660] = {ID=8660,Desc="自fen"},
[8661] = {ID=8661,Desc="法X功"},
[8662] = {ID=8662,Desc="FL功"},
[8663] = {ID=8663,Desc="法某功"},
[8664] = {ID=8664,Desc="东方闪电"},
[8665] = {ID=8665,Desc="38集团军"},
[8666] = {ID=8666,Desc="64时期"},
[8667] = {ID=8667,Desc="TAM"},
[8668] = {ID=8668,Desc="北京风波"},
[8669] = {ID=8669,Desc="政治风波"},
[8670] = {ID=8670,Desc="xuechao"},
[8671] = {ID=8671,Desc="八九六四"},
[8672] = {ID=8672,Desc=8964},
[8673] = {ID=8673,Desc="4事件"},
[8674] = {ID=8674,Desc="6四"},
[8675] = {ID=8675,Desc="四事件"},
[8676] = {ID=8676,Desc="六4"},
[8677] = {ID=8677,Desc="二十四事件"},
[8678] = {ID=8678,Desc="历史的伤口"},
[8679] = {ID=8679,Desc="年的事"},
[8680] = {ID=8680,Desc="1989年"},
[8681] = {ID=8681,Desc="一九八九年"},
[8682] = {ID=8682,Desc="年事件"},
[8683] = {ID=8683,Desc="学生领袖"},
[8684] = {ID=8684,Desc="杀害学生"},
[8685] = {ID=8685,Desc="八九年"},
[8686] = {ID=8686,Desc="tiananmen"},
[8687] = {ID=8687,Desc="流血事件"},
[8688] = {ID=8688,Desc="民主女神"},
[8689] = {ID=8689,Desc="89之"},
[8690] = {ID=8690,Desc="89事件"},
[8691] = {ID=8691,Desc="17年前"},
[8692] = {ID=8692,Desc="血染的风采"},
[8693] = {ID=8693,Desc="广场事件"},
[8694] = {ID=8694,Desc="89年"},
[8695] = {ID=8695,Desc="屠杀学生"},
[8696] = {ID=8696,Desc="暴行"},
[8697] = {ID=8697,Desc="何新"},
[8698] = {ID=8698,Desc="六四信息"},
[8699] = {ID=8699,Desc="官匪一家"},
[8700] = {ID=8700,Desc="暴力执法"},
[8701] = {ID=8701,Desc="示wei"},
[8702] = {ID=8702,Desc="袁伟民"},
[8703] = {ID=8703,Desc="9.12事件"},
[8704] = {ID=8704,Desc="8.18事件"},
[8705] = {ID=8705,Desc="瑞安事件"},
[8706] = {ID=8706,Desc="武装镇压"},
[8707] = {ID=8707,Desc="武力镇压"},
[8708] = {ID=8708,Desc="暴力袭警"},
[8709] = {ID=8709,Desc="集体抗议"},
[8710] = {ID=8710,Desc="警民冲突"},
[8711] = {ID=8711,Desc="群众冲击"},
[8712] = {ID=8712,Desc="h图"},
[8713] = {ID=8713,Desc="h漫"},
[8714] = {ID=8714,Desc="找男"},
[8715] = {ID=8715,Desc="找女"},
[8716] = {ID=8716,Desc="女士服务"},
[8717] = {ID=8717,Desc="卖身"},
[8718] = {ID=8718,Desc="元一夜"},
[8719] = {ID=8719,Desc="男奴"},
[8720] = {ID=8720,Desc="女奴"},
[8721] = {ID=8721,Desc="电话交友"},
[8722] = {ID=8722,Desc="激情电话"},
[8723] = {ID=8723,Desc="看JJ"},
[8724] = {ID=8724,Desc="性伙伴"},
[8725] = {ID=8725,Desc="有偿服务"},
[8726] = {ID=8726,Desc="做台"},
[8727] = {ID=8727,Desc="一夜激情"},
[8728] = {ID=8728,Desc="泡友"},
[8729] = {ID=8729,Desc="富姐"},
[8730] = {ID=8730,Desc="富婆"},
[8731] = {ID=8731,Desc="足交"},
[8732] = {ID=8732,Desc="性服务"},
[8733] = {ID=8733,Desc="性伴侣"},
[8734] = {ID=8734,Desc="反社会主义"},
[8735] = {ID=8735,Desc="现在的公安"},
[8736] = {ID=8736,Desc="第二首都"},
[8737] = {ID=8737,Desc="中国复兴党"},
[8738] = {ID=8738,Desc="共贼"},
[8739] = {ID=8739,Desc="联盟党"},
[8740] = {ID=8740,Desc="同盟党"},
[8741] = {ID=8741,Desc="一党私利"},
[8742] = {ID=8742,Desc="软弱外交"},
[8743] = {ID=8743,Desc="一党执政"},
[8744] = {ID=8744,Desc="讨厌中国"},
[8745] = {ID=8745,Desc="张志新"},
[8746] = {ID=8746,Desc="现在的党"},
[8747] = {ID=8747,Desc="外蒙回归"},
[8748] = {ID=8748,Desc="香港独立"},
[8749] = {ID=8749,Desc="上海独立"},
[8750] = {ID=8750,Desc="北京独立"},
[8751] = {ID=8751,Desc="民主还专政"},
[8752] = {ID=8752,Desc="人权保护"},
[8753] = {ID=8753,Desc="蒋公"},
[8754] = {ID=8754,Desc="中正纪念歌"},
[8755] = {ID=8755,Desc="中国人权"},
[8756] = {ID=8756,Desc="台du"},
[8757] = {ID=8757,Desc="国统纲领"},
[8758] = {ID=8758,Desc="国统会"},
[8759] = {ID=8759,Desc="网络警察"},
[8760] = {ID=8760,Desc="纪念文革"},
[8761] = {ID=8761,Desc="共独"},
[8762] = {ID=8762,Desc="陆独"},
[8763] = {ID=8763,Desc="现在的社会"},
[8764] = {ID=8764,Desc="现在的政府"},
[8765] = {ID=8765,Desc="反对党"},
[8766] = {ID=8766,Desc="现在的共产党"},
[8767] = {ID=8767,Desc="铁血师"},
[8768] = {ID=8768,Desc="现在的警察"},
[8769] = {ID=8769,Desc="共产觉"},
[8770] = {ID=8770,Desc="灭共"},
[8771] = {ID=8771,Desc="社会主义灭亡"},
[8772] = {ID=8772,Desc="不爱党"},
[8773] = {ID=8773,Desc="共X党"},
[8774] = {ID=8774,Desc="独夫民贼"},
[8775] = {ID=8775,Desc="伪大"},
[8776] = {ID=8776,Desc="伪政府"},
[8777] = {ID=8777,Desc="第三次世界大战"},
[8778] = {ID=8778,Desc="公产党"},
[8779] = {ID=8779,Desc="夺权"},
[8780] = {ID=8780,Desc="GONG党"},
[8781] = {ID=8781,Desc="CCP"},
[8782] = {ID=8782,Desc="中共洗脑"},
[8783] = {ID=8783,Desc="反G"},
[8784] = {ID=8784,Desc="死刑现场"},
[8785] = {ID=8785,Desc="雍战胜"},
[8786] = {ID=8786,Desc="校园改造工程"},
[8787] = {ID=8787,Desc="记签"},
[8788] = {ID=8788,Desc="王政"},
[8789] = {ID=8789,Desc="华闻"},
[8790] = {ID=8790,Desc="张文中"},
[8791] = {ID=8791,Desc="饲养基地"},
[8792] = {ID=8792,Desc="中组部前部长直言"},
[8793] = {ID=8793,Desc="广安事件"},
[8794] = {ID=8794,Desc="四川广安"},
[8795] = {ID=8795,Desc="段桂清"},
[8796] = {ID=8796,Desc="寂寞少妇"},
[8797] = {ID=8797,Desc="有偿捐献"},
[8798] = {ID=8798,Desc="6合"},
[8799] = {ID=8799,Desc="六合"},
[8800] = {ID=8800,Desc="六HE彩"},
[8801] = {ID=8801,Desc="有码"},
[8802] = {ID=8802,Desc="包养"},
[8803] = {ID=8803,Desc="犬交"},
[8804] = {ID=8804,Desc="根浴"},
[8805] = {ID=8805,Desc="买肾"},
[8806] = {ID=8806,Desc="卖肾"},
[8807] = {ID=8807,Desc="肾源"},
[8808] = {ID=8808,Desc="夫妻交换"},
[8809] = {ID=8809,Desc="中石油国家电网倒数"},
[8810] = {ID=8810,Desc="国办发"},
[8811] = {ID=8811,Desc="中办发"},
[8812] = {ID=8812,Desc="菊暴"},
[8813] = {ID=8813,Desc="菊爆"},
[8814] = {ID=8814,Desc="暴菊"},
[8815] = {ID=8815,Desc="爆菊"},
[8816] = {ID=8816,Desc="小口径"},
[8817] = {ID=8817,Desc="我虽死去"},
[8818] = {ID=8818,Desc="我们自杀吧"},
[8819] = {ID=8819,Desc="吃人"},
[8820] = {ID=8820,Desc="西藏作家组织"},
[8821] = {ID=8821,Desc="盘古乐队"},
[8822] = {ID=8822,Desc="自由西藏"},
[8823] = {ID=8823,Desc="自烧"},
[8824] = {ID=8824,Desc="转法论"},
[8825] = {ID=8825,Desc="属灵教"},
[8826] = {ID=8826,Desc="主神教"},
[8827] = {ID=8827,Desc="重阳兵变"},
[8828] = {ID=8828,Desc="中央黑幕"},
[8829] = {ID=8829,Desc="中南海权力斗争"},
[8830] = {ID=8830,Desc="中南海黑幕"},
[8831] = {ID=8831,Desc="中南海恩仇录"},
[8832] = {ID=8832,Desc="中南海斗争"},
[8833] = {ID=8833,Desc="中南海的权力游戏"},
[8834] = {ID=8834,Desc="中华养生益智气"},
[8835] = {ID=8835,Desc="中华昆仑女神功"},
[8836] = {ID=8836,Desc="中国支配下的朝鲜经济"},
[8837] = {ID=8837,Desc="中国政府封锁消息"},
[8838] = {ID=8838,Desc="中国正义党"},
[8839] = {ID=8839,Desc="中国舆论监督网周洪"},
[8840] = {ID=8840,Desc="中国网络审查"},
[8841] = {ID=8841,Desc="中国贪官在海外"},
[8842] = {ID=8842,Desc="中国实行血腥教育"},
[8843] = {ID=8843,Desc="中国人民党"},
[8844] = {ID=8844,Desc="中国没有自由"},
[8845] = {ID=8845,Desc="中国海外腐败兵团"},
[8846] = {ID=8846,Desc="中国过渡政府"},
[8847] = {ID=8847,Desc="中国官场情杀案"},
[8848] = {ID=8848,Desc="中国共和党"},
[8849] = {ID=8849,Desc="中国高层权力斗争"},
[8850] = {ID=8850,Desc="中共政治游戏"},
[8851] = {ID=8851,Desc="中共邪毒素"},
[8852] = {ID=8852,Desc="中共邪党"},
[8853] = {ID=8853,Desc="中共退党"},
[8854] = {ID=8854,Desc="中共三大势力谁来执政"},
[8855] = {ID=8855,Desc="中共任用"},
[8856] = {ID=8856,Desc="中共权力斗争"},
[8857] = {ID=8857,Desc="中共恐惧"},
[8858] = {ID=8858,Desc="中共近期权力斗争"},
[8859] = {ID=8859,Desc="中共解体"},
[8860] = {ID=8860,Desc="中共黑帮"},
[8861] = {ID=8861,Desc="中共腐败"},
[8862] = {ID=8862,Desc="中共封网"},
[8863] = {ID=8863,Desc="中共封锁"},
[8864] = {ID=8864,Desc="中共独裁"},
[8865] = {ID=8865,Desc="中共第五代"},
[8866] = {ID=8866,Desc="中共第六代"},
[8867] = {ID=8867,Desc="中共帝国"},
[8868] = {ID=8868,Desc="中共的罪恶"},
[8869] = {ID=8869,Desc="中共的血旗"},
[8870] = {ID=8870,Desc="中共的腐败与残暴"},
[8871] = {ID=8871,Desc="中共党文化"},
[8872] = {ID=8872,Desc="中共裁"},
[8873] = {ID=8873,Desc="中共保命"},
[8874] = {ID=8874,Desc="中共帮凶"},
[8875] = {ID=8875,Desc="支那猪"},
[8876] = {ID=8876,Desc="支持台湾独立"},
[8877] = {ID=8877,Desc="政治人祸的源头"},
[8878] = {ID=8878,Desc="政治局委员增加一倍"},
[8879] = {ID=8879,Desc="政治局十七"},
[8880] = {ID=8880,Desc="运动正名"},
[8881] = {ID=8881,Desc="援藏网"},
[8882] = {ID=8882,Desc="元极功"},
[8883] = {ID=8883,Desc="渊盖苏文"},
[8884] = {ID=8884,Desc="宇宙主佛"},
[8885] = {ID=8885,Desc="宇宙毁灭"},
[8886] = {ID=8886,Desc="宇宙大法"},
[8887] = {ID=8887,Desc="优化官员"},
[8888] = {ID=8888,Desc="婴儿汤"},
[8889] = {ID=8889,Desc="一通健康法"},
[8890] = {ID=8890,Desc="一通功"},
[8891] = {ID=8891,Desc="夜半加税"},
[8892] = {ID=8892,Desc="业力轮"},
[8893] = {ID=8893,Desc="业力回报"},
[8894] = {ID=8894,Desc="耶稣基督血水圣灵全备福音布道团"},
[8895] = {ID=8895,Desc="延安日记"},
[8896] = {ID=8896,Desc="循环轮回论"},
[8897] = {ID=8897,Desc="血腥清场"},
[8898] = {ID=8898,Desc="血色京畿"},
[8899] = {ID=8899,Desc="血色京机"},
[8900] = {ID=8900,Desc="血溅人民天堂"},
[8901] = {ID=8901,Desc="性奴集中营"},
[8902] = {ID=8902,Desc="兴华论谈"},
[8903] = {ID=8903,Desc="新中华战记"},
[8904] = {ID=8904,Desc="新闻总署态度蛮横"},
[8905] = {ID=8905,Desc="新搪人"},
[8906] = {ID=8906,Desc="新疆暴乱"},
[8907] = {ID=8907,Desc="小活佛"},
[8908] = {ID=8908,Desc="消业之说"},
[8909] = {ID=8909,Desc="向巴平措"},
[8910] = {ID=8910,Desc="香功"},
[8911] = {ID=8911,Desc="西藏人民大起义运动"},
[8912] = {ID=8912,Desc="无人性的政权"},
[8913] = {ID=8913,Desc="无官正"},
[8914] = {ID=8914,Desc="无耻语录"},
[8915] = {ID=8915,Desc="无帮国"},
[8916] = {ID=8916,Desc="瘟家宝"},
[8917] = {ID=8917,Desc="温休曾退"},
[8918] = {ID=8918,Desc="温下台"},
[8919] = {ID=8919,Desc="温加饱"},
[8920] = {ID=8920,Desc="未来的自由中国在民间"},
[8921] = {ID=8921,Desc="伪基百科"},
[8922] = {ID=8922,Desc="为党不为国"},
[8923] = {ID=8923,Desc="网络封锁"},
[8924] = {ID=8924,Desc="网管办"},
[8925] = {ID=8925,Desc="亡共者胡"},
[8926] = {ID=8926,Desc="亡党"},
[8927] = {ID=8927,Desc="万法归一功"},
[8928] = {ID=8928,Desc="退h集会"},
[8929] = {ID=8929,Desc="推翻专制独裁的共产党"},
[8930] = {ID=8930,Desc="突破网封索的软件"},
[8931] = {ID=8931,Desc="统治术"},
[8932] = {ID=8932,Desc="统一教"},
[8933] = {ID=8933,Desc="挺胡"},
[8934] = {ID=8934,Desc="天音功"},
[8935] = {ID=8935,Desc="天要亡"},
[8936] = {ID=8936,Desc="天要灭"},
[8937] = {ID=8937,Desc="天灭中共"},
[8938] = {ID=8938,Desc="特务机构"},
[8939] = {ID=8939,Desc="特别党费"},
[8940] = {ID=8940,Desc="台湾有权独立"},
[8941] = {ID=8941,Desc="台湾应该独立"},
[8942] = {ID=8942,Desc="四二六社论"},
[8943] = {ID=8943,Desc="四川朱昱"},
[8944] = {ID=8944,Desc="四川大地震异象揭密"},
[8945] = {ID=8945,Desc="司马璐回忆录"},
[8946] = {ID=8946,Desc="税务总局致歉"},
[8947] = {ID=8947,Desc="谁为腐败晚餐买单"},
[8948] = {ID=8948,Desc="谁是新中国"},
[8949] = {ID=8949,Desc="谁是胡的接班人"},
[8950] = {ID=8950,Desc="双桨飞机"},
[8951] = {ID=8951,Desc="树亲民形象不如推动政改"},
[8952] = {ID=8952,Desc="世界之门"},
[8953] = {ID=8953,Desc="世界以利亚福音宣教会"},
[8954] = {ID=8954,Desc="世界十大独裁者"},
[8955] = {ID=8955,Desc="世界基督教统一神灵协会"},
[8956] = {ID=8956,Desc="实际神"},
[8957] = {ID=8957,Desc="十七位老部长"},
[8958] = {ID=8958,Desc="十七大人事安排"},
[8959] = {ID=8959,Desc="十七大权力争霸战"},
[8960] = {ID=8960,Desc="十大独裁"},
[8961] = {ID=8961,Desc="十八大接班人"},
[8962] = {ID=8962,Desc="师涛"},
[8963] = {ID=8963,Desc="剩火"},
[8964] = {ID=8964,Desc="圣灵重建教会"},
[8965] = {ID=8965,Desc="圣火护卫"},
[8966] = {ID=8966,Desc="圣殿教"},
[8967] = {ID=8967,Desc="生命树的分叉"},
[8968] = {ID=8968,Desc="沈昌人体科技"},
[8969] = {ID=8969,Desc="沈昌功"},
[8970] = {ID=8970,Desc="神州忏悔录"},
[8971] = {ID=8971,Desc="神的教会"},
[8972] = {ID=8972,Desc="涉台政局"},
[8973] = {ID=8973,Desc="沙皇李长春"},
[8974] = {ID=8974,Desc="三脱"},
[8975] = {ID=8975,Desc="三退"},
[8976] = {ID=8976,Desc="三三九乘元功"},
[8977] = {ID=8977,Desc="三股势力"},
[8978] = {ID=8978,Desc="三二二攻台作战计划"},
[8979] = {ID=8979,Desc="三二二攻台作战"},
[8980] = {ID=8980,Desc="三班仆人派"},
[8981] = {ID=8981,Desc="赛克网"},
[8982] = {ID=8982,Desc="萨斯病"},
[8983] = {ID=8983,Desc="日月气功"},
[8984] = {ID=8984,Desc="人宇特能功"},
[8985] = {ID=8985,Desc="人民币恶搞"},
[8986] = {ID=8986,Desc="人类罪恶论"},
[8987] = {ID=8987,Desc="群体灭绝"},
[8988] = {ID=8988,Desc="全范围教会"},
[8989] = {ID=8989,Desc="清华帮"},
[8990] = {ID=8990,Desc="清海无上师"},
[8991] = {ID=8991,Desc="清海师父"},
[8992] = {ID=8992,Desc="清官团"},
[8993] = {ID=8993,Desc="清场内幕"},
[8994] = {ID=8994,Desc="青海无上师"},
[8995] = {ID=8995,Desc="沁园春血"},
[8996] = {ID=8996,Desc="钦点接班人"},
[8997] = {ID=8997,Desc="侵犯国外专利"},
[8998] = {ID=8998,Desc="亲共媒体"},
[8999] = {ID=8999,Desc="亲共分子"},
[9000] = {ID=9000,Desc="亲共"},
[9001] = {ID=9001,Desc="强烈抗议中共当局"},
[9002] = {ID=9002,Desc="千禧弘法"},
[9003] = {ID=9003,Desc="器官贩卖"},
[9004] = {ID=9004,Desc="跑官要官"},
[9005] = {ID=9005,Desc="派系斗争"},
[9006] = {ID=9006,Desc="女神教"},
[9007] = {ID=9007,Desc="鸟巢最少死"},
[9008] = {ID=9008,Desc="内争人权"},
[9009] = {ID=9009,Desc="牟新生"},
[9010] = {ID=9010,Desc="漠视生命自私到了极点的中共政权"},
[9011] = {ID=9011,Desc="末世论"},
[9012] = {ID=9012,Desc="末世劫难"},
[9013] = {ID=9013,Desc="魔难论"},
[9014] = {ID=9014,Desc="明镜出版社"},
[9015] = {ID=9015,Desc="明hui"},
[9016] = {ID=9016,Desc="民主不能等待"},
[9017] = {ID=9017,Desc="民殇"},
[9018] = {ID=9018,Desc="灭中共"},
[9019] = {ID=9019,Desc="迷失北京"},
[9020] = {ID=9020,Desc="蒙古回归"},
[9021] = {ID=9021,Desc="门徒会"},
[9022] = {ID=9022,Desc="毛主席的嫡孙"},
[9023] = {ID=9023,Desc="毛贼"},
[9024] = {ID=9024,Desc="毛泽东侄子"},
[9025] = {ID=9025,Desc="毛泽东复活"},
[9026] = {ID=9026,Desc="毛时代大饥荒揭秘"},
[9027] = {ID=9027,Desc="买官卖官"},
[9028] = {ID=9028,Desc="轮子小报"},
[9029] = {ID=9029,Desc="旅游新报"},
[9030] = {ID=9030,Desc="龙虎斗"},
[9031] = {ID=9031,Desc="六四资料馆"},
[9032] = {ID=9032,Desc="六四受难者家属证辞"},
[9033] = {ID=9033,Desc="六四内部日记"},
[9034] = {ID=9034,Desc="六代接班人"},
[9035] = {ID=9035,Desc="留四进三"},
[9036] = {ID=9036,Desc="流亡藏人"},
[9037] = {ID=9037,Desc="领导忽悠百姓叫号召"},
[9038] = {ID=9038,Desc="临震预报"},
[9039] = {ID=9039,Desc="练功群众"},
[9040] = {ID=9040,Desc="李伟信的笔供"},
[9041] = {ID=9041,Desc="拉线飞机"},
[9042] = {ID=9042,Desc="拉萨僧人接连抗议"},
[9043] = {ID=9043,Desc="拉票贿选"},
[9044] = {ID=9044,Desc="拉帮游说"},
[9045] = {ID=9045,Desc="昆仑女神功"},
[9046] = {ID=9046,Desc="恐共"},
[9047] = {ID=9047,Desc="空中民主墙"},
[9048] = {ID=9048,Desc="抗议中共当局"},
[9049] = {ID=9049,Desc="抗议磁悬浮"},
[9050] = {ID=9050,Desc="开天目"},
[9051] = {ID=9051,Desc="卡辛纳大道和三福大道交界处"},
[9052] = {ID=9052,Desc="救度众生说"},
[9053] = {ID=9053,Desc="京夫子"},
[9054] = {ID=9054,Desc="津人治津"},
[9055] = {ID=9055,Desc="解体中共"},
[9056] = {ID=9056,Desc="解体的命运"},
[9057] = {ID=9057,Desc="讲法传功"},
[9058] = {ID=9058,Desc="江宰民"},
[9059] = {ID=9059,Desc="江系人马"},
[9060] = {ID=9060,Desc="江梳头"},
[9061] = {ID=9061,Desc="江氏政治委员"},
[9062] = {ID=9062,Desc="江氏政治局"},
[9063] = {ID=9063,Desc="江氏家族"},
[9064] = {ID=9064,Desc="江氏集团"},
[9065] = {ID=9065,Desc="江三条腿"},
[9066] = {ID=9066,Desc="江人马"},
[9067] = {ID=9067,Desc="江泉集团"},
[9068] = {ID=9068,Desc="江派人马"},
[9069] = {ID=9069,Desc="江派和胡派"},
[9070] = {ID=9070,Desc="江派"},
[9071] = {ID=9071,Desc="江驴"},
[9072] = {ID=9072,Desc="江家帮"},
[9073] = {ID=9073,Desc="江祸心"},
[9074] = {ID=9074,Desc="江黑心"},
[9075] = {ID=9075,Desc="江蛤蟆"},
[9076] = {ID=9076,Desc="江毒"},
[9077] = {ID=9077,Desc="江嫡系"},
[9078] = {ID=9078,Desc="江丑闻"},
[9079] = {ID=9079,Desc="江z民"},
[9080] = {ID=9080,Desc="监狱里的斗争"},
[9081] = {ID=9081,Desc="监狱管理局"},
[9082] = {ID=9082,Desc="妓女的口号"},
[9083] = {ID=9083,Desc="纪念达赖喇嘛流亡49周年"},
[9084] = {ID=9084,Desc="疾病业债说"},
[9085] = {ID=9085,Desc="激流中国"},
[9086] = {ID=9086,Desc="基督灵恩布道团"},
[9087] = {ID=9087,Desc="活摘器官"},
[9088] = {ID=9088,Desc="回忆六四"},
[9089] = {ID=9089,Desc="回民猪"},
[9090] = {ID=9090,Desc="黄菊遗孀"},
[9091] = {ID=9091,Desc="话在肉身显现"},
[9092] = {ID=9092,Desc="华藏功"},
[9093] = {ID=9093,Desc="护卫团"},
[9094] = {ID=9094,Desc="胡下台"},
[9095] = {ID=9095,Desc="胡温"},
[9096] = {ID=9096,Desc="胡派人马"},
[9097] = {ID=9097,Desc="胡派军委"},
[9098] = {ID=9098,Desc="胡派"},
[9099] = {ID=9099,Desc="胡进涛"},
[9100] = {ID=9100,Desc="胡江争斗"},
[9101] = {ID=9101,Desc="胡江曾"},
[9102] = {ID=9102,Desc="胡江关系"},
[9103] = {ID=9103,Desc="胡江风云"},
[9104] = {ID=9104,Desc="胡江"},
[9105] = {ID=9105,Desc="胡的接班人"},
[9106] = {ID=9106,Desc="红病历"},
[9107] = {ID=9107,Desc="哈狗帮"},
[9108] = {ID=9108,Desc="观音法门"},
[9109] = {ID=9109,Desc="共字玄机"},
[9110] = {ID=9110,Desc="共青团派"},
[9111] = {ID=9111,Desc="共青背景"},
[9112] = {ID=9112,Desc="共和国2049"},
[9113] = {ID=9113,Desc="共产主义黑皮书"},
[9114] = {ID=9114,Desc="共产党专制"},
[9115] = {ID=9115,Desc="共产党的末日"},
[9116] = {ID=9116,Desc="共产党的报应"},
[9117] = {ID=9117,Desc="个邪的党"},
[9118] = {ID=9118,Desc="个人圆满说"},
[9119] = {ID=9119,Desc="蛤蟆转世"},
[9120] = {ID=9120,Desc="佛怀煽仇录"},
[9121] = {ID=9121,Desc="芳香型智悟气功"},
[9122] = {ID=9122,Desc="反中共黑色暴力"},
[9123] = {ID=9123,Desc="反共言论"},
[9124] = {ID=9124,Desc="反共传单"},
[9125] = {ID=9125,Desc="反腐总攻"},
[9126] = {ID=9126,Desc="反对日本介入中国铁路工业"},
[9127] = {ID=9127,Desc="反对共产主义"},
[9128] = {ID=9128,Desc="反对共产党"},
[9129] = {ID=9129,Desc="珐(工力)学"},
[9130] = {ID=9130,Desc="法西藏主义"},
[9131] = {ID=9131,Desc="法能功"},
[9132] = {ID=9132,Desc="法轮义"},
[9133] = {ID=9133,Desc="法轮佛法"},
[9134] = {ID=9134,Desc="法力像佛"},
[9135] = {ID=9135,Desc="法拉盛缅街"},
[9136] = {ID=9136,Desc="法拉盛"},
[9137] = {ID=9137,Desc="发轮功陈果"},
[9138] = {ID=9138,Desc="发轮功"},
[9139] = {ID=9139,Desc="发伦工"},
[9140] = {ID=9140,Desc="发仑da发"},
[9141] = {ID=9141,Desc="恶警"},
[9142] = {ID=9142,Desc="恶搞人民币"},
[9143] = {ID=9143,Desc="恶党"},
[9144] = {ID=9144,Desc="对中共的姑息就是对死难者的残忍"},
[9145] = {ID=9145,Desc="对共产党清算"},
[9146] = {ID=9146,Desc="东伊运"},
[9147] = {ID=9147,Desc="第五代接班梯队"},
[9148] = {ID=9148,Desc="第五代红人"},
[9149] = {ID=9149,Desc="递进民主"},
[9150] = {ID=9150,Desc="抵制北京奥运"},
[9151] = {ID=9151,Desc="邓颖超日记"},
[9152] = {ID=9152,Desc="党内言事潮"},
[9153] = {ID=9153,Desc="党内危机"},
[9154] = {ID=9154,Desc="党内权争"},
[9155] = {ID=9155,Desc="党内权力"},
[9156] = {ID=9156,Desc="党禁"},
[9157] = {ID=9157,Desc="党棍"},
[9158] = {ID=9158,Desc="党风日下"},
[9159] = {ID=9159,Desc="大圆满法"},
[9160] = {ID=9160,Desc="大学暴动"},
[9161] = {ID=9161,Desc="大法修炼者"},
[9162] = {ID=9162,Desc="达米宣教会"},
[9163] = {ID=9163,Desc="慈悲功"},
[9164] = {ID=9164,Desc="传九退三"},
[9165] = {ID=9165,Desc="成佛做主"},
[9166] = {ID=9166,Desc="禅密功"},
[9167] = {ID=9167,Desc="踩江"},
[9168] = {ID=9168,Desc="北美巡回讲法"},
[9169] = {ID=9169,Desc="北京政坛清华名人"},
[9170] = {ID=9170,Desc="北京市委黑幕"},
[9171] = {ID=9171,Desc="北京黑幕"},
[9172] = {ID=9172,Desc="北京帮"},
[9173] = {ID=9173,Desc="爱国者同盟网站"},
[9174] = {ID=9174,Desc="爱国运动正名"},
[9175] = {ID=9175,Desc="www.cipfg.org"},
[9176] = {ID=9176,Desc="wenjiabao"},
[9177] = {ID=9177,Desc="VOA采访热比娅"},
[9178] = {ID=9178,Desc="tuidang"},
[9179] = {ID=9179,Desc="Seven"},
[9180] = {ID=9180,Desc="Power"},
[9181] = {ID=9181,Desc="m功学"},
[9182] = {ID=9182,Desc="huzhuxi"},
[9183] = {ID=9183,Desc="http://www.ZhUiChaGuOji.org/cn/"},
[9184] = {ID=9184,Desc="global"},
[9185] = {ID=9185,Desc="Fa轮功"},
[9186] = {ID=9186,Desc="fanhua"},
[9187] = {ID=9187,Desc="fangong"},
[9188] = {ID=9188,Desc="falungong"},
[9189] = {ID=9189,Desc="bjork"},
[9190] = {ID=9190,Desc="89学潮血腥屠杀"},
[9191] = {ID=9191,Desc="89学潮大屠杀"},
[9192] = {ID=9192,Desc="70天大事记"},
[9193] = {ID=9193,Desc="64大屠杀"},
[9194] = {ID=9194,Desc="3退"},
[9195] = {ID=9195,Desc="322攻台作战计划"},
[9196] = {ID=9196,Desc="《中国民主》"},
[9197] = {ID=9197,Desc="《争鸣》"},
[9198] = {ID=9198,Desc="《动向》"},
[9199] = {ID=9199,Desc="脏独"},
[9200] = {ID=9200,Desc="脏毒"},
[9201] = {ID=9201,Desc="西藏国家民主党"},
[9202] = {ID=9202,Desc="自由西藏学生运动"},
[9203] = {ID=9203,Desc="九十三运动"},
[9204] = {ID=9204,Desc="蒙汗药粉"},
[9205] = {ID=9205,Desc="强效失忆药"},
[9206] = {ID=9206,Desc="透视眼睛"},
[9207] = {ID=9207,Desc="子女任职名"},
[9208] = {ID=9208,Desc="拍肩神"},
[9209] = {ID=9209,Desc="身份证生成器"},
[9210] = {ID=9210,Desc="最后圆满"},
[9211] = {ID=9211,Desc="治疗肿瘤"},
[9212] = {ID=9212,Desc="治疗乙肝"},
[9213] = {ID=9213,Desc="治疗性病"},
[9214] = {ID=9214,Desc="治疗红斑狼疮"},
[9215] = {ID=9215,Desc="债务公司"},
[9216] = {ID=9216,Desc="游戏机破解"},
[9217] = {ID=9217,Desc="隐形摄像机"},
[9218] = {ID=9218,Desc="隐形耳机"},
[9219] = {ID=9219,Desc="隐蔽式摄像机"},
[9220] = {ID=9220,Desc="银行卡复制设备"},
[9221] = {ID=9221,Desc="遥控信号拦截器"},
[9222] = {ID=9222,Desc="信用卡套现"},
[9223] = {ID=9223,Desc="消防枪"},
[9224] = {ID=9224,Desc="消防灭火枪"},
[9225] = {ID=9225,Desc="香港生子"},
[9226] = {ID=9226,Desc="土炮"},
[9227] = {ID=9227,Desc="胎盘"},
[9228] = {ID=9228,Desc="手机窃听器"},
[9229] = {ID=9229,Desc="手机魔卡"},
[9230] = {ID=9230,Desc="手机卡复制器"},
[9231] = {ID=9231,Desc="手机监听器"},
[9232] = {ID=9232,Desc="手机跟踪定位器"},
[9233] = {ID=9233,Desc="容弹量"},
[9234] = {ID=9234,Desc="枪模"},
[9235] = {ID=9235,Desc="铅弹"},
[9236] = {ID=9236,Desc="汽枪"},
[9237] = {ID=9237,Desc="汽狗"},
[9238] = {ID=9238,Desc="汽车走表器"},
[9239] = {ID=9239,Desc="气枪"},
[9240] = {ID=9240,Desc="气狗"},
[9241] = {ID=9241,Desc="普提功"},
[9242] = {ID=9242,Desc="女伟哥"},
[9243] = {ID=9243,Desc="纽扣摄像机"},
[9244] = {ID=9244,Desc="免电灯"},
[9245] = {ID=9245,Desc="迷昏药"},
[9246] = {ID=9246,Desc="蒙汗药"},
[9247] = {ID=9247,Desc="卖QQ号码"},
[9248] = {ID=9248,Desc="雷管"},
[9249] = {ID=9249,Desc="康生丹"},
[9250] = {ID=9250,Desc="警徽"},
[9251] = {ID=9251,Desc="假证件"},
[9252] = {ID=9252,Desc="假文凭"},
[9253] = {ID=9253,Desc="假发票"},
[9254] = {ID=9254,Desc="假币出售"},
[9255] = {ID=9255,Desc="加油机干扰器"},
[9256] = {ID=9256,Desc="记号扑克"},
[9257] = {ID=9257,Desc="激光汽"},
[9258] = {ID=9258,Desc="激光气"},
[9259] = {ID=9259,Desc="狗友"},
[9260] = {ID=9260,Desc="跟帖器"},
[9261] = {ID=9261,Desc="干扰器"},
[9262] = {ID=9262,Desc="仿真枪"},
[9263] = {ID=9263,Desc="防身枪"},
[9264] = {ID=9264,Desc="反雷达测速"},
[9265] = {ID=9265,Desc="短信投票业务"},
[9266] = {ID=9266,Desc="顶帖器"},
[9267] = {ID=9267,Desc="电子狗导航手机"},
[9268] = {ID=9268,Desc="电击枪"},
[9269] = {ID=9269,Desc="电话追杀系统"},
[9270] = {ID=9270,Desc="地磅遥控器"},
[9271] = {ID=9271,Desc="地磅解码器"},
[9272] = {ID=9272,Desc="代追债"},
[9273] = {ID=9273,Desc="代讨债"},
[9274] = {ID=9274,Desc="车用电子狗"},
[9275] = {ID=9275,Desc="避孕膜"},
[9276] = {ID=9276,Desc="斑蝥"},
[9277] = {ID=9277,Desc="暗访包"},
[9278] = {ID=9278,Desc="SIM卡复制器"},
[9279] = {ID=9279,Desc="BB枪"},
[9280] = {ID=9280,Desc="BB弹"},
[9281] = {ID=9281,Desc="追债公司"},
[9282] = {ID=9282,Desc="消声器"},
[9283] = {ID=9283,Desc="霰弹"},
[9284] = {ID=9284,Desc="卫星广播器材"},
[9285] = {ID=9285,Desc="卫星高频头"},
[9286] = {ID=9286,Desc="卫星电视"},
[9287] = {ID=9287,Desc="土枪"},
[9288] = {ID=9288,Desc="双筒"},
[9289] = {ID=9289,Desc="双桶"},
[9290] = {ID=9290,Desc="手枪"},
[9291] = {ID=9291,Desc="手榴弹"},
[9292] = {ID=9292,Desc="麻醉弹"},
[9293] = {ID=9293,Desc="猎枪"},
[9294] = {ID=9294,Desc="弓弩"},
[9295] = {ID=9295,Desc="赴港生子"},
[9296] = {ID=9296,Desc="电狗"},
[9297] = {ID=9297,Desc="导爆索"},
[9298] = {ID=9298,Desc="长狗"},
[9299] = {ID=9299,Desc="爆炸物"},
[9300] = {ID=9300,Desc="爆破"},
[9301] = {ID=9301,Desc="左棍"},
[9302] = {ID=9302,Desc="妈了个逼"},
[9303] = {ID=9303,Desc="粪青"},
[9304] = {ID=9304,Desc="淫兽"},
[9305] = {ID=9305,Desc="缩阴"},
[9306] = {ID=9306,Desc="少妇自拍"},
[9307] = {ID=9307,Desc="色情片"},
[9308] = {ID=9308,Desc="三级电影"},
[9309] = {ID=9309,Desc="情杀"},
[9310] = {ID=9310,Desc="裸照"},
[9311] = {ID=9311,Desc="奸杀"},
[9312] = {ID=9312,Desc="禁网禁片"},
[9313] = {ID=9313,Desc="春宫图"},
[9314] = {ID=9314,Desc="SM用品"},
[9315] = {ID=9315,Desc="自动群发"},
[9316] = {ID=9316,Desc="证件公司"},
[9317] = {ID=9317,Desc="网站推广软件"},
[9318] = {ID=9318,Desc="网络推广扩散器"},
[9319] = {ID=9319,Desc="私家侦探服务"},
[9320] = {ID=9320,Desc="生意宝"},
[9321] = {ID=9321,Desc="商务快车"},
[9322] = {ID=9322,Desc="商务短信"},
[9323] = {ID=9323,Desc="群发软件"},
[9324] = {ID=9324,Desc="群发广告机"},
[9325] = {ID=9325,Desc="解密软件"},
[9326] = {ID=9326,Desc="慧聪"},
[9327] = {ID=9327,Desc="供应发票"},
[9328] = {ID=9328,Desc="发贴机"},
[9329] = {ID=9329,Desc="发贴工具"},
[9330] = {ID=9330,Desc="发票代开"},
[9331] = {ID=9331,Desc="短信群发"},
[9332] = {ID=9332,Desc="顶贴机"},
[9333] = {ID=9333,Desc="点金商务"},
[9334] = {ID=9334,Desc="士的宁"},
[9335] = {ID=9335,Desc="士的年"},
[9336] = {ID=9336,Desc="乐透码"},
[9337] = {ID=9337,Desc="皇家轮盘"},
[9338] = {ID=9338,Desc="俄罗斯轮盘"},
[9339] = {ID=9339,Desc="赌具"},
[9340] = {ID=9340,Desc="彩票预测"},
[9341] = {ID=9341,Desc="彩票选号机"},
[9342] = {ID=9342,Desc="包青天机"},
[9343] = {ID=9343,Desc="百乐二呓"},
[9344] = {ID=9344,Desc="阿凡提机"},
[9345] = {ID=9345,Desc="6合彩"},
[9346] = {ID=9346,Desc="祖母绿"},
[9347] = {ID=9347,Desc="重亚硒酸钠"},
[9348] = {ID=9348,Desc="粘氯酸"},
[9349] = {ID=9349,Desc="原砷酸"},
[9350] = {ID=9350,Desc="原藜芦碱A"},
[9351] = {ID=9351,Desc="永伏虫"},
[9352] = {ID=9352,Desc="蝇毒"},
[9353] = {ID=9353,Desc="罂粟籽"},
[9354] = {ID=9354,Desc="罂粟壳"},
[9355] = {ID=9355,Desc="银氰化钾"},
[9356] = {ID=9356,Desc="因毒硫磷"},
[9357] = {ID=9357,Desc="因毒磷"},
[9358] = {ID=9358,Desc="异氰酸甲酯"},
[9359] = {ID=9359,Desc="异氰酸苯酯"},
[9360] = {ID=9360,Desc="异硫氰酸烯丙酯"},
[9361] = {ID=9361,Desc="乙酰亚砷酸铜"},
[9362] = {ID=9362,Desc="乙酰替硫脲"},
[9363] = {ID=9363,Desc="乙烯甲醇"},
[9364] = {ID=9364,Desc="乙酸亚铊"},
[9365] = {ID=9365,Desc="乙酸铊"},
[9366] = {ID=9366,Desc="乙酸三乙基锡"},
[9367] = {ID=9367,Desc="乙酸三甲基锡"},
[9368] = {ID=9368,Desc="乙酸甲氧基乙基汞"},
[9369] = {ID=9369,Desc="乙酸汞"},
[9370] = {ID=9370,Desc="乙硼烷"},
[9371] = {ID=9371,Desc="乙醇腈"},
[9372] = {ID=9372,Desc="乙撑亚胺"},
[9373] = {ID=9373,Desc="乙撑氯醇"},
[9374] = {ID=9374,Desc="伊皮恩"},
[9375] = {ID=9375,Desc="一氧化汞"},
[9376] = {ID=9376,Desc="一氧化二氟"},
[9377] = {ID=9377,Desc="一氯乙醛"},
[9378] = {ID=9378,Desc="一氯丙酮"},
[9379] = {ID=9379,Desc="氧氯化磷"},
[9380] = {ID=9380,Desc="氧化亚铊"},
[9381] = {ID=9381,Desc="氧化铊"},
[9382] = {ID=9382,Desc="氧化汞"},
[9383] = {ID=9383,Desc="氧化二丁基锡"},
[9384] = {ID=9384,Desc="烟碱"},
[9385] = {ID=9385,Desc="亚硝酰乙氧"},
[9386] = {ID=9386,Desc="亚硝酸乙酯"},
[9387] = {ID=9387,Desc="亚硒酸氢钠"},
[9388] = {ID=9388,Desc="亚硒酸钠"},
[9389] = {ID=9389,Desc="亚硒酸镁"},
[9390] = {ID=9390,Desc="亚硒酸二钠"},
[9391] = {ID=9391,Desc="亚硒酸"},
[9392] = {ID=9392,Desc="亚砷酸钠"},
[9393] = {ID=9393,Desc="亚砷酸钾"},
[9394] = {ID=9394,Desc="亚砷"},
[9395] = {ID=9395,Desc="阿扁推翻"},
[9396] = {ID=9396,Desc="阿宾"},
[9397] = {ID=9397,Desc="阿賓"},
[9398] = {ID=9398,Desc="挨了一炮"},
[9399] = {ID=9399,Desc="安街逆"},
[9400] = {ID=9400,Desc="安局办公楼"},
[9401] = {ID=9401,Desc="安局豪华"},
[9402] = {ID=9402,Desc="安门事"},
[9403] = {ID=9403,Desc="安眠藥"},
[9404] = {ID=9404,Desc="案的准确"},
[9405] = {ID=9405,Desc="八九民"},
[9406] = {ID=9406,Desc="八九学"},
[9407] = {ID=9407,Desc="八九政治"},
[9408] = {ID=9408,Desc="把病人整"},
[9409] = {ID=9409,Desc="把邓小平"},
[9410] = {ID=9410,Desc="把学生整"},
[9411] = {ID=9411,Desc="罢工门"},
[9412] = {ID=9412,Desc="白黄牙签"},
[9413] = {ID=9413,Desc="败培训"},
[9414] = {ID=9414,Desc="办本科"},
[9415] = {ID=9415,Desc="办理本科"},
[9416] = {ID=9416,Desc="办理各种"},
[9417] = {ID=9417,Desc="办理票据"},
[9418] = {ID=9418,Desc="办理真实"},
[9419] = {ID=9419,Desc="办理证书"},
[9420] = {ID=9420,Desc="办理资格"},
[9421] = {ID=9421,Desc="办文凭"},
[9422] = {ID=9422,Desc="办怔"},
[9423] = {ID=9423,Desc="办证"},
[9424] = {ID=9424,Desc="半刺刀"},
[9425] = {ID=9425,Desc="辦毕业"},
[9426] = {ID=9426,Desc="辦證"},
[9427] = {ID=9427,Desc="谤罪获刑"},
[9428] = {ID=9428,Desc="磅解码器"},
[9429] = {ID=9429,Desc="磅遥控器"},
[9430] = {ID=9430,Desc="宝在甘肃修"},
[9431] = {ID=9431,Desc="保过答案"},
[9432] = {ID=9432,Desc="报复执法"},
[9433] = {ID=9433,Desc="爆发骚"},
[9434] = {ID=9434,Desc="北省委门"},
[9435] = {ID=9435,Desc="被打死"},
[9436] = {ID=9436,Desc="被指抄袭"},
[9437] = {ID=9437,Desc="被中共"},
[9438] = {ID=9438,Desc="本公司担"},
[9439] = {ID=9439,Desc="本无码"},
[9440] = {ID=9440,Desc="毕业證"},
[9441] = {ID=9441,Desc="变牌绝"},
[9442] = {ID=9442,Desc="辩词与梦"},
[9443] = {ID=9443,Desc="冰火毒"},
[9444] = {ID=9444,Desc="冰火佳"},
[9445] = {ID=9445,Desc="冰火九重"},
[9446] = {ID=9446,Desc="冰火漫"},
[9447] = {ID=9447,Desc="冰淫传"},
[9448] = {ID=9448,Desc="冰在火上"},
[9449] = {ID=9449,Desc="波推龙"},
[9450] = {ID=9450,Desc="博彩娱"},
[9451] = {ID=9451,Desc="博会暂停"},
[9452] = {ID=9452,Desc="博园区伪"},
[9453] = {ID=9453,Desc="不查都"},
[9454] = {ID=9454,Desc="不查全"},
[9455] = {ID=9455,Desc="不思四化"},
[9456] = {ID=9456,Desc="布卖淫女"},
[9457] = {ID=9457,Desc="部忙组阁"},
[9458] = {ID=9458,Desc="部是这样"},
[9459] = {ID=9459,Desc="才知道只生"},
[9460] = {ID=9460,Desc="财众科技"},
[9461] = {ID=9461,Desc="踩踏事"},
[9462] = {ID=9462,Desc="苍山兰"},
[9463] = {ID=9463,Desc="苍蝇水"},
[9464] = {ID=9464,Desc="藏春阁"},
[9465] = {ID=9465,Desc="操了嫂"},
[9466] = {ID=9466,Desc="操嫂子"},
[9467] = {ID=9467,Desc="策没有不"},
[9468] = {ID=9468,Desc="插屁屁"},
[9469] = {ID=9469,Desc="察象蚂"},
[9470] = {ID=9470,Desc="拆迁灭"},
[9471] = {ID=9471,Desc="车牌隐"},
[9472] = {ID=9472,Desc="成人电"},
[9473] = {ID=9473,Desc="成人卡通"},
[9474] = {ID=9474,Desc="成人聊"},
[9475] = {ID=9475,Desc="成人视"},
[9476] = {ID=9476,Desc="成人图"},
[9477] = {ID=9477,Desc="成人文"},
[9478] = {ID=9478,Desc="成人小"},
[9479] = {ID=9479,Desc="城管灭"},
[9480] = {ID=9480,Desc="惩公安"},
[9481] = {ID=9481,Desc="惩贪难"},
[9482] = {ID=9482,Desc="充气娃"},
[9483] = {ID=9483,Desc="冲凉死"},
[9484] = {ID=9484,Desc="抽着大中"},
[9485] = {ID=9485,Desc="抽着芙蓉"},
[9486] = {ID=9486,Desc="出成绩付"},
[9487] = {ID=9487,Desc="出售发票"},
[9488] = {ID=9488,Desc="出售军"},
[9489] = {ID=9489,Desc="穿透仪器"},
[9490] = {ID=9490,Desc="春水横溢"},
[9491] = {ID=9491,Desc="纯度白"},
[9492] = {ID=9492,Desc="纯度黄"},
[9493] = {ID=9493,Desc="次通过考"},
[9494] = {ID=9494,Desc="催眠水"},
[9495] = {ID=9495,Desc="催情粉"},
[9496] = {ID=9496,Desc="催情藥"},
[9497] = {ID=9497,Desc="挫仑"},
[9498] = {ID=9498,Desc="达毕业证"},
[9499] = {ID=9499,Desc="答案包"},
[9500] = {ID=9500,Desc="答案提供"},
[9501] = {ID=9501,Desc="打标语"},
[9502] = {ID=9502,Desc="打错门"},
[9503] = {ID=9503,Desc="打飞机专"},
[9504] = {ID=9504,Desc="打死经过"},
[9505] = {ID=9505,Desc="打死人"},
[9506] = {ID=9506,Desc="打砸办公"},
[9507] = {ID=9507,Desc="大奶子"},
[9508] = {ID=9508,Desc="大批贪官"},
[9509] = {ID=9509,Desc="大嘴歌"},
[9510] = {ID=9510,Desc="代办发票"},
[9511] = {ID=9511,Desc="代办各"},
[9512] = {ID=9512,Desc="代办文"},
[9513] = {ID=9513,Desc="代办学"},
[9514] = {ID=9514,Desc="代办制"},
[9515] = {ID=9515,Desc="代辦"},
[9516] = {ID=9516,Desc="代表烦"},
[9517] = {ID=9517,Desc="代開"},
[9518] = {ID=9518,Desc="代考"},
[9519] = {ID=9519,Desc="代理发票"},
[9520] = {ID=9520,Desc="代理票据"},
[9521] = {ID=9521,Desc="代您考"},
[9522] = {ID=9522,Desc="代写毕"},
[9523] = {ID=9523,Desc="代写论"},
[9524] = {ID=9524,Desc="贷办"},
[9525] = {ID=9525,Desc="贷借款"},
[9526] = {ID=9526,Desc="贷开"},
[9527] = {ID=9527,Desc="当代七整"},
[9528] = {ID=9528,Desc="当官要精"},
[9529] = {ID=9529,Desc="当官在于"},
[9530] = {ID=9530,Desc="党的官"},
[9531] = {ID=9531,Desc="党后萎"},
[9532] = {ID=9532,Desc="党前干劲"},
[9533] = {ID=9533,Desc="刀架保安"},
[9534] = {ID=9534,Desc="导的情人"},
[9535] = {ID=9535,Desc="导叫失"},
[9536] = {ID=9536,Desc="导人的最"},
[9537] = {ID=9537,Desc="导人最"},
[9538] = {ID=9538,Desc="导小商"},
[9539] = {ID=9539,Desc="到花心"},
[9540] = {ID=9540,Desc="得财兼"},
[9541] = {ID=9541,Desc="的同修"},
[9542] = {ID=9542,Desc="灯草和"},
[9543] = {ID=9543,Desc="等级證"},
[9544] = {ID=9544,Desc="等屁民"},
[9545] = {ID=9545,Desc="等人老百"},
[9546] = {ID=9546,Desc="等人是老"},
[9547] = {ID=9547,Desc="等人手术"},
[9548] = {ID=9548,Desc="邓爷爷转"},
[9549] = {ID=9549,Desc="邓玉娇"},
[9550] = {ID=9550,Desc="地产之歌"},
[9551] = {ID=9551,Desc="地下先烈"},
[9552] = {ID=9552,Desc="地震哥"},
[9553] = {ID=9553,Desc="帝国之梦"},
[9554] = {ID=9554,Desc="递纸死"},
[9555] = {ID=9555,Desc="点数优惠"},
[9556] = {ID=9556,Desc="电话监"},
[9557] = {ID=9557,Desc="甸果敢"},
[9558] = {ID=9558,Desc="蝶舞按"},
[9559] = {ID=9559,Desc="丁香社"},
[9560] = {ID=9560,Desc="顶花心"},
[9561] = {ID=9561,Desc="东复活"},
[9562] = {ID=9562,Desc="東京熱"},
[9563] = {ID=9563,Desc="洞小口紧"},
[9564] = {ID=9564,Desc="都当警"},
[9565] = {ID=9565,Desc="都当小姐"},
[9566] = {ID=9566,Desc="都进中央"},
[9567] = {ID=9567,Desc="毒蛇钻"},
[9568] = {ID=9568,Desc="独立台湾"},
[9569] = {ID=9569,Desc="赌球网"},
[9570] = {ID=9570,Desc="短信截"},
[9571] = {ID=9571,Desc="多美康"},
[9572] = {ID=9572,Desc="躲猫猫"},
[9573] = {ID=9573,Desc="俄羅斯"},
[9574] = {ID=9574,Desc="恶势力操"},
[9575] = {ID=9575,Desc="恶势力插"},
[9576] = {ID=9576,Desc="恩氟烷"},
[9577] = {ID=9577,Desc="儿园惨"},
[9578] = {ID=9578,Desc="儿园砍"},
[9579] = {ID=9579,Desc="儿园杀"},
[9580] = {ID=9580,Desc="儿园凶"},
[9581] = {ID=9581,Desc="二奶大"},
[9582] = {ID=9582,Desc="发牌绝"},
[9583] = {ID=9583,Desc="发票出"},
[9584] = {ID=9584,Desc="发票代"},
[9585] = {ID=9585,Desc="发票销"},
[9586] = {ID=9586,Desc="發票"},
[9587] = {ID=9587,Desc="法车仑"},
[9588] = {ID=9588,Desc="法轮佛"},
[9589] = {ID=9589,Desc="法维权"},
[9590] = {ID=9590,Desc="法一轮"},
[9591] = {ID=9591,Desc="法院给废"},
[9592] = {ID=9592,Desc="法正乾"},
[9593] = {ID=9593,Desc="反测速雷"},
[9594] = {ID=9594,Desc="反雷达测"},
[9595] = {ID=9595,Desc="反屏蔽"},
[9596] = {ID=9596,Desc="范燕琼"},
[9597] = {ID=9597,Desc="方迷香"},
[9598] = {ID=9598,Desc="防电子眼"},
[9599] = {ID=9599,Desc="防身药水"},
[9600] = {ID=9600,Desc="房贷给废"},
[9601] = {ID=9601,Desc="仿真证"},
[9602] = {ID=9602,Desc="诽谤罪"},
[9603] = {ID=9603,Desc="费私服"},
[9604] = {ID=9604,Desc="封锁消"},
[9605] = {ID=9605,Desc="佛同修"},
[9606] = {ID=9606,Desc="福尔马林"},
[9607] = {ID=9607,Desc="福娃的預"},
[9608] = {ID=9608,Desc="福娃頭上"},
[9609] = {ID=9609,Desc="福香巴"},
[9610] = {ID=9610,Desc="府包庇"},
[9611] = {ID=9611,Desc="府集中领"},
[9612] = {ID=9612,Desc="妇销魂"},
[9613] = {ID=9613,Desc="附送枪"},
[9614] = {ID=9614,Desc="复印件生"},
[9615] = {ID=9615,Desc="复印件制"},
[9616] = {ID=9616,Desc="富民穷"},
[9617] = {ID=9617,Desc="富婆给废"},
[9618] = {ID=9618,Desc="改号软件"},
[9619] = {ID=9619,Desc="感扑克"},
[9620] = {ID=9620,Desc="冈本真"},
[9621] = {ID=9621,Desc="肛门是邻"},
[9622] = {ID=9622,Desc="岡本真"},
[9623] = {ID=9623,Desc="钢针狗"},
[9624] = {ID=9624,Desc="钢珠枪"},
[9625] = {ID=9625,Desc="港澳博球"},
[9626] = {ID=9626,Desc="港馬會"},
[9627] = {ID=9627,Desc="港鑫華"},
[9628] = {ID=9628,Desc="高就在政"},
[9629] = {ID=9629,Desc="高考黑"},
[9630] = {ID=9630,Desc="搞媛交"},
[9631] = {ID=9631,Desc="告长期"},
[9632] = {ID=9632,Desc="告洋状"},
[9633] = {ID=9633,Desc="格证考试"},
[9634] = {ID=9634,Desc="各类考试"},
[9635] = {ID=9635,Desc="各类文凭"},
[9636] = {ID=9636,Desc="跟踪器"},
[9637] = {ID=9637,Desc="工程吞得"},
[9638] = {ID=9638,Desc="工力人"},
[9639] = {ID=9639,Desc="公安错打"},
[9640] = {ID=9640,Desc="公安网监"},
[9641] = {ID=9641,Desc="公开小姐"},
[9642] = {ID=9642,Desc="攻官小姐"},
[9643] = {ID=9643,Desc="共王储"},
[9644] = {ID=9644,Desc="狗屁专家"},
[9645] = {ID=9645,Desc="鼓动一些"},
[9646] = {ID=9646,Desc="乖乖粉"},
[9647] = {ID=9647,Desc="官商勾"},
[9648] = {ID=9648,Desc="官也不容"},
[9649] = {ID=9649,Desc="官因发帖"},
[9650] = {ID=9650,Desc="光学真题"},
[9651] = {ID=9651,Desc="跪真相"},
[9652] = {ID=9652,Desc="滚圆大乳"},
[9653] = {ID=9653,Desc="国际投注"},
[9654] = {ID=9654,Desc="国家妓"},
[9655] = {ID=9655,Desc="国家软弱"},
[9656] = {ID=9656,Desc="国家吞得"},
[9657] = {ID=9657,Desc="国库折"},
[9658] = {ID=9658,Desc="国一九五七"},
[9659] = {ID=9659,Desc="國內美"},
[9660] = {ID=9660,Desc="哈药直销"},
[9661] = {ID=9661,Desc="海访民"},
[9662] = {ID=9662,Desc="豪圈钱"},
[9663] = {ID=9663,Desc="号屏蔽器"},
[9664] = {ID=9664,Desc="和狗交"},
[9665] = {ID=9665,Desc="和狗性"},
[9666] = {ID=9666,Desc="和狗做"},
[9667] = {ID=9667,Desc="黑火药的"},
[9668] = {ID=9668,Desc="红外透视"},
[9669] = {ID=9669,Desc="紅色恐"},
[9670] = {ID=9670,Desc="胡江内斗"},
[9671] = {ID=9671,Desc="胡适眼"},
[9672] = {ID=9672,Desc="湖淫娘"},
[9673] = {ID=9673,Desc="虎头猎"},
[9674] = {ID=9674,Desc="华门开"},
[9675] = {ID=9675,Desc="化学扫盲"},
[9676] = {ID=9676,Desc="划老公"},
[9677] = {ID=9677,Desc="还会吹萧"},
[9678] = {ID=9678,Desc="还看锦涛"},
[9679] = {ID=9679,Desc="环球证件"},
[9680] = {ID=9680,Desc="皇冠投注"},
[9681] = {ID=9681,Desc="黄冰"},
[9682] = {ID=9682,Desc="浑圆豪乳"},
[9683] = {ID=9683,Desc="活不起"},
[9684] = {ID=9684,Desc="火车也疯"},
[9685] = {ID=9685,Desc="机定位器"},
[9686] = {ID=9686,Desc="机号定"},
[9687] = {ID=9687,Desc="机号卫"},
[9688] = {ID=9688,Desc="机卡密"},
[9689] = {ID=9689,Desc="机屏蔽器"},
[9690] = {ID=9690,Desc="基本靠吼"},
[9691] = {ID=9691,Desc="绩过后付"},
[9692] = {ID=9692,Desc="激情电"},
[9693] = {ID=9693,Desc="激情短"},
[9694] = {ID=9694,Desc="激情妹"},
[9695] = {ID=9695,Desc="激情炮"},
[9696] = {ID=9696,Desc="级办理"},
[9697] = {ID=9697,Desc="急需嫖"},
[9698] = {ID=9698,Desc="集体打砸"},
[9699] = {ID=9699,Desc="集体腐"},
[9700] = {ID=9700,Desc="挤乳汁"},
[9701] = {ID=9701,Desc="擠乳汁"},
[9702] = {ID=9702,Desc="佳静安定"},
[9703] = {ID=9703,Desc="家一样饱"},
[9704] = {ID=9704,Desc="家属被打"},
[9705] = {ID=9705,Desc="甲虫跳"},
[9706] = {ID=9706,Desc="甲流了"},
[9707] = {ID=9707,Desc="奸成瘾"},
[9708] = {ID=9708,Desc="兼职上门"},
[9709] = {ID=9709,Desc="简易炸"},
[9710] = {ID=9710,Desc="江胡内斗"},
[9711] = {ID=9711,Desc="江太上"},
[9712] = {ID=9712,Desc="江系人"},
[9713] = {ID=9713,Desc="叫自慰"},
[9714] = {ID=9714,Desc="揭贪难"},
[9715] = {ID=9715,Desc="姐包夜"},
[9716] = {ID=9716,Desc="姐服务"},
[9717] = {ID=9717,Desc="姐兼职"},
[9718] = {ID=9718,Desc="姐上门"},
[9719] = {ID=9719,Desc="金扎金"},
[9720] = {ID=9720,Desc="金钟气"},
[9721] = {ID=9721,Desc="津大地震"},
[9722] = {ID=9722,Desc="津地震"},
[9723] = {ID=9723,Desc="进来的罪"},
[9724] = {ID=9724,Desc="京地震"},
[9725] = {ID=9725,Desc="京要地震"},
[9726] = {ID=9726,Desc="经典谎言"},
[9727] = {ID=9727,Desc="精子射在"},
[9728] = {ID=9728,Desc="警察被"},
[9729] = {ID=9729,Desc="警察的幌"},
[9730] = {ID=9730,Desc="警察殴打"},
[9731] = {ID=9731,Desc="警察说保"},
[9732] = {ID=9732,Desc="警车雷达"},
[9733] = {ID=9733,Desc="警方包庇"},
[9734] = {ID=9734,Desc="警用品"},
[9735] = {ID=9735,Desc="径步枪"},
[9736] = {ID=9736,Desc="敬请忍"},
[9737] = {ID=9737,Desc="究生答案"},
[9738] = {ID=9738,Desc="九龙论坛"},
[9739] = {ID=9739,Desc="九评共"},
[9740] = {ID=9740,Desc="酒象喝汤"},
[9741] = {ID=9741,Desc="酒像喝汤"},
[9742] = {ID=9742,Desc="就爱插"},
[9743] = {ID=9743,Desc="就要色"},
[9744] = {ID=9744,Desc="举国体"},
[9745] = {ID=9745,Desc="据说全民"},
[9746] = {ID=9746,Desc="绝食声"},
[9747] = {ID=9747,Desc="军刺"},
[9748] = {ID=9748,Desc="军品特"},
[9749] = {ID=9749,Desc="军用手"},
[9750] = {ID=9750,Desc="开邓选"},
[9751] = {ID=9751,Desc="开锁工具"},
[9752] = {ID=9752,Desc="開碼"},
[9753] = {ID=9753,Desc="開票"},
[9754] = {ID=9754,Desc="砍杀幼"},
[9755] = {ID=9755,Desc="砍伤儿"},
[9756] = {ID=9756,Desc="康没有不"},
[9757] = {ID=9757,Desc="康跳楼"},
[9758] = {ID=9758,Desc="考答案"},
[9759] = {ID=9759,Desc="考机构"},
[9760] = {ID=9760,Desc="考考邓"},
[9761] = {ID=9761,Desc="考联盟"},
[9762] = {ID=9762,Desc="考前答"},
[9763] = {ID=9763,Desc="考前答案"},
[9764] = {ID=9764,Desc="考前付"},
[9765] = {ID=9765,Desc="考设备"},
[9766] = {ID=9766,Desc="考试包过"},
[9767] = {ID=9767,Desc="考试保"},
[9768] = {ID=9768,Desc="考试答案"},
[9769] = {ID=9769,Desc="考试机构"},
[9770] = {ID=9770,Desc="考试联盟"},
[9771] = {ID=9771,Desc="考试枪"},
[9772] = {ID=9772,Desc="考研考中"},
[9773] = {ID=9773,Desc="磕彰"},
[9774] = {ID=9774,Desc="克分析"},
[9775] = {ID=9775,Desc="克千术"},
[9776] = {ID=9776,Desc="克透视"},
[9777] = {ID=9777,Desc="空和雅典"},
[9778] = {ID=9778,Desc="孔摄像"},
[9779] = {ID=9779,Desc="控诉世博"},
[9780] = {ID=9780,Desc="控制媒"},
[9781] = {ID=9781,Desc="口手枪"},
[9782] = {ID=9782,Desc="骷髅死"},
[9783] = {ID=9783,Desc="快速办"},
[9784] = {ID=9784,Desc="矿难不公"},
[9785] = {ID=9785,Desc="拉登说"},
[9786] = {ID=9786,Desc="拉开水晶"},
[9787] = {ID=9787,Desc="来福猎"},
[9788] = {ID=9788,Desc="狼全部跪"},
[9789] = {ID=9789,Desc="雷人女官"},
[9790] = {ID=9790,Desc="类准确答"},
[9791] = {ID=9791,Desc="黎阳平"},
[9792] = {ID=9792,Desc="李咏曰"},
[9793] = {ID=9793,Desc="理各种证"},
[9794] = {ID=9794,Desc="理是影帝"},
[9795] = {ID=9795,Desc="理证件"},
[9796] = {ID=9796,Desc="理做帐报"},
[9797] = {ID=9797,Desc="力骗中央"},
[9798] = {ID=9798,Desc="力月西"},
[9799] = {ID=9799,Desc="丽媛离"},
[9800] = {ID=9800,Desc="利他林"},
[9801] = {ID=9801,Desc="连发手"},
[9802] = {ID=9802,Desc="聯繫電"},
[9803] = {ID=9803,Desc="炼大法"},
[9804] = {ID=9804,Desc="两岸才子"},
[9805] = {ID=9805,Desc="两会代"},
[9806] = {ID=9806,Desc="两会又三"},
[9807] = {ID=9807,Desc="聊视频"},
[9808] = {ID=9808,Desc="聊斋艳"},
[9809] = {ID=9809,Desc="了件渔袍"},
[9810] = {ID=9810,Desc="猎好帮手"},
[9811] = {ID=9811,Desc="猎枪销"},
[9812] = {ID=9812,Desc="猎槍"},
[9813] = {ID=9813,Desc="獵槍"},
[9814] = {ID=9814,Desc="领土拿"},
[9815] = {ID=9815,Desc="流血事"},
[9816] = {ID=9816,Desc="六死"},
[9817] = {ID=9817,Desc="六四事"},
[9818] = {ID=9818,Desc="龙湾事件"},
[9819] = {ID=9819,Desc="隆手指"},
[9820] = {ID=9820,Desc="陆封锁"},
[9821] = {ID=9821,Desc="陆同修"},
[9822] = {ID=9822,Desc="乱奸"},
[9823] = {ID=9823,Desc="乱伦类"},
[9824] = {ID=9824,Desc="乱伦小"},
[9825] = {ID=9825,Desc="伦理大"},
[9826] = {ID=9826,Desc="伦理电影"},
[9827] = {ID=9827,Desc="伦理毛"},
[9828] = {ID=9828,Desc="伦理片"},
[9829] = {ID=9829,Desc="轮手枪"},
[9830] = {ID=9830,Desc="论文代"},
[9831] = {ID=9831,Desc="罗斯小姐"},
[9832] = {ID=9832,Desc="裸聊网"},
[9833] = {ID=9833,Desc="裸舞视"},
[9834] = {ID=9834,Desc="落霞缀"},
[9835] = {ID=9835,Desc="麻古"},
[9836] = {ID=9836,Desc="麻果配"},
[9837] = {ID=9837,Desc="麻果丸"},
[9838] = {ID=9838,Desc="麻将透"},
[9839] = {ID=9839,Desc="麻醉狗"},
[9840] = {ID=9840,Desc="麻醉槍"},
[9841] = {ID=9841,Desc="麻醉藥"},
[9842] = {ID=9842,Desc="蟆叫专家"},
[9843] = {ID=9843,Desc="卖地财政"},
[9844] = {ID=9844,Desc="卖发票"},
[9845] = {ID=9845,Desc="卖银行卡"},
[9846] = {ID=9846,Desc="卖自考"},
[9847] = {ID=9847,Desc="漫步丝"},
[9848] = {ID=9848,Desc="忙爱国"},
[9849] = {ID=9849,Desc="猫眼工具"},
[9850] = {ID=9850,Desc="媒体封锁"},
[9851] = {ID=9851,Desc="每周一死"},
[9852] = {ID=9852,Desc="美艳少妇"},
[9853] = {ID=9853,Desc="妹按摩"},
[9854] = {ID=9854,Desc="妹上门"},
[9855] = {ID=9855,Desc="门按摩"},
[9856] = {ID=9856,Desc="门保健"},
[9857] = {ID=9857,Desc="門服務"},
[9858] = {ID=9858,Desc="氓培训"},
[9859] = {ID=9859,Desc="迷幻型"},
[9860] = {ID=9860,Desc="迷昏口"},
[9861] = {ID=9861,Desc="迷昏藥"},
[9862] = {ID=9862,Desc="迷魂香"},
[9863] = {ID=9863,Desc="迷魂藥"},
[9864] = {ID=9864,Desc="迷情水"},
[9865] = {ID=9865,Desc="迷情药"},
[9866] = {ID=9866,Desc="谜奸药"},
[9867] = {ID=9867,Desc="民储害"},
[9868] = {ID=9868,Desc="民九亿商"},
[9869] = {ID=9869,Desc="民抗议"},
[9870] = {ID=9870,Desc="铭记印尼"},
[9871] = {ID=9871,Desc="摩小姐"},
[9872] = {ID=9872,Desc="母乳家"},
[9873] = {ID=9873,Desc="木齐针"},
[9874] = {ID=9874,Desc="幕没有不"},
[9875] = {ID=9875,Desc="幕前戲"},
[9876] = {ID=9876,Desc="南充针"},
[9877] = {ID=9877,Desc="嫩阴"},
[9878] = {ID=9878,Desc="泥马之歌"},
[9879] = {ID=9879,Desc="你的西域"},
[9880] = {ID=9880,Desc="拟涛哥"},
[9881] = {ID=9881,Desc="娘两腿之间"},
[9882] = {ID=9882,Desc="妞上门"},
[9883] = {ID=9883,Desc="浓精"},
[9884] = {ID=9884,Desc="怒的志愿"},
[9885] = {ID=9885,Desc="女被人家搞"},
[9886] = {ID=9886,Desc="女激情"},
[9887] = {ID=9887,Desc="女技师"},
[9888] = {ID=9888,Desc="女人和狗"},
[9889] = {ID=9889,Desc="女任职名"},
[9890] = {ID=9890,Desc="女上门"},
[9891] = {ID=9891,Desc="鸥之歌"},
[9892] = {ID=9892,Desc="拍肩型"},
[9893] = {ID=9893,Desc="牌分析"},
[9894] = {ID=9894,Desc="牌技网"},
[9895] = {ID=9895,Desc="炮的小蜜"},
[9896] = {ID=9896,Desc="陪考枪"},
[9897] = {ID=9897,Desc="配有消"},
[9898] = {ID=9898,Desc="嫖俄罗"},
[9899] = {ID=9899,Desc="嫖鸡"},
[9900] = {ID=9900,Desc="平惨案"},
[9901] = {ID=9901,Desc="平叫到床"},
[9902] = {ID=9902,Desc="仆不怕饮"},
[9903] = {ID=9903,Desc="普通嘌"},
[9904] = {ID=9904,Desc="期货配"},
[9905] = {ID=9905,Desc="奇迹的黄"},
[9906] = {ID=9906,Desc="奇淫散"},
[9907] = {ID=9907,Desc="骑单车出"},
[9908] = {ID=9908,Desc="氣槍"},
[9909] = {ID=9909,Desc="钱三字经"},
[9910] = {ID=9910,Desc="枪出售"},
[9911] = {ID=9911,Desc="枪的参"},
[9912] = {ID=9912,Desc="枪的分"},
[9913] = {ID=9913,Desc="枪的结"},
[9914] = {ID=9914,Desc="枪的制"},
[9915] = {ID=9915,Desc="枪货到"},
[9916] = {ID=9916,Desc="枪手队"},
[9917] = {ID=9917,Desc="枪手网"},
[9918] = {ID=9918,Desc="枪销售"},
[9919] = {ID=9919,Desc="枪械制"},
[9920] = {ID=9920,Desc="枪子弹"},
[9921] = {ID=9921,Desc="强权政府"},
[9922] = {ID=9922,Desc="抢其火炬"},
[9923] = {ID=9923,Desc="切听器"},
[9924] = {ID=9924,Desc="禽流感了"},
[9925] = {ID=9925,Desc="勤捞致"},
[9926] = {ID=9926,Desc="氢弹手"},
[9927] = {ID=9927,Desc="清除负面"},
[9928] = {ID=9928,Desc="清純壆"},
[9929] = {ID=9929,Desc="情聊天室"},
[9930] = {ID=9930,Desc="情妹妹"},
[9931] = {ID=9931,Desc="情视频"},
[9932] = {ID=9932,Desc="情自拍"},
[9933] = {ID=9933,Desc="氰化钾"},
[9934] = {ID=9934,Desc="氰化钠"},
[9935] = {ID=9935,Desc="请集会"},
[9936] = {ID=9936,Desc="请示威"},
[9937] = {ID=9937,Desc="请愿"},
[9938] = {ID=9938,Desc="琼花问"},
[9939] = {ID=9939,Desc="区的雷人"},
[9940] = {ID=9940,Desc="娶韩国"},
[9941] = {ID=9941,Desc="全真证"},
[9942] = {ID=9942,Desc="群奸暴"},
[9943] = {ID=9943,Desc="群起抗暴"},
[9944] = {ID=9944,Desc="群体性事"},
[9945] = {ID=9945,Desc="惹的国"},
[9946] = {ID=9946,Desc="人权律"},
[9947] = {ID=9947,Desc="人体艺"},
[9948] = {ID=9948,Desc="人游行"},
[9949] = {ID=9949,Desc="人在云上"},
[9950] = {ID=9950,Desc="人真钱"},
[9951] = {ID=9951,Desc="认牌绝"},
[9952] = {ID=9952,Desc="任于斯国"},
[9953] = {ID=9953,Desc="柔胸粉"},
[9954] = {ID=9954,Desc="如厕死"},
[9955] = {ID=9955,Desc="软弱的国"},
[9956] = {ID=9956,Desc="赛后骚"},
[9957] = {ID=9957,Desc="三挫"},
[9958] = {ID=9958,Desc="三秒倒"},
[9959] = {ID=9959,Desc="三网友"},
[9960] = {ID=9960,Desc="三唑"},
[9961] = {ID=9961,Desc="骚妇"},
[9962] = {ID=9962,Desc="骚嘴"},
[9963] = {ID=9963,Desc="扫了爷爷"},
[9964] = {ID=9964,Desc="色妹妹"},
[9965] = {ID=9965,Desc="色视频"},
[9966] = {ID=9966,Desc="色小说"},
[9967] = {ID=9967,Desc="杀指南"},
[9968] = {ID=9968,Desc="山涉黑"},
[9969] = {ID=9969,Desc="煽动不明"},
[9970] = {ID=9970,Desc="煽动群众"},
[9971] = {ID=9971,Desc="上门激"},
[9972] = {ID=9972,Desc="烧公安局"},
[9973] = {ID=9973,Desc="烧瓶的"},
[9974] = {ID=9974,Desc="韶关斗"},
[9975] = {ID=9975,Desc="韶关玩"},
[9976] = {ID=9976,Desc="韶关旭"},
[9977] = {ID=9977,Desc="射网枪"},
[9978] = {ID=9978,Desc="涉嫌抄袭"},
[9979] = {ID=9979,Desc="深喉冰"},
[9980] = {ID=9980,Desc="神七假"},
[9981] = {ID=9981,Desc="神韵艺术"},
[9982] = {ID=9982,Desc="生被砍"},
[9983] = {ID=9983,Desc="生踩踏"},
[9984] = {ID=9984,Desc="生肖中特"},
[9985] = {ID=9985,Desc="圣战不息"},
[9986] = {ID=9986,Desc="盛行在舞"},
[9987] = {ID=9987,Desc="尸博"},
[9988] = {ID=9988,Desc="失身水"},
[9989] = {ID=9989,Desc="失意药"},
[9990] = {ID=9990,Desc="狮子旗"},
[9991] = {ID=9991,Desc="十八等"},
[9992] = {ID=9992,Desc="十大谎"},
[9993] = {ID=9993,Desc="十大禁"},
[9994] = {ID=9994,Desc="十个预言"},
[9995] = {ID=9995,Desc="十类人不"},
[9996] = {ID=9996,Desc="十七大幕"},
[9997] = {ID=9997,Desc="实毕业证"},
[9998] = {ID=9998,Desc="实体娃"},
[9999] = {ID=9999,Desc="实学历文"},
[10000] = {ID=10000,Desc="士康事件"},
[10001] = {ID=10001,Desc="式粉推"},
[10002] = {ID=10002,Desc="视解密"},
[10003] = {ID=10003,Desc="是躲猫"},
[10004] = {ID=10004,Desc="手变牌"},
[10005] = {ID=10005,Desc="手答案"},
[10006] = {ID=10006,Desc="手狗"},
[10007] = {ID=10007,Desc="手机跟"},
[10008] = {ID=10008,Desc="手机监"},
[10009] = {ID=10009,Desc="手机窃"},
[10010] = {ID=10010,Desc="手机追"},
[10011] = {ID=10011,Desc="手拉鸡"},
[10012] = {ID=10012,Desc="手木仓"},
[10013] = {ID=10013,Desc="手槍"},
[10014] = {ID=10014,Desc="守所死法"},
[10015] = {ID=10015,Desc="售步枪"},
[10016] = {ID=10016,Desc="售纯度"},
[10017] = {ID=10017,Desc="售单管"},
[10018] = {ID=10018,Desc="售弹簧刀"},
[10019] = {ID=10019,Desc="售防身"},
[10020] = {ID=10020,Desc="售狗子"},
[10021] = {ID=10021,Desc="售虎头"},
[10022] = {ID=10022,Desc="售火药"},
[10023] = {ID=10023,Desc="售假币"},
[10024] = {ID=10024,Desc="售健卫"},
[10025] = {ID=10025,Desc="售军用"},
[10026] = {ID=10026,Desc="售猎枪"},
[10027] = {ID=10027,Desc="售氯胺"},
[10028] = {ID=10028,Desc="售麻醉"},
[10029] = {ID=10029,Desc="售冒名"},
[10030] = {ID=10030,Desc="售枪支"},
[10031] = {ID=10031,Desc="售热武"},
[10032] = {ID=10032,Desc="售三棱"},
[10033] = {ID=10033,Desc="售手枪"},
[10034] = {ID=10034,Desc="售五四"},
[10035] = {ID=10035,Desc="售信用"},
[10036] = {ID=10036,Desc="售一元硬"},
[10037] = {ID=10037,Desc="售子弹"},
[10038] = {ID=10038,Desc="售左轮"},
[10039] = {ID=10039,Desc="书办理"},
[10040] = {ID=10040,Desc="术牌具"},
[10041] = {ID=10041,Desc="双管立"},
[10042] = {ID=10042,Desc="双管平"},
[10043] = {ID=10043,Desc="水阎王"},
[10044] = {ID=10044,Desc="丝护士"},
[10045] = {ID=10045,Desc="丝情侣"},
[10046] = {ID=10046,Desc="丝袜保"},
[10047] = {ID=10047,Desc="丝袜恋"},
[10048] = {ID=10048,Desc="丝袜美"},
[10049] = {ID=10049,Desc="丝袜妹"},
[10050] = {ID=10050,Desc="丝袜网"},
[10051] = {ID=10051,Desc="丝足按"},
[10052] = {ID=10052,Desc="司长期有"},
[10053] = {ID=10053,Desc="司法黑"},
[10054] = {ID=10054,Desc="私房写真"},
[10055] = {ID=10055,Desc="死法分布"},
[10056] = {ID=10056,Desc="死要见毛"},
[10057] = {ID=10057,Desc="四博会"},
[10058] = {ID=10058,Desc="四大扯"},
[10059] = {ID=10059,Desc="四小码"},
[10060] = {ID=10060,Desc="苏家屯集"},
[10061] = {ID=10061,Desc="诉讼集团"},
[10062] = {ID=10062,Desc="素女心"},
[10063] = {ID=10063,Desc="速代办"},
[10064] = {ID=10064,Desc="速取证"},
[10065] = {ID=10065,Desc="酸羟亚胺"},
[10066] = {ID=10066,Desc="蹋纳税"},
[10067] = {ID=10067,Desc="太王四神"},
[10068] = {ID=10068,Desc="泰兴幼"},
[10069] = {ID=10069,Desc="泰兴镇中"},
[10070] = {ID=10070,Desc="泰州幼"},
[10071] = {ID=10071,Desc="贪官也辛"},
[10072] = {ID=10072,Desc="探测狗"},
[10073] = {ID=10073,Desc="涛共产"},
[10074] = {ID=10074,Desc="涛一样胡"},
[10075] = {ID=10075,Desc="特工资"},
[10076] = {ID=10076,Desc="特上门"},
[10077] = {ID=10077,Desc="体透视镜"},
[10078] = {ID=10078,Desc="替人体"},
[10079] = {ID=10079,Desc="天朝特"},
[10080] = {ID=10080,Desc="天推广歌"},
[10081] = {ID=10081,Desc="田罢工"},
[10082] = {ID=10082,Desc="田田桑"},
[10083] = {ID=10083,Desc="田停工"},
[10084] = {ID=10084,Desc="庭保养"},
[10085] = {ID=10085,Desc="庭审直播"},
[10086] = {ID=10086,Desc="通钢总经"},
[10087] = {ID=10087,Desc="偷電器"},
[10088] = {ID=10088,Desc="偷肃贪"},
[10089] = {ID=10089,Desc="偷听器"},
[10090] = {ID=10090,Desc="偷偷贪"},
[10091] = {ID=10091,Desc="头双管"},
[10092] = {ID=10092,Desc="透视功能"},
[10093] = {ID=10093,Desc="透视镜"},
[10094] = {ID=10094,Desc="透视扑"},
[10095] = {ID=10095,Desc="透视器"},
[10096] = {ID=10096,Desc="透视药"},
[10097] = {ID=10097,Desc="透视仪"},
[10098] = {ID=10098,Desc="秃鹰汽"},
[10099] = {ID=10099,Desc="突破网路"},
[10100] = {ID=10100,Desc="推油按"},
[10101] = {ID=10101,Desc="脱衣艳"},
[10102] = {ID=10102,Desc="瓦斯手"},
[10103] = {ID=10103,Desc="袜按摩"},
[10104] = {ID=10104,Desc="外透视镜"},
[10105] = {ID=10105,Desc="外围赌球"},
[10106] = {ID=10106,Desc="湾版假"},
[10107] = {ID=10107,Desc="万能钥匙"},
[10108] = {ID=10108,Desc="万人骚动"},
[10109] = {ID=10109,Desc="王立军"},
[10110] = {ID=10110,Desc="王益案"},
[10111] = {ID=10111,Desc="网民案"},
[10112] = {ID=10112,Desc="网民获刑"},
[10113] = {ID=10113,Desc="网民诬"},
[10114] = {ID=10114,Desc="微型摄像"},
[10115] = {ID=10115,Desc="围攻警"},
[10116] = {ID=10116,Desc="围攻上海"},
[10117] = {ID=10117,Desc="维汉员"},
[10118] = {ID=10118,Desc="维权基"},
[10119] = {ID=10119,Desc="维权人"},
[10120] = {ID=10120,Desc="维权谈"},
[10121] = {ID=10121,Desc="委坐船"},
[10122] = {ID=10122,Desc="谓的和谐"},
[10123] = {ID=10123,Desc="温切斯特"},
[10124] = {ID=10124,Desc="温影帝"},
[10125] = {ID=10125,Desc="瘟加饱"},
[10126] = {ID=10126,Desc="瘟假饱"},
[10127] = {ID=10127,Desc="文凭证"},
[10128] = {ID=10128,Desc="文强"},
[10129] = {ID=10129,Desc="纹了毛"},
[10130] = {ID=10130,Desc="闻被控制"},
[10131] = {ID=10131,Desc="闻封锁"},
[10132] = {ID=10132,Desc="瓮安"},
[10133] = {ID=10133,Desc="我的西域"},
[10134] = {ID=10134,Desc="我搞台独"},
[10135] = {ID=10135,Desc="乌蝇水"},
[10136] = {ID=10136,Desc="无码专"},
[10137] = {ID=10137,Desc="五套功"},
[10138] = {ID=10138,Desc="午夜电"},
[10139] = {ID=10139,Desc="午夜极"},
[10140] = {ID=10140,Desc="武警暴"},
[10141] = {ID=10141,Desc="武警殴"},
[10142] = {ID=10142,Desc="武警已增"},
[10143] = {ID=10143,Desc="务员答案"},
[10144] = {ID=10144,Desc="务员考试"},
[10145] = {ID=10145,Desc="雾型迷"},
[10146] = {ID=10146,Desc="西藏限"},
[10147] = {ID=10147,Desc="西服进去"},
[10148] = {ID=10148,Desc="希脏"},
[10149] = {ID=10149,Desc="习进平"},
[10150] = {ID=10150,Desc="习晋平"},
[10151] = {ID=10151,Desc="席复活"},
[10152] = {ID=10152,Desc="席临终前"},
[10153] = {ID=10153,Desc="席指着护"},
[10154] = {ID=10154,Desc="洗澡死"},
[10155] = {ID=10155,Desc="喜贪赃"},
[10156] = {ID=10156,Desc="先烈纷纷"},
[10157] = {ID=10157,Desc="现大地震"},
[10158] = {ID=10158,Desc="现金投注"},
[10159] = {ID=10159,Desc="线透视镜"},
[10160] = {ID=10160,Desc="限制言"},
[10161] = {ID=10161,Desc="陷害案"},
[10162] = {ID=10162,Desc="陷害罪"},
[10163] = {ID=10163,Desc="相自首"},
[10164] = {ID=10164,Desc="香港论坛"},
[10165] = {ID=10165,Desc="香港一类"},
[10166] = {ID=10166,Desc="香港总彩"},
[10167] = {ID=10167,Desc="硝化甘"},
[10168] = {ID=10168,Desc="校骚乱"},
[10169] = {ID=10169,Desc="协晃悠"},
[10170] = {ID=10170,Desc="写两会"},
[10171] = {ID=10171,Desc="泄漏的内"},
[10172] = {ID=10172,Desc="新建户"},
[10173] = {ID=10173,Desc="新疆叛"},
[10174] = {ID=10174,Desc="新疆限"},
[10175] = {ID=10175,Desc="新金瓶"},
[10176] = {ID=10176,Desc="信访专班"},
[10177] = {ID=10177,Desc="信接收器"},
[10178] = {ID=10178,Desc="兴中心幼"},
[10179] = {ID=10179,Desc="星上门"},
[10180] = {ID=10180,Desc="行长王益"},
[10181] = {ID=10181,Desc="形透视镜"},
[10182] = {ID=10182,Desc="型手枪"},
[10183] = {ID=10183,Desc="姓忽悠"},
[10184] = {ID=10184,Desc="幸运码"},
[10185] = {ID=10185,Desc="性爱日"},
[10186] = {ID=10186,Desc="性福情"},
[10187] = {ID=10187,Desc="性感少"},
[10188] = {ID=10188,Desc="性推广歌"},
[10189] = {ID=10189,Desc="胸主席"},
[10190] = {ID=10190,Desc="徐玉元"},
[10191] = {ID=10191,Desc="学骚乱"},
[10192] = {ID=10192,Desc="学位證"},
[10193] = {ID=10193,Desc="丫与王益"},
[10194] = {ID=10194,Desc="烟感器"},
[10195] = {ID=10195,Desc="严晓玲"},
[10196] = {ID=10196,Desc="言被劳教"},
[10197] = {ID=10197,Desc="言论罪"},
[10198] = {ID=10198,Desc="盐酸曲"},
[10199] = {ID=10199,Desc="恙虫病"},
[10200] = {ID=10200,Desc="姚明进去"},
[10201] = {ID=10201,Desc="要人权"},
[10202] = {ID=10202,Desc="要射精了"},
[10203] = {ID=10203,Desc="要泄了"},
[10204] = {ID=10204,Desc="夜激情"},
[10205] = {ID=10205,Desc="液体炸"},
[10206] = {ID=10206,Desc="一小撮别"},
[10207] = {ID=10207,Desc="遗情书"},
[10208] = {ID=10208,Desc="蚁力神"},
[10209] = {ID=10209,Desc="益关注组"},
[10210] = {ID=10210,Desc="益受贿"},
[10211] = {ID=10211,Desc="阴间来电"},
[10212] = {ID=10212,Desc="淫魔舞"},
[10213] = {ID=10213,Desc="淫情女"},
[10214] = {ID=10214,Desc="淫肉"},
[10215] = {ID=10215,Desc="淫騷妹"},
[10216] = {ID=10216,Desc="淫兽学"},
[10217] = {ID=10217,Desc="隐形耳"},
[10218] = {ID=10218,Desc="隐形喷剂"},
[10219] = {ID=10219,Desc="应子弹"},
[10220] = {ID=10220,Desc="婴儿命"},
[10221] = {ID=10221,Desc="咏妓"},
[10222] = {ID=10222,Desc="用手枪"},
[10223] = {ID=10223,Desc="幽谷三"},
[10224] = {ID=10224,Desc="游精佑"},
[10225] = {ID=10225,Desc="有奶不一"},
[10226] = {ID=10226,Desc="右转是政"},
[10227] = {ID=10227,Desc="幼齿类"},
[10228] = {ID=10228,Desc="娱乐透视"},
[10229] = {ID=10229,Desc="愚民同"},
[10230] = {ID=10230,Desc="愚民政"},
[10231] = {ID=10231,Desc="与狗性"},
[10232] = {ID=10232,Desc="育部女官"},
[10233] = {ID=10233,Desc="冤民大"},
[10234] = {ID=10234,Desc="鸳鸯洗"},
[10235] = {ID=10235,Desc="园惨案"},
[10236] = {ID=10236,Desc="园发生砍"},
[10237] = {ID=10237,Desc="园砍杀"},
[10238] = {ID=10238,Desc="园凶杀"},
[10239] = {ID=10239,Desc="园血案"},
[10240] = {ID=10240,Desc="原一九五七"},
[10241] = {ID=10241,Desc="原装弹"},
[10242] = {ID=10242,Desc="袁腾飞"},
[10243] = {ID=10243,Desc="晕倒型"},
[10244] = {ID=10244,Desc="韵徐娘"},
[10245] = {ID=10245,Desc="遭便衣"},
[10246] = {ID=10246,Desc="遭到警"},
[10247] = {ID=10247,Desc="遭警察"},
[10248] = {ID=10248,Desc="遭武警"},
[10249] = {ID=10249,Desc="择油录"},
[10250] = {ID=10250,Desc="炸弹教"},
[10251] = {ID=10251,Desc="炸弹遥控"},
[10252] = {ID=10252,Desc="炸广州"},
[10253] = {ID=10253,Desc="炸立交"},
[10254] = {ID=10254,Desc="炸药的制"},
[10255] = {ID=10255,Desc="炸药配"},
[10256] = {ID=10256,Desc="炸药制"},
[10257] = {ID=10257,Desc="找枪手"},
[10258] = {ID=10258,Desc="找援交"},
[10259] = {ID=10259,Desc="找政法委副"},
[10260] = {ID=10260,Desc="针刺案"},
[10261] = {ID=10261,Desc="针刺伤"},
[10262] = {ID=10262,Desc="针刺事"},
[10263] = {ID=10263,Desc="针刺死"},
[10264] = {ID=10264,Desc="真钱斗地"},
[10265] = {ID=10265,Desc="真钱投注"},
[10266] = {ID=10266,Desc="真实文凭"},
[10267] = {ID=10267,Desc="真实资格"},
[10268] = {ID=10268,Desc="震惊一个民"},
[10269] = {ID=10269,Desc="震其国土"},
[10270] = {ID=10270,Desc="证到付款"},
[10271] = {ID=10271,Desc="证件办"},
[10272] = {ID=10272,Desc="证件集团"},
[10273] = {ID=10273,Desc="证生成器"},
[10274] = {ID=10274,Desc="证书办"},
[10275] = {ID=10275,Desc="证一次性"},
[10276] = {ID=10276,Desc="政府操"},
[10277] = {ID=10277,Desc="政论区"},
[10278] = {ID=10278,Desc="證件"},
[10279] = {ID=10279,Desc="植物冰"},
[10280] = {ID=10280,Desc="殖器护"},
[10281] = {ID=10281,Desc="指纹考勤"},
[10282] = {ID=10282,Desc="指纹膜"},
[10283] = {ID=10283,Desc="指纹套"},
[10284] = {ID=10284,Desc="至国家高"},
[10285] = {ID=10285,Desc="志不愿跟"},
[10286] = {ID=10286,Desc="制服诱"},
[10287] = {ID=10287,Desc="制手枪"},
[10288] = {ID=10288,Desc="制证定金"},
[10289] = {ID=10289,Desc="制作证件"},
[10290] = {ID=10290,Desc="中的班禅"},
[10291] = {ID=10291,Desc="中共黑"},
[10292] = {ID=10292,Desc="中国不强"},
[10293] = {ID=10293,Desc="种公务员"},
[10294] = {ID=10294,Desc="种学历证"},
[10295] = {ID=10295,Desc="众像羔"},
[10296] = {ID=10296,Desc="州惨案"},
[10297] = {ID=10297,Desc="州大批贪"},
[10298] = {ID=10298,Desc="州三箭"},
[10299] = {ID=10299,Desc="宙最高法"},
[10300] = {ID=10300,Desc="昼将近"},
[10301] = {ID=10301,Desc="主席忏"},
[10302] = {ID=10302,Desc="住英国房"},
[10303] = {ID=10303,Desc="助考网"},
[10304] = {ID=10304,Desc="专业办理"},
[10305] = {ID=10305,Desc="专业代"},
[10306] = {ID=10306,Desc="专业代写"},
[10307] = {ID=10307,Desc="专业助"},
[10308] = {ID=10308,Desc="转是政府"},
[10309] = {ID=10309,Desc="赚钱资料"},
[10310] = {ID=10310,Desc="装弹甲"},
[10311] = {ID=10311,Desc="装枪套"},
[10312] = {ID=10312,Desc="装消音"},
[10313] = {ID=10313,Desc="着护士的胸"},
[10314] = {ID=10314,Desc="着涛哥"},
[10315] = {ID=10315,Desc="姿不对死"},
[10316] = {ID=10316,Desc="资格證"},
[10317] = {ID=10317,Desc="资料泄"},
[10318] = {ID=10318,Desc="梓健特药"},
[10319] = {ID=10319,Desc="字牌汽"},
[10320] = {ID=10320,Desc="自己找枪"},
[10321] = {ID=10321,Desc="自慰用"},
[10322] = {ID=10322,Desc="自由圣"},
[10323] = {ID=10323,Desc="自由亚"},
[10324] = {ID=10324,Desc="总会美女"},
[10325] = {ID=10325,Desc="足球玩法"},
[10326] = {ID=10326,Desc="最牛公安"},
[10327] = {ID=10327,Desc="醉钢枪"},
[10328] = {ID=10328,Desc="醉迷药"},
[10329] = {ID=10329,Desc="醉乙醚"},
[10330] = {ID=10330,Desc="尊爵粉"},
[10331] = {ID=10331,Desc="左转是政"},
[10332] = {ID=10332,Desc="作各种证"},
[10333] = {ID=10333,Desc="作硝化甘"},
[10334] = {ID=10334,Desc="唑仑"},
[10335] = {ID=10335,Desc="做爱小"},
[10336] = {ID=10336,Desc="做原子弹"},
[10337] = {ID=10337,Desc="做证件"},
[10338] = {ID=10338,Desc="康师傅"},
[10339] = {ID=10339,Desc="面瘫胡"},
[10340] = {ID=10340,Desc="六扇门"},
[10341] = {ID=10341,Desc="水工系"},
[10342] = {ID=10342,Desc="天线宝"},
[10343] = {ID=10343,Desc="江小鱼"},
[10344] = {ID=10344,Desc="方便面+下架"},
[10345] = {ID=10345,Desc="轮胎+天线"},
[10346] = {ID=10346,Desc="习+太子"},
[10347] = {ID=10347,Desc="兵变"},
[10348] = {ID=10348,Desc="zhou"},
[10349] = {ID=10349,Desc="ZYK"},
[10350] = {ID=10350,Desc="周YK"},
[10351] = {ID=10351,Desc="胡一刀"},
[10352] = {ID=10352,Desc="帝都"},
[10353] = {ID=10353,Desc="康师傅+下架"},
[10354] = {ID=10354,Desc="王丽娟+护士长"},
[10355] = {ID=10355,Desc="番号不明部队"},
[10356] = {ID=10356,Desc="天线宝宝+康师傅"},
[10357] = {ID=10357,Desc="天线宝宝+方便面"},
[10358] = {ID=10358,Desc="天线宝宝+轮胎"},
[10359] = {ID=10359,Desc="锦湖轮胎"},
[10360] = {ID=10360,Desc="锦胡轮胎"},
[10361] = {ID=10361,Desc="京城+内斗"},
[10362] = {ID=10362,Desc="北京+内斗"},
[10363] = {ID=10363,Desc="中共+内斗"},
[10364] = {ID=10364,Desc="3月"},
[10365] = {ID=10365,Desc="北京+昨晚"},
[10366] = {ID=10366,Desc="北京+大事"},
[10367] = {ID=10367,Desc="北京+枪"},
[10368] = {ID=10368,Desc="领导层"},
[10369] = {ID=10369,Desc="北京+出事"},
[10370] = {ID=10370,Desc="军车如林"},
[10371] = {ID=10371,Desc="正规军调入"},
[10372] = {ID=10372,Desc="北京高层"},
[10373] = {ID=10373,Desc="邓立群"},
[10374] = {ID=10374,Desc="立军"},
[10375] = {ID=10375,Desc="BXL"},
[10376] = {ID=10376,Desc="boxilai"},
[10377] = {ID=10377,Desc="熙来"},
[10378] = {ID=10378,Desc="西来"},
[10379] = {ID=10379,Desc="谷开来"},
[10380] = {ID=10380,Desc="查身份证"},
[10381] = {ID=10381,Desc="北四环+车祸"},
[10382] = {ID=10382,Desc="保福寺+车祸"},
[10383] = {ID=10383,Desc="法拉利"},
[10384] = {ID=10384,Desc="丁家班"},
[10385] = {ID=10385,Desc="李庄事件"},
[10386] = {ID=10386,Desc="章沁生"},
[10387] = {ID=10387,Desc="马晓军"},
[10388] = {ID=10388,Desc="税正宽"},
[10389] = {ID=10389,Desc="新疆+砍杀事件"},
[10390] = {ID=10390,Desc="叶城"},
[10391] = {ID=10391,Desc="WLJ"},
[10392] = {ID=10392,Desc="何厚铧"},
[10393] = {ID=10393,Desc="黄明"},
[10394] = {ID=10394,Desc="李颖"},
[10395] = {ID=10395,Desc="38军"},
[10396] = {ID=10396,Desc="大活"},
[10397] = {ID=10397,Desc="瘦腿袜"},
[10398] = {ID=10398,Desc="不厚"},
[10399] = {ID=10399,Desc="姜维平"},
[10400] = {ID=10400,Desc="王立军+公开信"},
[10401] = {ID=10401,Desc="黄奇帆"},
[10402] = {ID=10402,Desc="邱进"},
[10403] = {ID=10403,Desc="保护性拆除+临时性强奸"},
[10404] = {ID=10404,Desc="平西王"},
[10405] = {ID=10405,Desc="来俊臣"},
[10406] = {ID=10406,Desc="薄督"},
[10407] = {ID=10407,Desc="成都美领馆"},
[10408] = {ID=10408,Desc="美领馆"},
[10409] = {ID=10409,Desc="政治庇护"},
[10410] = {ID=10410,Desc="叙利亚+紧急声明"},
[10411] = {ID=10411,Desc="盲人律师"},
[10412] = {ID=10412,Desc="刘信达"},
[10413] = {ID=10413,Desc="甘孜"},
[10414] = {ID=10414,Desc="阿坝"},
[10415] = {ID=10415,Desc="活埋+名单"},
[10416] = {ID=10416,Desc="去国声明"},
[10417] = {ID=10417,Desc="网络评论员"},
[10418] = {ID=10418,Desc="李思思男友"},
[10419] = {ID=10419,Desc="薄熙来"},
[10420] = {ID=10420,Desc="七周年"},
[10421] = {ID=10421,Desc="7周年"},
[10422] = {ID=10422,Desc="艾晓明"},
[10423] = {ID=10423,Desc="暴露"},
[10424] = {ID=10424,Desc="宪政民主"},
[10425] = {ID=10425,Desc="宗教+迫害"},
[10426] = {ID=10426,Desc="同胞书"},
[10427] = {ID=10427,Desc="钱小芊"},
[10428] = {ID=10428,Desc="互联网信息办公室"},
[10429] = {ID=10429,Desc="员老"},
[10430] = {ID=10430,Desc="国台办"},
[10431] = {ID=10431,Desc="黎庆洪+涉黑"},
[10432] = {ID=10432,Desc="十七届+中央"},
[10433] = {ID=10433,Desc="争鸣"},
[10434] = {ID=10434,Desc="温总"},
[10435] = {ID=10435,Desc="布局"},
[10436] = {ID=10436,Desc="军阀"},
[10437] = {ID=10437,Desc="删除负面信息"},
[10438] = {ID=10438,Desc="负面信息删除"},
[10439] = {ID=10439,Desc="网络删帖"},
[10440] = {ID=10440,Desc="影帝温"},
[10441] = {ID=10441,Desc="费孝通"},
[10442] = {ID=10442,Desc="余杰"},
[10443] = {ID=10443,Desc="截访"},
[10444] = {ID=10444,Desc="丁书苗"},
[10445] = {ID=10445,Desc="刘荻"},
[10446] = {ID=10446,Desc="独立中文笔会"},
[10447] = {ID=10447,Desc="黄雀行动"},
[10448] = {ID=10448,Desc="北高联"},
[10449] = {ID=10449,Desc="民主中国"},
[10450] = {ID=10450,Desc="黄丽满"},
[10451] = {ID=10451,Desc="朝鲜+政变"},
[10452] = {ID=10452,Desc="朝鲜+兵变"},
[10453] = {ID=10453,Desc="square"},
[10454] = {ID=10454,Desc="lichangchun"},
[10455] = {ID=10455,Desc="xijinping"},
[10456] = {ID=10456,Desc="煽动颠覆国家政权"},
[10457] = {ID=10457,Desc="中联办"},
[10458] = {ID=10458,Desc="智晟"},
[10459] = {ID=10459,Desc="港支联会"},
[10460] = {ID=10460,Desc="国政通"},
[10461] = {ID=10461,Desc="吕加平"},
[10462] = {ID=10462,Desc="江宋"},
[10463] = {ID=10463,Desc="江鬼"},
[10464] = {ID=10464,Desc="宪法35条"},
[10465] = {ID=10465,Desc="薛健婉"},
[10466] = {ID=10466,Desc="天与地"},
[10467] = {ID=10467,Desc="黄玉斌"},
[10468] = {ID=10468,Desc="天鹅绒革命"},
[10469] = {ID=10469,Desc="黄莉新"},
[10470] = {ID=10470,Desc="毛小平"},
[10471] = {ID=10471,Desc="第一书记"},
[10472] = {ID=10472,Desc="彭博社"},
[10473] = {ID=10473,Desc="张宏良"},
[10474] = {ID=10474,Desc="郑雁雄"},
[10475] = {ID=10475,Desc="枪声"},
[10476] = {ID=10476,Desc="感言"},
[10477] = {ID=10477,Desc="露丝"},
[10478] = {ID=10478,Desc="公民社会"},
[10479] = {ID=10479,Desc="厉以宁"},
[10480] = {ID=10480,Desc="周旭洲"},
[10481] = {ID=10481,Desc="WK"},
[10482] = {ID=10482,Desc="微博实名"},
[10483] = {ID=10483,Desc="党委书记"},
[10484] = {ID=10484,Desc="庄烈宏"},
[10485] = {ID=10485,Desc="国际特赦"},
[10486] = {ID=10486,Desc="汕尾"},
[10487] = {ID=10487,Desc="猝死"},
[10488] = {ID=10488,Desc="薛锦波"},
[10489] = {ID=10489,Desc="袭击"},
[10490] = {ID=10490,Desc="对峙"},
[10491] = {ID=10491,Desc="乌鸦"},
[10492] = {ID=10492,Desc="陆丰"},
[10493] = {ID=10493,Desc="wukan"},
[10494] = {ID=10494,Desc="一虎八奶"},
[10495] = {ID=10495,Desc="宪章"},
[10496] = {ID=10496,Desc="老妈蹄花"},
[10497] = {ID=10497,Desc="乌坎"},
[10498] = {ID=10498,Desc="四次测试)0"},
[10499] = {ID=10499,Desc="五次测试)1"},
[10500] = {ID=10500,Desc="乌尔"},
[10501] = {ID=10501,Desc="请用文明来说服我"},
[10502] = {ID=10502,Desc="占凡体"},
[10503] = {ID=10503,Desc="我在美国当市长助理"},
[10504] = {ID=10504,Desc="李群"},
[10505] = {ID=10505,Desc="元老"},
[10506] = {ID=10506,Desc="洗牌"},
[10507] = {ID=10507,Desc="僧人自焚"},
[10508] = {ID=10508,Desc="艾婶"},
[10509] = {ID=10509,Desc="共青团中央"},
[10510] = {ID=10510,Desc="习太子"},
[10511] = {ID=10511,Desc="习王储"},
[10512] = {ID=10512,Desc="忠党国"},
[10513] = {ID=10513,Desc="余慧文"},
[10514] = {ID=10514,Desc="郑恩宠"},
[10515] = {ID=10515,Desc="江氏常委"},
[10516] = {ID=10516,Desc="辛子陵"},
[10517] = {ID=10517,Desc="带路党"},
[10518] = {ID=10518,Desc="美分党"},
[10519] = {ID=10519,Desc="茉莉花革"},
[10520] = {ID=10520,Desc="Jasmine"},
[10521] = {ID=10521,Desc="北京+年终奖"},
[10522] = {ID=10522,Desc="裆中央"},
[10523] = {ID=10523,Desc="叶选平"},
[10524] = {ID=10524,Desc="胡海青"},
[10525] = {ID=10525,Desc="王荔蕻"},
[10526] = {ID=10526,Desc="冯正虎"},
[10527] = {ID=10527,Desc="王奉友"},
[10528] = {ID=10528,Desc="政治体制改革"},
[10529] = {ID=10529,Desc="内斗"},
[10530] = {ID=10530,Desc="火凤凰"},
[10531] = {ID=10531,Desc="八大类社会组织"},
[10532] = {ID=10532,Desc="副主席"},
[10533] = {ID=10533,Desc="黑监狱"},
[10534] = {ID=10534,Desc="冉匪"},
[10535] = {ID=10535,Desc="外蒙"},
[10536] = {ID=10536,Desc="邓朴方"},
[10537] = {ID=10537,Desc="北戴河会议"},
[10538] = {ID=10538,Desc="网评"},
[10539] = {ID=10539,Desc="老虎庙"},
[10540] = {ID=10540,Desc="开枪"},
[10541] = {ID=10541,Desc="派系"},
[10542] = {ID=10542,Desc="封锁"},
[10543] = {ID=10543,Desc="郭春平"},
[10544] = {ID=10544,Desc="令计划"},
[10545] = {ID=10545,Desc="警卫局"},
[10546] = {ID=10546,Desc="江系"},
[10547] = {ID=10547,Desc="胡系"},
[10548] = {ID=10548,Desc="西安爆炸"},
[10549] = {ID=10549,Desc="阳光时务"},
[10550] = {ID=10550,Desc="杜宪"},
[10551] = {ID=10551,Desc="薛飞"},
[10552] = {ID=10552,Desc="雪山狮子旗"},
[10553] = {ID=10553,Desc="火药配方"},
[10554] = {ID=10554,Desc="罢运"},
[10555] = {ID=10555,Desc="联名上书"},
[10556] = {ID=10556,Desc="艾瓜子"},
[10557] = {ID=10557,Desc="第二十三条"},
[10558] = {ID=10558,Desc="艾虎"},
[10559] = {ID=10559,Desc="艾ww"},
[10560] = {ID=10560,Desc="lama"},
[10561] = {ID=10561,Desc="dalai"},
[10562] = {ID=10562,Desc="葵花籽"},
[10563] = {ID=10563,Desc="刘先生"},
[10564] = {ID=10564,Desc="班子"},
[10565] = {ID=10565,Desc="吉林士兵"},
[10566] = {ID=10566,Desc="吉林战士"},
[10567] = {ID=10567,Desc="95式自动步枪"},
[10568] = {ID=10568,Desc="张新岩"},
[10569] = {ID=10569,Desc="李鑫鑫"},
[10570] = {ID=10570,Desc="林鹏汉"},
[10571] = {ID=10571,Desc="携枪出逃"},
[10572] = {ID=10572,Desc="正无"},
[10573] = {ID=10573,Desc="异见"},
[10574] = {ID=10574,Desc="胡星斗"},
[10575] = {ID=10575,Desc="国之利刃"},
[10576] = {ID=10576,Desc="弟弟睡了"},
[10577] = {ID=10577,Desc="高瑛"},
[10578] = {ID=10578,Desc="fakesheji"},
[10579] = {ID=10579,Desc="刘艳萍"},
[10580] = {ID=10580,Desc="路青"},
[10581] = {ID=10581,Desc="刘晓原"},
[10582] = {ID=10582,Desc="老艾"},
[10583] = {ID=10583,Desc="艾末末"},
[10584] = {ID=10584,Desc="艾借款"},
[10585] = {ID=10585,Desc="艾捐款"},
[10586] = {ID=10586,Desc="艾汇款"},
[10587] = {ID=10587,Desc="aiww"},
[10588] = {ID=10588,Desc="七宗罪"},
[10589] = {ID=10589,Desc="艾债主"},
[10590] = {ID=10590,Desc="草场地"},
[10591] = {ID=10591,Desc="艾神"},
[10592] = {ID=10592,Desc="幸福大街储蓄所"},
[10593] = {ID=10593,Desc="艾虎子"},
[10594] = {ID=10594,Desc="杜导正"},
[10595] = {ID=10595,Desc="democracy"},
[10596] = {ID=10596,Desc="cultural"},
[10597] = {ID=10597,Desc="culture"},
[10598] = {ID=10598,Desc="JMZ"},
[10599] = {ID=10599,Desc="蟹农场"},
[10600] = {ID=10600,Desc="蔡武"},
[10601] = {ID=10601,Desc="夏勇"},
[10602] = {ID=10602,Desc="BLOOD"},
[10603] = {ID=10603,Desc="换届"},
[10604] = {ID=10604,Desc="抗议"},
[10605] = {ID=10605,Desc="五毛"},
[10606] = {ID=10606,Desc="CLY"},
[10607] = {ID=10607,Desc="湖州抗税"},
[10608] = {ID=10608,Desc="被删除"},
[10609] = {ID=10609,Desc="jiangzemin"},
[10610] = {ID=10610,Desc="wubangguo"},
[10611] = {ID=10611,Desc="亚洲周刊"},
[10612] = {ID=10612,Desc="胡金滔"},
[10613] = {ID=10613,Desc="胡掏X"},
[10614] = {ID=10614,Desc="胡X掏"},
[10615] = {ID=10615,Desc="胡套X"},
[10616] = {ID=10616,Desc="胡X套"},
[10617] = {ID=10617,Desc="胡涛"},
[10618] = {ID=10618,Desc="胡X涛"},
[10619] = {ID=10619,Desc="胡紧X"},
[10620] = {ID=10620,Desc="胡X紧"},
[10621] = {ID=10621,Desc="刘四"},
[10622] = {ID=10622,Desc="liu四"},
[10623] = {ID=10623,Desc="bajiu"},
[10624] = {ID=10624,Desc="捌九"},
[10625] = {ID=10625,Desc="八玖"},
[10626] = {ID=10626,Desc="陆四"},
[10627] = {ID=10627,Desc="六肆"},
[10628] = {ID=10628,Desc="良心犯"},
[10629] = {ID=10629,Desc="瘟家保"},
[10630] = {ID=10630,Desc="瘟假报"},
[10631] = {ID=10631,Desc="温假报"},
[10632] = {ID=10632,Desc="温夹包"},
[10633] = {ID=10633,Desc="温佳宝"},
[10634] = {ID=10634,Desc="贾庆"},
[10635] = {ID=10635,Desc="胡锦X"},
[10636] = {ID=10636,Desc="温加"},
[10637] = {ID=10637,Desc="温家X"},
[10638] = {ID=10638,Desc="温宝宝"},
[10639] = {ID=10639,Desc="德江"},
[10640] = {ID=10640,Desc="近平"},
[10641] = {ID=10641,Desc="庆林"},
[10642] = {ID=10642,Desc="涛哥"},
[10643] = {ID=10643,Desc="家宝"},
[10644] = {ID=10644,Desc="克强"},
[10645] = {ID=10645,Desc="晓波"},
[10646] = {ID=10646,Desc="八大"},
[10647] = {ID=10647,Desc="因言获罪"},
[10648] = {ID=10648,Desc="自由民主"},
[10649] = {ID=10649,Desc="赵启正"},
[10650] = {ID=10650,Desc="织里"},
[10651] = {ID=10651,Desc="性浪"},
[10652] = {ID=10652,Desc="自由光诚"},
[10653] = {ID=10653,Desc="要有光"},
[10654] = {ID=10654,Desc="要有诚"},
[10655] = {ID=10655,Desc="冻尸骨村"},
[10656] = {ID=10656,Desc="东尸骨村"},
[10657] = {ID=10657,Desc="东师古"},
[10658] = {ID=10658,Desc="郭伙佳"},
[10659] = {ID=10659,Desc="占领中国"},
[10660] = {ID=10660,Desc="占领北京"},
[10661] = {ID=10661,Desc="占领上海"},
[10662] = {ID=10662,Desc="占领广州"},
[10663] = {ID=10663,Desc="占领西安"},
[10664] = {ID=10664,Desc="占领天津"},
[10665] = {ID=10665,Desc="占领重庆"},
[10666] = {ID=10666,Desc="占领乌鲁木齐"},
[10667] = {ID=10667,Desc="占领拉萨"},
[10668] = {ID=10668,Desc="占领武汉"},
[10669] = {ID=10669,Desc="占领南昌"},
[10670] = {ID=10670,Desc="占领福州"},
[10671] = {ID=10671,Desc="占领南京"},
[10672] = {ID=10672,Desc="占领大连"},
[10673] = {ID=10673,Desc="占领杭州"},
[10674] = {ID=10674,Desc="占领哈尔滨"},
[10675] = {ID=10675,Desc="占领成都"},
[10676] = {ID=10676,Desc="占领长沙"},
[10677] = {ID=10677,Desc="占领呼和浩特"},
[10678] = {ID=10678,Desc="占领海口"},
[10679] = {ID=10679,Desc="占领郑州"},
[10680] = {ID=10680,Desc="占领长春"},
[10681] = {ID=10681,Desc="占领沈阳"},
[10682] = {ID=10682,Desc="占领西宁"},
[10683] = {ID=10683,Desc="占领兰州"},
[10684] = {ID=10684,Desc="占领太原"},
[10685] = {ID=10685,Desc="占领昆明"},
[10686] = {ID=10686,Desc="占领石家庄"},
[10687] = {ID=10687,Desc="占领济南"},
[10688] = {ID=10688,Desc="占领南宁"},
[10689] = {ID=10689,Desc="占领银川"},
[10690] = {ID=10690,Desc="占领吉林"},
[10691] = {ID=10691,Desc="占领深圳"},
[10692] = {ID=10692,Desc="占领温州"},
[10693] = {ID=10693,Desc="占领青岛"},
[10694] = {ID=10694,Desc="占领中南海"},
[10695] = {ID=10695,Desc="占领金融街"},
[10696] = {ID=10696,Desc="占领王府井"},
[10697] = {ID=10697,Desc="新天地"},
[10698] = {ID=10698,Desc="长安街"},
[10699] = {ID=10699,Desc="西朝鲜"},
[10700] = {ID=10700,Desc="洛阳性奴"},
[10701] = {ID=10701,Desc="喀什"},
[10702] = {ID=10702,Desc="低俗屠夫"},
[10703] = {ID=10703,Desc="萧瀚"},
[10704] = {ID=10704,Desc="克拉玛依"},
[10705] = {ID=10705,Desc="张澜澜"},
[10706] = {ID=10706,Desc="坦克"},
[10707] = {ID=10707,Desc="龙应台"},
[10708] = {ID=10708,Desc="下台"},
[10709] = {ID=10709,Desc="朋党参政"},
[10710] = {ID=10710,Desc="工人党"},
[10711] = {ID=10711,Desc="党国"},
[10712] = {ID=10712,Desc="胡+温"},
[10713] = {ID=10713,Desc="广场"},
[10714] = {ID=10714,Desc="维稳"},
[10715] = {ID=10715,Desc="尉建行"},
[10716] = {ID=10716,Desc="九长老"},
[10717] = {ID=10717,Desc="九常委"},
[10718] = {ID=10718,Desc="敏感瓷"},
[10719] = {ID=10719,Desc="毛腊肉"},
[10720] = {ID=10720,Desc="土共"},
[10721] = {ID=10721,Desc="伊斯兰教"},
[10722] = {ID=10722,Desc="反华势力"},
[10723] = {ID=10723,Desc="一九八四"},
[10724] = {ID=10724,Desc="陈炳德"},
[10725] = {ID=10725,Desc="盛光祖"},
[10726] = {ID=10726,Desc="秦刚"},
[10727] = {ID=10727,Desc="沈国放"},
[10728] = {ID=10728,Desc="国务院副总理"},
[10729] = {ID=10729,Desc="国家副主席"},
[10730] = {ID=10730,Desc="李肇星"},
[10731] = {ID=10731,Desc="网络管理办公室"},
[10732] = {ID=10732,Desc="张高丽"},
[10733] = {ID=10733,Desc="孟学农"},
[10734] = {ID=10734,Desc="李鸿忠"},
[10735] = {ID=10735,Desc="郭金龙"},
[10736] = {ID=10736,Desc="刘奇葆"},
[10737] = {ID=10737,Desc="非暴力不合作"},
[10738] = {ID=10738,Desc="CCAV"},
[10739] = {ID=10739,Desc="蔡名照"},
[10740] = {ID=10740,Desc="陈光诚"},
[10741] = {ID=10741,Desc="滕彪"},
[10742] = {ID=10742,Desc="谭作人"},
[10743] = {ID=10743,Desc="五毛蛋"},
[10744] = {ID=10744,Desc="团派"},
[10745] = {ID=10745,Desc="5月35日"},
[10746] = {ID=10746,Desc="普京是你爹"},
[10747] = {ID=10747,Desc="特供"},
[10748] = {ID=10748,Desc="方滨兴"},
[10749] = {ID=10749,Desc="空椅子"},
[10750] = {ID=10750,Desc="坦克人"},
[10751] = {ID=10751,Desc="网监"},
[10752] = {ID=10752,Desc="真理部"},
[10753] = {ID=10753,Desc="国新办"},
[10754] = {ID=10754,Desc="高行健"},
[10755] = {ID=10755,Desc="长平"},
[10756] = {ID=10756,Desc="唯色"},
[10757] = {ID=10757,Desc="胡佳"},
[10758] = {ID=10758,Desc="炸弹"},
[10759] = {ID=10759,Desc="炸药"},
[10760] = {ID=10760,Desc="汪洋"},
[10761] = {ID=10761,Desc="薄瓜瓜"},
[10762] = {ID=10762,Desc="郑文"},
[10763] = {ID=10763,Desc="新京报"},
[10764] = {ID=10764,Desc="京华时报"},
[10765] = {ID=10765,Desc="京华"},
[10766] = {ID=10766,Desc="非正常死亡"},
[10767] = {ID=10767,Desc="px"},
[10768] = {ID=10768,Desc="散步"},
[10769] = {ID=10769,Desc="福佳"},
[10770] = {ID=10770,Desc="大连"},
[10771] = {ID=10771,Desc="敏感词"},
[10772] = {ID=10772,Desc="GFW"},
[10773] = {ID=10773,Desc="删帖"},
[10774] = {ID=10774,Desc="新闻自由"},
[10775] = {ID=10775,Desc="无锡招商城"},
[10776] = {ID=10776,Desc="卢俊卿"},
[10777] = {ID=10777,Desc="卢星宇"},
[10778] = {ID=10778,Desc="王青雷"},
[10779] = {ID=10779,Desc="埃及"},
[10780] = {ID=10780,Desc="茉莉花"},
[10781] = {ID=10781,Desc="爱未来"},
[10782] = {ID=10782,Desc="艾未未"},
[10783] = {ID=10783,Desc="艾未"},
[10784] = {ID=10784,Desc="艾胖子"},
[10785] = {ID=10785,Desc="新闻联播"},
[10786] = {ID=10786,Desc="重大新闻"},
[10787] = {ID=10787,Desc="解放军总医院"},
[10788] = {ID=10788,Desc=301},
[10789] = {ID=10789,Desc="华东医院"},
[10790] = {ID=10790,Desc="太上皇"},
[10791] = {ID=10791,Desc="三表"},
[10792] = {ID=10792,Desc="三表哥"},
[10793] = {ID=10793,Desc="江三表"},
[10794] = {ID=10794,Desc="癩蛤蟆"},
[10795] = {ID=10795,Desc="心肌梗塞"},
[10796] = {ID=10796,Desc="脑死亡"},
[10797] = {ID=10797,Desc="永垂不朽"},
[10798] = {ID=10798,Desc="五棵松"},
[10799] = {ID=10799,Desc="八宝山"},
[10800] = {ID=10800,Desc="前主席"},
[10801] = {ID=10801,Desc="前领导人"},
[10802] = {ID=10802,Desc="领导人"},
[10803] = {ID=10803,Desc="国家大事"},
[10804] = {ID=10804,Desc="江泽明"},
[10805] = {ID=10805,Desc="江民"},
[10806] = {ID=10806,Desc="毛泽民"},
[10807] = {ID=10807,Desc="江爷爷"},
[10808] = {ID=10808,Desc="姓江的"},
[10809] = {ID=10809,Desc="too"},
[10810] = {ID=10810,Desc="辣妹子辣"},
[10811] = {ID=10811,Desc="国母"},
[10812] = {ID=10812,Desc="江家"},
[10813] = {ID=10813,Desc="江上青"},
[10814] = {ID=10814,Desc="扬州中学"},
[10815] = {ID=10815,Desc="三江县"},
[10816] = {ID=10816,Desc="江心公园"},
[10817] = {ID=10817,Desc="扬子江"},
[10818] = {ID=10818,Desc="松花江"},
[10819] = {ID=10819,Desc="雅鲁藏布江"},
[10820] = {ID=10820,Desc="鸭绿江"},
[10821] = {ID=10821,Desc="黄浦江"},
[10822] = {ID=10822,Desc="澜沧江"},
[10823] = {ID=10823,Desc="两江论坛"},
[10824] = {ID=10824,Desc="江中药业"},
[10825] = {ID=10825,Desc="江中健胃消食片"},
[10826] = {ID=10826,Desc="江淮汽车"},
[10827] = {ID=10827,Desc="江铃汽车"},
[10828] = {ID=10828,Desc="江姐"},
[10829] = {ID=10829,Desc="潘长江"},
[10830] = {ID=10830,Desc="江映蓉"},
[10831] = {ID=10831,Desc="江美琪"},
[10832] = {ID=10832,Desc="江若琳"},
[10833] = {ID=10833,Desc="江语晨"},
[10834] = {ID=10834,Desc="江铠同"},
[10835] = {ID=10835,Desc="江讯"},
[10836] = {ID=10836,Desc="欧阳夏丹"},
[10837] = {ID=10837,Desc="罢课潮"},
[10838] = {ID=10838,Desc="祖国母亲"},
[10839] = {ID=10839,Desc="平反"},
[10840] = {ID=10840,Desc="8x8"},
[10841] = {ID=10841,Desc="08县长"},
[10842] = {ID=10842,Desc="江端仪"},
[10843] = {ID=10843,Desc="释清海"},
[10844] = {ID=10844,Desc="新抗联"},
[10845] = {ID=10845,Desc="64学运"},
[10846] = {ID=10846,Desc="64学潮"},
[10847] = {ID=10847,Desc="89学运"},
[10848] = {ID=10848,Desc="89民运"},
[10849] = {ID=10849,Desc="64运动"},
[10850] = {ID=10850,Desc="假庆淋"},
[10851] = {ID=10851,Desc="推翻共党"},
[10852] = {ID=10852,Desc="阴唇被插"},
[10853] = {ID=10853,Desc="中共暴政"},
[10854] = {ID=10854,Desc="突厥革命"},
[10855] = {ID=10855,Desc="三区革命"},
[10856] = {ID=10856,Desc="镇压图片"},
[10857] = {ID=10857,Desc="六四学运"},
[10858] = {ID=10858,Desc="六四学潮"},
[10859] = {ID=10859,Desc="八九学运"},
[10860] = {ID=10860,Desc="八九运动"},
[10861] = {ID=10861,Desc="中共下台"},
[10862] = {ID=10862,Desc="打倒中共"},
[10863] = {ID=10863,Desc="打倒共党"},
[10864] = {ID=10864,Desc="团派人马"},
[10865] = {ID=10865,Desc="李鹏病重"},
[10866] = {ID=10866,Desc="胡系人马"},
[10867] = {ID=10867,Desc="胡温政治"},
[10868] = {ID=10868,Desc="胡温政体"},
[10869] = {ID=10869,Desc="胡温核心"},
[10870] = {ID=10870,Desc="胡温暴政"},
[10871] = {ID=10871,Desc="推翻中共"},
[10872] = {ID=10872,Desc="中共伪政权"},
[10873] = {ID=10873,Desc="中国新民党"},
[10874] = {ID=10874,Desc="天安门情人"},
[10875] = {ID=10875,Desc="十二个春秋"},
[10876] = {ID=10876,Desc="共产党下台"},
[10877] = {ID=10877,Desc="推翻共产党"},
[10878] = {ID=10878,Desc="李克强接班"},
[10879] = {ID=10879,Desc="胡温接班人"},
[10880] = {ID=10880,Desc="多维新闻网"},
[10881] = {ID=10881,Desc="到市政府请愿"},
[10882] = {ID=10882,Desc="中共独裁暴政"},
[10883] = {ID=10883,Desc="团派政治明星"},
[10884] = {ID=10884,Desc="胡锦涛接班人"},
[10885] = {ID=10885,Desc="高勤荣"},
[10886] = {ID=10886,Desc="退共党"},
[10887] = {ID=10887,Desc="网民党"},
[10888] = {ID=10888,Desc="志愿兵"},
[10889] = {ID=10889,Desc="炸弹制造"},
[10890] = {ID=10890,Desc="炸弹制作"},
[10891] = {ID=10891,Desc="亚洲时报"},
[10892] = {ID=10892,Desc="干你全家"},
[10893] = {ID=10893,Desc="共贪党"},
[10894] = {ID=10894,Desc="胡海清"},
[10895] = {ID=10895,Desc="温云松"},
[10896] = {ID=10896,Desc="共惨党"},
[10897] = {ID=10897,Desc="共残党"},
[10898] = {ID=10898,Desc="胡温新政"},
[10899] = {ID=10899,Desc="广场上的血"},
[10900] = {ID=10900,Desc="广场上的热血"},
[10901] = {ID=10901,Desc="捌玖"},
[10902] = {ID=10902,Desc="郭泉"},
[10903] = {ID=10903,Desc="牧函"},
[10904] = {ID=10904,Desc="李锐"},
[10905] = {ID=10905,Desc="网评员"},
[10906] = {ID=10906,Desc="新左派"},
[10907] = {ID=10907,Desc="李源潮"},
[10908] = {ID=10908,Desc="公开信"},
[10909] = {ID=10909,Desc="十八大"},
[10910] = {ID=10910,Desc="王凤友"},
[10911] = {ID=10911,Desc="党产共"},
[10912] = {ID=10912,Desc="权力布局"},
[10913] = {ID=10913,Desc="ZHU所生!"},
[10914] = {ID=10914,Desc="tai"},
[10915] = {ID=10915,Desc="独立西藏"},
[10916] = {ID=10916,Desc="周名军"},
[10917] = {ID=10917,Desc="李现原"},
[10918] = {ID=10918,Desc="左不赔"},
[10919] = {ID=10919,Desc="方寿伟"},
[10920] = {ID=10920,Desc="秦逊辉"},
[10921] = {ID=10921,Desc="马继深"},
[10922] = {ID=10922,Desc="人权圣火"},
[10923] = {ID=10923,Desc="胡曾联手"},
[10924] = {ID=10924,Desc="胡曾合作"},
[10925] = {ID=10925,Desc="超越红墙"},
[10926] = {ID=10926,Desc="领跑第五代"},
[10927] = {ID=10927,Desc="胡曾江恶斗"},
[10928] = {ID=10928,Desc="炸了证监会"},
[10929] = {ID=10929,Desc="人民真实报"},
[10930] = {ID=10930,Desc="全球人文纪元"},
[10931] = {ID=10931,Desc="新世纪新闻网"},
[10932] = {ID=10932,Desc="毛党"},
[10933] = {ID=10933,Desc="高官互调"},
[10934] = {ID=10934,Desc="回汉纠纷"},
[10935] = {ID=10935,Desc="郑存柱"},
[10936] = {ID=10936,Desc="彭丽媛"},
[10937] = {ID=10937,Desc="古兰经"},
[10938] = {ID=10938,Desc="胡海峰"},
[10939] = {ID=10939,Desc="零八宪章"},
[10940] = {ID=10940,Desc="08宪章"},
[10941] = {ID=10941,Desc="打倒共产党"},
[10942] = {ID=10942,Desc="预测领导人"},
[10943] = {ID=10943,Desc="和谐社会"},
[10944] = {ID=10944,Desc="社HUI主义"},
[10945] = {ID=10945,Desc="中国政F"},
[10946] = {ID=10946,Desc="太垃JI"},
[10947] = {ID=10947,Desc="丁磊"},
[10948] = {ID=10948,Desc="西藏自由"},
[10949] = {ID=10949,Desc="网易sb"},
[10950] = {ID=10950,Desc="你妈B"},
[10951] = {ID=10951,Desc="你妈闭"},
[10952] = {ID=10952,Desc="冚家产"},
[10953] = {ID=10953,Desc="驴B"},
[10954] = {ID=10954,Desc="严禁词"},
[10955] = {ID=10955,Desc="邓不群"},
[10956] = {ID=10956,Desc="金歪日"},
[10957] = {ID=10957,Desc="新蜀山"},
[10958] = {ID=10958,Desc="赵总理"},
[10959] = {ID=10959,Desc="张阳德"},
[10960] = {ID=10960,Desc="文达学"},
[10961] = {ID=10961,Desc="裤衩党"},
[10962] = {ID=10962,Desc="茅厕洞"},
[10963] = {ID=10963,Desc="徐文库"},
[10964] = {ID=10964,Desc="张培莉"},
[10965] = {ID=10965,Desc="汪兆钧"},
[10966] = {ID=10966,Desc="袁依凡"},
[10967] = {ID=10967,Desc="董光峰"},
[10968] = {ID=10968,Desc="安魂网"},
[10969] = {ID=10969,Desc="刘林智"},
[10970] = {ID=10970,Desc="吴向忠"},
[10971] = {ID=10971,Desc="王建琪"},
[10972] = {ID=10972,Desc="令狐计划"},
[10973] = {ID=10973,Desc="自由圣火"},
[10974] = {ID=10974,Desc="政治老人"},
[10975] = {ID=10975,Desc="老人集团"},
[10976] = {ID=10976,Desc="仁吉旺姆"},
[10977] = {ID=10977,Desc="统一股市"},
[10978] = {ID=10978,Desc="领导新星"},
[10979] = {ID=10979,Desc="海外民运"},
[10980] = {ID=10980,Desc="官场日志"},
[10981] = {ID=10981,Desc="无界网络"},
[10982] = {ID=10982,Desc="阿波罗网"},
[10983] = {ID=10983,Desc="高官子女"},
[10984] = {ID=10984,Desc="当代八乱"},
[10985] = {ID=10985,Desc="参政传奇"},
[10986] = {ID=10986,Desc="中朝翻脸"},
[10987] = {ID=10987,Desc="610办公室"},
[10988] = {ID=10988,Desc="炸掉证监会"},
[10989] = {ID=10989,Desc="多党竞争"},
[10990] = {ID=10990,Desc="军队国家化"},
[10991] = {ID=10991,Desc="中国自由党"},
[10992] = {ID=10992,Desc="博讯新闻网"},
[10993] = {ID=10993,Desc="新八荣八耻"},
[10994] = {ID=10994,Desc="高层权力之争"},
[10995] = {ID=10995,Desc="梦幻西游私服"},
[10996] = {ID=10996,Desc="高干子弟名单"},
[10997] = {ID=10997,Desc="高官挥霍公款"},
[10998] = {ID=10998,Desc="推翻中国共产党"},
[10999] = {ID=10999,Desc="二\敏感词"},
[11000] = {ID=11000,Desc="袁鹰"},
[11001] = {ID=11001,Desc="贾甲"},
[11002] = {ID=11002,Desc="普选"},
[11003] = {ID=11003,Desc="胡总"},
[11004] = {ID=11004,Desc="景涛"},
[11005] = {ID=11005,Desc="李滨"},
[11006] = {ID=11006,Desc="老胡"},
[11007] = {ID=11007,Desc="邦国"},
[11008] = {ID=11008,Desc="党魁"},
[11009] = {ID=11009,Desc="王晨"},
[11010] = {ID=11010,Desc="大预言"},
[11011] = {ID=11011,Desc="辽宁帮"},
[11012] = {ID=11012,Desc="高智成"},
[11013] = {ID=11013,Desc="高志晟"},
[11014] = {ID=11014,Desc="王力利"},
[11015] = {ID=11015,Desc="买手枪"},
[11016] = {ID=11016,Desc="王志刚"},
[11017] = {ID=11017,Desc="人权奖"},
[11018] = {ID=11018,Desc="自救会"},
[11019] = {ID=11019,Desc="动态网"},
[11020] = {ID=11020,Desc="王安顺"},
[11021] = {ID=11021,Desc="新右派"},
[11022] = {ID=11022,Desc="马志鹏"},
[11023] = {ID=11023,Desc="文字狱"},
[11024] = {ID=11024,Desc="马列党"},
[11025] = {ID=11025,Desc="周正毅"},
[11026] = {ID=11026,Desc="温爷爷"},
[11027] = {ID=11027,Desc="桑德茲"},
[11028] = {ID=11028,Desc="胡书记"},
[11029] = {ID=11029,Desc="大昭寺"},
[11030] = {ID=11030,Desc="贺卫方"},
[11031] = {ID=11031,Desc="刘晓武"},
[11032] = {ID=11032,Desc="李世辉"},
[11033] = {ID=11033,Desc="陈一文"},
[11034] = {ID=11034,Desc="余秋雨"},
[11035] = {ID=11035,Desc="李国谅"},
[11036] = {ID=11036,Desc="瀛海镇"},
[11037] = {ID=11037,Desc="十九年前"},
[11038] = {ID=11038,Desc="整肃官场"},
[11039] = {ID=11039,Desc="齐鲁石化"},
[11040] = {ID=11040,Desc="西藏局势"},
[11041] = {ID=11041,Desc="维基百科"},
[11042] = {ID=11042,Desc="BBC中文网"},
[11043] = {ID=11043,Desc="德国之声"},
[11044] = {ID=11044,Desc="大赦国际"},
[11045] = {ID=11045,Desc="我草你妈"},
[11046] = {ID=11046,Desc="我操你妈"},
[11047] = {ID=11047,Desc="习近平"},
[11048] = {ID=11048,Desc="马凯"},
[11049] = {ID=11049,Desc="王岐山"},
[11050] = {ID=11050,Desc="王沪宁"},
[11051] = {ID=11051,Desc="刘云山"},
[11052] = {ID=11052,Desc="刘延东"},
[11053] = {ID=11053,Desc="刘奇葆"},
[11054] = {ID=11054,Desc="许其亮"},
[11055] = {ID=11055,Desc="孙春兰"},
[11056] = {ID=11056,Desc="孙政才"},
[11057] = {ID=11057,Desc="李克强"},
[11058] = {ID=11058,Desc="李建国"},
[11059] = {ID=11059,Desc="李源潮"},
[11060] = {ID=11060,Desc="汪洋"},
[11061] = {ID=11061,Desc="张春贤"},
[11062] = {ID=11062,Desc="张高丽"},
[11063] = {ID=11063,Desc="张德江"},
[11064] = {ID=11064,Desc="范长龙"},
[11065] = {ID=11065,Desc="孟建柱"},
[11066] = {ID=11066,Desc="赵乐际"},
[11067] = {ID=11067,Desc="胡春华"},
[11068] = {ID=11068,Desc="俞正声"},
[11069] = {ID=11069,Desc="栗战书"},
[11070] = {ID=11070,Desc="郭金龙"},
[11071] = {ID=11071,Desc="韩正"},
[11072] = {ID=11072,Desc="朱镕基"},
[11073] = {ID=11073,Desc="奥巴马"},
[11074] = {ID=11074,Desc="奥马尔"},
[11075] = {ID=11075,Desc="鲍岳桥"},
[11076] = {ID=11076,Desc="薄一波"},
[11077] = {ID=11077,Desc="曹刚川"},
[11078] = {ID=11078,Desc="陈独秀"},
[11079] = {ID=11079,Desc="陈良宇"},
[11080] = {ID=11080,Desc="陈希同"},
[11081] = {ID=11081,Desc="陈晓宁"},
[11082] = {ID=11082,Desc="陈毅"},
[11083] = {ID=11083,Desc="陈云"},
[11084] = {ID=11084,Desc="陈至立"},
[11085] = {ID=11085,Desc="达赖喇嘛"},
[11086] = {ID=11086,Desc="戴維教"},
[11087] = {ID=11087,Desc="戴相龍"},
[11088] = {ID=11088,Desc="邓小平"},
[11089] = {ID=11089,Desc="鄧笑貧"},
[11090] = {ID=11090,Desc="丁子霖"},
[11091] = {ID=11091,Desc="东条英机"},
[11092] = {ID=11092,Desc="董建华"},
[11093] = {ID=11093,Desc="董贱华"},
[11094] = {ID=11094,Desc="董文华"},
[11095] = {ID=11095,Desc="懂文华"},
[11096] = {ID=11096,Desc="杜鲁门"},
[11097] = {ID=11097,Desc="恩格斯"},
[11098] = {ID=11098,Desc="發正念"},
[11099] = {ID=11099,Desc="林彪"},
[11100] = {ID=11100,Desc="封從德"},
[11101] = {ID=11101,Desc="馮東海"},
[11102] = {ID=11102,Desc="馮素英"},
[11103] = {ID=11103,Desc="高治联"},
[11104] = {ID=11104,Desc="高自聯"},
[11105] = {ID=11105,Desc="膏藥旗"},
[11106] = {ID=11106,Desc="工自聯"},
[11107] = {ID=11107,Desc="關卓中"},
[11108] = {ID=11108,Desc="郭伯雄"},
[11109] = {ID=11109,Desc="郭伯雄"},
[11110] = {ID=11110,Desc="郭俊銘"},
[11111] = {ID=11111,Desc="郭羅基"},
[11112] = {ID=11112,Desc="郭岩華"},
[11113] = {ID=11113,Desc="韓東方"},
[11114] = {ID=11114,Desc="韓聯潮"},
[11115] = {ID=11115,Desc="何候华"},
[11116] = {ID=11116,Desc="和锅枪"},
[11117] = {ID=11117,Desc="贺国强"},
[11118] = {ID=11118,Desc="贺过墙"},
[11119] = {ID=11119,Desc="贺龙"},
[11120] = {ID=11120,Desc="賀國强"},
[11121] = {ID=11121,Desc="賀龍"},
[11122] = {ID=11122,Desc="赫鲁晓夫"},
[11123] = {ID=11123,Desc="洪哲勝"},
[11124] = {ID=11124,Desc="胡XX"},
[11125] = {ID=11125,Desc="胡紧涛"},
[11126] = {ID=11126,Desc="胡紧掏"},
[11127] = {ID=11127,Desc="胡紧套"},
[11128] = {ID=11128,Desc="胡锦涛"},
[11129] = {ID=11129,Desc="胡锦淘"},
[11130] = {ID=11130,Desc="胡緊掏"},
[11131] = {ID=11131,Desc="胡錦滔"},
[11132] = {ID=11132,Desc="胡錦淘"},
[11133] = {ID=11133,Desc="胡惊涛"},
[11134] = {ID=11134,Desc="胡景涛"},
[11135] = {ID=11135,Desc="胡景濤"},
[11136] = {ID=11136,Desc="胡乔木"},
[11137] = {ID=11137,Desc="胡喬木"},
[11138] = {ID=11138,Desc="胡耀邦"},
[11139] = {ID=11139,Desc="胡主席"},
[11140] = {ID=11140,Desc="华国锋"},
[11141] = {ID=11141,Desc="华建敏"},
[11142] = {ID=11142,Desc="華建敏"},
[11143] = {ID=11143,Desc="黃伯源"},
[11144] = {ID=11144,Desc="黃慈萍"},
[11145] = {ID=11145,Desc="黃劍輝"},
[11146] = {ID=11146,Desc="黃義交"},
[11147] = {ID=11147,Desc="黃仲生"},
[11148] = {ID=11148,Desc="黄 菊"},
[11149] = {ID=11149,Desc="回良玉"},
[11150] = {ID=11150,Desc="甲庆林"},
[11151] = {ID=11151,Desc="贾庆林"},
[11152] = {ID=11152,Desc="假青林"},
[11153] = {ID=11153,Desc="江��点"},
[11154] = {ID=11154,Desc="江独裁"},
[11155] = {ID=11155,Desc="江核心"},
[11156] = {ID=11156,Desc="江綿恒"},
[11157] = {ID=11157,Desc="江戏子"},
[11158] = {ID=11158,Desc="江戲子"},
[11159] = {ID=11159,Desc="江择民"},
[11160] = {ID=11160,Desc="江泽民"},
[11161] = {ID=11161,Desc="江則民"},
[11162] = {ID=11162,Desc="江澤慧"},
[11163] = {ID=11163,Desc="江贼民"},
[11164] = {ID=11164,Desc="江賊民"},
[11165] = {ID=11165,Desc="江折民"},
[11166] = {ID=11166,Desc="江猪媳"},
[11167] = {ID=11167,Desc="江主席"},
[11168] = {ID=11168,Desc="僵贼民"},
[11169] = {ID=11169,Desc="僵賊民"},
[11170] = {ID=11170,Desc="薑春雲"},
[11171] = {ID=11171,Desc="蒋介石"},
[11172] = {ID=11172,Desc="蒋经国"},
[11173] = {ID=11173,Desc="蒋中正"},
[11174] = {ID=11174,Desc="蔣介石"},
[11175] = {ID=11175,Desc="蔣中正"},
[11176] = {ID=11176,Desc="將則民"},
[11177] = {ID=11177,Desc="醬猪媳"},
[11178] = {ID=11178,Desc="錦濤"},
[11179] = {ID=11179,Desc="近平"},
[11180] = {ID=11180,Desc="鄺錦文"},
[11181] = {ID=11181,Desc="賴士葆"},
[11182] = {ID=11182,Desc="雷尼亞"},
[11183] = {ID=11183,Desc="离长春"},
[11184] = {ID=11184,Desc="黎阳评"},
[11185] = {ID=11185,Desc="李长春"},
[11186] = {ID=11186,Desc="李大钊"},
[11187] = {ID=11187,Desc="李繼耐"},
[11188] = {ID=11188,Desc="李蘭菊"},
[11189] = {ID=11189,Desc="李老師"},
[11190] = {ID=11190,Desc="李鹏"},
[11191] = {ID=11191,Desc="李鹏*"},
[11192] = {ID=11192,Desc="李瑞环"},
[11193] = {ID=11193,Desc="李淑嫻"},
[11194] = {ID=11194,Desc="李铁映"},
[11195] = {ID=11195,Desc="李鐵映"},
[11196] = {ID=11196,Desc="李旺陽"},
[11197] = {ID=11197,Desc="李先念"},
[11198] = {ID=11198,Desc="李志綏"},
[11199] = {ID=11199,Desc="李總理"},
[11200] = {ID=11200,Desc="李總統"},
[11201] = {ID=11201,Desc="里根"},
[11202] = {ID=11202,Desc="裏菲斯"},
[11203] = {ID=11203,Desc="列宁"},
[11204] = {ID=11204,Desc="林保華"},
[11205] = {ID=11205,Desc="林長盛"},
[11206] = {ID=11206,Desc="林佳龍"},
[11207] = {ID=11207,Desc="刘少奇"},
[11208] = {ID=11208,Desc="刘云山"},
[11209] = {ID=11209,Desc="劉賓深"},
[11210] = {ID=11210,Desc="劉國凱"},
[11211] = {ID=11211,Desc="劉華清"},
[11212] = {ID=11212,Desc="劉俊國"},
[11213] = {ID=11213,Desc="劉凱中"},
[11214] = {ID=11214,Desc="劉千石"},
[11215] = {ID=11215,Desc="劉山青"},
[11216] = {ID=11216,Desc="劉士賢"},
[11217] = {ID=11217,Desc="马克思"},
[11218] = {ID=11218,Desc="马英九"},
[11219] = {ID=11219,Desc="馬大維"},
[11220] = {ID=11220,Desc="馬克思"},
[11221] = {ID=11221,Desc="馬良駿"},
[11222] = {ID=11222,Desc="馬三家"},
[11223] = {ID=11223,Desc="馬時敏"},
[11224] = {ID=11224,Desc="馬特斯"},
[11225] = {ID=11225,Desc="馬英九"},
[11226] = {ID=11226,Desc="馬永成"},
[11227] = {ID=11227,Desc="麥克斯"},
[11228] = {ID=11228,Desc="毛XX"},
[11229] = {ID=11229,Desc="毛厕洞"},
[11230] = {ID=11230,Desc="毛厠洞"},
[11231] = {ID=11231,Desc="毛一鲜"},
[11232] = {ID=11232,Desc="毛泽东"},
[11233] = {ID=11233,Desc="毛贼东"},
[11234] = {ID=11234,Desc="毛賊東"},
[11235] = {ID=11235,Desc="毛主席"},
[11236] = {ID=11236,Desc="穆罕默德"},
[11237] = {ID=11237,Desc="拿破仑"},
[11238] = {ID=11238,Desc="彭丽媛"},
[11239] = {ID=11239,Desc="破鞋"},
[11240] = {ID=11240,Desc="普京"},
[11241] = {ID=11241,Desc="斯大林"},
[11242] = {ID=11242,Desc="宋楚瑜"},
[11243] = {ID=11243,Desc="孙文"},
[11244] = {ID=11244,Desc="孙逸仙"},
[11245] = {ID=11245,Desc="孙中山"},
[11246] = {ID=11246,Desc="孫大千"},
[11247] = {ID=11247,Desc="孫中山"},
[11248] = {ID=11248,Desc="湯光中"},
[11249] = {ID=11249,Desc="王乐泉"},
[11250] = {ID=11250,Desc="王樂泉"},
[11251] = {ID=11251,Desc="温家宝"},
[11252] = {ID=11252,Desc="温家保"},
[11253] = {ID=11253,Desc="温总理"},
[11254] = {ID=11254,Desc="溫家寶"},
[11255] = {ID=11255,Desc="溫元凱"},
[11256] = {ID=11256,Desc="瘟家宝"},
[11257] = {ID=11257,Desc="无邦国"},
[11258] = {ID=11258,Desc="无帮国"},
[11259] = {ID=11259,Desc="无帮过"},
[11260] = {ID=11260,Desc="吴 仪"},
[11261] = {ID=11261,Desc="吴邦国"},
[11262] = {ID=11262,Desc="吴帮国"},
[11263] = {ID=11263,Desc="吴官正"},
[11264] = {ID=11264,Desc="吴仪"},
[11265] = {ID=11265,Desc="希特勒"},
[11266] = {ID=11266,Desc="习近平"},
[11267] = {ID=11267,Desc="习经平"},
[11268] = {ID=11268,Desc="习远平"},
[11269] = {ID=11269,Desc="袭近平"},
[11270] = {ID=11270,Desc="叶剑英"},
[11271] = {ID=11271,Desc="俞正声"},
[11272] = {ID=11272,Desc="郁慕明"},
[11273] = {ID=11273,Desc="則民"},
[11274] = {ID=11274,Desc="擇民"},
[11275] = {ID=11275,Desc="澤夫"},
[11276] = {ID=11276,Desc="澤民"},
[11277] = {ID=11277,Desc="賊民"},
[11278] = {ID=11278,Desc="曾庆红"},
[11279] = {ID=11279,Desc="赵紫阳"},
[11280] = {ID=11280,Desc="周恩来"},
[11281] = {ID=11281,Desc="周鋒鎖"},
[11282] = {ID=11282,Desc="周永康"},
[11283] = {ID=11283,Desc="周永康"},
[11284] = {ID=11284,Desc="周永康"},
[11285] = {ID=11285,Desc="粥健康"},
[11286] = {ID=11286,Desc="粥永康"},
[11287] = {ID=11287,Desc="轴永康"},
[11288] = {ID=11288,Desc="肘永康"},
[11289] = {ID=11289,Desc="朱德"},
[11290] = {ID=11290,Desc="朱溶劑"},
[11291] = {ID=11291,Desc="猪聾畸"},
[11292] = {ID=11292,Desc="做爱"},
[11293] = {ID=11293,Desc="肏"},
[11294] = {ID=11294,Desc="爱液"},
[11295] = {ID=11295,Desc="白粉"},
[11296] = {ID=11296,Desc="迷幻药"},
[11297] = {ID=11297,Desc="拐卖"},
[11298] = {ID=11298,Desc="你奶奶"},
[11299] = {ID=11299,Desc="回民吃豬肉"},
[11300] = {ID=11300,Desc="一边一国"},
[11301] = {ID=11301,Desc="*法*轮*功*"},
[11302] = {ID=11302,Desc="*李*洪*志"},
[11303] = {ID=11303,Desc="*阿扁"},
[11304] = {ID=11304,Desc="AIDS"},
[11305] = {ID=11305,Desc="aids"},
[11306] = {ID=11306,Desc="Aids"},
[11307] = {ID=11307,Desc="DICK"},
[11308] = {ID=11308,Desc="dick"},
[11309] = {ID=11309,Desc="Dick"},
[11310] = {ID=11310,Desc="gongchandang"},
[11311] = {ID=11311,Desc="penis"},
[11312] = {ID=11312,Desc="rivals"},
[11313] = {ID=11313,Desc="taobao"},
[11314] = {ID=11314,Desc="U/R"},
[11315] = {ID=11315,Desc="urban"},
[11316] = {ID=11316,Desc="urban"},
[11317] = {ID=11317,Desc="urban-rivals"},
[11318] = {ID=11318,Desc="urban-rivals"},
[11319] = {ID=11319,Desc="webgame.com.cn"},
[11320] = {ID=11320,Desc="WEB牌戰"},
[11321] = {ID=11321,Desc="WEB战牌"},
[11322] = {ID=11322,Desc="weelaa"},
[11323] = {ID=11323,Desc="阿扁"},
[11324] = {ID=11324,Desc="阿扁万岁"},
[11325] = {ID=11325,Desc="阿拉"},
[11326] = {ID=11326,Desc="安非他命"},
[11327] = {ID=11327,Desc="安南"},
[11328] = {ID=11328,Desc="安全局"},
[11329] = {ID=11329,Desc="澳洲光明网"},
[11330] = {ID=11330,Desc="八九风波"},
[11331] = {ID=11331,Desc="白莲教"},
[11332] = {ID=11332,Desc="班禅"},
[11333] = {ID=11333,Desc="办理文凭"},
[11334] = {ID=11334,Desc="办理证件"},
[11335] = {ID=11335,Desc="保钓"},
[11336] = {ID=11336,Desc="保监会"},
[11337] = {ID=11337,Desc="保密局"},
[11338] = {ID=11338,Desc="暴动"},
[11339] = {ID=11339,Desc="暴乱"},
[11340] = {ID=11340,Desc="暴熱的戰士"},
[11341] = {ID=11341,Desc="暴徒"},
[11342] = {ID=11342,Desc="暴躁的城塔野獸"},
[11343] = {ID=11343,Desc="暴躁的警衛兵靈魂"},
[11344] = {ID=11344,Desc="暴躁的馬杜克"},
[11345] = {ID=11345,Desc="北大三角地論壇"},
[11346] = {ID=11346,Desc="北京之春"},
[11347] = {ID=11347,Desc="北美自由論壇"},
[11348] = {ID=11348,Desc="贝肉"},
[11349] = {ID=11349,Desc="本?拉登"},
[11350] = {ID=11350,Desc="本?拉登"},
[11351] = {ID=11351,Desc="本拉登"},
[11352] = {ID=11352,Desc="���賓雁"},
[11353] = {ID=11353,Desc="冰粉"},
[11354] = {ID=11354,Desc="不滅帝王"},
[11355] = {ID=11355,Desc="财政部"},
[11356] = {ID=11356,Desc="参事室"},
[11357] = {ID=11357,Desc="藏独"},
[11358] = {ID=11358,Desc="藏妇会"},
[11359] = {ID=11359,Desc="藏青会"},
[11360] = {ID=11360,Desc="操你八辈祖宗"},
[11361] = {ID=11361,Desc="册那"},
[11362] = {ID=11362,Desc="册那娘餓比"},
[11363] = {ID=11363,Desc="侧那"},
[11364] = {ID=11364,Desc="测绘局"},
[11365] = {ID=11365,Desc="测拿"},
[11366] = {ID=11366,Desc="测拿"},
[11367] = {ID=11367,Desc="插深些"},
[11368] = {ID=11368,Desc="产权局"},
[11369] = {ID=11369,Desc="车仑"},
[11370] = {ID=11370,Desc="沉睡圖騰"},
[11371] = {ID=11371,Desc="陳總統"},
[11372] = {ID=11372,Desc="程鐵軍"},
[11373] = {ID=11373,Desc="吃大便"},
[11374] = {ID=11374,Desc="痴鳩"},
[11375] = {ID=11375,Desc="痴拈"},
[11376] = {ID=11376,Desc="持不同政見"},
[11377] = {ID=11377,Desc="遲鈍的圖騰"},
[11378] = {ID=11378,Desc="赤色騎士"},
[11379] = {ID=11379,Desc="赤色戰士"},
[11380] = {ID=11380,Desc="出售此号"},
[11381] = {ID=11381,Desc="出售假币"},
[11382] = {ID=11382,Desc="出售枪支"},
[11383] = {ID=11383,Desc="出售神符"},
[11384] = {ID=11384,Desc="出售神符"},
[11385] = {ID=11385,Desc="出售手枪"},
[11386] = {ID=11386,Desc="出售账号"},
[11387] = {ID=11387,Desc="出售账号"},
[11388] = {ID=11388,Desc="處女膜"},
[11389] = {ID=11389,Desc="傳染性病"},
[11390] = {ID=11390,Desc="春夏自由論壇"},
[11391] = {ID=11391,Desc="纯一郎"},
[11392] = {ID=11392,Desc="輳"},
[11393] = {ID=11393,Desc="粗制吗啡"},
[11394] = {ID=11394,Desc="鹺"},
[11395] = {ID=11395,Desc="达赖"},
[11396] = {ID=11396,Desc="達夫警衛兵"},
[11397] = {ID=11397,Desc="打倒共产党"},
[11398] = {ID=11398,Desc="打飛機"},
[11399] = {ID=11399,Desc="大参考"},
[11400] = {ID=11400,Desc="大參考"},
[11401] = {ID=11401,Desc="大東亞"},
[11402] = {ID=11402,Desc="大東亞共榮"},
[11403] = {ID=11403,Desc="大紀元"},
[11404] = {ID=11404,Desc="大紀元新聞網"},
[11405] = {ID=11405,Desc="大紀園"},
[11406] = {ID=11406,Desc="大家論壇"},
[11407] = {ID=11407,Desc="大麻"},
[11408] = {ID=11408,Desc="大麻树脂"},
[11409] = {ID=11409,Desc="大麻油"},
[11410] = {ID=11410,Desc="大史紀"},
[11411] = {ID=11411,Desc="大史記"},
[11412] = {ID=11412,Desc="大衛教"},
[11413] = {ID=11413,Desc="大学骚乱"},
[11414] = {ID=11414,Desc="大中國論壇"},
[11415] = {ID=11415,Desc="大中華論壇"},
[11416] = {ID=11416,Desc="大衆真人���事"},
[11417] = {ID=11417,Desc="紿"},
[11418] = {ID=11418,Desc="党中央"},
[11419] = {ID=11419,Desc="党主席"},
[11420] = {ID=11420,Desc="氹"},
[11421] = {ID=11421,Desc="荡妇"},
[11422] = {ID=11422,Desc="档案局"},
[11423] = {ID=11423,Desc="盗窃犯"},
[11424] = {ID=11424,Desc="盗窃犯"},
[11425] = {ID=11425,Desc="道教"},
[11426] = {ID=11426,Desc="德維爾"},
[11427] = {ID=11427,Desc="糴"},
[11428] = {ID=11428,Desc="覿"},
[11429] = {ID=11429,Desc="地下教會"},
[11430] = {ID=11430,Desc="帝国主义"},
[11431] = {ID=11431,Desc="帝國主義"},
[11432] = {ID=11432,Desc="帝顺"},
[11433] = {ID=11433,Desc="缔顺"},
[11434] = {ID=11434,Desc="蒂顺"},
[11435] = {ID=11435,Desc="电监会"},
[11436] = {ID=11436,Desc="钓鱼台"},
[11437] = {ID=11437,Desc="釣魚島"},
[11438] = {ID=11438,Desc="东北独立"},
[11439] = {ID=11439,Desc="东升"},
[11440] = {ID=11440,Desc="东突"},
[11441] = {ID=11441,Desc="东突暴动和独立"},
[11442] = {ID=11442,Desc="东突组���"},
[11443] = {ID=11443,Desc="东亚病夫"},
[11444] = {ID=11444,Desc="东亚病夫"},
[11445] = {ID=11445,Desc="东正教"},
[11446] = {ID=11446,Desc="東部地下水路"},
[11447] = {ID=11447,Desc="東方紅時空"},
[11448] = {ID=11448,Desc="東南西北論談"},
[11449] = {ID=11449,Desc="東突獨立"},
[11450] = {ID=11450,Desc="東土耳其斯坦"},
[11451] = {ID=11451,Desc="東西南北論壇"},
[11452] = {ID=11452,Desc="東院看守"},
[11453] = {ID=11453,Desc="鬥士哈夫拉蘇"},
[11454] = {ID=11454,Desc="鬥士霍克"},
[11455] = {ID=11455,Desc="獨立臺灣會"},
[11456] = {ID=11456,Desc="独立"},
[11457] = {ID=11457,Desc="独立台湾会"},
[11458] = {ID=11458,Desc="杜冷丁"},
[11459] = {ID=11459,Desc="俄國"},
[11460] = {ID=11460,Desc="额尔德尼"},
[11461] = {ID=11461,Desc="鮞"},
[11462] = {ID=11462,Desc="二乙基酰胺发抡"},
[11463] = {ID=11463,Desc="发抡功"},
[11464] = {ID=11464,Desc="发伦"},
[11465] = {ID=11465,Desc="发伦"},
[11466] = {ID=11466,Desc="发伦功"},
[11467] = {ID=11467,Desc="发轮"},
[11468] = {ID=11468,Desc="发论"},
[11469] = {ID=11469,Desc="发论公"},
[11470] = {ID=11470,Desc="发论功"},
[11471] = {ID=11471,Desc="發掄功"},
[11472] = {ID=11472,Desc="發倫功"},
[11473] = {ID=11473,Desc="發論公"},
[11474] = {ID=11474,Desc="發論功"},
[11475] = {ID=11475,Desc="法(轮)功"},
[11476] = {ID=11476,Desc="法*轮*功"},
[11477] = {ID=11477,Desc="法~倫"},
[11478] = {ID=11478,Desc="法~淪"},
[11479] = {ID=11479,Desc="法~綸"},
[11480] = {ID=11480,Desc="法~輪"},
[11481] = {ID=11481,Desc="法~論"},
[11482] = {ID=11482,Desc="法爾卡"},
[11483] = {ID=11483,Desc="法功"},
[11484] = {ID=11484,Desc="法愣"},
[11485] = {ID=11485,Desc="法掄功"},
[11486] = {ID=11486,Desc="法仑"},
[11487] = {ID=11487,Desc="法轮"},
[11488] = {ID=11488,Desc="法轮大法"},
[11489] = {ID=11489,Desc="法轮大法"},
[11490] = {ID=11490,Desc="法轮大法"},
[11491] = {ID=11491,Desc="法轮功"},
[11492] = {ID=11492,Desc="法轮功"},
[11493] = {ID=11493,Desc="法轮功"},
[11494] = {ID=11494,Desc="法轮功"},
[11495] = {ID=11495,Desc="法輪功"},
[11496] = {ID=11496,Desc="法十輪十功"},
[11497] = {ID=11497,Desc="法西斯"},
[11498] = {ID=11498,Desc="法謫功"},
[11499] = {ID=11499,Desc="法制办"},
[11500] = {ID=11500,Desc="反党"},
[11501] = {ID=11501,Desc="反封鎖"},
[11502] = {ID=11502,Desc="反封鎖技術"},
[11503] = {ID=11503,Desc="反腐敗論壇"},
[11504] = {ID=11504,Desc="反革命"},
[11505] = {ID=11505,Desc="反共"},
[11506] = {ID=11506,Desc="反华"},
[11507] = {ID=11507,Desc="反恐委员会"},
[11508] = {ID=11508,Desc="反人類"},
[11509] = {ID=11509,Desc="反日"},
[11510] = {ID=11510,Desc="反社會"},
[11511] = {ID=11511,Desc="反政府"},
[11512] = {ID=11512,Desc="贩毒"},
[11513] = {ID=11513,Desc="方勵之"},
[11514] = {ID=11514,Desc="防衛指揮官"},
[11515] = {ID=11515,Desc="費鴻泰"},
[11516] = {ID=11516,Desc="費良勇"},
[11517] = {ID=11517,Desc="廢墟守護者"},
[11518] = {ID=11518,Desc="分隊長施蒂文"},
[11519] = {ID=11519,Desc="分裂中国"},
[11520] = {ID=11520,Desc="分裂祖国"},
[11521] = {ID=11521,Desc="鱝"},
[11522] = {ID=11522,Desc="封印的靈魂騎士"},
[11523] = {ID=11523,Desc="風雨神州論壇"},
[11524] = {ID=11524,Desc="豐饒的果實"},
[11525] = {ID=11525,Desc="佛展千手法"},
[11526] = {ID=11526,Desc="紱"},
[11527] = {ID=11527,Desc="襆"},
[11528] = {ID=11528,Desc="斧头镰刀"},
[11529] = {ID=11529,Desc="阝月"},
[11530] = {ID=11530,Desc="阝月"},
[11531] = {ID=11531,Desc="冈村宁次"},
[11532] = {ID=11532,Desc="冈村秀树"},
[11533] = {ID=11533,Desc="港澳办"},
[11534] = {ID=11534,Desc="高丽棒子"},
[11535] = {ID=11535,Desc="高校暴乱"},
[11536] = {ID=11536,Desc="高校群体事件"},
[11537] = {ID=11537,Desc="高校骚乱"},
[11538] = {ID=11538,Desc="高自联"},
[11539] = {ID=11539,Desc="膏药旗"},
[11540] = {ID=11540,Desc="格雷(關卡排名管理者)"},
[11541] = {ID=11541,Desc="格魯(城鎮移動)"},
[11542] = {ID=11542,Desc="公安"},
[11543] = {ID=11543,Desc="公安部"},
[11544] = {ID=11544,Desc="公安局"},
[11545] = {ID=11545,Desc="共产党"},
[11546] = {ID=11546,Desc="共产主义"},
[11547] = {ID=11547,Desc="共産黨"},
[11548] = {ID=11548,Desc="共党"},
[11549] = {ID=11549,Desc="共黨"},
[11550] = {ID=11550,Desc="共匪"},
[11551] = {ID=11551,Desc="共狗"},
[11552] = {ID=11552,Desc="共榮圈"},
[11553] = {ID=11553,Desc="緱"},
[11554] = {ID=11554,Desc="狗雜種"},
[11555] = {ID=11555,Desc="覯"},
[11556] = {ID=11556,Desc="轂"},
[11557] = {ID=11557,Desc="鯝"},
[11558] = {ID=11558,Desc="鴰"},
[11559] = {ID=11559,Desc="詿"},
[11560] = {ID=11560,Desc="观世音"},
[11561] = {ID=11561,Desc="官逼民反"},
[11562] = {ID=11562,Desc="官商勾结"},
[11563] = {ID=11563,Desc="貫通兩極法"},
[11564] = {ID=11564,Desc="廣聞"},
[11565] = {ID=11565,Desc="嬀"},
[11566] = {ID=11566,Desc="龜兒子"},
[11567] = {ID=11567,Desc="劌"},
[11568] = {ID=11568,Desc="滾那嗎瘟比"},
[11569] = {ID=11569,Desc="鯀"},
[11570] = {ID=11570,Desc="咼"},
[11571] = {ID=11571,Desc="国安局"},
[11572] = {ID=11572,Desc="国防部"},
[11573] = {ID=11573,Desc="国防科工委"},
[11574] = {ID=11574,Desc="国管局"},
[11575] = {ID=11575,Desc="国际法院"},
[11576] = {ID=11576,Desc="国家民委"},
[11577] = {ID=11577,Desc="国家主席"},
[11578] = {ID=11578,Desc="国家主要部委"},
[11579] = {ID=11579,Desc="国民党"},
[11580] = {ID=11580,Desc="国民党万岁"},
[11581] = {ID=11581,Desc="国内动态清样"},
[11582] = {ID=11582,Desc="國軍"},
[11583] = {ID=11583,Desc="國賊"},
[11584] = {ID=11584,Desc="海洛因"},
[11585] = {ID=11585,Desc="海洋局"},
[11586] = {ID=11586,Desc="頇"},
[11587] = {ID=11587,Desc="韓正"},
[11588] = {ID=11588,Desc="漢奸"},
[11589] = {ID=11589,Desc="顥"},
[11590] = {ID=11590,Desc="灝"},
[11591] = {ID=11591,Desc="核工业基地"},
[11592] = {ID=11592,Desc="核潜艇"},
[11593] = {ID=11593,Desc="核武器"},
[11594] = {ID=11594,Desc="黑白无常"},
[11595] = {ID=11595,Desc="黑社会"},
[11596] = {ID=11596,Desc="黑手党"},
[11597] = {ID=11597,Desc="红卫兵"},
[11598] = {ID=11598,Desc="洪傳"},
[11599] = {ID=11599,Desc="洪兴"},
[11600] = {ID=11600,Desc="洪興"},
[11601] = {ID=11601,Desc="洪志"},
[11602] = {ID=11602,Desc="黌"},
[11603] = {ID=11603,Desc="鱟"},
[11604] = {ID=11604,Desc="鸌"},
[11605] = {ID=11605,Desc="花柳"},
[11606] = {ID=11606,Desc="华盛顿"},
[11607] = {ID=11607,Desc="華通時事論壇"},
[11608] = {ID=11608,Desc="華語世界論壇"},
[11609] = {ID=11609,Desc="華岳時事論壇"},
[11610] = {ID=11610,Desc="懷特"},
[11611] = {ID=11611,Desc="鍰"},
[11612] = {ID=11612,Desc="皇軍"},
[11613] = {ID=11613,Desc="黃禍"},
[11614] = {ID=11614,Desc="黄色小电影"},
[11615] = {ID=11615,Desc="回教"},
[11616] = {ID=11616,Desc="回民暴动"},
[11617] = {ID=11617,Desc="回民吃猪肉"},
[11618] = {ID=11618,Desc="回族人吃猪肉"},
[11619] = {ID=11619,Desc="噦"},
[11620] = {ID=11620,Desc="繢"},
[11621] = {ID=11621,Desc="昏药"},
[11622] = {ID=11622,Desc="混 沌决"},
[11623] = {ID=11623,Desc="混亂的圖騰"},
[11624] = {ID=11624,Desc="鍃"},
[11625] = {ID=11625,Desc="活動"},
[11626] = {ID=11626,Desc="火棒"},
[11627] = {ID=11627,Desc="机叭"},
[11628] = {ID=11628,Desc="鸡歪"},
[11629] = {ID=11629,Desc="姬勝德"},
[11630] = {ID=11630,Desc="基地组织"},
[11631] = {ID=11631,Desc="基督"},
[11632] = {ID=11632,Desc="基督教"},
[11633] = {ID=11633,Desc="賫"},
[11634] = {ID=11634,Desc="激情小电影"},
[11635] = {ID=11635,Desc="積克館"},
[11636] = {ID=11636,Desc="擊傷的圖騰"},
[11637] = {ID=11637,Desc="鶏毛信文匯"},
[11638] = {ID=11638,Desc="计牌软件"},
[11639] = {ID=11639,Desc="计生委"},
[11640] = {ID=11640,Desc="鱭"},
[11641] = {ID=11641,Desc="賈廷安"},
[11642] = {ID=11642,Desc="賈育台"},
[11643] = {ID=11643,Desc="戔"},
[11644] = {ID=11644,Desc="監視塔"},
[11645] = {ID=11645,Desc="監視塔哨兵"},
[11646] = {ID=11646,Desc="監視塔哨兵隊長"},
[11647] = {ID=11647,Desc="鰹"},
[11648] = {ID=11648,Desc="韉"},
[11649] = {ID=11649,Desc="簡肇棟"},
[11650] = {ID=11650,Desc="建國黨"},
[11651] = {ID=11651,Desc="江Core"},
[11652] = {ID=11652,Desc="江八點"},
[11653] = {ID=11653,Desc="江羅"},
[11654] = {ID=11654,Desc="江青"},
[11655] = {ID=11655,Desc="江賊"},
[11656] = {ID=11656,Desc="江猪"},
[11657] = {ID=11657,Desc="僵賊"},
[11658] = {ID=11658,Desc="疆独"},
[11659] = {ID=11659,Desc="疆独"},
[11660] = {ID=11660,Desc="降低命中的圖騰"},
[11661] = {ID=11661,Desc="交通部"},
[11662] = {ID=11662,Desc="狡猾的達夫"},
[11663] = {ID=11663,Desc="矯健的馬努爾"},
[11664] = {ID=11664,Desc="教養院"},
[11665] = {ID=11665,Desc="教育部"},
[11666] = {ID=11666,Desc="揭批書"},
[11667] = {ID=11667,Desc="街头对抗"},
[11668] = {ID=11668,Desc="届中央政治局委員"},
[11669] = {ID=11669,Desc="金槍不倒"},
[11670] = {ID=11670,Desc="禁书"},
[11671] = {ID=11671,Desc="经济社会理事会"},
[11672] = {ID=11672,Desc="经社理事会"},
[11673] = {ID=11673,Desc="荊棘護衛兵"},
[11674] = {ID=11674,Desc="莖候佳陰"},
[11675] = {ID=11675,Desc="經文"},
[11676] = {ID=11676,Desc="警匪一家"},
[11677] = {ID=11677,Desc="敬国神社"},
[11678] = {ID=11678,Desc="靖国神社"},
[11679] = {ID=11679,Desc="静坐"},
[11680] = {ID=11680,Desc="纠察员"},
[11681] = {ID=11681,Desc="舊斗篷哨兵"},
[11682] = {ID=11682,Desc="齟"},
[11683] = {ID=11683,Desc="军国主义"},
[11684] = {ID=11684,Desc="卡斯特罗"},
[11685] = {ID=11685,Desc="凱爾本"},
[11686] = {ID=11686,Desc="凱爾雷斯"},
[11687] = {ID=11687,Desc="凱特切爾"},
[11688] = {ID=11688,Desc="看中國"},
[11689] = {ID=11689,Desc="闞"},
[11690] = {ID=11690,Desc="柯賜海"},
[11691] = {ID=11691,Desc="柯建銘"},
[11692] = {ID=11692,Desc="科萊爾"},
[11693] = {ID=11693,Desc="���磕墙"},
[11694] = {ID=11694,Desc="可待因"},
[11695] = {ID=11695,Desc="可卡叶"},
[11696] = {ID=11696,Desc="可卡因"},
[11697] = {ID=11697,Desc="緙"},
[11698] = {ID=11698,Desc="空氣精靈"},
[11699] = {ID=11699,Desc="空虛的伊坤"},
[11700] = {ID=11700,Desc="空虛之地"},
[11701] = {ID=11701,Desc="恐怖份子"},
[11702] = {ID=11702,Desc="恐怖主义"},
[11703] = {ID=11703,Desc="恐怖主義"},
[11704] = {ID=11704,Desc="瞘"},
[11705] = {ID=11705,Desc="嚳"},
[11706] = {ID=11706,Desc="貺"},
[11707] = {ID=11707,Desc="昆圖"},
[11708] = {ID=11708,Desc="昆圖"},
[11709] = {ID=11709,Desc="拉皮條"},
[11710] = {ID=11710,Desc="蘭迪"},
[11711] = {ID=11711,Desc="烂鸟"},
[11712] = {ID=11712,Desc="劳+教+所"},
[11713] = {ID=11713,Desc="劳动保障部"},
[11714] = {ID=11714,Desc="劳拉"},
[11715] = {ID=11715,Desc="勞動教養所"},
[11716] = {ID=11716,Desc="老毛子"},
[11717] = {ID=11717,Desc="鰳"},
[11718] = {ID=11718,Desc="誄"},
[11719] = {ID=11719,Desc="李大师"},
[11720] = {ID=11720,Desc="李登辉"},
[11721] = {ID=11721,Desc="李弘旨"},
[11722] = {ID=11722,Desc="李红志"},
[11723] = {ID=11723,Desc="李宏旨"},
[11724] = {ID=11724,Desc="李宏志"},
[11725] = {ID=11725,Desc="李洪寬"},
[11726] = {ID=11726,Desc="李洪志"},
[11727] = {ID=11727,Desc="李紅痔"},
[11728] = {ID=11728,Desc="李祿"},
[11729] = {ID=11729,Desc="李錄"},
[11730] = {ID=11730,Desc="李月月鳥"},
[11731] = {ID=11731,Desc="鱧"},
[11732] = {ID=11732,Desc="躒"},
[11733] = {ID=11733,Desc="轢"},
[11734] = {ID=11734,Desc="连战"},
[11735] = {ID=11735,Desc="連戰"},
[11736] = {ID=11736,Desc="联合国"},
[11737] = {ID=11737,Desc="联合国大会"},
[11738] = {ID=11738,Desc="廉政大論壇"},
[11739] = {ID=11739,Desc="奩"},
[11740] = {ID=11740,Desc="聯總"},
[11741] = {ID=11741,Desc="煉功"},
[11742] = {ID=11742,Desc="粮食局"},
[11743] = {ID=11743,Desc="两个中国"},
[11744] = {ID=11744,Desc="两国论"},
[11745] = {ID=11745,Desc="兩岸關係"},
[11746] = {ID=11746,Desc="兩岸三地論壇"},
[11747] = {ID=11747,Desc="兩會"},
[11748] = {ID=11748,Desc="林业局"},
[11749] = {ID=11749,Desc="躪"},
[11750] = {ID=11750,Desc="六.四"},
[11751] = {ID=11751,Desc="六。四"},
[11752] = {ID=11752,Desc="六?四"},
[11753] = {ID=11753,Desc="六合彩"},
[11754] = {ID=11754,Desc="六四"},
[11755] = {ID=11755,Desc="六-四"},
[11756] = {ID=11756,Desc="六四事件"},
[11757] = {ID=11757,Desc="六四运动"},
[11758] = {ID=11758,Desc="六四真相"},
[11759] = {ID=11759,Desc="鷚"},
[11760] = {ID=11760,Desc="盧卡"},
[11761] = {ID=11761,Desc="鋝"},
[11762] = {ID=11762,Desc="掄功"},
[11763] = {ID=11763,Desc="轮盘赌"},
[11764] = {ID=11764,Desc="倫功"},
[11765] = {ID=11765,Desc="輪大"},
[11766] = {ID=11766,Desc="輪功"},
[11767] = {ID=11767,Desc="論壇管理員"},
[11768] = {ID=11768,Desc="腡"},
[11769] = {ID=11769,Desc="羅福助"},
[11770] = {ID=11770,Desc="洛克菲爾特"},
[11771] = {ID=11771,Desc="濼"},
[11772] = {ID=11772,Desc="麻���枪"},
[11773] = {ID=11773,Desc="麻醉钢枪"},
[11774] = {ID=11774,Desc="麻醉药"},
[11775] = {ID=11775,Desc="麻醉乙醚"},
[11776] = {ID=11776,Desc="马加爵"},
[11777] = {ID=11777,Desc="马克思"},
[11778] = {ID=11778,Desc="马卖马屁"},
[11779] = {ID=11779,Desc="瑪麗亞"},
[11780] = {ID=11780,Desc="吗啡碱"},
[11781] = {ID=11781,Desc="吗啡片"},
[11782] = {ID=11782,Desc="买财富"},
[11783] = {ID=11783,Desc="买卖枪支"},
[11784] = {ID=11784,Desc="麦角酸"},
[11785] = {ID=11785,Desc="卖.国"},
[11786] = {ID=11786,Desc="卖ID"},
[11787] = {ID=11787,Desc="卖QQ"},
[11788] = {ID=11788,Desc="卖逼"},
[11789] = {ID=11789,Desc="卖财富"},
[11790] = {ID=11790,Desc="卖党求荣"},
[11791] = {ID=11791,Desc="卖国求荣"},
[11792] = {ID=11792,Desc="卖号"},
[11793] = {ID=11793,Desc="卖软件"},
[11794] = {ID=11794,Desc="勱"},
[11795] = {ID=11795,Desc="梅花网"},
[11796] = {ID=11796,Desc="美国佬"},
[11797] = {ID=11797,Desc="美国之音"},
[11798] = {ID=11798,Desc="美國參考"},
[11799] = {ID=11799,Desc="美國之音"},
[11800] = {ID=11800,Desc="美利坚"},
[11801] = {ID=11801,Desc="蒙尘药"},
[11802] = {ID=11802,Desc="蒙獨"},
[11803] = {ID=11803,Desc="蒙古達子"},
[11804] = {ID=11804,Desc="蒙古鞑子"},
[11805] = {ID=11805,Desc="梦遗"},
[11806] = {ID=11806,Desc="迷歼药"},
[11807] = {ID=11807,Desc="禰"},
[11808] = {ID=11808,Desc="密宗"},
[11809] = {ID=11809,Desc="綿恒"},
[11810] = {ID=11810,Desc="綿恒"},
[11811] = {ID=11811,Desc="民国"},
[11812] = {ID=11812,Desc="民國"},
[11813] = {ID=11813,Desc="民航局"},
[11814] = {ID=11814,Desc="民进党"},
[11815] = {ID=11815,Desc="民進黨"},
[11816] = {ID=11816,Desc="民聯"},
[11817] = {ID=11817,Desc="民运"},
[11818] = {ID=11818,Desc="民政部"},
[11819] = {ID=11819,Desc="民主"},
[11820] = {ID=11820,Desc="民主潮"},
[11821] = {ID=11821,Desc="民主党"},
[11822] = {ID=11822,Desc="民主墻"},
[11823] = {ID=11823,Desc="緡"},
[11824] = {ID=11824,Desc="黽"},
[11825] = {ID=11825,Desc="鰵"},
[11826] = {ID=11826,Desc="明慧网"},
[11827] = {ID=11827,Desc="摩门教"},
[11828] = {ID=11828,Desc="茉莉花"},
[11829] = {ID=11829,Desc="茉莉花革命"},
[11830] = {ID=11830,Desc="默克尔"},
[11831] = {ID=11831,Desc="木子論壇"},
[11832] = {ID=11832,Desc="穆斯林"},
[11833] = {ID=11833,Desc="纳粹"},
[11834] = {ID=11834,Desc="納粹"},
[11835] = {ID=11835,Desc="南大自由論壇"},
[11836] = {ID=11836,Desc="南蛮"},
[11837] = {ID=11837,Desc="南蛮子"},
[11838] = {ID=11838,Desc="南蠻子"},
[11839] = {ID=11839,Desc="鬧事"},
[11840] = {ID=11840,Desc="尼奧夫"},
[11841] = {ID=11841,Desc="倪育賢"},
[11842] = {ID=11842,Desc="鯢"},
[11843] = {ID=11843,Desc="你說我說論壇"},
[11844] = {ID=11844,Desc="鸟Gm"},
[11845] = {ID=11845,Desc="鸟gM"},
[11846] = {ID=11846,Desc="鸟gm"},
[11847] = {ID=11847,Desc="牛头马面"},
[11848] = {ID=11848,Desc="农业部"},
[11849] = {ID=11849,Desc="奴隸魔族士兵"},
[11850] = {ID=11850,Desc="儺"},
[11851] = {ID=11851,Desc="諾姆"},
[11852] = {ID=11852,Desc="拍肩神药"},
[11853] = {ID=11853,Desc="轡"},
[11854] = {ID=11854,Desc="皮條客"},
[11855] = {ID=11855,Desc="羆"},
[11856] = {ID=11856,Desc="諞"},
[11857] = {ID=11857,Desc="苹果日报"},
[11858] = {ID=11858,Desc="潑婦"},
[11859] = {ID=11859,Desc="仆街"},
[11860] = {ID=11860,Desc="骑你"},
[11861] = {ID=11861,Desc="骑他"},
[11862] = {ID=11862,Desc="齊墨"},
[11863] = {ID=11863,Desc="齊墨"},
[11864] = {ID=11864,Desc="齊諾"},
[11865] = {ID=11865,Desc="齊諾"},
[11866] = {ID=11866,Desc="起义"},
[11867] = {ID=11867,Desc="气象局"},
[11868] = {ID=11868,Desc="磧"},
[11869] = {ID=11869,Desc="僉"},
[11870] = {ID=11870,Desc="鈐"},
[11871] = {ID=11871,Desc="膁"},
[11872] = {ID=11872,Desc="槧"},
[11873] = {ID=11873,Desc="枪决女犯"},
[11874] = {ID=11874,Desc="枪决现场"},
[11875] = {ID=11875,Desc="枪支弹药"},
[11876] = {ID=11876,Desc="錆"},
[11877] = {ID=11877,Desc="强硬发言"},
[11878] = {ID=11878,Desc="繰"},
[11879] = {ID=11879,Desc="喬石"},
[11880] = {ID=11880,Desc="譙"},
[11881] = {ID=11881,Desc="窃听器"},
[11882] = {ID=11882,Desc="窃听器材"},
[11883] = {ID=11883,Desc="篋"},
[11884] = {ID=11884,Desc="亲民党"},
[11885] = {ID=11885,Desc="親美"},
[11886] = {ID=11886,Desc="親民黨"},
[11887] = {ID=11887,Desc="唚"},
[11888] = {ID=11888,Desc="青天白日"},
[11889] = {ID=11889,Desc="輕舟快訊"},
[11890] = {ID=11890,Desc="檾"},
[11891] = {ID=11891,Desc="詘"},
[11892] = {ID=11892,Desc="闃"},
[11893] = {ID=11893,Desc="棬"},
[11894] = {ID=11894,Desc="全国人大"},
[11895] = {ID=11895,Desc="全國兩會"},
[11896] = {ID=11896,Desc="瘸腿帮"},
[11897] = {ID=11897,Desc="瘸腿幫"},
[11898] = {ID=11898,Desc="愨"},
[11899] = {ID=11899,Desc="讓你操"},
[11900] = {ID=11900,Desc="热比娅"},
[11901] = {ID=11901,Desc="热那亚"},
[11902] = {ID=11902,Desc="熱比婭"},
[11903] = {ID=11903,Desc="熱站政論網"},
[11904] = {ID=11904,Desc="人代会"},
[11905] = {ID=11905,Desc="人民报"},
[11906] = {ID=11906,Desc="人民報"},
[11907] = {ID=11907,Desc="人民大会堂"},
[11908] = {ID=11908,Desc="人民大會堂"},
[11909] = {ID=11909,Desc="人民广场"},
[11910] = {ID=11910,Desc="人民內情真相"},
[11911] = {ID=11911,Desc="人民日报"},
[11912] = {ID=11912,Desc="人民银行"},
[11913] = {ID=11913,Desc="人民之聲論壇"},
[11914] = {ID=11914,Desc="人權"},
[11915] = {ID=11915,Desc="人体炸弹"},
[11916] = {ID=11916,Desc="日本RING"},
[11917] = {ID=11917,Desc="日本帝國"},
[11918] = {ID=11918,Desc="日軍"},
[11919] = {ID=11919,Desc="日內瓦金融"},
[11920] = {ID=11920,Desc="顬"},
[11921] = {ID=11921,Desc="塞你爸"},
[11922] = {ID=11922,Desc="塞你公"},
[11923] = {ID=11923,Desc="三K黨"},
[11924] = {ID=11924,Desc="三个呆婊"},
[11925] = {ID=11925,Desc="三个代婊"},
[11926] = {ID=11926,Desc="三級片"},
[11927] = {ID=11927,Desc="三民���义"},
[11928] = {ID=11928,Desc="三陪女"},
[11929] = {ID=11929,Desc="三去车仑"},
[11930] = {ID=11930,Desc="三去車侖工力"},
[11931] = {ID=11931,Desc="三唑仑"},
[11932] = {ID=11932,Desc="毿"},
[11933] = {ID=11933,Desc="糝"},
[11934] = {ID=11934,Desc="山口組"},
[11935] = {ID=11935,Desc="删 号"},
[11936] = {ID=11936,Desc="删号"},
[11937] = {ID=11937,Desc="商务部"},
[11938] = {ID=11938,Desc="上訪"},
[11939] = {ID=11939,Desc="上海幫"},
[11940] = {ID=11940,Desc="上海孤兒院"},
[11941] = {ID=11941,Desc="社科院"},
[11942] = {ID=11942,Desc="射了還說要"},
[11943] = {ID=11943,Desc="灄"},
[11944] = {ID=11944,Desc="身份生成器"},
[11945] = {ID=11945,Desc="詵"},
[11946] = {ID=11946,Desc="神经病"},
[11947] = {ID=11947,Desc="神通加持法"},
[11948] = {ID=11948,Desc="諗"},
[11949] = {ID=11949,Desc="生命分流的圖騰"},
[11950] = {ID=11950,Desc="生鸦片"},
[11951] = {ID=11951,Desc="澠"},
[11952] = {ID=11952,Desc="圣女峰"},
[11953] = {ID=11953,Desc="圣战"},
[11954] = {ID=11954,Desc="聖射手"},
[11955] = {ID=11955,Desc="聖戰"},
[11956] = {ID=11956,Desc="濕了還說不要"},
[11957] = {ID=11957,Desc="濕了還說要"},
[11958] = {ID=11958,Desc="鯴"},
[11959] = {ID=11959,Desc="釃"},
[11960] = {ID=11960,Desc="十年动乱石进"},
[11961] = {ID=11961,Desc="石拳戰鬥兵"},
[11962] = {ID=11962,Desc="時代論壇"},
[11963] = {ID=11963,Desc="史萊姆"},
[11964] = {ID=11964,Desc="驶你爸"},
[11965] = {ID=11965,Desc="驶你公"},
[11966] = {ID=11966,Desc="世界维吾尔大会"},
[11967] = {ID=11967,Desc="示威"},
[11968] = {ID=11968,Desc="貰"},
[11969] = {ID=11969,Desc="售ID"},
[11970] = {ID=11970,Desc="售软件"},
[11971] = {ID=11971,Desc="攄"},
[11972] = {ID=11972,Desc="雙十節"},
[11973] = {ID=11973,Desc="氵去車侖工力"},
[11974] = {ID=11974,Desc="氵去車侖工力?"},
[11975] = {ID=11975,Desc="水利部"},
[11976] = {ID=11976,Desc="稅力"},
[11977] = {ID=11977,Desc="司法部"},
[11978] = {ID=11978,Desc="私/服"},
[11979] = {ID=11979,Desc="私?服"},
[11980] = {ID=11980,Desc="私服"},
[11981] = {ID=11981,Desc="私-服"},
[11982] = {ID=11982,Desc="私—服"},
[11983] = {ID=11983,Desc="斯诺登"},
[11984] = {ID=11984,Desc="死全家"},
[11985] = {ID=11985,Desc="四川獨"},
[11986] = {ID=11986,Desc="四人帮"},
[11987] = {ID=11987,Desc="四人幫"},
[11988] = {ID=11988,Desc="塔利班"},
[11989] = {ID=11989,Desc="塔內"},
[11990] = {ID=11990,Desc="塔烏"},
[11991] = {ID=11991,Desc="鰨"},
[11992] = {ID=11992,Desc="闥"},
[11993] = {ID=11993,Desc="台办"},
[11994] = {ID=11994,Desc="台独"},
[11995] = {ID=11995,Desc="台独分子"},
[11996] = {ID=11996,Desc="台独万岁"},
[11997] = {ID=11997,Desc="台联"},
[11998] = {ID=11998,Desc="台湾党"},
[11999] = {ID=11999,Desc="台湾岛国"},
[12000] = {ID=12000,Desc="台湾独立"},
[12001] = {ID=12001,Desc="台湾共产党"},
[12002] = {ID=12002,Desc="台湾共和国"},
[12003] = {ID=12003,Desc="台湾狗"},
[12004] = {ID=12004,Desc="台湾国"},
[12005] = {ID=12005,Desc="台湾民国"},
[12006] = {ID=12006,Desc="臺盟"},
[12007] = {ID=12007,Desc="臺灣獨"},
[12008] = {ID=12008,Desc="臺灣共産黨"},
[12009] = {ID=12009,Desc="臺灣狗"},
[12010] = {ID=12010,Desc="臺灣建國運動組織"},
[12011] = {ID=12011,Desc="臺灣青年獨立聯盟"},
[12012] = {ID=12012,Desc="臺灣政論區"},
[12013] = {ID=12013,Desc="臺灣自由聯盟"},
[12014] = {ID=12014,Desc="鮐"},
[12015] = {ID=12015,Desc="太子党"},
[12016] = {ID=12016,Desc="天安门事件"},
[12017] = {ID=12017,Desc="天安門"},
[12018] = {ID=12018,Desc="天安門錄影帶"},
[12019] = {ID=12019,Desc="天安門事件"},
[12020] = {ID=12020,Desc="天安門屠殺"},
[12021] = {ID=12021,Desc="天安門一代"},
[12022] = {ID=12022,Desc="天主教"},
[12023] = {ID=12023,Desc="跳大神"},
[12024] = {ID=12024,Desc="統獨"},
[12025] = {ID=12025,Desc="統戰"},
[12026] = {ID=12026,Desc="投毒杀人"},
[12027] = {ID=12027,Desc="透视软件"},
[12028] = {ID=12028,Desc="摶"},
[12029] = {ID=12029,Desc="鼉"},
[12030] = {ID=12030,Desc="籜"},
[12031] = {ID=12031,Desc="膃"},
[12032] = {ID=12032,Desc="外 挂"},
[12033] = {ID=12033,Desc="外/挂"},
[12034] = {ID=12034,Desc="外_挂"},
[12035] = {ID=12035,Desc="外挂"},
[12036] = {ID=12036,Desc="外-挂"},
[12037] = {ID=12037,Desc="外—挂"},
[12038] = {ID=12038,Desc="外汇局"},
[12039] = {ID=12039,Desc="外交部"},
[12040] = {ID=12040,Desc="外交與方略"},
[12041] = {ID=12041,Desc="外专局"},
[12042] = {ID=12042,Desc="萬里"},
[12043] = {ID=12043,Desc="萬維讀者論壇"},
[12044] = {ID=12044,Desc="王丹"},
[12045] = {ID=12045,Desc="王昊"},
[12046] = {ID=12046,Desc="王洪文"},
[12047] = {ID=12047,Desc="网管"},
[12048] = {ID=12048,Desc="網禪"},
[12049] = {ID=12049,Desc="網特"},
[12050] = {ID=12050,Desc="威而钢"},
[12051] = {ID=12051,Desc="威而柔"},
[12052] = {ID=12052,Desc="伟哥"},
[12053] = {ID=12053,Desc="猥褻"},
[12054] = {ID=12054,Desc="卫生部"},
[12055] = {ID=12055,Desc="温馨"},
[12056] = {ID=12056,Desc="溫逼"},
[12057] = {ID=12057,Desc="溫比"},
[12058] = {ID=12058,Desc="文化部"},
[12059] = {ID=12059,Desc="文物局"},
[12060] = {ID=12060,Desc="倭寇"},
[12061] = {ID=12061,Desc="沃尔开西"},
[12062] = {ID=12062,Desc="无界浏览器"},
[12063] = {ID=12063,Desc="無界瀏覽器"},
[12064] = {ID=12064,Desc="午夜"},
[12065] = {ID=12065,Desc="西藏314事件"},
[12066] = {ID=12066,Desc="西藏獨"},
[12067] = {ID=12067,Desc="西藏独立"},
[12068] = {ID=12068,Desc="西藏分裂"},
[12069] = {ID=12069,Desc="西藏国"},
[12070] = {ID=12070,Desc="吸收的圖騰"},
[12071] = {ID=12071,Desc="吸血獸"},
[12072] = {ID=12072,Desc="希特���"},
[12073] = {ID=12073,Desc="希望之声"},
[12074] = {ID=12074,Desc="洗脑班"},
[12075] = {ID=12075,Desc="洗腦"},
[12076] = {ID=12076,Desc="鮮族"},
[12077] = {ID=12077,Desc="蜆"},
[12078] = {ID=12078,Desc="現金"},
[12079] = {ID=12079,Desc="獻祭的圖騰"},
[12080] = {ID=12080,Desc="乡巴佬"},
[12081] = {ID=12081,Desc="小参考"},
[12082] = {ID=12082,Desc="小參考"},
[12083] = {ID=12083,Desc="小靈通"},
[12084] = {ID=12084,Desc="新觀察論壇"},
[12085] = {ID=12085,Desc="新華通論壇"},
[12086] = {ID=12086,Desc="新疆7.5事件"},
[12087] = {ID=12087,Desc="新疆獨"},
[12088] = {ID=12088,Desc="新疆独立"},
[12089] = {ID=12089,Desc="新疆分裂"},
[12090] = {ID=12090,Desc="新疆国"},
[12091] = {ID=12091,Desc="新生網"},
[12092] = {ID=12092,Desc="新闻出版署"},
[12093] = {ID=12093,Desc="新闻出版总署"},
[12094] = {ID=12094,Desc="新聞出版總署"},
[12095] = {ID=12095,Desc="新闻出版广电总局"},
[12096] = {ID=12096,Desc="兴奋剂"},
[12097] = {ID=12097,Desc="性無能"},
[12098] = {ID=12098,Desc="虛無的飽食者"},
[12099] = {ID=12099,Desc="学运"},
[12100] = {ID=12100,Desc="學潮"},
[12101] = {ID=12101,Desc="學聯"},
[12102] = {ID=12102,Desc="學運"},
[12103] = {ID=12103,Desc="學自聯"},
[12104] = {ID=12104,Desc="血腥图片"},
[12105] = {ID=12105,Desc="鸦片"},
[12106] = {ID=12106,Desc="鸦片液"},
[12107] = {ID=12107,Desc="鸦片渣"},
[12108] = {ID=12108,Desc="烟草局"},
[12109] = {ID=12109,Desc="閹狗"},
[12110] = {ID=12110,Desc="央視內部晚會"},
[12111] = {ID=12111,Desc="姚文元"},
[12112] = {ID=12112,Desc="搖頭丸"},
[12113] = {ID=12113,Desc="摇头丸"},
[12114] = {ID=12114,Desc="摇头玩"},
[12115] = {ID=12115,Desc="耶和华"},
[12116] = {ID=12116,Desc="耶苏"},
[12117] = {ID=12117,Desc="耶穌"},
[12118] = {ID=12118,Desc="野鶏"},
[12119] = {ID=12119,Desc="一党专政"},
[12120] = {ID=12120,Desc="一贯道"},
[12121] = {ID=12121,Desc="一陀糞"},
[12122] = {ID=12122,Desc="一中一台"},
[12123] = {ID=12123,Desc="伊斯兰"},
[12124] = {ID=12124,Desc="伊斯蘭"},
[12125] = {ID=12125,Desc="伊斯蘭亞格林尼斯"},
[12126] = {ID=12126,Desc="异見人士"},
[12127] = {ID=12127,Desc="异型叛軍"},
[12128] = {ID=12128,Desc="异議人士"},
[12129] = {ID=12129,Desc="抑制剂"},
[12130] = {ID=12130,Desc="意志不堅的圖騰"},
[12131] = {ID=12131,Desc="淫"},
[12132] = {ID=12132,Desc="隱者之路"},
[12133] = {ID=12133,Desc="英雄纪念碑"},
[12134] = {ID=12134,Desc="鷹眼派氏族"},
[12135] = {ID=12135,Desc="硬直圖騰"},
[12136] = {ID=12136,Desc="铀"},
[12137] = {ID=12137,Desc="游蕩的僵尸"},
[12138] = {ID=12138,Desc="游行"},
[12139] = {ID=12139,Desc="原子弹"},
[12140] = {ID=12140,Desc="圓滿"},
[12141] = {ID=12141,Desc="緣圈圈"},
[12142] = {ID=12142,Desc="遠志明"},
[12143] = {ID=12143,Desc="杂种"},
[12144] = {ID=12144,Desc="扎卡维"},
[12145] = {ID=12145,Desc="扎卡维是英雄"},
[12146] = {ID=12146,Desc="赵紫阳"},
[12147] = {ID=12147,Desc="侦探设备"},
[12148] = {ID=12148,Desc="真理教"},
[12149] = {ID=12149,Desc="真善忍"},
[12150] = {ID=12150,Desc="真主安拉"},
[12151] = {ID=12151,Desc="镇压"},
[12152] = {ID=12152,Desc="鎮壓"},
[12153] = {ID=12153,Desc="正義黨論壇"},
[12154] = {ID=12154,Desc="政变"},
[12155] = {ID=12155,Desc="政府"},
[12156] = {ID=12156,Desc="政權"},
[12157] = {ID=12157,Desc="政治反对派"},
[12158] = {ID=12158,Desc="政治反對派"},
[12159] = {ID=12159,Desc="政治犯"},
[12160] = {ID=12160,Desc="支那"},
[12161] = {ID=12161,Desc="指點江山論壇"},
[12162] = {ID=12162,Desc="中俄邊界"},
[12163] = {ID=12163,Desc="中共"},
[12164] = {ID=12164,Desc="中国恐怖组织"},
[12165] = {ID=12165,Desc="中国之春"},
[12166] = {ID=12166,Desc="中國復興論壇"},
[12167] = {ID=12167,Desc="中國共産黨"},
[12168] = {ID=12168,Desc="中國孤兒院"},
[12169] = {ID=12169,Desc="中國論壇"},
[12170] = {ID=12170,Desc="中國社會進步黨"},
[12171] = {ID=12171,Desc="中國社會論壇"},
[12172] = {ID=12172,Desc="中國威脅論"},
[12173] = {ID=12173,Desc="中國問題論壇"},
[12174] = {ID=12174,Desc="中國移動通信"},
[12175] = {ID=12175,Desc="中國真實內容"},
[12176] = {ID=12176,Desc="中國之春"},
[12177] = {ID=12177,Desc="中華大地"},
[12178] = {ID=12178,Desc="中華講清"},
[12179] = {ID=12179,Desc="中華民國"},
[12180] = {ID=12180,Desc="中華人民實話實說"},
[12181] = {ID=12181,Desc="中華人民正邪"},
[12182] = {ID=12182,Desc="中華時事"},
[12183] = {ID=12183,Desc="中華養生益智功"},
[12184] = {ID=12184,Desc="中華真實報道"},
[12185] = {ID=12185,Desc="中南海"},
[12186] = {ID=12186,Desc="中央電視臺"},
[12187] = {ID=12187,Desc="鐘山風雨論壇"},
[12188] = {ID=12188,Desc="周守訓"},
[12189] = {ID=12189,Desc="碡"},
[12190] = {ID=12190,Desc="朱鳳芝"},
[12191] = {ID=12191,Desc="朱立倫"},
[12192] = {ID=12192,Desc="主攻指揮官"},
[12193] = {ID=12193,Desc="主席"},
[12194] = {ID=12194,Desc="主義"},
[12195] = {ID=12195,Desc="专政"},
[12196] = {ID=12196,Desc="专制"},
[12197] = {ID=12197,Desc="專政"},
[12198] = {ID=12198,Desc="專制"},
[12199] = {ID=12199,Desc="转法轮"},
[12200] = {ID=12200,Desc="轉化"},
[12201] = {ID=12201,Desc="資本主義"},
[12202] = {ID=12202,Desc="子女任职名单"},
[12203] = {ID=12203,Desc="自焚"},
[12204] = {ID=12204,Desc="自民黨"},
[12205] = {ID=12205,Desc="自由民主论坛"},
[12206] = {ID=12206,Desc="自由民主論壇"},
[12207] = {ID=12207,Desc="自制手枪"},
[12208] = {ID=12208,Desc="自治机关"},
[12209] = {ID=12209,Desc="宗教"},
[12210] = {ID=12210,Desc="总局"},
[12211] = {ID=12211,Desc="总理"},
[12212] = {ID=12212,Desc="總理"},
[12213] = {ID=12213,Desc="鯫"},
[12214] = {ID=12214,Desc="尖阁列岛"},
[12215] = {ID=12215,Desc="钓鱼岛"},
[12216] = {ID=12216,Desc="全能神教"},
[12217] = {ID=12217,Desc="宪政"},
[12218] = {ID=12218,Desc="㈡"},
[12219] = {ID=12219,Desc="K粉"},
[12220] = {ID=12220,Desc="交媾"},
[12221] = {ID=12221,Desc="乱伦"},
[12222] = {ID=12222,Desc="小姐兼职"},
[12223] = {ID=12223,Desc="???逼"},
[12224] = {ID=12224,Desc="??囊"},
[12225] = {ID=12225,Desc="??死你"},
[12226] = {ID=12226,Desc="3P"},
[12227] = {ID=12227,Desc="8仙"},
[12228] = {ID=12228,Desc="Bitch"},
[12229] = {ID=12229,Desc="bt"},
[12230] = {ID=12230,Desc="c a o"},
[12231] = {ID=12231,Desc="CAO"},
[12232] = {ID=12232,Desc="cao"},
[12233] = {ID=12233,Desc="FUCK"},
[12234] = {ID=12234,Desc="Fuck"},
[12235] = {ID=12235,Desc="J8"},
[12236] = {ID=12236,Desc="JB"},
[12237] = {ID=12237,Desc="jb"},
[12238] = {ID=12238,Desc="JB"},
[12239] = {ID=12239,Desc="jb"},
[12240] = {ID=12240,Desc="jb"},
[12241] = {ID=12241,Desc="JB"},
[12242] = {ID=12242,Desc="kao"},
[12243] = {ID=12243,Desc="K他命"},
[12244] = {ID=12244,Desc="ML"},
[12245] = {ID=12245,Desc="NMD"},
[12246] = {ID=12246,Desc="NND"},
[12247] = {ID=12247,Desc="NPC"},
[12248] = {ID=12248,Desc="sb"},
[12249] = {ID=12249,Desc="shit"},
[12250] = {ID=12250,Desc="SHIT"},
[12251] = {ID=12251,Desc="SM"},
[12252] = {ID=12252,Desc="SUCK"},
[12253] = {ID=12253,Desc="Suck"},
[12254] = {ID=12254,Desc="T.M.D"},
[12255] = {ID=12255,Desc="TMD"},
[12256] = {ID=12256,Desc="tmd"},
[12257] = {ID=12257,Desc="tnnd"},
[12258] = {ID=12258,Desc="保钓"},
[12259] = {ID=12259,Desc="暴乱"},
[12260] = {ID=12260,Desc="暴徒"},
[12261] = {ID=12261,Desc="贝肉"},
[12262] = {ID=12262,Desc="苯比"},
[12263] = {ID=12263,Desc="笨屄"},
[12264] = {ID=12264,Desc="笨逼"},
[12265] = {ID=12265,Desc="笨蛋"},
[12266] = {ID=12266,Desc="屄毛"},
[12267] = {ID=12267,Desc="逼毛"},
[12268] = {ID=12268,Desc="屄"},
[12269] = {ID=12269,Desc="逼你老母"},
[12270] = {ID=12270,Desc="逼你老母"},
[12271] = {ID=12271,Desc="逼样"},
[12272] = {ID=12272,Desc="比毛"},
[12273] = {ID=12273,Desc="变态"},
[12274] = {ID=12274,Desc="婊子"},
[12275] = {ID=12275,Desc="婊子養的"},
[12276] = {ID=12276,Desc="冰毒"},
[12277] = {ID=12277,Desc="波霸"},
[12278] = {ID=12278,Desc="博讯"},
[12279] = {ID=12279,Desc="不爽不要錢"},
[12280] = {ID=12280,Desc="藏独"},
[12281] = {ID=12281,Desc="操gm"},
[12282] = {ID=12282,Desc="操Gm"},
[12283] = {ID=12283,Desc="操gM"},
[12284] = {ID=12284,Desc="操GM"},
[12285] = {ID=12285,Desc="操XX"},
[12286] = {ID=12286,Desc="操逼"},
[12287] = {ID=12287,Desc="操比"},
[12288] = {ID=12288,Desc="操蛋"},
[12289] = {ID=12289,Desc="操她"},
[12290] = {ID=12290,Desc="操她妈"},
[12291] = {ID=12291,Desc="操"},
[12292] = {ID=12292,Desc="操那嗎逼"},
[12293] = {ID=12293,Desc="操那嗎比"},
[12294] = {ID=12294,Desc="操尼"},
[12295] = {ID=12295,Desc="操你"},
[12296] = {ID=12296,Desc="操你妈"},
[12297] = {ID=12297,Desc="操你妈屄"},
[12298] = {ID=12298,Desc="操你媽"},
[12299] = {ID=12299,Desc="操你爺爺"},
[12300] = {ID=12300,Desc="操他"},
[12301] = {ID=12301,Desc="草的你妈"},
[12302] = {ID=12302,Desc="草妈"},
[12303] = {ID=12303,Desc="草你"},
[12304] = {ID=12304,Desc="草你妈"},
[12305] = {ID=12305,Desc="草你媽"},
[12306] = {ID=12306,Desc="草拟妈"},
[12307] = {ID=12307,Desc="草擬媽"},
[12308] = {ID=12308,Desc="插gM"},
[12309] = {ID=12309,Desc="插Gm"},
[12310] = {ID=12310,Desc="插gm"},
[12311] = {ID=12311,Desc="插GM"},
[12312] = {ID=12312,Desc="插那嗎B"},
[12313] = {ID=12313,Desc="插妳"},
[12314] = {ID=12314,Desc="插你"},
[12315] = {ID=12315,Desc="插你妈"},
[12316] = {ID=12316,Desc="插你媽"},
[12317] = {ID=12317,Desc="插你爺爺"},
[12318] = {ID=12318,Desc="成人电影"},
[12319] = {ID=12319,Desc="成人片"},
[12320] = {ID=12320,Desc="吃屎"},
[12321] = {ID=12321,Desc="赤匪"},
[12322] = {ID=12322,Desc="抽插"},
[12323] = {ID=12323,Desc="抽你丫的"},
[12324] = {ID=12324,Desc="臭化西"},
[12325] = {ID=12325,Desc="臭机"},
[12326] = {ID=12326,Desc="臭机八"},
[12327] = {ID=12327,Desc="臭鸡"},
[12328] = {ID=12328,Desc="臭鸡巴"},
[12329] = {ID=12329,Desc="臭西"},
[12330] = {ID=12330,Desc="处女"},
[12331] = {ID=12331,Desc="吹喇叭"},
[12332] = {ID=12332,Desc="吹箫"},
[12333] = {ID=12333,Desc="春药"},
[12334] = {ID=12334,Desc="蠢猪"},
[12335] = {ID=12335,Desc="戳那嗎B"},
[12336] = {ID=12336,Desc="戳那嗎逼"},
[12337] = {ID=12337,Desc="戳你"},
[12338] = {ID=12338,Desc="戳你"},
[12339] = {ID=12339,Desc="催情药"},
[12340] = {ID=12340,Desc="錯那嗎B"},
[12341] = {ID=12341,Desc="打炮"},
[12342] = {ID=12342,Desc="大B"},
[12343] = {ID=12343,Desc="大逼"},
[12344] = {ID=12344,Desc="大波波"},
[12345] = {ID=12345,Desc="大鶏巴"},
[12346] = {ID=12346,Desc="大麻"},
[12347] = {ID=12347,Desc="大奶媽"},
[12348] = {ID=12348,Desc="大师"},
[12349] = {ID=12349,Desc="大血B"},
[12350] = {ID=12350,Desc="大血比"},
[12351] = {ID=12351,Desc="呆卵"},
[12352] = {ID=12352,Desc="戴红"},
[12353] = {ID=12353,Desc="戴晶"},
[12354] = {ID=12354,Desc="荡妇"},
[12355] = {ID=12355,Desc="盜竊犯"},
[12356] = {ID=12356,Desc="道教"},
[12357] = {ID=12357,Desc="叼你"},
[12358] = {ID=12358,Desc="叼你妈"},
[12359] = {ID=12359,Desc="叼你媽"},
[12360] = {ID=12360,Desc="屌7"},
[12361] = {ID=12361,Desc="屌7"},
[12362] = {ID=12362,Desc="屌鸠"},
[12363] = {ID=12363,Desc="屌毛"},
[12364] = {ID=12364,Desc="屌妳"},
[12365] = {ID=12365,Desc="屌七"},
[12366] = {ID=12366,Desc="屌西"},
[12367] = {ID=12367,Desc="东突"},
[12368] = {ID=12368,Desc="独立"},
[12369] = {ID=12369,Desc="二屄"},
[12370] = {ID=12370,Desc="二逼"},
[12371] = {ID=12371,Desc="发骚"},
[12372] = {ID=12372,Desc="反动"},
[12373] = {ID=12373,Desc="反共"},
[12374] = {ID=12374,Desc="贩毒"},
[12375] = {ID=12375,Desc="房事"},
[12376] = {ID=12376,Desc="放蕩"},
[12377] = {ID=12377,Desc="干gm"},
[12378] = {ID=12378,Desc="干gM"},
[12379] = {ID=12379,Desc="干Gm"},
[12380] = {ID=12380,Desc="干GM"},
[12381] = {ID=12381,Desc="干X"},
[12382] = {ID=12382,Desc="干爆"},
[12383] = {ID=12383,Desc="干到"},
[12384] = {ID=12384,Desc="干机"},
[12385] = {ID=12385,Desc="干鸡"},
[12386] = {ID=12386,Desc="干她"},
[12387] = {ID=12387,Desc="干啦"},
[12388] = {ID=12388,Desc="干勒"},
[12389] = {ID=12389,Desc="干拎娘"},
[12390] = {ID=12390,Desc="干妳"},
[12391] = {ID=12391,Desc="干妳老母"},
[12392] = {ID=12392,Desc="干妳妈"},
[12393] = {ID=12393,Desc="干妳娘"},
[12394] = {ID=12394,Desc="干尼"},
[12395] = {ID=12395,Desc="干你"},
[12396] = {ID=12396,Desc="干你妈"},
[12397] = {ID=12397,Desc="干你妈b"},
[12398] = {ID=12398,Desc="干你妈逼"},
[12399] = {ID=12399,Desc="干你娘"},
[12400] = {ID=12400,Desc="干您"},
[12401] = {ID=12401,Desc="干七八"},
[12402] = {ID=12402,Desc="干汝"},
[12403] = {ID=12403,Desc="干入"},
[12404] = {ID=12404,Desc="干爽"},
[12405] = {ID=12405,Desc="干死"},
[12406] = {ID=12406,Desc="干死你"},
[12407] = {ID=12407,Desc="干他"},
[12408] = {ID=12408,Desc="干它"},
[12409] = {ID=12409,Desc="干牠"},
[12410] = {ID=12410,Desc="干我"},
[12411] = {ID=12411,Desc="趕你娘"},
[12412] = {ID=12412,Desc="幹bi"},
[12413] = {ID=12413,Desc="幹的你"},
[12414] = {ID=12414,Desc="幹幹幹"},
[12415] = {ID=12415,Desc="幹你娘"},
[12416] = {ID=12416,Desc="幹全家"},
[12417] = {ID=12417,Desc="幹死"},
[12418] = {ID=12418,Desc="幹一家"},
[12419] = {ID=12419,Desc="肛交"},
[12420] = {ID=12420,Desc="肛门"},
[12421] = {ID=12421,Desc="睾丸"},
[12422] = {ID=12422,Desc="弓虽女干"},
[12423] = {ID=12423,Desc="狗b"},
[12424] = {ID=12424,Desc="狗b"},
[12425] = {ID=12425,Desc="狗操"},
[12426] = {ID=12426,Desc="狗操卖逼"},
[12427] = {ID=12427,Desc="狗干"},
[12428] = {ID=12428,Desc="狗卵"},
[12429] = {ID=12429,Desc="狗娘"},
[12430] = {ID=12430,Desc="狗娘"},
[12431] = {ID=12431,Desc="狗娘养的"},
[12432] = {ID=12432,Desc="狗屁"},
[12433] = {ID=12433,Desc="狗日"},
[12434] = {ID=12434,Desc="狗日的"},
[12435] = {ID=12435,Desc="狗屎"},
[12436] = {ID=12436,Desc="狗養"},
[12437] = {ID=12437,Desc="古柯碱"},
[12438] = {ID=12438,Desc="骨獅"},
[12439] = {ID=12439,Desc="龟儿子"},
[12440] = {ID=12440,Desc="龟公"},
[12441] = {ID=12441,Desc="龟孙子"},
[12442] = {ID=12442,Desc="龟头"},
[12443] = {ID=12443,Desc="龜兒子"},
[12444] = {ID=12444,Desc="龜公"},
[12445] = {ID=12445,Desc="龜投"},
[12446] = {ID=12446,Desc="龜頭"},
[12447] = {ID=12447,Desc="鬼村"},
[12448] = {ID=12448,Desc="鬼村"},
[12449] = {ID=12449,Desc="滾那嗎"},
[12450] = {ID=12450,Desc="滾那嗎���比"},
[12451] = {ID=12451,Desc="滾那嗎錯比"},
[12452] = {ID=12452,Desc="河殤"},
[12453] = {ID=12453,Desc="黑社會"},
[12454] = {ID=12454,Desc="黑手黨"},
[12455] = {ID=12455,Desc="洪兴"},
[12456] = {ID=12456,Desc="洪志"},
[12457] = {ID=12457,Desc="紅燈區"},
[12458] = {ID=12458,Desc="后庭"},
[12459] = {ID=12459,Desc="護法"},
[12460] = {ID=12460,Desc="换妻"},
[12461] = {ID=12461,Desc="皇軍"},
[12462] = {ID=12462,Desc="黃片"},
[12463] = {ID=12463,Desc="黄色"},
[12464] = {ID=12464,Desc="黄色电影"},
[12465] = {ID=12465,Desc="机八"},
[12466] = {ID=12466,Desc="机巴"},
[12467] = {ID=12467,Desc="鸡八"},
[12468] = {ID=12468,Desc="鸡巴"},
[12469] = {ID=12469,Desc="鸡叭"},
[12470] = {ID=12470,Desc="鸡芭"},
[12471] = {ID=12471,Desc="鸡掰"},
[12472] = {ID=12472,Desc="鸡鸡"},
[12473] = {ID=12473,Desc="鸡奸"},
[12474] = {ID=12474,Desc="鸡歪"},
[12475] = {ID=12475,Desc="激情电影"},
[12476] = {ID=12476,Desc="鶏8"},
[12477] = {ID=12477,Desc="鶏八"},
[12478] = {ID=12478,Desc="鶏巴"},
[12479] = {ID=12479,Desc="鶏吧"},
[12480] = {ID=12480,Desc="鶏鶏"},
[12481] = {ID=12481,Desc="鶏奸"},
[12482] = {ID=12482,Desc="鶏女"},
[12483] = {ID=12483,Desc="鶏院"},
[12484] = {ID=12484,Desc="妓女"},
[12485] = {ID=12485,Desc="妓院"},
[12486] = {ID=12486,Desc="奸暴"},
[12487] = {ID=12487,Desc="奸夫淫妇"},
[12488] = {ID=12488,Desc="奸她"},
[12489] = {ID=12489,Desc="奸你"},
[12490] = {ID=12490,Desc="奸他"},
[12491] = {ID=12491,Desc="奸淫"},
[12492] = {ID=12492,Desc="贱逼"},
[12493] = {ID=12493,Desc="贱货"},
[12494] = {ID=12494,Desc="贱人"},
[12495] = {ID=12495,Desc="賤B"},
[12496] = {ID=12496,Desc="賤bi"},
[12497] = {ID=12497,Desc="賤逼"},
[12498] = {ID=12498,Desc="賤比"},
[12499] = {ID=12499,Desc="賤貨"},
[12500] = {ID=12500,Desc="賤人"},
[12501] = {ID=12501,Desc="賤種"},
[12502] = {ID=12502,Desc="江八"},
[12503] = {ID=12503,Desc="江羅"},
[12504] = {ID=12504,Desc="江賊"},
[12505] = {ID=12505,Desc="講法"},
[12506] = {ID=12506,Desc="酱猪媳"},
[12507] = {ID=12507,Desc="��交"},
[12508] = {ID=12508,Desc="交媾"},
[12509] = {ID=12509,Desc="交配"},
[12510] = {ID=12510,Desc="姣西"},
[12511] = {ID=12511,Desc="叫床"},
[12512] = {ID=12512,Desc="叫鸡"},
[12513] = {ID=12513,Desc="叫小姐"},
[12514] = {ID=12514,Desc="她妈"},
[12515] = {ID=12515,Desc="她媽"},
[12516] = {ID=12516,Desc="她娘"},
[12517] = {ID=12517,Desc="經血"},
[12518] = {ID=12518,Desc="精液"},
[12519] = {ID=12519,Desc="精液"},
[12520] = {ID=12520,Desc="精子"},
[12521] = {ID=12521,Desc="鸠屎"},
[12522] = {ID=12522,Desc="軍妓"},
[12523] = {ID=12523,Desc="開苞"},
[12524] = {ID=12524,Desc="砍翻一條街"},
[12525] = {ID=12525,Desc="靠你妈"},
[12526] = {ID=12526,Desc="靠你媽"},
[12527] = {ID=12527,Desc="口交"},
[12528] = {ID=12528,Desc="狂操你全家"},
[12529] = {ID=12529,Desc="来干"},
[12530] = {ID=12530,Desc="览叫"},
[12531] = {ID=12531,Desc="烂逼"},
[12532] = {ID=12532,Desc="烂人"},
[12533] = {ID=12533,Desc="滥交"},
[12534] = {ID=12534,Desc="濫B"},
[12535] = {ID=12535,Desc="濫逼"},
[12536] = {ID=12536,Desc="濫比"},
[12537] = {ID=12537,Desc="濫貨"},
[12538] = {ID=12538,Desc="濫交"},
[12539] = {ID=12539,Desc="爛B"},
[12540] = {ID=12540,Desc="爛逼"},
[12541] = {ID=12541,Desc="爛逼"},
[12542] = {ID=12542,Desc="爛比"},
[12543] = {ID=12543,Desc="爛袋"},
[12544] = {ID=12544,Desc="爛貨"},
[12545] = {ID=12545,Desc="勞改"},
[12546] = {ID=12546,Desc="勞教"},
[12547] = {ID=12547,Desc="煉功"},
[12548] = {ID=12548,Desc="两腿之间"},
[12549] = {ID=12549,Desc="卵子"},
[12550] = {ID=12550,Desc="乱交"},
[12551] = {ID=12551,Desc="亂交"},
[12552] = {ID=12552,Desc="亂倫"},
[12553] = {ID=12553,Desc="亂輪"},
[12554] = {ID=12554,Desc="轮干"},
[12555] = {ID=12555,Desc="轮奸"},
[12556] = {ID=12556,Desc="轮流干"},
[12557] = {ID=12557,Desc="輪奸"},
[12558] = {ID=12558,Desc="妈逼"},
[12559] = {ID=12559,Desc="妈比"},
[12560] = {ID=12560,Desc="妈的"},
[12561] = {ID=12561,Desc="妈卖妈屁"},
[12562] = {ID=12562,Desc="媽B"},
[12563] = {ID=12563,Desc="媽比"},
[12564] = {ID=12564,Desc="媽的"},
[12565] = {ID=12565,Desc="媽批"},
[12566] = {ID=12566,Desc="马的"},
[12567] = {ID=12567,Desc="吗的"},
[12568] = {ID=12568,Desc="嗎的"},
[12569] = {ID=12569,Desc="嗎啡"},
[12570] = {ID=12570,Desc="卖逼"},
[12571] = {ID=12571,Desc="卖号"},
[12572] = {ID=12572,Desc="卖淫"},
[12573] = {ID=12573,Desc="賣逼"},
[12574] = {ID=12574,Desc="賣比"},
[12575] = {ID=12575,Desc="賣國"},
[12576] = {ID=12576,Desc="賣騷"},
[12577] = {ID=12577,Desc="賣淫"},
[12578] = {ID=12578,Desc="瞞報"},
[12579] = {ID=12579,Desc="毛片"},
[12580] = {ID=12580,Desc="毛賊"},
[12581] = {ID=12581,Desc="美國佬"},
[12582] = {ID=12582,Desc="蒙古獨"},
[12583] = {ID=12583,Desc="梦遗"},
[12584] = {ID=12584,Desc="迷魂药"},
[12585] = {ID=12585,Desc="迷奸药"},
[12586] = {ID=12586,Desc="民陣"},
[12587] = {ID=12587,Desc="那嗎B"},
[12588] = {ID=12588,Desc="那嗎逼"},
[12589] = {ID=12589,Desc="納粹"},
[12590] = {ID=12590,Desc="奶娘"},
[12591] = {ID=12591,Desc="奶頭"},
[12592] = {ID=12592,Desc="奶子"},
[12593] = {ID=12593,Desc="妳老母的"},
[12594] = {ID=12594,Desc="妳妈的"},
[12595] = {ID=12595,Desc="妳马的"},
[12596] = {ID=12596,Desc="妳娘的"},
[12597] = {ID=12597,Desc="內褲"},
[12598] = {ID=12598,Desc="內衣"},
[12599] = {ID=12599,Desc="嫩b"},
[12600] = {ID=12600,Desc="能樣"},
[12601] = {ID=12601,Desc="你老母"},
[12602] = {ID=12602,Desc="你老味"},
[12603] = {ID=12603,Desc="你姥姥的"},
[12604] = {ID=12604,Desc="你妈"},
[12605] = {ID=12605,Desc="你妈逼"},
[12606] = {ID=12606,Desc="你妈的"},
[12607] = {ID=12607,Desc="你媽"},
[12608] = {ID=12608,Desc="你媽逼"},
[12609] = {ID=12609,Desc="你媽比"},
[12610] = {ID=12610,Desc="你媽的"},
[12611] = {ID=12611,Desc="你爷爷的"},
[12612] = {ID=12612,Desc="你爺"},
[12613] = {ID=12613,Desc="娘餓比"},
[12614] = {ID=12614,Desc="鸟GM"},
[12615] = {ID=12615,Desc="女幹"},
[12616] = {ID=12616,Desc="女幹"},
[12617] = {ID=12617,Desc="排泄"},
[12618] = {ID=12618,Desc="噴你"},
[12619] = {ID=12619,Desc="屁眼"},
[12620] = {ID=12620,Desc="嫖娼"},
[12621] = {ID=12621,Desc="仆街"},
[12622] = {ID=12622,Desc="骑她"},
[12623] = {ID=12623,Desc="骑你"},
[12624] = {ID=12624,Desc="騎你"},
[12625] = {ID=12625,Desc="欠干"},
[12626] = {ID=12626,Desc="欠骑"},
[12627] = {ID=12627,Desc="强奸"},
[12628] = {ID=12628,Desc="强奸犯"},
[12629] = {ID=12629,Desc="强效失意药"},
[12630] = {ID=12630,Desc="喬伊"},
[12631] = {ID=12631,Desc="親美"},
[12632] = {ID=12632,Desc="親日"},
[12633] = {ID=12633,Desc="禽獸"},
[12634] = {ID=12634,Desc="情婦"},
[12635] = {ID=12635,Desc="情色"},
[12636] = {ID=12636,Desc="情獸"},
[12637] = {ID=12637,Desc="情獸"},
[12638] = {ID=12638,Desc="去你妈的"},
[12639] = {ID=12639,Desc="去你媽的"},
[12640] = {ID=12640,Desc="群P"},
[12641] = {ID=12641,Desc="群交"},
[12642] = {ID=12642,Desc="日GM"},
[12643] = {ID=12643,Desc="日gM"},
[12644] = {ID=12644,Desc="日Gm"},
[12645] = {ID=12645,Desc="日gm"},
[12646] = {ID=12646,Desc="日X妈"},
[12647] = {ID=12647,Desc="日你"},
[12648] = {ID=12648,Desc="日你妈"},
[12649] = {ID=12649,Desc="日你媽"},
[12650] = {ID=12650,Desc="日你娘"},
[12651] = {ID=12651,Desc="日你爺爺"},
[12652] = {ID=12652,Desc="日死"},
[12653] = {ID=12653,Desc="日他娘"},
[12654] = {ID=12654,Desc="肉棒"},
[12655] = {ID=12655,Desc="肉棍子"},
[12656] = {ID=12656,Desc="肉壶"},
[12657] = {ID=12657,Desc="肉体"},
[12658] = {ID=12658,Desc="肉欲"},
[12659] = {ID=12659,Desc="乳波臀浪"},
[12660] = {ID=12660,Desc="乳房"},
[12661] = {ID=12661,Desc="乳峰"},
[12662] = {ID=12662,Desc="乳交"},
[12663] = {ID=12663,Desc="乳头"},
[12664] = {ID=12664,Desc="乳頭"},
[12665] = {ID=12665,Desc="乳晕"},
[12666] = {ID=12666,Desc="塞你老母"},
[12667] = {ID=12667,Desc="塞你老师"},
[12668] = {ID=12668,Desc="塞你母"},
[12669] = {ID=12669,Desc="塞你娘"},
[12670] = {ID=12670,Desc="三级片"},
[12671] = {ID=12671,Desc="三陪"},
[12672] = {ID=12672,Desc="骚B"},
[12673] = {ID=12673,Desc="骚逼"},
[12674] = {ID=12674,Desc="骚货"},
[12675] = {ID=12675,Desc="騷B"},
[12676] = {ID=12676,Desc="騷棒"},
[12677] = {ID=12677,Desc="騷包"},
[12678] = {ID=12678,Desc="騷逼"},
[12679] = {ID=12679,Desc="騷棍"},
[12680] = {ID=12680,Desc="騷貨"},
[12681] = {ID=12681,Desc="騷鶏"},
[12682] = {ID=12682,Desc="騷卵"},
[12683] = {ID=12683,Desc="色情"},
[12684] = {ID=12684,Desc="色情电影"},
[12685] = {ID=12685,Desc="色情服务"},
[12686] = {ID=12686,Desc="色情小电影"},
[12687] = {ID=12687,Desc="杀人"},
[12688] = {ID=12688,Desc="杀人犯"},
[12689] = {ID=12689,Desc="殺人犯"},
[12690] = {ID=12690,Desc="傻B"},
[12691] = {ID=12691,Desc="傻屄"},
[12692] = {ID=12692,Desc="傻逼"},
[12693] = {ID=12693,Desc="傻比"},
[12694] = {ID=12694,Desc="傻吊"},
[12695] = {ID=12695,Desc="傻卵"},
[12696] = {ID=12696,Desc="傻鳥"},
[12697] = {ID=12697,Desc="傻子"},
[12698] = {ID=12698,Desc="煞逼"},
[12699] = {ID=12699,Desc="煞笔"},
[12700] = {ID=12700,Desc="煞筆"},
[12701] = {ID=12701,Desc="删号"},
[12702] = {ID=12702,Desc="上妳"},
[12703] = {ID=12703,Desc="上你"},
[12704] = {ID=12704,Desc="射精"},
[12705] = {ID=12705,Desc="神經病"},
[12706] = {ID=12706,Desc="生孩子沒屁眼"},
[12707] = {ID=12707,Desc="湿了"},
[12708] = {ID=12708,Desc="十八摸"},
[12709] = {ID=12709,Desc="食捻屎"},
[12710] = {ID=12710,Desc="食屎"},
[12711] = {ID=12711,Desc="驶你母"},
[12712] = {ID=12712,Desc="驶你娘"},
[12713] = {ID=12713,Desc="是鸡"},
[12714] = {ID=12714,Desc="手淫"},
[12715] = {ID=12715,Desc="受虐狂"},
[12716] = {ID=12716,Desc="售号"},
[12717] = {ID=12717,Desc="双飞"},
[12718] = {ID=12718,Desc="爽你"},
[12719] = {ID=12719,Desc="氵去"},
[12720] = {ID=12720,Desc="私處"},
[12721] = {ID=12721,Desc="死GD"},
[12722] = {ID=12722,Desc="死gd"},
[12723] = {ID=12723,Desc="死gm"},
[12724] = {ID=12724,Desc="死GM"},
[12725] = {ID=12725,Desc="他爹"},
[12726] = {ID=12726,Desc="他干"},
[12727] = {ID=12727,Desc="他妈的"},
[12728] = {ID=12728,Desc="他媽"},
[12729] = {ID=12729,Desc="他媽的"},
[12730] = {ID=12730,Desc="他马的"},
[12731] = {ID=12731,Desc="他嗎的"},
[12732] = {ID=12732,Desc="他母亲"},
[12733] = {ID=12733,Desc="他母親"},
[12734] = {ID=12734,Desc="他娘"},
[12735] = {ID=12735,Desc="他娘"},
[12736] = {ID=12736,Desc="他祖宗"},
[12737] = {ID=12737,Desc="台独"},
[12738] = {ID=12738,Desc="太监"},
[12739] = {ID=12739,Desc="太監"},
[12740] = {ID=12740,Desc="天閹"},
[12741] = {ID=12741,Desc="舔西"},
[12742] = {ID=12742,Desc="屠杀"},
[12743] = {ID=12743,Desc="屠殺"},
[12744] = {ID=12744,Desc="推油"},
[12745] = {ID=12745,Desc="王八蛋"},
[12746] = {ID=12746,Desc="猥琐"},
[12747] = {ID=12747,Desc="猥亵"},
[12748] = {ID=12748,Desc="倭国"},
[12749] = {ID=12749,Desc="我操"},
[12750] = {ID=12750,Desc="我操你"},
[12751] = {ID=12751,Desc="我干"},
[12752] = {ID=12752,Desc="我奸"},
[12753] = {ID=12753,Desc="我日"},
[12754] = {ID=12754,Desc="我日你"},
[12755] = {ID=12755,Desc="吸毒"},
[12756] = {ID=12756,Desc="下體"},
[12757] = {ID=12757,Desc="先奸后杀"},
[12758] = {ID=12758,Desc="想上你"},
[12759] = {ID=12759,Desc="小B樣"},
[12760] = {ID=12760,Desc="小比樣"},
[12761] = {ID=12761,Desc="小鸡鸡"},
[12762] = {ID=12762,Desc="小鶏鶏"},
[12763] = {ID=12763,Desc="小姐兼职"},
[12764] = {ID=12764,Desc="小日本"},
[12765] = {ID=12765,Desc="小肉粒"},
[12766] = {ID=12766,Desc="小乳头"},
[12767] = {ID=12767,Desc="小穴"},
[12768] = {ID=12768,Desc="邪教"},
[12769] = {ID=12769,Desc="性愛"},
[12770] = {ID=12770,Desc="性交"},
[12771] = {ID=12771,Desc="性奴"},
[12772] = {ID=12772,Desc="性虐"},
[12773] = {ID=12773,Desc="性虐待"},
[12774] = {ID=12774,Desc="性无能"},
[12775] = {ID=12775,Desc="性欲"},
[12776] = {ID=12776,Desc="学潮"},
[12777] = {ID=12777,Desc="学运"},
[12778] = {ID=12778,Desc="血逼"},
[12779] = {ID=12779,Desc="押大"},
[12780] = {ID=12780,Desc="押小"},
[12781] = {ID=12781,Desc="顔射"},
[12782] = {ID=12782,Desc="阳精"},
[12783] = {ID=12783,Desc="阳具"},
[12784] = {ID=12784,Desc="阳痿"},
[12785] = {ID=12785,Desc="阳物"},
[12786] = {ID=12786,Desc="陽具"},
[12787] = {ID=12787,Desc="陽痿"},
[12788] = {ID=12788,Desc="陽物"},
[12789] = {ID=12789,Desc="楊巍"},
[12790] = {ID=12790,Desc="藥水"},
[12791] = {ID=12791,Desc="夜情"},
[12792] = {ID=12792,Desc="一贯道"},
[12793] = {ID=12793,Desc="一夜情"},
[12794] = {ID=12794,Desc="遗精"},
[12795] = {ID=12795,Desc="遺精"},
[12796] = {ID=12796,Desc="阴部"},
[12797] = {ID=12797,Desc="阴唇"},
[12798] = {ID=12798,Desc="阴道"},
[12799] = {ID=12799,Desc="阴蒂"},
[12800] = {ID=12800,Desc="阴蒂"},
[12801] = {ID=12801,Desc="阴核"},
[12802] = {ID=12802,Desc="阴户"},
[12803] = {ID=12803,Desc="阴茎"},
[12804] = {ID=12804,Desc="阴毛"},
[12805] = {ID=12805,Desc="阴门"},
[12806] = {ID=12806,Desc="阴水"},
[12807] = {ID=12807,Desc="陰部"},
[12808] = {ID=12808,Desc="陰唇"},
[12809] = {ID=12809,Desc="陰道"},
[12810] = {ID=12810,Desc="陰蒂"},
[12811] = {ID=12811,Desc="陰戶"},
[12812] = {ID=12812,Desc="陰莖"},
[12813] = {ID=12813,Desc="陰精"},
[12814] = {ID=12814,Desc="陰毛"},
[12815] = {ID=12815,Desc="陰門"},
[12816] = {ID=12816,Desc="陰水"},
[12817] = {ID=12817,Desc="淫荡"},
[12818] = {ID=12818,Desc="淫蕩"},
[12819] = {ID=12819,Desc="淫洞"},
[12820] = {ID=12820,Desc="淫秽"},
[12821] = {ID=12821,Desc="淫穢"},
[12822] = {ID=12822,Desc="淫货"},
[12823] = {ID=12823,Desc="淫貨"},
[12824] = {ID=12824,Desc="淫贱"},
[12825] = {ID=12825,Desc="淫賤"},
[12826] = {ID=12826,Desc="淫叫"},
[12827] = {ID=12827,Desc="淫乱"},
[12828] = {ID=12828,Desc="淫毛"},
[12829] = {ID=12829,Desc="淫靡"},
[12830] = {ID=12830,Desc="淫湿"},
[12831] = {ID=12831,Desc="淫水"},
[12832] = {ID=12832,Desc="淫娃"},
[12833] = {ID=12833,Desc="淫穴"},
[12834] = {ID=12834,Desc="淫液"},
[12835] = {ID=12835,Desc="淫欲"},
[12836] = {ID=12836,Desc="淫汁"},
[12837] = {ID=12837,Desc="引導"},
[12838] = {ID=12838,Desc="硬挺"},
[12839] = {ID=12839,Desc="游行"},
[12840] = {ID=12840,Desc="幼齒"},
[12841] = {ID=12841,Desc="幼龍"},
[12842] = {ID=12842,Desc="玉杵"},
[12843] = {ID=12843,Desc="援交"},
[12844] = {ID=12844,Desc="曰GM"},
[12845] = {ID=12845,Desc="曰Gm"},
[12846] = {ID=12846,Desc="曰gm"},
[12847] = {ID=12847,Desc="曰gM"},
[12848] = {ID=12848,Desc="曰你"},
[12849] = {ID=12849,Desc="月经"},
[12850] = {ID=12850,Desc="月經"},
[12851] = {ID=12851,Desc="雜種"},
[12852] = {ID=12852,Desc="再奸"},
[12853] = {ID=12853,Desc="早泄"},
[12854] = {ID=12854,Desc="造愛"},
[12855] = {ID=12855,Desc="造反"},
[12856] = {ID=12856,Desc="张磊"},
[12857] = {ID=12857,Desc="招鶏"},
[12858] = {ID=12858,Desc="貞操"},
[12859] = {ID=12859,Desc="中國猪"},
[12860] = {ID=12860,Desc="猪操"},
[12861] = {ID=12861,Desc="猪毛"},
[12862] = {ID=12862,Desc="装B"},
[12863] = {ID=12863,Desc="装屄"},
[12864] = {ID=12864,Desc="装逼"},
[12865] = {ID=12865,Desc="子宮"},
[12866] = {ID=12866,Desc="自焚"},
[12867] = {ID=12867,Desc="作愛"},
[12868] = {ID=12868,Desc="坐台"},
[12869] = {ID=12869,Desc="做愛"},
[12870] = {ID=12870,Desc="网络水军"},
[12871] = {ID=12871,Desc="薛蛮子"},
[12872] = {ID=12872,Desc="大V"},
[12873] = {ID=12873,Desc="悬赏兼职发帖"},
[12874] = {ID=12874,Desc="网络水军招聘"},
[12875] = {ID=12875,Desc="专业删帖"},
[12876] = {ID=12876,Desc="网上发帖赚钱"},
[12877] = {ID=12877,Desc="公关删除百度信息"},
[12878] = {ID=12878,Desc="专业负面信息处理"},
[12879] = {ID=12879,Desc="负面新闻信息删除"},
[12880] = {ID=12880,Desc="水军军团招人"},
[12881] = {ID=12881,Desc="发帖人招聘"},
[12882] = {ID=12882,Desc="网络执行工作室招人"},
[12883] = {ID=12883,Desc="专业网络推手培训"},
[12884] = {ID=12884,Desc="网络推手招人"},
[12885] = {ID=12885,Desc="网络打手招人"},
[12886] = {ID=12886,Desc="加入网络水军"},
[12887] = {ID=12887,Desc="网络炒作培训"},
[12888] = {ID=12888,Desc="删除负面信息"},
[12889] = {ID=12889,Desc="白粉"},
[12890] = {ID=12890,Desc="全能神教"},
[12891] = {ID=12891,Desc="天安门运动"},
[12892] = {ID=12892,Desc="全能教"},
[12893] = {ID=12893,Desc="东方闪电"},
[12894] = {ID=12894,Desc="藏独"},
[12895] = {ID=12895,Desc="台独"},
[12896] = {ID=12896,Desc="习近平"},
[12897] = {ID=12897,Desc="江泽民"},
[12898] = {ID=12898,Desc="张高丽"},
[12899] = {ID=12899,Desc="sex"},
[12900] = {ID=12900,Desc="李克强"},
[12901] = {ID=12901,Desc="偷窥视频"},
[12902] = {ID=12902,Desc="k粉"},
[12903] = {ID=12903,Desc="强暴幼女"},
[12904] = {ID=12904,Desc="西藏自由"},
[12905] = {ID=12905,Desc="东突"},
[12906] = {ID=12906,Desc="Freetibet"},
[12907] = {ID=12907,Desc="全能神"},
[12908] = {ID=12908,Desc="呼喊派"},
[12909] = {ID=12909,Desc="徒弟会"},
[12910] = {ID=12910,Desc="全范围教会"},
[12911] = {ID=12911,Desc="灵灵教"},
[12912] = {ID=12912,Desc="新约教会"},
[12913] = {ID=12913,Desc="观音法门"},
[12914] = {ID=12914,Desc="主神教"},
[12915] = {ID=12915,Desc="被立王"},
[12916] = {ID=12916,Desc="同一教"},
[12917] = {ID=12917,Desc="三班仆人派"},
[12918] = {ID=12918,Desc="灵仙真佛宗"},
[12919] = {ID=12919,Desc="天父的儿女"},
[12920] = {ID=12920,Desc="达米宣教会"},
[12921] = {ID=12921,Desc="世界以利亚福音宣教会"},
[12922] = {ID=12922,Desc="常受教"},
[12923] = {ID=12923,Desc="中华大陆行政执事站"},
[12924] = {ID=12924,Desc="主神教"},
[12925] = {ID=12925,Desc="实际神"},
[12926] = {ID=12926,Desc="东方闪电"},
[12927] = {ID=12927,Desc="isis"},
[12928] = {ID=12928,Desc="全能神"},
[12929] = {ID=12929,Desc="西藏恐怖分子"},
[12930] = {ID=12930,Desc="ak47"},
[12931] = {ID=12931,Desc="新疆恐怖分子"},
[12932] = {ID=12932,Desc="自杀袭击"},
[12933] = {ID=12933,Desc="新疆恐怖暴动事件"},
[12934] = {ID=12934,Desc="乌鲁木齐七五骚乱"},
[12935] = {ID=12935,Desc="占中"},
[12936] = {ID=12936,Desc="占领中环"},
[12937] = {ID=12937,Desc="走私"},
[12938] = {ID=12938,Desc="fuck"},
[12939] = {ID=12939,Desc="sex"},
[12940] = {ID=12940,Desc="回民都是猪"},
[12941] = {ID=12941,Desc="一边一国”"},
[12942] = {ID=12942,Desc="穆罕默德"},
[12943] = {ID=12943,Desc="isil"},
}
return shieldingword
|
--Coded By: NickWill86
EndorEwokTreeVillage02ScreenPlay = ScreenPlay:new {
numberOfActs = 1,
}
registerScreenPlay("EndorEwokTreeVillage02ScreenPlay", true)
function EndorEwokTreeVillage02ScreenPlay:start()
if (isZoneEnabled("endor")) then
self:spawnMobiles()
end
end
function EndorEwokTreeVillage02ScreenPlay:spawnMobiles()
--North East Tree(1 of 2)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4528.7,20.1,-2376.6,82,0)--In the hutt
spawnMobile("endor", "panshee_warrior",300,4531.1,20.2,-2392.6,170,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_tribesman",300,4519.6,30.3,-2378.1,106,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4520.2,30,-2384.2,-84,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4523.6,30,-2390.4,-122,0)--GaurdingBridge
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4534.9,40.3,-2377.8,-148,0)--OverLook#1
spawnMobile("endor", "panshee_tribesman",300,4519.2,40.3,-2377.2,139,0)--OverLook#2
spawnMobile("endor", "panshee_shaman",300,4522.4,40.1,-2381.4,-45,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4519.2,40.3,-2394.2,19,0)--OverLook#3
spawnMobile("endor", "panshee_shaman",300,4528.2,40.1,-2392.3,166,0)--Hut#2
--South West Tree(1 of 2)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4486.7,10.3,-2415.7,-11,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_tribesman",300,4499.1,20.3,-2430.1,-63,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4497.9,20,-2423.2,96,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4498.8,20.3,-2414.1,-147,0)--OverLook#1
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4483.1,30.3,-2430,-148,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4492.4,30.1,-2428.4,171,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4499.2,30.3,-2429.9,-73,0)--OverLook#2
spawnMobile("endor", "panshee_tribesman",300,4494.2,30.3,-2418.4,42,0)--GaurdingBridge
spawnMobile("endor", "panshee_shaman",300,4490.2,30.1,-2415.9,-7,0)--Hut#2
--The Two Huts
spawnMobile("endor", "panshee_shaman",300,4477.7,10.1,-2402.9,118,0)--Hut#1
spawnMobile("endor", "panshee_shaman",300,4484.9,10.1,-2398.4,170,0)--Hut#2
--North Tree(1 of 4)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4538.4,20,-2353.3,32,0)--In the hutt
spawnMobile("endor", "panshee_warrior",300,4538.7,20,-2369.4,-158,0)--In the hutt with a basket
spawnMobile("endor", "panshee_warrior",300,4541.4,20,-2372.2,-43,0)--Near the drying fish
spawnMobile("endor", "panshee_warrior",300,4551,20.3,-2362.6,143,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_tribesman",300,4532.6,30.3,-2361.1,78,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4538.2,30,-2365.2,-124,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4544.6,30,-2366.4,-178,0)--GaurdingBridge
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4543.9,40.3,-2349.8,163,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4538.1,40.1,-2358.4,-73,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4532.6,40.3,-2361.2,78,0)--OverLook#2
spawnMobile("endor", "panshee_tribesman",300,4544.1,40.3,-2372.4,-14,0)--OverLook#3
spawnMobile("endor", "panshee_shaman",300,4549.2,40.1,-2364.7,-159,0)--Hut#2
--East Tree(2 of 4)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4591.4,10.2,-2399.6,148,0)--In the hutt with hide
spawnMobile("endor", "panshee_warrior",300,4603.9,10,-2402.9,85,0)--Near the drying fish
spawnMobile("endor", "panshee_warrior",300,4608,10,-2403.3,-133,0)--In the hutt with a basket
spawnMobile("endor", "panshee_warrior",300,4595,10.4,-2420.8,130,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_tribesman",300,4595.5,20.3,-2401,153,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4590,20.1,-2409,46,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4584.5,20.3,-2413,77,0)--OverLook#2
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4607.5,30.3,-2413,-100,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4599.9,30.1,-2407.7,34,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4595.5,30.3,-2401,154,0)--OverLook#2
spawnMobile("endor", "panshee_shaman",300,4593.7,30,-2418,-159,0)--Hut#2
--Middle Tree(3 of 4)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4550,20,-2420.8,61,0)--In the hutt with baskets
spawnMobile("endor", "panshee_warrior",300,4542.5,20,-2403.3,-28,0)--In the hutt with bottles
spawnMobile("endor", "panshee_warrior",300,4536,20.3,-2411,-51,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_warrior",300,4550,30,-2414,121,0)--Guard
spawnMobile("endor", "panshee_shaman",300,4547.8,30.1,-2408,34,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4543,30.3,-2402,175,0)--GuardingBridge
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4543.9,40.3,-2423.9,-4,0)--GuardingBridge
spawnMobile("endor", "panshee_tribesman",300,4555.5,40.3,-2413,-118,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4550,40.1,-2413,147,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4544.5,40.3,-2401,154,0)--OverLook#2
spawnMobile("endor", "panshee_shaman",300,4539.7,40,-2408,-37,0)--Hut#2
--South Tree(4 of 4)
--On the ground
spawnMobile("endor", "panshee_warrior",300,4553,30,-2466,3,0)--Near The Drying Fish
spawnMobile("endor", "panshee_warrior",300,4554,30,-2472,-179,0)--Near The Spears
spawnMobile("endor", "panshee_warrior",300,4559,30,-2472,159,0)--Near the Basket
spawnMobile("endor", "panshee_warrior",300,4536,30.3,-2464,-28,0)--GuardingStairs
--First Floor
spawnMobile("endor", "panshee_warrior",300,4550,40,-2466,121,0)--Guard
spawnMobile("endor", "panshee_tribesman",300,4555,40.3,-2464,-120,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4547.8,40.1,-2460,34,0)--Hut
spawnMobile("endor", "panshee_tribesman",300,4542,40,-2455,120,0)--GuardingBridge
--Second Floor(Top Floor)
spawnMobile("endor", "panshee_tribesman",300,4544,50.3,-2476,-24,0)--OverLook#1
spawnMobile("endor", "panshee_shaman",300,4547.7,50.1,-2470.1,147,0)--Hut#1
spawnMobile("endor", "panshee_tribesman",300,4555.5,50.3,-2464,-109,0)--OverLook#2
spawnMobile("endor", "panshee_tribesman",300,4544.5,50.3,-2453,150,0)--OverLook#3
spawnMobile("endor", "panshee_shaman",300,4540.7,50,-2460,-35,0)--Hut#2
end
|
local path = ...
-- basic components
require(path .. ".Transformable")
-- physics
require(path .. ".Physics")
require(path .. ".ColliderRectangle")
require(path .. ".ColliderCircle")
require(path .. ".Movement")
-- render
require(path .. ".Sprite")
require(path .. ".RenderCircle")
require(path .. ".RenderRectangle")
require(path .. ".FillColor")
require(path .. ".FillTexture")
-- ai
require(path .. ".SimpleFollowAI")
-- health
require(path .. ".Health")
require(path .. ".HealthIndicator")
require(path .. ".MeleeAttacker")
require(path .. ".Bleeding")
require(path .. ".Explosive")
-- other
require(path .. ".Inventory")
require(path .. ".Pickup")
require(path .. ".Vehicle")
|
local lpeg = require('lpeg')
-- Lexical Elements
local Space = lpeg.S(" \n\t")^0
local Number = lpeg.C(lpeg.P"-"^-1 * lpeg.R("09")^1) * Space
local TermOp = lpeg.C(lpeg.S("+-")) * Space
local FactorOp = lpeg.C(lpeg.S("*/")) * Space
local Open = "(" * Space
local Close = ")" * Space
-- Grammar
local Exp, Term, Factor = lpeg.V"Exp", lpeg.V"Term", lpeg.V"Factor"
G = lpeg.P{ Exp,
Exp = lpeg.Ct(Term * (TermOp * Term)^0);
Term = lpeg.Ct(Factor * (FactorOp * Factor)^0);
Factor = Number + Open * Exp * Close;
}
G = Space * G * -1
-- Evaluator
function eval (x)
if type(x) == "string" then
return tonumber(x)
else
local op1 = eval(x[1])
for i = 2, #x, 2 do
local op = x[i]
local op2 = eval(x[i + 1])
if (op == "+") then op1 = op1 + op2
elseif (op == "-") then op1 = op1 - op2
elseif (op == "*") then op1 = op1 * op2
elseif (op == "/") then op1 = op1 / op2
end
end
return op1
end
end
-- Parser/Evaluator
function evalExp (s)
local t = lpeg.match(G, s)
print(vim.inspect(t))
if not t then error("syntax error", 2) end
return eval(t)
end
-- small example
print(evalExp"1 + 1 + 1 + 1 * (2 + 7)") --> 13.5
|
local Camera = {}
Camera.__index = Camera
function Camera.new(args)
local camera = setmetatable({}, Camera)
camera:init(args)
return camera
end
function Camera:init(args)
self.game = assert(args.game)
self.x, self.y = args.x or 0, args.y or 0
self.scale = args.scale or 1
self.game:setDrawHandler("camera", self, Camera.drawCamera)
end
function Camera:destroy()
self.game:setDrawHandler("camera", self, nil)
end
function Camera:drawCamera()
local width, height = love.graphics.getDimensions()
local scale = self.scale * height
love.graphics.translate(0.5 * width, 0.5 * height)
love.graphics.scale(scale)
love.graphics.translate(-self.x, -self.y)
love.graphics.setLineWidth(1 / scale)
end
return Camera
|
---
-- @module CmdrService
-- @author Quenty
local require = require(script.Parent.loader).load(script)
local PermissionService = require("PermissionService")
local Promise = require("Promise")
local CmdrService = {}
function CmdrService:Init(serviceBag)
assert(not self._cmdr, "Already initialized")
self._cmdr = require("Cmdr")
self._cmdr:RegisterDefaultCommands()
self._permissionService = serviceBag:GetService(PermissionService)
self._cmdr.Registry:RegisterHook("BeforeRun", function(context)
local providerPromise = self._permissionService:PromisePermissionProvider()
if providerPromise:IsPending() then
return "Still loading permissions"
end
local ok, provider = providerPromise:Yield()
if not ok then
return provider or "Failed to load permission provider"
end
if context.Group == "DefaultAdmin" and not provider:IsAdmin(context.Executor) then
return "You don't have permission to run this command"
end
end)
end
function CmdrService:PromiseCmdr()
assert(self._cmdr, "Not initialized")
return Promise.resolved(self._cmdr)
end
return CmdrService
|
local M = { }
local function totitle(opts)
return opts.title or
opts.prompt and
opts.prompt:gsub('%s*$', '')
:gsub(':$', '') or
nil
end
local function browse(opts, on_choice)
vim.validate {
opts = { opts, 'table', true },
on_choice = { on_choice, 'function', false }
}
local ok, file = pcall(vim.fn.browse,
opts.save or 0,
totitle(opts) or '',
opts.initdir or '',
opts.default or '')
on_choice(ok and file or nil)
end
local function browsedir(opts, on_choice)
vim.validate {
opts = { opts, 'table', true },
on_choice = { on_choice, 'function', false }
}
local ok, directory = pcall(vim.fn.browsedir,
totitle(opts) or '',
opts.initdir or '')
on_choice(ok and directory or nil)
end
function M.setup(override)
if vim.fn.has('browse') ~= 1 then
error('Browse feature is not available')
end
local ui = require('sacrilege.ui')
ui.browse = browse
ui.browsedir = browsedir
end
return M
|
local _, CLM = ...
local LOG = CLM.LOG
local UTILS = CLM.UTILS
local MODULES = CLM.MODULES
local MODELS = CLM.MODELS
local GUI = CLM.GUI
local CONSTANTS = CLM.CONSTANTS
local ProfileManager = MODULES.ProfileManager
local RosterManager = MODULES.RosterManager
local LootManager = MODULES.LootManager
local RaidManager = MODULES.RaidManager
local Comms = MODULES.Comms
-- local Roster = MODELS.Roster
local Raid = MODELS.Raid
local RosterConfiguration = MODELS.RosterConfiguration
local typeof = UTILS.typeof
local AuctionCommStructure = MODELS.AuctionCommStructure
local AuctionCommStartAuction = MODELS.AuctionCommStartAuction
local AuctionCommDenyBid = MODELS.AuctionCommDenyBid
local AuctionCommDistributeBid = MODELS.AuctionCommDistributeBid
local AUCTION_COMM_PREFIX = "Auction001"
local BID_PASS = "PASS"
local AuctionManager = {}
function AuctionManager:Initialize()
LOG:Trace("AuctionManager:Initialize()")
self:ClearBids()
self.auctionInProgress = false
Comms:Register(AUCTION_COMM_PREFIX, (function(rawMessage, distribution, sender)
local message = AuctionCommStructure:New(rawMessage)
if CONSTANTS.AUCTION_COMM.TYPES[message:Type()] == nil then return end
-- Auction Manager is owner of the channel
-- pass handling to BidManager
MODULES.BiddingManager:HandleIncomingMessage(message, distribution, sender)
end), CONSTANTS.ACL.LEVEL.ASSISTANT, true)
self.handlers = {
[CONSTANTS.BIDDING_COMM.TYPE.SUBMIT_BID] = "HandleSubmitBid",
[CONSTANTS.BIDDING_COMM.TYPE.CANCEL_BID] = "HandleCancelBid",
[CONSTANTS.BIDDING_COMM.TYPE.NOTIFY_PASS] = "HandleNotifyPass",
}
self._initialized = true
end
function AuctionManager:SetQuickAuction(value)
self.db.quickAuction = value and true or false
end
function AuctionManager:GetQuickAuction()
return self.db.quickAuction
end
-- We pass configuration separately as it can be overriden on per-auction basis
function AuctionManager:StartAuction(itemId, itemLink, itemSlot, baseValue, maxValue, note, raid, configuration)
LOG:Trace("AuctionManager:StartAuction()")
if self.auctionInProgress then
LOG:Warning("AuctionManager:StartAuction(): Auction in progress")
return
end
if not self:IsAuctioneer() then
LOG:Message("You are not allowed to auction items")
return
end
-- Auction parameters sanity checks
note = note or ""
if not typeof(raid, Raid) then
LOG:Warning("AuctionManager:StartAuction(): Invalid raid object")
return false
end
self.raid = raid
if not tonumber(itemId) then
LOG:Warning("AuctionManager:StartAuction(): invalid item id")
return false
end
if not itemLink then
LOG:Warning("AuctionManager:StartAuction(): invalid item link")
return false
end
self.itemLink = itemLink
if not (tonumber(baseValue) and tonumber(maxValue)) then
LOG:Warning("AuctionManager:StartAuction(): invalid values [%s] [%s]", tostring(baseValue), tostring(maxValue))
return false
end
if not typeof(configuration, RosterConfiguration) then
LOG:Warning("AuctionManager:StartAuction(): Invalid roster configuration object")
return false
end
-- Auction Settings sanity checks
local auctionTime = configuration:Get("auctionTime")
if auctionTime <= 0 then
LOG:Warning("AuctionManager:StartAuction(): 0s auction time")
return false
end
if auctionTime < 10 then
LOG:Warning("AuctionManager:StartAuction(): Very short (below 10s) auction time")
end
self.auctionTime = auctionTime
self.itemValueMode = configuration:Get("itemValueMode")
if self.itemValueMode == CONSTANTS.ITEM_VALUE_MODE.ASCENDING then
if maxValue > 0 and baseValue > maxValue then
LOG:Warning("AuctionManager:StartAuction(): base value must be smaller or equal to max values")
return false
end
end
self.baseValue = baseValue or 0
self.maxValue = maxValue or 0
if self.auctionTime <= 0 then
LOG:Warning("AuctionManager:StartAuction(): Auction time must be greater than 0 seconds")
return false
end
self.allowNegativeBidders = configuration:Get("allowNegativeBidders")
self.allowNegativeStandings = configuration:Get("allowNegativeStandings")
-- Auctioning
-- Start Auction Messages
local auctionMessage = "Auction of " .. itemLink
if note:len() > 0 then
auctionMessage = auctionMessage .. " (" .. tostring(note) .. ")"
end
self.note = note
-- Max 2 raid warnings are displayed at the same time
SendChatMessage(auctionMessage , "RAID_WARNING")
auctionMessage = ""
if baseValue > 0 then
auctionMessage = auctionMessage .. "Minimum bid: " .. tostring(baseValue) .. ". "
end
if maxValue > 0 then
auctionMessage = auctionMessage .. "Maximum bid: " .. tostring(maxValue) .. ". "
end
auctionMessage = auctionMessage .. "Auction time: " .. tostring(auctionTime) .. ". "
self.antiSnipe = configuration:Get("antiSnipe")
if self.antiSnipe > 0 then
auctionMessage = auctionMessage .. "Anti-snipe time: " .. tostring(self.antiSnipe) .. ". "
end
SendChatMessage(auctionMessage , "RAID_WARNING")
-- AntiSnipe settings
self.antiSnipeLimit = (self.antiSnipe > 0) and 3 or 0
-- Get Auction Type info
self.auctionType = configuration:Get("auctionType")
-- if baseValue / maxValue are different than current (or default if no override) item value we will need to update the config
local current = self.raid:Roster():GetItemValue(itemId)
if current.base ~= baseValue or current.max ~= maxValue then
RosterManager:SetRosterItemValue(self.raid:Roster(), itemId, baseValue, maxValue)
end
-- clear bids
self:ClearBids()
-- calculate server end time
self.auctionEndTime = GetServerTime() + self.auctionTime
self.auctionTimeLeft = self.auctionEndTime
-- Send auction information
self:SendAuctionStart()
-- Start Auction Ticker
self.lastCountdownValue = 5
self.ticker = C_Timer.NewTicker(0.1, (function()
self.auctionTimeLeft = self.auctionEndTime - GetServerTime()
if self.lastCountdownValue > 0 and self.auctionTimeLeft <= self.lastCountdownValue and self.auctionTimeLeft <= 5 then
SendChatMessage(tostring(math.ceil(self.auctionTimeLeft)), "RAID_WARNING")
self.lastCountdownValue = self.lastCountdownValue - 1
end
if self.auctionTimeLeft < 0.1 then
self:StopAuctionTimed()
return
end
end))
-- Set auction in progress
self.auctionInProgress = true
-- UI
GUI.AuctionManager:UpdateBids()
return true
end
function AuctionManager:StopAuctionTimed()
LOG:Trace("AuctionManager:StopAuctionTimed()")
self.auctionInProgress = false
self.ticker:Cancel()
SendChatMessage("Auction complete", "RAID_WARNING")
self:SendAuctionEnd()
GUI.AuctionManager:UpdateBids()
end
function AuctionManager:StopAuctionManual()
LOG:Trace("AuctionManager:StopAuctionManual()")
self.auctionInProgress = false
self.ticker:Cancel()
SendChatMessage("Auction stopped by Master Looter", "RAID_WARNING")
self:SendAuctionEnd()
GUI.AuctionManager:UpdateBids()
end
function AuctionManager:AntiSnipe()
LOG:Trace("AuctionManager:AntiSnipe()")
if self.antiSnipeLimit > 0 then
if self.auctionTimeLeft < self.antiSnipe then
self.auctionEndTime = self.auctionEndTime + self.antiSnipe
self.antiSnipeLimit = self.antiSnipeLimit - 1
self:SendAntiSnipe()
end
end
end
function AuctionManager:SendAuctionStart()
local message = AuctionCommStructure:New(
CONSTANTS.AUCTION_COMM.TYPE.START_AUCTION,
AuctionCommStartAuction:New(
self.auctionType,
self.itemValueMode,
self.baseValue,
self.maxValue,
self.itemLink,
self.auctionTime,
self.auctionEndTime,
self.antiSnipe,
self.note)
)
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.RAID)
end
function AuctionManager:SendAuctionEnd()
local message = AuctionCommStructure:New(CONSTANTS.AUCTION_COMM.TYPE.STOP_AUCTION, {})
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.RAID)
end
function AuctionManager:SendAntiSnipe()
local message = AuctionCommStructure:New(CONSTANTS.AUCTION_COMM.TYPE.ANTISNIPE, {})
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.RAID)
end
function AuctionManager:SendBidAccepted(name)
local message = AuctionCommStructure:New(CONSTANTS.AUCTION_COMM.TYPE.ACCEPT_BID, {})
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.WHISPER, name, CONSTANTS.COMMS.PRIORITY.ALERT)
end
function AuctionManager:SendBidDenied(name, reason)
local message = AuctionCommStructure:New(
CONSTANTS.AUCTION_COMM.TYPE.DENY_BID,
AuctionCommDenyBid:New(reason)
)
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.WHISPER, name, CONSTANTS.COMMS.PRIORITY.ALERT)
end
function AuctionManager:SendBidInfo(name, bid)
local message = AuctionCommStructure:New(
CONSTANTS.AUCTION_COMM.TYPE.DISTRIBUTE_BID,
AuctionCommDistributeBid:New(name, bid)
)
Comms:Send(AUCTION_COMM_PREFIX, message, CONSTANTS.COMMS.DISTRIBUTION.RAID)
end
function AuctionManager:AnnounceHighestBidder(name, bid)
if self.auctionType ~= CONSTANTS.AUCTION_TYPE.OPEN then return end
if self.itemValueMode ~= CONSTANTS.ITEM_VALUE_MODE.ASCENDING then return end
if not bid then return end
if bid == BID_PASS then return end
self:SendBidInfo(name, bid)
local message = string.format("New highest bidder: %s (%d DKP)", name, bid)
SendChatMessage(message, "RAID_WARNING")
end
function AuctionManager:HandleIncomingMessage(message, distribution, sender)
LOG:Trace("AuctionManager:HandleIncomingMessage()")
local mtype = message:Type() or 0
-- UTILS.DumpTable(message)
if self.handlers[mtype] then
self[self.handlers[mtype]](self, message:Data(), sender)
end
end
function AuctionManager:HandleSubmitBid(data, sender)
LOG:Trace("AuctionManager:HandleSubmitBid()")
if not self.IsAuctionInProgress then
LOG:Debug("Received submit bid from %s while no auctions are in progress", sender)
return
end
self:UpdateBid(sender, data:Bid())
end
function AuctionManager:HandleCancelBid(data, sender)
LOG:Trace("AuctionManager:HandleCancelBid()")
if not self.IsAuctionInProgress then
LOG:Debug("Received cancel bid from %s while no auctions are in progress", sender)
return
end
self:UpdateBid(sender, nil)
end
function AuctionManager:HandleNotifyPass(data, sender)
LOG:Trace("AuctionManager:HandleNotifyPass()")
if not self.IsAuctionInProgress then
LOG:Debug("Received pass from %s while no auctions are in progress", sender)
return
end
self:UpdateBid(sender, BID_PASS)
end
function AuctionManager:ValidateBid(name, bid)
-- allow bid cancelling
if bid == nil then return true end
-- allow bid passing
if bid == BID_PASS then return true end
-- sanity check
local profile = ProfileManager:GetProfileByName(name)
if not profile then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.NOT_IN_ROSTER end
local GUID = profile:GUID()
if not self.raid:Roster():IsProfileInRoster(GUID) then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.NOT_IN_ROSTER end
-- allow negative bidders
local current = self.raid:Roster():Standings(GUID)
if current < 0 and not self.allowNegativeBidders then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.NEGATIVE_BIDDER end
-- allow negative standings after bid
local new = current - bid
if new < 0 and not self.allowNegativeStandings then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.NEGATIVE_STANDING_AFTER end
-- bid value
if self.itemValueMode == CONSTANTS.ITEM_VALUE_MODE.ASCENDING then
-- ascending
-- min
if self.baseValue > 0 and bid < self.baseValue then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.BID_VALUE_TOO_LOW end
-- max
if self.maxValue > 0 and bid > self.maxValue then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.BID_VALUE_TOO_HIGH end
-- open bid ascending
if self.auctionType == CONSTANTS.AUCTION_TYPE.OPEN then
if bid <= self.highestBid then
return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.BID_VALUE_TOO_LOW
end
end
else
-- single-priced
if self.baseValue ~= bid then return false, CONSTANTS.AUCTION_COMM.DENY_BID_REASON.BID_VALUE_INVALID end
end
-- accept otherwise
return true
end
function AuctionManager:UpdateBid(name, bid)
LOG:Trace("AuctionManager:UpdateBid()")
LOG:Debug("Bid from %s: %s", name, bid)
if not self:IsAuctionInProgress() then return end
local accept, reason = self:ValidateBid(name, bid)
if accept then
self:UpdateBidsInternal(name, bid)
self:SendBidAccepted(name)
self:AnnounceHighestBidder(name, bid)
else
self:SendBidDenied(name, reason)
end
GUI.AuctionManager:UpdateBids()
end
function AuctionManager:UpdateBidsInternal(name, bid)
self.bids[name] = bid
if bid == BID_PASS then return end
if bid then
if bid > self.highestBid then self.highestBid = bid end
self:AntiSnipe()
end
end
function AuctionManager:Bids()
return self.bids
end
function AuctionManager:ClearBids()
self.bids = {}
self.highestBid = 0
end
function AuctionManager:Award(itemId, price, name)
LOG:Trace("AuctionManager:Award()")
LootManager:AwardItem(self.raid, name, self.itemLink, itemId, price)
end
function AuctionManager:IsAuctioneer(name)
LOG:Trace("AuctionManager:IsAuctioneer()")
name = name or UTILS.whoami()
return RaidManager:IsRaidOwner(name)
end
function AuctionManager:IsAuctionInProgress()
return self.auctionInProgress
end
CONSTANTS.AUCTION_COMM = {
TYPE = {
START_AUCTION = 1,
STOP_AUCTION = 2,
ANTISNIPE = 3,
ACCEPT_BID = 4,
DENY_BID = 5,
DISTRIBUTE_BID = 6
},
TYPES = UTILS.Set({
1, -- START AUCTION
2, -- STOP ACUTION
3, -- ANTISNIPE
4, -- ACCEPT BID
5, -- DENY BID
6, -- DISTRIBUTE BID
}),
DENY_BID_REASON = {
NOT_IN_ROSTER = 1,
NEGATIVE_BIDDER = 2,
NEGATIVE_STANDING_AFTER = 3,
BID_VALUE_TOO_LOW = 4,
BID_VALUE_TOO_HIGH = 5,
BID_VALUE_INVALID = 6,
},
DENY_BID_REASONS = UTILS.Set({
1, -- NOT_IN_ROSTER
2, -- NEGATIVE_BIDDER
3, -- NEGATIVE_STANDING_AFTER
4, -- BID_VALUE_TOO_LOW
5, -- BID_VALUE_TOO_HIGH
6 -- BID_VALUE_INVALID
}),
DENY_BID_REASONS_STRING = {
[1] = "Not in a roster",
[2] = "Negative bidders not allowed",
[3] = "Bidding over current standings not allowed",
[4] = "Bid too low",
[5] = "Bid too high",
[6] = "Invalid bid value"
}
}
MODULES.AuctionManager = AuctionManager
|
SLASH_RELOAD1 = '/rl'
function SlashCmdList.RELOAD(msg, editbox)
ReloadUI()
end
SLASH_SHAGUPLATES1 = '/shaguplates'
function SlashCmdList.SHAGUPLATES(msg, editbox)
if ShaguPlates.gui:IsShown() then
ShaguPlates.gui:Hide()
else
ShaguPlates.gui:Show()
end
end
SLASH_GM1, SLASH_GM2 = '/gm', '/support'
function SlashCmdList.GM(msg, editbox)
ToggleHelpFrame(1)
end
ShaguPlates = CreateFrame("Frame", nil, UIParent)
ShaguPlates:RegisterEvent("ADDON_LOADED")
-- setup bootvar
ShaguPlates.bootup = true
-- initialize saved variables
ShaguPlates_playerDB = {}
ShaguPlates_config = {}
ShaguPlates_init = {}
ShaguPlates_profiles = {}
ShaguPlates_addon_profiles = {}
ShaguPlates_cache = {}
-- localization
ShaguPlates_locale = {}
ShaguPlates_translation = {}
-- initialize default variables
ShaguPlates.cache = {}
ShaguPlates.module = {}
ShaguPlates.modules = {}
ShaguPlates.skin = {}
ShaguPlates.skins = {}
ShaguPlates.environment = {}
ShaguPlates.movables = {}
ShaguPlates.version = {}
ShaguPlates.hooks = {}
ShaguPlates.env = {}
-- detect current addon path
local tocs = { "", "-master", "-tbc", "-wotlk" }
for _, name in pairs(tocs) do
local current = string.format("ShaguPlates%s", name)
local _, title = GetAddOnInfo(current)
if title then
ShaguPlates.name = current
ShaguPlates.path = "Interface\\AddOns\\" .. current
break
end
end
-- handle/convert media dir paths
ShaguPlates.media = setmetatable({}, { __index = function(tab,key)
local value = tostring(key)
if strfind(value, "img:") then
value = string.gsub(value, "img:", ShaguPlates.path .. "\\img\\")
elseif strfind(value, "font:") then
value = string.gsub(value, "font:", ShaguPlates.path .. "\\fonts\\")
else
value = string.gsub(value, "Interface\\AddOns\\ShaguPlates\\", ShaguPlates.path .. "\\")
end
rawset(tab,key,value)
return value
end})
-- cache client version
local _, _, _, client = GetBuildInfo()
client = client or 11200
-- detect client expansion
if client >= 20000 and client <= 20400 then
ShaguPlates.expansion = "tbc"
ShaguPlates.client = client
elseif client >= 30000 and client <= 30300 then
ShaguPlates.expansion = "wotlk"
ShaguPlates.client = client
else
ShaguPlates.expansion = "vanilla"
ShaguPlates.client = client
end
-- setup ShaguPlates namespace
setmetatable(ShaguPlates.env, {__index = getfenv(0)})
function ShaguPlates:UpdateColors()
if ShaguPlates.expansion == "vanilla" then
-- update table to get unknown colors and blue shamans for vanilla
RAID_CLASS_COLORS = {
["WARRIOR"] = { r = 0.78, g = 0.61, b = 0.43, colorStr = "ffc79c6e" },
["MAGE"] = { r = 0.41, g = 0.8, b = 0.94, colorStr = "ff69ccf0" },
["ROGUE"] = { r = 1, g = 0.96, b = 0.41, colorStr = "fffff569" },
["DRUID"] = { r = 1, g = 0.49, b = 0.04, colorStr = "ffff7d0a" },
["HUNTER"] = { r = 0.67, g = 0.83, b = 0.45, colorStr = "ffabd473" },
["SHAMAN"] = { r = 0.14, g = 0.35, b = 1.0, colorStr = "ff0070de" },
["PRIEST"] = { r = 1, g = 1, b = 1, colorStr = "ffffffff" },
["WARLOCK"] = { r = 0.58, g = 0.51, b = 0.79, colorStr = "ff9482c9" },
["PALADIN"] = { r = 0.96, g = 0.55, b = 0.73, colorStr = "fff58cba" },
}
RAID_CLASS_COLORS = setmetatable(RAID_CLASS_COLORS, { __index = function(tab,key)
return { r = 0.6, g = 0.6, b = 0.6, colorStr = "ff999999" }
end})
end
end
function ShaguPlates:UpdateFonts()
-- abort when config is not ready yet
if not ShaguPlates_config or not ShaguPlates_config.global then return end
-- load font configuration
local default, unit, combat
if ShaguPlates_config.global.force_region == "1" and GetLocale() == "zhCN" and ShaguPlates.expansion == "vanilla" then
-- force locale compatible fonts
default = "Fonts\\FZXHLJW.TTF"
combat = "Fonts\\FZXHLJW.TTF"
unit = "Fonts\\FZXHLJW.TTF"
elseif ShaguPlates_config.global.force_region == "1" and GetLocale() == "zhCN" and ShaguPlates.expansion == "tbc" then
-- force locale compatible fonts
default = "Fonts\\ZYHei.ttf"
combat = "Fonts\\ZYKai_C.ttf"
unit = "Fonts\\ZYKai_T.ttf"
elseif ShaguPlates_config.global.force_region == "1" and GetLocale() == "koKR" then
-- force locale compatible fonts
default = "Fonts\\2002.TTF"
combat = "Fonts\\2002.TTF"
unit = "Fonts\\2002.TTF"
else
-- use default entries
default = ShaguPlates.media[ShaguPlates_config.global.font_default]
combat = ShaguPlates.media[ShaguPlates_config.global.font_combat]
unit = ShaguPlates.media[ShaguPlates_config.global.font_unit]
end
-- write setting shortcuts
ShaguPlates.font_default = default
ShaguPlates.font_combat = combat
ShaguPlates.font_unit = unit
-- set game constants
-- set dropdown font to default size
-- change default game font objects
if TextStatusBarTextSmall then -- does not exist in koKR
end
end
local translations
function ShaguPlates:GetEnvironment()
-- load api into environment
for m, func in pairs(ShaguPlates.api or {}) do
ShaguPlates.env[m] = func
end
if ShaguPlates_config and ShaguPlates_config.global and ShaguPlates_config.global.language and not translations then
local lang = ShaguPlates_config and ShaguPlates_config.global and ShaguPlates_config.global.language and ShaguPlates_translation[ShaguPlates_config.global.language] and ShaguPlates_config.global.language or GetLocale()
ShaguPlates.env.T = setmetatable(ShaguPlates_translation[lang] or {}, { __index = function(tab,key)
local value = tostring(key)
rawset(tab,key,value)
return value
end})
translations = true
end
ShaguPlates.env._G = getfenv(0)
ShaguPlates.env.C = ShaguPlates_config
ShaguPlates.env.L = (ShaguPlates_locale[GetLocale()] or ShaguPlates_locale["enUS"])
return ShaguPlates.env
end
function ShaguPlates:RegisterModule(name, a2, a3)
if ShaguPlates.module[name] then return end
local hasv = type(a2) == "string"
local func, version = hasv and a3 or a2, hasv and a2 or "vanilla:tbc:wotlk"
-- check for client compatibility
if not strfind(version, ShaguPlates.expansion) then return end
ShaguPlates.module[name] = func
table.insert(ShaguPlates.modules, name)
if not ShaguPlates.bootup then
ShaguPlates:LoadModule(name)
end
end
function ShaguPlates:RegisterSkin(name, a2, a3)
if ShaguPlates.skin[name] then return end
local hasv = type(a2) == "string"
local func, version = hasv and a3 or a2, hasv and a2 or "vanilla:tbc:wotlk"
-- check for client compatibility
if not strfind(version, ShaguPlates.expansion) then return end
ShaguPlates.skin[name] = func
table.insert(ShaguPlates.skins, name)
if not ShaguPlates.bootup then
ShaguPlates:LoadSkin(name)
end
end
function ShaguPlates:LoadModule(m)
setfenv(ShaguPlates.module[m], ShaguPlates:GetEnvironment())
ShaguPlates.module[m]()
end
function ShaguPlates:LoadSkin(s)
setfenv(ShaguPlates.skin[s], ShaguPlates:GetEnvironment())
ShaguPlates.skin[s]()
end
ShaguPlates:SetScript("OnEvent", function()
-- enforce color updates on each event
ShaguPlates:UpdateColors()
-- make sure to initialize and set our fonts
-- each time an addon got loaded but only
-- when the config is already accessible
if not ShaguPlates.bootup then
ShaguPlates:UpdateFonts()
end
if arg1 == ShaguPlates.name then
-- read ShaguPlates version from .toc file
local major, minor, fix = ShaguPlates.api.strsplit(".", tostring(GetAddOnMetadata(ShaguPlates.name, "Version")))
ShaguPlates.version.major = tonumber(major) or 1
ShaguPlates.version.minor = tonumber(minor) or 2
ShaguPlates.version.fix = tonumber(fix) or 0
ShaguPlates.version.string = ShaguPlates.version.major .. "." .. ShaguPlates.version.minor .. "." .. ShaguPlates.version.fix
ShaguPlates:LoadConfig()
ShaguPlates:MigrateConfig()
ShaguPlates:UpdateFonts()
-- load modules
for _, m in pairs(this.modules) do
if not ( ShaguPlates_config["disabled"] and ShaguPlates_config["disabled"][m] == "1" ) then
ShaguPlates:LoadModule(m)
end
end
-- load skins
for _, s in pairs(this.skins) do
if not ( ShaguPlates_config["disabled"] and ShaguPlates_config["disabled"]["skin_" .. s] == "1" ) then
ShaguPlates:LoadSkin(s)
end
end
ShaguPlates.bootup = nil
end
end)
ShaguPlates.backdrop = {
bgFile = "Interface\\BUTTONS\\WHITE8X8", tile = false, tileSize = 0,
edgeFile = "Interface\\BUTTONS\\WHITE8X8", edgeSize = 1,
insets = {left = -1, right = -1, top = -1, bottom = -1},
}
ShaguPlates.backdrop_no_top = ShaguPlates.backdrop
ShaguPlates.backdrop_thin = {
bgFile = "Interface\\BUTTONS\\WHITE8X8", tile = false, tileSize = 0,
edgeFile = "Interface\\BUTTONS\\WHITE8X8", edgeSize = 1,
insets = {left = 0, right = 0, top = 0, bottom = 0},
}
ShaguPlates.backdrop_hover = {
edgeFile = "Interface\\BUTTONS\\WHITE8X8", edgeSize = 24,
insets = {left = -1, right = -1, top = -1, bottom = -1},
}
ShaguPlates.backdrop_shadow = {
edgeFile = ShaguPlates.media["img:glow2"], edgeSize = 8,
insets = {left = 0, right = 0, top = 0, bottom = 0},
}
ShaguPlates.backdrop_blizz_bg = {
bgFile = "Interface\\BUTTONS\\WHITE8X8", tile = true, tileSize = 8,
insets = { left = 3, right = 3, top = 3, bottom = 3 }
}
ShaguPlates.backdrop_blizz_border = {
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border", edgeSize = 12,
insets = { left = 3, right = 3, top = 3, bottom = 3 }
}
ShaguPlates.backdrop_blizz_full = {
bgFile = "Interface\\BUTTONS\\WHITE8X8", tile = true, tileSize = 8,
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border", edgeSize = 12,
insets = { left = 3, right = 3, top = 3, bottom = 3 }
}
local message = function(msg)
DEFAULT_CHAT_FRAME:AddMessage("|cffcccc33INFO: |cffffff55" .. ( msg or "nil" ))
end
error = function(msg)
if PF_DEBUG_MODE then message(debugstack()) end
if string.find(msg, "AddOns\\ShaguPlates") then
DEFAULT_CHAT_FRAME:AddMessage("|cffcc3333ERROR: |cffff5555".. (msg or "nil" ))
elseif not ShaguPlates_config or (ShaguPlates_config.global and ShaguPlates_config.global.errors == "1") then
DEFAULT_CHAT_FRAME:AddMessage("|cffcc3333ERROR: |cffff5555".. (msg or "nil" ))
end
end
function ShaguPlates.SetupCVars()
ClearTutorials()
TutorialFrame_HideAllAlerts()
ConsoleExec("CameraDistanceMaxFactor 5")
SetCVar("autoSelfCast", "1")
SetCVar("profanityFilter", "0")
MultiActionBar_ShowAllGrids()
ALWAYS_SHOW_MULTIBARS = "1"
SHOW_BUFF_DURATIONS = "1"
QUEST_FADING_DISABLE = "1"
NAMEPLATES_ON = "1"
SHOW_COMBAT_TEXT = "1"
COMBAT_TEXT_SHOW_LOW_HEALTH_MANA = "1"
COMBAT_TEXT_SHOW_AURAS = "1"
COMBAT_TEXT_SHOW_AURA_FADE = "1"
COMBAT_TEXT_SHOW_COMBAT_STATE = "1"
COMBAT_TEXT_SHOW_DODGE_PARRY_MISS = "1"
COMBAT_TEXT_SHOW_RESISTANCES = "1"
COMBAT_TEXT_SHOW_REPUTATION = "1"
COMBAT_TEXT_SHOW_REACTIVES = "1"
COMBAT_TEXT_SHOW_FRIENDLY_NAMES = "1"
COMBAT_TEXT_SHOW_COMBO_POINTS = "1"
COMBAT_TEXT_SHOW_MANA = "1"
COMBAT_TEXT_FLOAT_MODE = "1"
COMBAT_TEXT_SHOW_HONOR_GAINED = "1"
UIParentLoadAddOn("Blizzard_CombatText")
end
|
local taxpercent = 1
setElementData(root, "AURtax.tax", taxpercent)
function getCurrentTax ()
setElementData(root, "AURtax.tax", taxpercent)
return taxpercent
end
function setTaxRating (plr, cmd, newtax)
if (getTeamName(getPlayerTeam(plr)) == "Staff") then
setElementData(root, "AURtax.tax", math.abs(newtax))
taxpercent = math.abs(newtax)
outputChatBox("AuroraRPG: The tax percentage has been set to "..math.abs(newtax).."%. This affects the entire transaction.", root, 255, 255, 255)
end
end
addCommandHandler("staffsettax", setTaxRating)
|
if GetLocale() ~= "deDE" then return end
local L
------------
-- Omen --
------------
L = DBM:GetModLocalization("Omen")
L:SetGeneralLocalization({
name = "Omen"
})
------------------------------
-- The Crown Chemical Co. --
------------------------------
L = DBM:GetModLocalization("d288")
L:SetTimerLocalization{
HummelActive = "Hummel wird aktiv",
BaxterActive = "Baxter wird aktiv",
FryeActive = "Frye wird aktiv"
}
L:SetOptionLocalization({
TrioActiveTimer = "Zeige Zeit bis Apotheker aktiv werden"
})
L:SetMiscLocalization({
SayCombatStart = "Haben sie sich die Mühe gemacht und Euch gesagt, wer ich bin und warum ich das hier tue?"
})
----------------------------
-- The Frost Lord Ahune --
----------------------------
L = DBM:GetModLocalization("d286")
L:SetWarningLocalization({
Emerged = "Aufgetaucht",
specWarnAttack = "Ahune ist verwundbar - Angriff!"
})
L:SetTimerLocalization{
SubmergTimer = "Abtauchen",
EmergeTimer = "Auftauchen"
}
L:SetOptionLocalization({
Emerged = "Zeige Warnung, wenn Ahune auftaucht",
specWarnAttack = "Spezialwarnung, wenn Ahune verwundbar wird",
SubmergTimer = "Zeige Zeit bis Abtauchen",
EmergeTimer = "Zeige Zeit bis Auftauchen"
})
L:SetMiscLocalization({
Pull = "Der Eisbrocken ist geschmolzen!"
})
----------------------
-- Coren Direbrew --
----------------------
L = DBM:GetModLocalization("d287")
L:SetWarningLocalization({
specWarnBrew = "Werde das Bier los, bevor sie dir noch eins zuwirft!",
specWarnBrewStun = "TIPP: Du hast eine Kopfnuss kassiert, trink das Bier beim nächsten Mal!"
})
L:SetOptionLocalization({
specWarnBrew = "Spezialwarnung für $spell:47376",
specWarnBrewStun = "Spezialwarnung für $spell:47340",
YellOnBarrel = "Schreie bei $spell:51413"
})
L:SetMiscLocalization({
YellBarrel = "Stecke im Fass!"
})
----------------
-- Brewfest --
----------------
L = DBM:GetModLocalization("Brew")
L:SetGeneralLocalization({
name = "Braufest"
})
L:SetOptionLocalization({
NormalizeVolume = "Setze im Braufestgebiet die Lautstärke des DIALOG-Audiokanals automatisch auf die Lautstärke des Musik-Audiokanals, damit es nicht so ärgerlich laut ist. (falls keine Musiklautstärke gesetzt ist, wird der Dialog-Audiokanal stummgeschaltet)"
})
-----------------------------
-- The Headless Horseman --
-----------------------------
L = DBM:GetModLocalization("d285")
L:SetWarningLocalization({
WarnPhase = "Phase %d",
warnHorsemanSoldiers = "Pulsierende Kürbisse erscheinen",
warnHorsemanHead = "Kopf des Reiters aktiv"
})
L:SetOptionLocalization({
WarnPhase = "Zeige Warnung für jeden Phasenwechsel",
warnHorsemanSoldiers = "Zeige Warnung, wenn Pulsierende Kürbnisse erscheinen",
warnHorsemanHead = "Zeige Warnung, wenn Kopf des Reiters erscheint"
})
L:SetMiscLocalization({
HorsemanSummon = "Erhebe dich, Reiter,...",
HorsemanSoldiers = "Soldaten, erhebt Euch und kämpft immer weiter. Bringt endlich den Sieg zum gefallenen Reiter!"
})
------------------------------
-- The Abominable Greench --
------------------------------
L = DBM:GetModLocalization("Greench")
L:SetGeneralLocalization({
name = "Der monströse Griesgram"
})
--------------------------
-- Plants Vs. Zombies --
--------------------------
L = DBM:GetModLocalization("PlantsVsZombies")
L:SetGeneralLocalization({
name = "Pflanzen gegen Zombies"
})
L:SetWarningLocalization({
warnTotalAdds = "Anzahl erschienener Zombies seit letzter Riesiger Welle: %d",
specWarnWave = "Riesige Welle!"
})
L:SetTimerLocalization{
timerWave = "Nächste Riesige Welle"
}
L:SetOptionLocalization({
warnTotalAdds = "Verkünde die Anzahl der erschienenen Zombies zwischen jeder Riesigen Welle",
specWarnWave = "Spezialwarnung, wenn eine Riesige Welle beginnt",
timerWave = "Zeige Zeit bis nächste Riesige Welle"
})
L:SetMiscLocalization({
MassiveWave = "Eine riesige Zombiewelle nähert sich!" --needs to be verified (video-captured translation)
})
--------------------------
-- Demonic Invasions --
--------------------------
L = DBM:GetModLocalization("DemonInvasions")
L:SetGeneralLocalization({
name = "Dämoneninvasionen"
})
|
do
TestSkynetIADS = {}
function TestSkynetIADS:setUp()
self.numSAMSites = SKYNET_UNIT_TESTS_NUM_SAM_SITES_RED
self.numEWSites = SKYNET_UNIT_TESTS_NUM_EW_SITES_RED
self.testIADS = SkynetIADS:create()
self.testIADS:addEarlyWarningRadarsByPrefix('EW')
self.testIADS:addSAMSitesByPrefix('SAM')
end
function TestSkynetIADS:tearDown()
if self.testIADS then
self.testIADS:deactivate()
end
self.testIADS = nil
end
-- this function checks constants in DCS that the IADS relies on. A change to them might indicate that functionallity is broken.
-- In the code constants are refereed to with their constant name calue, not the values the represent.
function TestSkynetIADS:testDCSContstantsHaveNotChanged()
lu.assertEquals(Weapon.Category.MISSILE, 1)
lu.assertEquals(Weapon.Category.SHELL, 0)
lu.assertEquals(world.event.S_EVENT_SHOT, 1)
lu.assertEquals(world.event.S_EVENT_DEAD, 8)
lu.assertEquals(Unit.Category.AIRPLANE, 0)
end
function TestSkynetIADS:testCaclulateNumberOfSamSitesAndEWRadars()
self:tearDown()
self.testIADS = SkynetIADS:create()
lu.assertEquals(#self.testIADS:getSAMSites(), 0)
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), 0)
self.testIADS:addEarlyWarningRadarsByPrefix('EW')
self.testIADS:addSAMSitesByPrefix('SAM')
lu.assertEquals(#self.testIADS:getSAMSites(), self.numSAMSites)
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), self.numEWSites)
end
function TestSkynetIADS:testCaclulateNumberOfSamSitesAndEWRadarsWhenAddMethodsCalledTwice()
self:tearDown()
self.testIADS = SkynetIADS:create()
lu.assertEquals(#self.testIADS:getSAMSites(), 0)
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), 0)
self.testIADS:addEarlyWarningRadarsByPrefix('EW')
self.testIADS:addEarlyWarningRadarsByPrefix('EW')
self.testIADS:addSAMSitesByPrefix('SAM')
self.testIADS:addSAMSitesByPrefix('SAM')
lu.assertEquals(#self.testIADS:getSAMSites(), self.numSAMSites)
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), self.numEWSites)
end
--[[
function TestSkynetIADS:testDoubleActivateCall()
self.testIADS:activate()
self.testIADS:activate()
local ews = self.testIADS:getEarlyWarningRadars()
for i = 1, #ews do
local ew = ews[i]
local category = ew:getDCSRepresentation():getDesc().category
if category ~= Unit.Category.AIRPLANE and category ~= Unit.Category.SHIP then
--env.info(tostring(ew:isScanningForHARMs()))
lu.assertEquals(ew:isScanningForHARMs(), true)
end
end
end
--]]
function TestSkynetIADS:testWrongCaseStringWillNotLoadSAMGroup()
self:tearDown()
self.testIADS = SkynetIADS:create()
self.testIADS:addSAMSitesByPrefix('sam')
lu.assertEquals(#self.testIADS:getSAMSites(), 0)
end
function TestSkynetIADS:testWrongCaseStringWillNotLoadEWRadars()
self:tearDown()
self.testIADS = SkynetIADS:create()
self.testIADS:addEarlyWarningRadarsByPrefix('ew')
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), 0)
end
function TestSkynetIADS:testEvaluateContacts1EWAnd1SAMSiteWithContactInRange()
self:tearDown()
local iads = SkynetIADS:create()
local ewRadar = iads:addEarlyWarningRadar('EW-west23')
function ewRadar:getDetectedTargets()
return {IADSContactFactory('test-in-firing-range-of-sa-2')}
end
local samSite = iads:addSAMSite('SAM-SA-2')
function samSite:getDetectedTargets()
return {}
end
samSite:goDark()
lu.assertEquals(samSite:isInRadarDetectionRangeOf(ewRadar), true)
iads:activate()
iads:evaluateContacts()
lu.assertEquals(#iads:getContacts(), 1)
lu.assertEquals(samSite:isActive(), true)
-- we remove the target to test if the sam site will now go dark, was added for the performance optimised code
function ewRadar:getDetectedTargets()
return {}
end
iads:evaluateContacts()
lu.assertEquals(samSite:isActive(), false)
iads:deactivate()
end
function TestSkynetIADS:testEarlyWarningRadarHasWorkingPowerSourceByDefault()
local ewRadar = self.testIADS:getEarlyWarningRadarByUnitName('EW-west')
lu.assertEquals(ewRadar:hasWorkingPowerSource(), true)
end
function TestSkynetIADS:testAWACSHasMovedAndThereforeRebuildAutonomousStatesOfSAMSites()
local iads = SkynetIADS:create()
local awacs = iads:addEarlyWarningRadar('EW-AWACS-A-50')
local updateCalls = 0
function iads:buildRadarCoverageForEarlyWarningRadar(ewRadar)
SkynetIADS.buildRadarCoverageForEarlyWarningRadar(self, ewRadar)
updateCalls = updateCalls + 1
end
lu.assertEquals(awacs:getDistanceTraveledSinceLastUpdate(), 0)
lu.assertEquals(getmetatable(awacs), SkynetIADSAWACSRadar)
lu.assertEquals(awacs:getMaxAllowedMovementForAutonomousUpdateInNM(), 10)
lu.assertEquals(awacs:isUpdateOfAutonomousStateOfSAMSitesRequired(), false)
iads:evaluateContacts()
lu.assertEquals(updateCalls, 0)
--test distance calculation by giving the awacs a different position:
local firstPos = Unit.getByName('EW-AWACS-KJ-2000'):getPosition().p
awacs.lastUpdatePosition = firstPos
lu.assertEquals(awacs:getDistanceTraveledSinceLastUpdate(), 763)
lu.assertEquals(awacs:isUpdateOfAutonomousStateOfSAMSitesRequired(), true)
-- a second imediate call shall result in false
lu.assertEquals(awacs:getDistanceTraveledSinceLastUpdate(), 0)
lu.assertEquals(awacs:isUpdateOfAutonomousStateOfSAMSitesRequired(), false)
--we reset lastUpdatePosition to firstPos to test call in the IADS code
-- TODO: when refactoring move this test to te AWACS Radar and use mock objects for integration tests in the IADS
awacs.lastUpdatePosition = firstPos
iads:evaluateContacts()
lu.assertEquals(updateCalls, 1)
iads:deactivate()
end
function TestSkynetIADS:testSAMSiteLoosesPower()
local powerSource = StaticObject.getByName('SA-6 Power')
local samSite = self.testIADS:getSAMSiteByGroupName('SAM-SA-6'):addPowerSource(powerSource)
lu.assertEquals(#self.testIADS:getUsableSAMSites(), self.numSAMSites)
samSite:goLive()
lu.assertEquals(samSite:isActive(), true)
trigger.action.explosion(powerSource:getPosition().p, 100)
lu.assertEquals(#self.testIADS:getUsableSAMSites(), self.numSAMSites-1)
lu.assertEquals(samSite:isActive(), false)
end
function TestSkynetIADS:testSAMSiteSA6LostConnectionNodeAutonomusStateDCSAI()
local sa6ConnectionNode = StaticObject.getByName('SA-6 Connection Node')
self.testIADS:getSAMSiteByGroupName('SAM-SA-6'):addConnectionNode(sa6ConnectionNode)
lu.assertEquals(#self.testIADS:getSAMSites(), self.numSAMSites)
lu.assertEquals(#self.testIADS:getUsableSAMSites(), self.numSAMSites)
trigger.action.explosion(sa6ConnectionNode:getPosition().p, 100)
lu.assertEquals(#self.testIADS:getUsableSAMSites(), self.numSAMSites-1)
lu.assertEquals(#self.testIADS:getUsableSAMSites(), self.numSAMSites-1)
lu.assertEquals(#self.testIADS:getSAMSites(), self.numSAMSites)
local samSite = self.testIADS:getSAMSiteByGroupName('SAM-SA-6')
lu.assertEquals(samSite:isActive(), true)
lu.assertEquals(samSite:getAutonomousState(), true)
lu.assertEquals(samSite:isActive(), true)
end
function TestSkynetIADS:testAddRadarsToCommandCenter()
local comCenter = StaticObject.getByName('command-center-3')
self.testIADS:addCommandCenter(comCenter)
local comC = self.testIADS:getCommandCenters()[1]
local called = false
function comC:clearChildRadars()
called = true
end
--as long as IADS is not active addCommandCenter will not trigger addRadarsToCommandCenters when called:
self.testIADS:addRadarsToCommandCenters()
lu.assertEquals(called, true)
lu.assertEquals(#comC:getChildRadars(), (self.numEWSites + self.numSAMSites))
end
function TestSkynetIADS:testAddCommandCenter()
local called = false
function self.testIADS:addRadarsToCommandCenters()
called = true
end
local comCenter = StaticObject.getByName('command-center-3')
self.testIADS:addCommandCenter(comCenter)
lu.assertEquals(called, false)
self.testIADS:activate()
self.testIADS:addCommandCenter(comCenter)
lu.assertEquals(called, true)
self.testIADS:deactivate()
end
function TestSkynetIADS:testOneCommandCenterHasNoConnectionNode()
local commandCenter2 = StaticObject.getByName("Command Center2")
local commandCenter2ConnectionNode = StaticObject.getByName("command-center-2-connection-node")
local comCenter = self.testIADS:addCommandCenter(commandCenter2):addConnectionNode(commandCenter2ConnectionNode)
lu.assertEquals(#comCenter:getConnectionNodes(), 1)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), true)
local samSites = self.testIADS:getSAMSites()
lu.assertEquals(#samSites, SKYNET_UNIT_TESTS_NUM_SAM_SITES_RED)
local ewRadars = self.testIADS:getEarlyWarningRadars()
lu.assertEquals(#ewRadars, SKYNET_UNIT_TESTS_NUM_EW_SITES_RED)
self.testIADS:activate()
trigger.action.explosion(commandCenter2ConnectionNode:getPosition().p, 500)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), false)
--after the command center is no longer reachable we check to see if all SAM and EW radars are in their expected autonomous state:
for i = 1, #samSites do
local sam = samSites[i]
lu.assertEquals(sam:getAutonomousState(), true)
end
for i = 1, #ewRadars do
local ewRad = ewRadars[i]
lu.assertEquals(ewRad:getAutonomousState(), true)
end
end
function TestSkynetIADS:testOneCommandCenterLoosesPower()
local commandCenter2Power = StaticObject.getByName("Command Center2 Power")
local commandCenter2 = StaticObject.getByName("Command Center2")
lu.assertEquals(#self.testIADS:getCommandCenters(), 0)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), true)
local comCenter = self.testIADS:addCommandCenter(commandCenter2):addPowerSource(commandCenter2Power)
lu.assertEquals(#comCenter:getPowerSources(), 1)
lu.assertEquals(#self.testIADS:getCommandCenters(), 1)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), true)
trigger.action.explosion(commandCenter2Power:getPosition().p, 10000)
lu.assertEquals(#self.testIADS:getCommandCenters(), 1)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), false)
end
function TestSkynetIADS:testOneCommandCenterIsDestroyed()
local commandCenter1 = StaticObject.getByName("Command Center")
lu.assertEquals(#self.testIADS:getCommandCenters(), 0)
self.testIADS:addCommandCenter(commandCenter1)
lu.assertEquals(#self.testIADS:getCommandCenters(), 1)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), true)
trigger.action.explosion(commandCenter1:getPosition().p, 10000)
lu.assertEquals(#self.testIADS:getCommandCenters(), 1)
lu.assertEquals(self.testIADS:isCommandCenterUsable(), false)
end
function TestSkynetIADS:testSetOptionsForSAMSiteType()
local powerSource = StaticObject.getByName('SA-11-power-source')
local connectionNode = StaticObject.getByName('SA-11-connection-node')
lu.assertEquals(#self.testIADS:getSAMSitesByNatoName('SA-6'), 2)
--lu.assertIs(getmetatable(self.testIADS:getSAMSitesByNatoName('SA-6')), SkynetIADSTableForwarder)
local samSites = self.testIADS:getSAMSitesByNatoName('SA-6'):setActAsEW(true):addPowerSource(powerSource):addConnectionNode(connectionNode):setEngagementZone(SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE):setGoLiveRangeInPercent(90):setAutonomousBehaviour(SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertEquals(#samSites, 2)
for i = 1, #samSites do
local samSite = samSites[i]
lu.assertEquals(samSite:getActAsEW(), true)
lu.assertEquals(samSite:getEngagementZone(), SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE)
lu.assertEquals(samSite:getGoLiveRangeInPercent(), 90)
lu.assertEquals(samSite:getAutonomousBehaviour(), SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertIs(samSite:getConnectionNodes()[1], connectionNode)
lu.assertIs(samSite:getPowerSources()[1], powerSource)
end
end
function TestSkynetIADS:testSetOptionsForAllAddedSamSitesByPrefix()
self:tearDown()
self.testIADS = SkynetIADS:create()
local samSites = self.testIADS:addSAMSitesByPrefix('SAM'):setActAsEW(true):addPowerSource(powerSource):addConnectionNode(connectionNode):setEngagementZone(SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE):setGoLiveRangeInPercent(90):setAutonomousBehaviour(SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertEquals(#samSites, self.numSAMSites)
for i = 1, #samSites do
local samSite = samSites[i]
lu.assertEquals(samSite:getActAsEW(), true)
lu.assertEquals(samSite:getEngagementZone(), SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE)
lu.assertEquals(samSite:getGoLiveRangeInPercent(), 90)
lu.assertEquals(samSite:getAutonomousBehaviour(), SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertIs(samSite:getConnectionNodes()[1], connectionNode)
lu.assertIs(samSite:getPowerSources()[1], powerSource)
end
end
function TestSkynetIADS:testSetOptionsForAllAddedSAMSites()
local samSites = self.testIADS:getSAMSites():setActAsEW(true):addPowerSource(powerSource):addConnectionNode(connectionNode):setEngagementZone(SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE):setGoLiveRangeInPercent(90):setAutonomousBehaviour(SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertEquals(#samSites, self.numSAMSites)
for i = 1, #samSites do
local samSite = samSites[i]
lu.assertEquals(samSite:getActAsEW(), true)
lu.assertEquals(samSite:getEngagementZone(), SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE)
lu.assertEquals(samSite:getGoLiveRangeInPercent(), 90)
lu.assertEquals(samSite:getAutonomousBehaviour(), SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
lu.assertIs(samSite:getConnectionNodes()[1], connectionNode)
lu.assertIs(samSite:getPowerSources()[1], powerSource)
end
end
function TestSkynetIADS:testSetOptionsForAllAddedEWSitesByPrefix()
self:tearDown()
self.testIADS = SkynetIADS:create()
local ewSites = self.testIADS:addEarlyWarningRadarsByPrefix('EW'):addPowerSource(powerSource):addConnectionNode(connectionNode)
lu.assertEquals(#ewSites, self.numEWSites)
for i = 1, #ewSites do
local ewSite = ewSites[i]
lu.assertIs(ewSite:getConnectionNodes()[1], connectionNode)
lu.assertIs(ewSite:getPowerSources()[1], powerSource)
end
end
function TestSkynetIADS:testSetOptionsForAllAddedEWSites()
local ewSites = self.testIADS:getEarlyWarningRadars()
lu.assertEquals(#ewSites, self.numEWSites)
for i = 1, #ewSites do
local ewSite = ewSites[i]
lu.assertIs(ewSite:getConnectionNodes()[1], connectionNode)
lu.assertIs(ewSite:getPowerSources()[1], powerSource)
end
end
function TestSkynetIADS:testMergeContacts()
lu.assertEquals(#self.testIADS:getContacts(), 0)
self.testIADS:mergeContact(IADSContactFactory('Harrier Pilot'))
lu.assertEquals(#self.testIADS:getContacts(), 1)
self.testIADS:mergeContact(IADSContactFactory('Harrier Pilot'))
lu.assertEquals(#self.testIADS:getContacts(), 1)
self.testIADS:mergeContact(IADSContactFactory('test-in-firing-range-of-sa-2'))
lu.assertEquals(#self.testIADS:getContacts(), 2)
end
function TestSkynetIADS:testCleanAgedTargets()
local iads = SkynetIADS:create()
target1 = IADSContactFactory('test-in-firing-range-of-sa-2')
function target1:getAge()
return iads.maxTargetAge + 1
end
target2 = IADSContactFactory('test-distance-calculation')
function target2:getAge()
return 1
end
iads.contacts[1] = target1
iads.contacts[2] = target2
lu.assertEquals(#iads:getContacts(), 2)
iads:cleanAgedTargets()
lu.assertEquals(#iads:getContacts(), 1)
iads:deactivate()
end
function TestSkynetIADS:testOnlyLoadGroupsWithPrefixForSAMSiteNotOtherUnitsOrStaticObjectsWithSamePrefix()
self:tearDown()
self.testIADS = SkynetIADS:create()
local calledPrint = false
function self.testIADS:printOutput(str, isWarning)
calledPrint = true
end
self.testIADS:addSAMSitesByPrefix('prefixtest')
lu.assertEquals(#self.testIADS:getSAMSites(), 1)
lu.assertEquals(calledPrint, false)
end
function TestSkynetIADS:testOnlyLoadGroupsWithPrefixForSAMSiteNotOtherUnitsOrStaticObjectsWithSamePrefix2()
self:tearDown()
self.testIADS = SkynetIADS:create()
local calledPrint = false
function self.testIADS:printOutput(str, isWarning)
calledPrint = true
end
--happened when the string.find method was not set to plain special characters messed up the regex pattern
self.testIADS:addSAMSitesByPrefix('IADS-EW')
lu.assertEquals(#self.testIADS:getSAMSites(), 1)
lu.assertEquals(calledPrint, false)
end
function TestSkynetIADS:testOnlyLoadUnitsWithPrefixForEWSiteNotStaticObjectssWithSamePrefix()
self:tearDown()
self.testIADS = SkynetIADS:create()
local calledPrint = false
function self.testIADS:printOutput(str, isWarning)
calledPrint = true
end
self.testIADS:addEarlyWarningRadarsByPrefix('prefixewtest')
lu.assertEquals(#self.testIADS:getEarlyWarningRadars(), 1)
lu.assertEquals(calledPrint, false)
end
--TODO rework this test for new evaluateContacts code:
--[[
function TestSkynetIADS:testDontPassShipsGroundUnitsAndStructuresToSAMSites()
-- make sure we don't get any targets in the test mission
local ewRadars = self.testIADS:getEarlyWarningRadars()
for i = 1, #ewRadars do
local ewRadar = ewRadars[i]
function ewRadar:getDetectedTargets()
return {}
end
end
local samSites = self.testIADS:getSAMSites()
for i = 1, #samSites do
local samSite = samSites[i]
function samSite:getDetectedTargets()
return {}
end
end
self.testIADS:evaluateContacts()
-- verifies we have a clean test setup
lu.assertEquals(#self.testIADS.contacts, 0)
-- ground units should not be passed to the SAM
local mockContactGroundUnit = {}
function mockContactGroundUnit:getDesc()
return {category = Unit.Category.GROUND_UNIT}
end
function mockContactGroundUnit:getAge()
return 0
end
table.insert(self.testIADS.contacts, mockContactGroundUnit)
local correlatedCalled = false
function self.testIADS:informOfContact(contact)
correlatedCalled = true
end
self.testIADS:evaluateContacts()
lu.assertEquals(correlatedCalled, false)
lu.assertEquals(#self.testIADS.contacts, 1)
self.testIADS.contacts = {}
-- ships should not be passed to the SAM
local mockContactShip = {}
function mockContactShip:getDesc()
return {category = Unit.Category.SHIP}
end
function mockContactShip:getAge()
return 0
end
table.insert(self.testIADS.contacts, mockContactShip)
correlatedCalled = false
function self.testIADS:informOfContact(contact)
correlatedCalled = true
end
self.testIADS:evaluateContacts()
lu.assertEquals(correlatedCalled, false)
lu.assertEquals(#self.testIADS.contacts, 1)
self.testIADS.contacts = {}
-- aircraft should be passed to the SAM
local mockContactAirplane = {}
function mockContactAirplane:getDesc()
return {category = Unit.Category.AIRPLANE}
end
function mockContactAirplane:getAge()
return 0
end
table.insert(self.testIADS.contacts, mockContactAirplane)
correlatedCalled = false
function self.testIADS:informOfContact(contact)
correlatedCalled = true
end
self.testIADS:evaluateContacts()
--TODO: FIX TEST
lu.assertEquals(correlatedCalled, true)
lu.assertEquals(#self.testIADS.contacts, 1)
self.testIADS.contacts = {}
end
--]]
function TestSkynetIADS:testAddMooseSetGroup()
local mockMooseSetGroup = {}
local mockMooseConnector = {}
local setGroupCalled = false
function mockMooseConnector:addMooseSetGroup(group)
setGroupCalled = true
lu.assertEquals(mockMooseSetGroup, group)
end
function self.testIADS:getMooseConnector()
return mockMooseConnector
end
self.testIADS:addMooseSetGroup(mockMooseSetGroup)
lu.assertEquals(setGroupCalled, true)
end
--TODO: add more comparisons in this test, this test also tests buildRadarCoverageForAbstractRadarElement
function TestSkynetIADS:testBuildRadarCoverage()
--we add a mock child and parent radar, it will be removed in buildRadarCoverage
local childRadMock = {}
function childRadMock:hasWorkingPowerSource()
return true
end
function childRadMock:hasActiveConnectionNode()
return true
end
function childRadMock:setToCorrectAutonomousState()
end
local sa19 = self.testIADS:getSAMSiteByGroupName('SAM-SA-19')
--sa19:addChildRadar(childRadMock)
local parentRadMock = {}
function parentRadMock:hasWorkingPowerSource()
return true
end
function parentRadMock:hasActiveConnectionNode()
return true
end
function parentRadMock:getActAsEW()
return true
end
function parentRadMock:isDestroyed()
return false
end
function parentRadMock:setToCorrectAutonomousState()
end
sa19:addParentRadar(parentRadMock)
--local mockComCenterChild = {}
--self.testIADS:addCommandCenter(StaticObject.getByName('command-center-unit-test'))
--:addChildRadar(mockComCenterChild)
local ewRadar = self.testIADS:getEarlyWarningRadarByUnitName('EW-west2')
--ewRadar:addChildRadar(childRadMock)
self.testIADS:buildRadarCoverage()
--lu.assertEquals(#self.testIADS:getCommandCenters()[1]:getChildRadars(), self.numSAMSites + self.numEWSites)
local sa19 = self.testIADS:getSAMSiteByGroupName('SAM-SA-19')
local sa19Parent = sa19:getParentRadars()[1]
local sa2 = self.testIADS:getSAMSiteByGroupName('SAM-SA-2')
env.info(tostring(sa19Parent:getDCSName()))
--assertions need to be like this otherwise dcs will crash.
lu.assertEquals((sa19Parent == self.testIADS:getEarlyWarningRadarByUnitName('EW-west23')), true)
end
function TestSkynetIADS:testBuildRadarCoverageForEarlyWarningRadar()
local ewRadar = self.testIADS:getEarlyWarningRadarByUnitName('EW-west2')
--we add a mock child and parent radar, it will be removed in buildRadarCoverageForEarlyWarningRadar
local childRadMock = {}
function childRadMock:hasWorkingPowerSource()
return true
end
function childRadMock:hasActiveConnectionNode()
return true
end
ewRadar:clearChildRadars()
--ewRadar:addChildRadar(childRadMock)
local sam1 = self.testIADS:getSAMSiteByGroupName('SAM-SA-6-2')
sam1:clearParentRadars()
local sam2 = self.testIADS:getSAMSiteByGroupName('SAM-SA-6')
sam2:clearParentRadars()
self.testIADS:addCommandCenter(StaticObject.getByName('command-center-unit-test')):addChildRadar(mockComCenterChild)
self.testIADS:buildRadarCoverageForEarlyWarningRadar(ewRadar)
lu.assertEquals(#self.testIADS:getCommandCenters()[1]:getChildRadars(), 1)
lu.assertEquals(#ewRadar:getChildRadars(), 2)
lu.assertEquals(sam1:getParentRadars()[1], ewRadar)
lu.assertEquals(sam2:getParentRadars()[1], ewRadar)
--we test to make sure AWACS aircraft are added corectly as parent radars:
self.testIADS:activate()
local hq7 = self.testIADS:getSAMSiteByGroupName('SAM-HQ-7')
local kj2000 = hq7:getParentRadars()[1]
lu.assertEquals(kj2000:getDCSName(), "EW-AWACS-KJ-2000")
local hq7 = kj2000:getChildRadars()[1]
lu.assertEquals(hq7:getDCSName(), "SAM-HQ-7")
end
function TestSkynetIADS:testGetSAMSitesByPrefix()
local samSites = self.testIADS:getSAMSitesByPrefix('SAM-SA-15')
lu.assertEquals(#samSites, 3)
end
function TestSkynetIADS:testSetMaxAgeOfCachedTargets()
local iads = SkynetIADS:create()
-- test default value
lu.assertEquals(iads.contactUpdateInterval, 5)
iads:setUpdateInterval(10)
lu.assertEquals(iads.contactUpdateInterval, 10)
lu.assertEquals(iads:getCachedTargetsMaxAge(), 10)
local ewRadar = iads:addEarlyWarningRadar('EW-west')
local samSite = iads:addSAMSite('SAM-SA-15-1')
lu.assertEquals(ewRadar.cachedTargetsMaxAge, 10)
lu.assertEquals(samSite.cachedTargetsMaxAge, 10)
iads:deactivate()
end
function TestSkynetIADS:testAddSingleEWRadarAndSAMSiteWhenIADSIsActiveWillTriggerCorrectRadarCoverageUpdates()
local iads = SkynetIADS:create()
local calledSAMUpdate = 0
local calledEWUpdate = 0
function iads:buildRadarCoverageForSAMSite(samSite)
calledSAMUpdate = calledSAMUpdate + 1
end
function iads:buildRadarCoverageForEarlyWarningRadar(ewRadar)
calledEWUpdate = calledEWUpdate + 1
end
local ewRadar = iads:addEarlyWarningRadar('EW-west')
lu.assertEquals(calledEWUpdate, 0)
local samSite = iads:addSAMSite('SAM-SA-6-2')
lu.assertEquals(calledSAMUpdate, 0)
--simulate an active IADS:
iads.ewRadarScanMistTaskID = 1
local ewRadar = iads:addEarlyWarningRadar('EW-west')
lu.assertEquals(calledEWUpdate, 1)
local samSite = iads:addSAMSite('SAM-SA-6-2')
lu.assertEquals(calledSAMUpdate, 1)
iads:deactivate()
end
function TestSkynetIADS:testSetupSAMSites()
local numCalls = 0
local numHARMCalls = 0
local sams = self.testIADS:getSAMSites()
for i = 1, #sams do
local sam = sams[i]
function sam:goLive()
numCalls = numCalls + 1
end
end
lu.assertEquals(self.testIADS.samSetupMistTaskID, nil)
lu.assertEquals(self.testIADS.samSetupTime, 60)
self.testIADS:setupSAMSitesAndThenActivate(10)
lu.assertEquals(numCalls, #self.testIADS:getSAMSites())
lu.assertNotEquals(self.testIADS.samSetupMistTaskID, nil)
lu.assertEquals(self.testIADS.samSetupTime, 10)
end
function TestSkynetIADS:testSetupSAMSiteWithPointDefence()
local iads = SkynetIADS:create()
local sa15 = iads:addSAMSite('SAM-SA-15-1')
iads:addSAMSite('SAM-SA-10'):addPointDefence(sa15)
iads:setupSAMSitesAndThenActivate()
lu.assertEquals(iads:getSAMSiteByGroupName('SAM-SA-10'):isActive(), true)
lu.assertEquals(iads:getSAMSiteByGroupName('SAM-SA-15-1'):isActive(), true)
iads:deactivate()
end
function TestSkynetIADS:testBuildIADSWithAutonomousSAMS()
local iads = SkynetIADS:create()
local samSite = iads:addSAMSite('SAM-SA-10')
iads:activate()
lu.assertEquals(samSite:isActive(), true)
iads:deactivate()
end
end
|
local skynet = require "skynet"
local service_address
local function start_service(max_threads)
service_address = skynet.uniqueservice("blockingfile", max_threads)
end
local function ensure_start_service()
if not service_address then
start_service(4)
end
return service_address
end
local function blocking_open(filename, mode)
return skynet.call(ensure_start_service(), "lua", "open", filename, mode)
end
local function blocking_read(handle, fmt)
return skynet.call(ensure_start_service(), "lua", "read", handle, fmt)
end
local function blocking_seek(handle, whence, offset)
return skynet.call(ensure_start_service(), "lua", "seek", handle, whence, offset)
end
local function blocking_close(handle)
return skynet.call(ensure_start_service(), "lua", "close", handle)
end
local function blocking_write(handle, data)
return skynet.call(ensure_start_service(), "lua", "write", handle, data)
end
local function blocking_flush(handle)
return skynet.call(ensure_start_service(), "lua", "flush", handle)
end
return {
open = blocking_open,
read = blocking_read,
seek = blocking_seek,
write = blocking_write,
flush = blocking_flush,
close = blocking_close,
start_service = start_service,
}
|
-- Code from bncastle
-- https://github.com/bncastle/love2d-tutorial/blob/Episode4/class.lua
-- is published under MIT license.
local Class = {}
Class.__index = Class
--default implementation
function Class:new() end
--create a new Class type from our base class
function Class:derive(type)
local cls = {}
cls["__call"] = Class.__call
cls.type = type
cls.__index = cls
cls.super = self
setmetatable(cls, self)
return cls
end
function Class:__call(...)
local inst = setmetatable({}, self)
inst:new(...)
return inst
end
function Class:get_type()
return self.type
end
return Class
|
local PLY = FindMetaTable("Player")
function PLY:AddHint(txt, typ, len)
notification.AddLegacy(txt, typ, len)
end
net.Receive("Player_AddHint", function()
local txt = net.ReadString()
local typ = net.ReadInt(32)
local len = net.ReadInt(32)
LocalPlayer():AddHint(txt, typ, len)
end)
|
workspace "oxide2"
configurations { "Debug", "Release" }
platforms { "x64", "x32" }
location "premake"
filter {"system:windows"}
characterset "MBCS"
filter {}
-- Set up platforms
filter {"platforms:x32"}
architecture "x32"
filter {"platforms:x64"}
architecture "x64"
filter {}
-- Setup c++ spec per platform
-- Linux uses a buildoption to allow for more
-- up to date standards (2a)
filter {"system:windows"}
toolset "msc-v141"
filter {"system:linux"}
toolset "clang" -- prefer clang over gcc
filter {}
-- Setup configurations
filter "configurations:Debug"
defines { "DEBUG", "_DEBUG" }
optimize "Off"
runtime "Debug"
filter {"configurations:Debug", "system:windows"}
symbols "Full"
filter {"configurations:Debug", "system:linux"}
symbols "On"
buildoptions "-g3" -- need this for gdb
filter {"configurations:Release"}
defines { "NDEBUG" }
optimize "Full"
symbols "Off"
flags {"LinkTimeOptimization"}
filter {}
require "import"
|
local cURL = require "cURL"
-- open output file
f = io.open("smartcitydata.txt", "w")
cURL.easy{
url = "https://api.smartcitizen.me/v0/devices/1616/readings?sensor_id=4&rollup=1d&from=2015-07-23&to=2015-07-30",
writefunction = f
}
:perform()
:close()
-- close output file
f:close()
|
-- Allows using full userdata objects in dictionaries
-- particularly REManagedObjects
local ManagedObjectDict = {
new = function(self, o)
o = o or {}
return setmetatable(o, self)
end,
__index = function(t, key)
return rawget(t, key:get_address())
end,
__newindex = function(t, key, value)
rawset(t, key:get_address(), value)
end
}
return ManagedObjectDict
|
module ('mapgenerator', package.seeall) do
require 'map.generator.utility'
function generate_cave_from_grid(grid)
local width, height = grid.width, grid.height
local function walls_nearby( grid, map, j, i, range_j, range_i )
local width, height = grid.width, grid.height
local missing_j = math.max(range_j - j + 1, range_j - height + j, 0)
local missing_i = math.max(range_i - i + 1, range_i - width + i, 0)
local count_walls = (range_j*2 + 1) * (range_i*2 + 1)--(missing_i + 1) * (missing_j + 1) - 1
for int_j = math.max(j-range_j, 1), math.min(j+range_j, height) do
for int_i = math.max(i-range_i, 1), math.min(i+range_i, width) do
count_walls = count_walls + (grid.tileset:type(map[int_j][int_i]).floor and 0 or -1)
end
end
return count_walls
end
local fullmap, oldmap = grid
for iterations=1,3 do
oldmap = fullmap
fullmap = create_matrix(height, width, function(j, i)
local nearby_walls = walls_nearby(grid, oldmap, j, i, 1, 2)
local far_walls = walls_nearby(grid, oldmap, j, i, 2, 2)
return ((nearby_walls >= 7 or far_walls == 0) and 'I') or ' '
end)
end
for iterations=1,2 do
oldmap = fullmap
fullmap = create_matrix(height, width, function(j, i)
local nearby_walls = walls_nearby(grid, oldmap, j, i, 1, 2)
return ((nearby_walls >= 8) and 'I') or ' '
end)
end
-- Each tile needs to be a table for extra informations and ease of use
-- Since in the grid a tile is just a char, we create a new table
local advdata = create_matrix(height, width, function(j, i)
return { j=j, i=i, type=fullmap[j][i] }
end)
-- Depth search function.
-- All tiles you can reach from a tile belongs to the same group.
local function depth_set_group(tile, newgroup)
if not tile or tile.group == newgroup then return false end
if tile.type ~= ' ' then return true end
assert(not tile.group, "If groups not the same then i has no group.")
tile.group = newgroup
newgroup.size = newgroup.size + 1
local border
border = depth_set_group(matrix_get(advdata, tile.j-1, tile.i), newgroup) or border
border = depth_set_group(matrix_get(advdata, tile.j+1, tile.i), newgroup) or border
border = depth_set_group(matrix_get(advdata, tile.j, tile.i-1), newgroup) or border
border = depth_set_group(matrix_get(advdata, tile.j, tile.i+1), newgroup) or border
if border then
table.insert(newgroup.border, tile)
end
return false
end
local groups = {}
-- Find the groups
pertile(advdata, function(tile)
if tile.type == ' ' and not tile.group then
local newgroup = { size = 0, border = {} }
table.insert(groups, newgroup)
depth_set_group(tile, newgroup)
end
end)
-- Fill small groups
local MINGROUP_SIZE = 20
pertile(advdata, function(tile)
if tile.group and tile.group.size < MINGROUP_SIZE then
tile.type = 'I'
tile.group.size = tile.group.size - 1
tile.group = nil
end
end)
groups = array_remove_if(groups, function(group) return group.size == 0 end)
-- Ignore the biggest group
local maxgroup = 1
for id,group in ipairs(groups) do
maxgroup = (group.size > groups[maxgroup].size) and id or maxgroup
end
table.remove(groups, maxgroup)
local function find_nearest_from_other_group(tile)
local group = tile.group
local already_searched = { tile = true }
local queue = { tile }
repeat
local t = table.remove(queue, 1)
for _,v in ipairs{{j=t.j-1, i=t.i},{j=t.j+1, i=t.i},{j=t.j, i=t.i-1},{j=t.j, i=t.i+1}} do
if v.j >= 1 and v.j <= height and v.i >= 1 and v.i <= width then
local target = advdata[v.j][v.i]
-- found a tile from another group
if target.group and target.group ~= group then
return target
end
if not already_searched[target] then
table.insert(queue, target)
already_searched[target] = true
end
end
end
until #queue == 0
error "Queue is empty?!"
end
local function find_shortest_path(tiles)
local shortest
for _,tile in ipairs(tiles) do
local other = find_nearest_from_other_group(tile)
local dist = math.abs(other.j - tile.j) + math.abs(other.i - tile.i)
if not shortest then
shortest = { this = tile, that = other, dist = dist }
else
shortest = (shortest.dist <= dist) and shortest or { this = tile, that = other, dist = dist }
end
end
return shortest
end
while #groups > 0 do
local group = table.remove(groups)
local shortest = find_shortest_path(group.border)
for j = math.min(shortest.this.j, shortest.that.j)-1, math.max(shortest.this.j, shortest.that.j) +1 do
for i = math.min(shortest.this.i, shortest.that.i)-1, math.max(shortest.this.i, shortest.that.i) +1 do
local tile = advdata[j][i]
if tile and not tile.group and tile.type == 'I' then
tile.type = ' '
tile.group = group
group.size = group.size + 1
end
end
end
-- Move all elements from this group to the group we just connected to
pertile(advdata, function(tile, j, i)
if tile.group == group then
tile.group = shortest.that.group
shortest.that.group.size = shortest.that.group.size + 1
end
end)
end
-- Check if all tiles either has a group or is a wall. And update the main grid with changes
pertile(advdata, function(tile, j, i)
assert(tile.group or tile.type ~= ' ')
fullmap[j][i] = tile.type
end)
fullmap.width = grid.width
fullmap.height = grid.height
fullmap.tileset = grid.tileset
return fullmap
end
end
|
local inspect = require('inspect');
local dbRequest = function (dbconn, dbname)
local collection = 'trunk';
local getOutgoingTrunks = function ()
local cursor = dbconn:query(dbname..'.'..collection, {
category = 'default'
});
local trunk = cursor:next();
return trunk or nil;
end;
return {
['type'] = 'outbound';
["getOutgoingTrunks"] = getOutgoingTrunks;
}
end;
return dbRequest;
|
ESX = nil
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
ESX.RegisterUsableItem('test_ciazowy', function(source)
local xPlayer = ESX.GetPlayerFromId(source)
xPlayer.removeInventoryItem('test_ciazowy', 1)
TriggerClientEvent('test_ciazowy:start', source)
end)
ESX.RegisterUsableItem('tabletki', function(source)
local xPlayer = ESX.GetPlayerFromId(source)
xPlayer.removeInventoryItem('tabletki', 1)
TriggerClientEvent('test_ciazowy:tabletka', source)
end)
ESX.RegisterServerCallback('test_ciazowy:gumka', function(source, cb, player)
local xPlayer = ESX.GetPlayerFromId(player)
if xPlayer.getInventoryItem('gumka').count > 0 then
xPlayer.removeInventoryItem('gumka', 1)
cb(true)
else
cb(false)
end
end)
|
print2(inspect(sandbox1))
{
ac1 = nil --[[<function 1>]],
vc = {
applycontrol = nil --[[<function 1>]],
control = 1,
curval = 0,
prevval = 0,
update = nil --[[<function 2>]],
valgetter = nil --[[<function 3>]]
},
vg1 = nil --[[<function 3>]],
x = 1
}
{
ac1 = nil --[[<function 1>]],
c = -1,
gmetatest1 = nil --[[<function 2>]],
vc = {
applycontrol = nil --[[<function 1>]],
control = 1,
curval = 0,
prevval = 0,
update = nil --[[<function 3>]],
valgetter = nil --[[<function 4>]]
},
vg1 = nil --[[<function 4>]],
x = 0
}
sandbox1 = {}
|
function add(a, b)
return a + b
end
function sub(a, b)
return a - b
end
print("你好世界")
a = 1
b = 2
print(add(a, b))
|
function ConfigMenu()
local main = createFrame("Config Menu")
main:MakePopup()
RestoreCursorPosition()
end
function createLabel(text, color)
end
function createSetting()
--sd
end
-- Listen for callback from server when pressing F1 (help menu)
net.Receive("Minigolf.ConfigMenu", function()
ConfigMenu()
end)
|
--[[ Copyright 2019 The Spin-Scenario Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================-]]
-- preliminary test for tensorflow oc of two spin system.
-- NOTE: to test this script, you need to install tensorflow into the system.
-- sudo apt install python3-dev python3-pip
-- sudo -H pip3 install tensorflow==1.10
-- see https://tensorflow.google.cn/install/pip
B0{"500 MHz"}
local sys = spin_system{
spin = '1H 13C',
jcoupling = '1 2 scalar 140 Hz'
}
local oc = rf_optimizer_tf(sys)
local opt_pulse = oc:optimize{
width = 7.14,
step = 357,
init_pattern = 'rect',
init_state = 'I1x',
targ_state = 'I2x'
}
opt_pulse:set_name('I_x to S_x')
opt_pulse:switch('ux/uy')
plot(opt_pulse)
|
local core = require "sys.core"
local worker = require "cluster.worker"
local proto = require "proto.cluster"
local gate = require "gate"
local router = require "router"
local rand = math.random
local lprint = core.log
local forward = gate.forward
core.start(function()
local master = assert(core.envget("master_listen", "master_listen"))
local listen = assert(core.envget("listen"), "listen")
local slot = worker.up {
type = "gate",
listen = listen,
master = master,
proto = proto,
agents = {
["room"] = gate.room_join,
["battle"] = gate.battle_join,
},
}
worker.run(router)
gate.start(slot)
core.log("[main] run ok")
end)
|
-----------------------------------------
-- Spell: Disseverment
-- Delivers a fivefold attack. Additional effect: Poison. Accuracy varies with TP
-- Spell cost: 74 MP
-- Monster Type: Luminians
-- Spell Type: Physical (Piercing)
-- Blue Magic Points: 5
-- Stat Bonus: INT+1, MND-1
-- Level: 72
-- Casting Time: 0.5 seconds
-- Recast Time: 32.75 seconds
-- Skillchain Element(s): Distortion (can open/close Darkness with Gravitation WSs and spells)
-- Combos: Accuracy Bonus
-----------------------------------------
require("scripts/globals/bluemagic")
require("scripts/globals/status")
require("scripts/globals/magic")
-----------------------------------------
function onMagicCastingCheck(caster,target,spell)
return 0
end
function onSpellCast(caster,target,spell)
local params = {}
-- This data should match information on http://wiki.ffxiclopedia.org/wiki/Calculating_Blue_Magic_Damage
params.tpmod = TPMOD_ACC
params.dmgtype = tpz.damageType.PIERCING
params.scattr = SC_DISTORTION
params.numhits = 5
params.multiplier = 1.5
params.tp150 = 0.8
params.tp300 = 1.0
params.azuretp = 1.0
params.duppercap = 100 -- D upper >=69
params.str_wsc = 0.2
params.dex_wsc = 0.2
params.vit_wsc = 0.0
params.agi_wsc = 0.0
params.int_wsc = 0.0
params.mnd_wsc = 0.0
params.chr_wsc = 0.0
damage = BluePhysicalSpell(caster, target, spell, params)
damage = BlueFinalAdjustments(caster, target, spell, damage, params)
poison = target:getStatusEffect(tpz.effect.POISON)
local chance = math.random()
if (chance < 0.95 and poison == nil) then
local power = (caster:getMainLvl()/5) + 3 -- from http://wiki.ffxiclopedia.org/wiki/Disseverment
target:addStatusEffect(tpz.effect.POISON,power,3,180) -- for 180secs
end
return damage
end
|
--====================================================================--
-- dmc-wamp-rpc-caller: App Config
--
-- for specific application configurations
--
--====================================================================--
--[[
All variables below are available to the application.
While this file is part of the file check-in, this can be and should be
edited by developers for use in their particular environment.
However, those changes are typically NOT checked in.
--]]
local Config = {}
Config.server = {
host = 'ws://192.168.3.84',
port = 8080,
realm = 'realm1',
rpc_procedure = 'com.timeservice.now'
}
return Config
|
return {
[2]={
--x1 y1 x2 y2
--0 0 1 1
[10000] = {
-300, 1980, 10185, -5880, -- zone 10000
}
}
}
|
-- When a player join the game --
function Event.initPlayer(event)
local player = getPlayer(event.player_index)
if player == nil then return end
if player.controller_type == defines.controllers.cutscene then return end
--player.force.technologies["DimensionalOre"].researched = true
if getMFPlayer(player.name) == nil then
global.playersTable[player.name] = MFP:new(player)
-- Mobile Factory Object --
local MF = MF:new({player = player})
createMFSurface(MF)
createControlRoom(MF)
global.playersTable[player.name].MF = MF
------------------- Can't get the Player Inventory when the Mod Init since the Factorio 1.0 Version -------------------
if mfCall(addMobileFactory, player) == true then
player.print({"gui-description.initPlayer_AddMFFailed"})
end
setPlayerVariable(player.name, "GotInventory", true)
if mfCall(GUI.createMFMainGUI, player) == true then
player.print({"gui-description.initPlayer_CreateMainGUIFailed"})
if global.playersTable[player.name].GUI[_mfGUIName.MainGUI] ~= nil then global.playersTable[player.name].GUI[_mfGUIName.MainGUI] = nil end
if player.gui.screen[_mfGUIName.MainGUI] ~= nil and player.gui.screen[_mfGUIName.MainGUI].valid == true then
player.gui.screen[_mfGUIName.MainGUI].destroy()
end
end
if remote.interfaces["dangOreus"] then
remote.call("dangOreus","toggle",MF.fS)
remote.call("dangOreus","toggle",MF.ccS)
end
if remote.interfaces["RSO"] then
remote.call("RSO","ignoreSurface",MF.fS.name)
remote.call("RSO","ignoreSurface",MF.ccS.name)
end
end
end
-- If player entered or living a vehicle --
function Event.playerDriveStatChange(event)
-- Teleport the player out of reach from Mobile Factoty teleport box --
local player = getPlayer(event.player_index)
local entity = event.entity
if entity == nil or entity.valid == false or player == nil or player.valid == false or string.find(entity.name, "MobileFactory") == nil then return end
if player.vehicle ~= nil then return end
if entity.surface.can_place_entity{name="character", position = {entity.position.x + 5, entity.position.y}} then
player.teleport({entity.position.x + 5, entity.position.y}, entity.surface)
elseif entity.surface.can_place_entity{name="character", position = {entity.position.x -5, entity.position.y}} then
player.teleport({entity.position.x - 5, entity.position.y}, entity.surface)
elseif entity.surface.can_place_entity{name="character", position = {entity.position.x, entity.position.y - 7}} then
player.teleport({entity.position.x, entity.position.y - 7}, entity.surface)
else
player.teleport({entity.position.x, entity.position.y + 7}, entity.surface)
end
end
-- On every Tick --
function Event.tick(event)
-- Update all entities --
updateEntities(event)
-- Update all Erya Structures --
-- Erya.updateEryaStructures(event)
-- Update all GUI --
GUI.updateAllGUIs()
-- Updates Mobile Factory Lights --
if event.tick%_eventTick49 == 0 then updateIndoorLights() end
-- Update the Floor Is Lava --
if event.tick%_eventTick150 == 0 and global.floorIsLavaActivated == true then updateFloorIsLava() end
end
-- Watch damages --
function Event.entityDamaged(event)
if event.entity.force.name == "enemy" or event.entity.force.name == "neutral" then return end
-- Check the Entity --
if event.entity == nil or event.entity.valid == false then return end
-- Test if this is in the Control Center --
if string.match(event.entity.surface.name, _mfControlSurfaceName) then
event.entity.health = event.entity.prototype.max_health
end
end
-- When a technology is finished --
function Event.technologyFinished(event)
local func = _MFResearches[event.research.name]
if func == nil then return end
for _, player in pairs(game.players) do
if player.valid == true then -- should always be valid?
local mfPlayer = getMFPlayer(player.name)
if valid(mfPlayer) and valid(mfPlayer.MF) and event.research.force == player.force then
_G[func](mfPlayer.MF)
end
end
end
end
-- Called when a Player select an Entity -- Not used anymore ? --
function Event.selectedEntityChanged(event)
-- -- Get the Player --
-- local player = getPlayer(event.player_index)
-- -- Check the Player and the Entity --
-- if player == nil or player.selected == nil or player.selected.valid == false or player.selected.unit_number == nil then return end
-- -- Check if the Tooltip GUI exist --
-- if player.gui.screen.mfTooltipGUI == nil or player.gui.screen.mfTooltipGUI.valid == false then return end
-- -- Check if the Tooltip GUI is not locked --
-- if getPlayerVariable(player.name, "TTGUILocked") == true then return end
-- -- Update the Tooltip GUI --
-- GUI.updateTooltip(player, player.selected)
end
-- Called when a Setting is pasted --
function Event.settingsPasted(event)
-- Check the Entities --
if event.source == nil or event.source.valid == false then return end
if event.destination == nil or event.destination.valid == false then return end
-- Get the Objects --
local o1 = global.entsTable[event.source.unit_number] or global.objectsTable[event.source.unit_number]
local o2 = global.entsTable[event.destination.unit_number] or global.objectsTable[event.destination.unit_number]
-- Check the Objects --
if o1 == nil then return end
if o2 == nil then return end
if o1.ent.name ~= o2.ent.name then return end
-- Copy the Settings --
if o2.copySettings ~= nil then
o2:copySettings(o1)
end
-- Copy the Setting - No Metatables system --
if o2.meta ~= nil and _G[o2.meta].copySettings ~= nil then
_G[o2.meta].copySettings(o2, o1)
end
end
-- Called when a new Force is created --
function Event.forceCreated(event)
local force = event.force
if force.valid and settings.startup["MF-initial-research-complete"] and settings.startup["MF-initial-research-complete"].value == true then
force.technologies["DimensionalOre"].researched = true
end
end
-- Called when a Player changed his team --
function Event.playerChangedForce(event)
local player = getPlayer(event.player_index)
if not (player and player.valid) then return end
local MFPlayer = getMFPlayer(player.name)
if not (MFPlayer and MFPlayer:valid()) then return end
local MF = getMF(player.name)
if not (MF and MF:valid()) then return end
if MF.ent and MF.ent.valid then MF.ent.force = player.force end
if MF.fS and MF.fS.valid then
local oldForceEntities = MF.fS.find_entities_filtered{force = event.force}
local newForce = player.force
for _, ent in pairs(oldForceEntities) do
ent.force = newForce
end
end
if MF.ccS and MF.ccS.valid then
local oldForceEntities = MF.ccS.find_entities_filtered{force = event.force}
local newForce = player.force
for _, ent in pairs(oldForceEntities) do
ent.force = newForce
end
end
end
-- Called when a Player settup a Blueprint --
function Event.playerSetupBlueprint(event)
local player = game.players[event.player_index]
local mapping = event.mapping.get()
local bp = player.blueprint_to_setup
if bp.valid_for_read == false then
local cursor = player.cursor_stack
if cursor and cursor.valid_for_read and cursor.name == "blueprint" then
bp = cursor
--return
end
end
if bp == nil or bp.valid_for_read == false then return end
for index, ent in pairs(mapping) do
local tags = entityToBlueprintTags(ent)
if tags ~= nil then
for tag, value in pairs(tags) do
bp.set_blueprint_entity_tag(index, tag, value)
end
end
end
end
-- Called when a Entity is rotated --
function Event.entityRotated(event)
-- Get the Values --
local player = getPlayer(event.player_index)
local ent = event.entity
-- Check the Entity --
if ent == nil or ent.valid == false then return end
-- Check if this is a Deployed Entity --
if string.match(ent.name, "DimensionalBelt") or string.match(ent.name, "DimensionalPipe") then
-- Find the Entity --
local dpMF = nil
local slotID = nil
local slot = nil
local dpEnts = nil
for _, mf in pairs(global.MFTable) do
for ID, aDPEnts in pairs(mf.deployedEnts) do
if aDPEnts.inEntity == ent or aDPEnts.outEntity == ent then
dpMF = mf
dpEnts = aDPEnts
slotID = ID
slot = mf.slots[slotID]
end
end
end
-- Check if the Entity was Found --
if dpMF ~= nil and dpEnts ~= nil and dpEnts.outEntity ~= nil and dpEnts.inEntity ~= nil and dpEnts.outEntity.valid == true and dpEnts.inEntity.valid == true then
-- If this is a Belt --
if string.match(ent.name, "DimensionalBelt") then
if dpEnts.way == "input" then
dpEnts.way = "output"
dpEnts.outEntity.disconnect_linked_belts()
dpEnts.inEntity.linked_belt_type = "input"
dpEnts.outEntity.linked_belt_type = "output"
dpEnts.inEntity.connect_linked_belts(dpEnts.outEntity)
player.create_local_flying_text{text={"gui-description.SendOutside"}, position=ent.position}
if slot ~= nil then slot.way = "output" end
elseif dpEnts.way == "output" then
dpEnts.way = "input"
dpEnts.outEntity.disconnect_linked_belts()
dpEnts.inEntity.linked_belt_type = "output"
dpEnts.outEntity.linked_belt_type = "input"
player.create_local_flying_text{text={"gui-description.SendInside"}, position=ent.position}
dpEnts.inEntity.connect_linked_belts(dpEnts.outEntity)
if slot ~= nil then slot.way = "input" end
end
ent.direction = (event.previous_direction + 4) % 8
return
end
-- If this is a Pipe --
if string.match(ent.name, "DimensionalPipe") then
if dpEnts.way == "input" then
dpEnts.way = "output"
player.create_local_flying_text{text={"gui-description.SendOutside"}, position=ent.position}
if slot ~= nil then slot.way = "output" end
elseif dpEnts.way == "output" then
dpEnts.way = "input"
player.create_local_flying_text{text={"gui-description.SendInside"}, position=ent.position}
if slot ~= nil then slot.way = "input" end
end
ent.direction = event.previous_direction
return
end
end
end
end
-- Called when a Shortcut is pressed --
function Event.onShortcut(event)
local player = getPlayer(event.player_index)
local MFPlayer = getMFPlayer(event.player_index)
-- Tooltip GUI Key --
if event.input_name == "OpenTTGUI" and player.selected ~= nil and player.selected.valid == true and _mfShortcutGUI[player.selected.name] == true then
if player.can_reach_entity(player.selected) then
-- Open the GUI --
GUI.openTTGui(MFPlayer, player, player.selected)
return
else
player.create_local_flying_text{text={"gui-description.CannnotReach"}, position=player.selected.position}
end
end
-- Close GUIs --
if event.input_name == "CloseGUI" then
-- Close Recipe GUI --
if MFPlayer.GUI[_mfGUIName.RecipeGUI] ~= nil then
if MFPlayer.GUI[_mfGUIName.RecipeGUI].gui ~= nil then MFPlayer.GUI[_mfGUIName.RecipeGUI].gui.destroy() end
MFPlayer.GUI[_mfGUIName.RecipeGUI] = nil
end
-- Close Recipe Info GUI --
if MFPlayer.GUI[_mfGUIName.RecipeInfoGUI] ~= nil then
if MFPlayer.GUI[_mfGUIName.RecipeInfoGUI].gui ~= nil then MFPlayer.GUI[_mfGUIName.RecipeInfoGUI].gui.destroy() end
MFPlayer.GUI[_mfGUIName.RecipeInfoGUI] = nil
end
-- Close Slot GUI --
if MFPlayer.GUI[_mfGUIName.SlotGUI] ~= nil then
if MFPlayer.GUI[_mfGUIName.SlotGUI].gui ~= nil then MFPlayer.GUI[_mfGUIName.SlotGUI].gui.destroy() end
MFPlayer.GUI[_mfGUIName.SlotGUI] = nil
end
return
end
end
-- Called when the MFCleanGUI is sent --
function Event.clearGUI(event)
-- Get the Player --
local player = getPlayer(event.player_index)
-- Clean all Mobile Factory GUI --
for _, gui in pairs(player.gui.screen.children) do
if gui ~= nil and gui.valid == true and gui.get_mod() == "Mobile_Factory" and gui.name ~= "MFBaseErrorWindows" then
gui.destroy()
end
end
-- Clear the GUITable --
getMFPlayer(event.player_index).GUI = nil
-- Clear the Opened GUI --
player.opened = nil
-- Recreate the Main GUI --
GUI.createMFMainGUI(player)
end
|
local vo = vim.opt_local
vo.tabstop = 4
vo.shiftwidth = 4
vo.softtabstop = 4
|
require "scripts.core.item"
require "gamemode.Spark.modifiers.modifier_movement_speed";
BottleOfQuicksilver = class(Item)
function BottleOfQuicksilver:OnCreated ()
self:SetCastingBehavior(CastingBehavior(CastingBehavior.PASSIVE));
end
function BottleOfQuicksilver:GetModifiers ()
return {
"modifier_movement_speed"
}
end
return BottleOfQuicksilver
|
local ids = {
["exitmap1"] = 49,
["book1"] = 59,
["write1"] = 44,
["pop1"] = 1,
["kill1"] = 8,
["kill2"] = 9,
["trap1"] = 70,
["more1"] = 10,
["getgold1"] = 11,
["paygold1"] = 12,
["equip1"] = 13,
["get1"] = 14,
["get2"] = 15,
["drop1"] = 16,
["drink1"] = 17,
["eat1"] = 18,
["spend1"] = 19,
["ding1"] = 60,
["ding3"] = 61,
["dead1"] = 50,
["ok1"] = 20,
["dig1"] = 52,
["bash1"] = 73,
["complete1"] = 51,
["alert1"] = 21,
["locked1"] = 22,
["chest1"] = 23,
["ding2"] = 24,
["cook1"] = 25,
["pop2"] = 26,
["fail1"] = 27,
["build1"] = 58,
["bow1"] = 29,
["atk1"] = 2,
["atk2"] = 3,
["gun1"] = 30,
["throw1"] = 31,
["heart1"] = 32,
["heal1"] = 33,
["teleport1"] = 72,
["ball1"] = 34,
["breath1"] = 35,
["bolt1"] = 37,
["arrow1"] = 36,
["curse1"] = 38,
["pop3"] = 39,
["chime"] = 53,
["laser1"] = 42,
["web"] = 68,
["cheer"] = 69,
["door1"] = 48,
["crush1"] = 45,
["crush2"] = 47,
["fire1"] = 6,
["snow"] = 86,
["fish_cast"] = 87,
["fish_get"] = 88,
["fish_fight"] = 89,
["ammo"] = 90,
["throw2"] = 91,
["foot1a"] = 81,
["foot2a"] = 83,
["foot1b"] = 82,
["foot2b"] = 84,
["foot2c"] = 85,
["click1"] = 40,
["get3"] = 41,
["card1"] = 71,
["water"] = 57,
["water2"] = 46,
["dig2"] = 54,
["bush1"] = 55,
["gasha"] = 56,
["cursor1"] = 5,
["pop4"] = 62,
["punish1"] = 63,
["pray1"] = 64,
["offer1"] = 65,
["fizzle"] = 66,
["door2"] = 67,
["foot"] = 43,
["miss"] = 4,
["night"] = 74,
["bg_rain"] = 75,
["bg_thunder"] = 76,
["bg_wind"] = 77,
["bg_sea"] = 78,
["bg_town"] = 79,
["bg_fire"] = 80,
["scroll"] = 92,
["log"] = 93,
["chara"] = 94,
["wear"] = 95,
["feat"] = 96,
["port"] = 97,
["unpop1"] = 98,
["chat"] = 99,
["inv"] = 100,
["skill"] = 101,
["spell"] = 102,
["dice"] = 103,
["vomit"] = 104,
["atksword"] = 105,
["atk_ice"] = 106,
["atk_elec"] = 107,
["atk_fire"] = 108,
["atk_hell"] = 109,
["atk_poison"] = 110,
["atk_nerve"] = 111,
["atk_sound"] = 112,
["atk_mind"] = 113,
["atk_chaos"] = 114,
["atk_dark"] = 115,
["curse2"] = 116,
["curse3"] = 117,
["enc"] = 118,
["enc2"] = 119,
["pray2"] = 120,
["offer2"] = 121,
}
local builder = require("rewrite.lib.add_field_by_legacy_id")
return {
execute = function(self, ast)
return builder(ast, "_id", "elona_id", ids)
end
}
|
module(...,package.seeall)
-- Ingress packet drop monitor timer.
local ffi = require("ffi")
-- Every 100 milliseconds.
local interval = 1e8
local with_restart = core.app.with_restart
local now = core.app.now
ingress_drop_monitor = {
threshold = 100000,
wait = 20,
last_flush = 0,
last_value = ffi.new('uint64_t[1]'),
current_value = ffi.new('uint64_t[1]'),
}
function ingress_drop_monitor:sample ()
local app_array = engine.app_array
local sum = self.current_value
sum[0] = 0
for i = 1, #app_array do
local app = app_array[i]
if app.ingress_packet_drops and not app.dead then
local status, value = with_restart(app, app.ingress_packet_drops)
if status then sum[0] = sum[0] + value end
end
end
end
function ingress_drop_monitor:jit_flush_if_needed ()
if self.current_value[0] - self.last_value[0] < self.threshold then return end
if now() - self.last_flush < self.wait then return end
self.last_flush = now()
self.last_value[0] = self.current_value[0]
jit.flush()
print("jit.flush")
--- TODO: Change last_flush, last_value and current_value fields to be counters.
end
local function fn ()
ingress_drop_monitor:sample()
ingress_drop_monitor:jit_flush_if_needed()
end
return timer.new("ingress drop monitor", fn, interval, "repeating")
|
local function setup()
local has_packer, packer = pcall(require, 'packer')
local has_util, util = pcall(require, 'packer.util')
if not has_packer or not has_util then
error('Expected packer to be installed')
end
return packer.init({
package_root = util.join_paths(vim.fn.stdpath('data'), 'site', 'pack'),
compile_path = util.join_paths(vim.fn.stdpath('data'), 'site', 'plugin', 'compiled.lua'),
ensure_dependencies = true, -- should packer install plugin dependencies?
plugin_package = 'packer', -- the default package for plugins
max_jobs = 8, -- limit the number of simultaneous jobs. nil means no limit
auto_clean = true, -- during sync(), remove unused plugins
auto_reload_compiled = true, -- automatically reload the compiled file after creating it.
compile_on_sync = true, -- during sync(), run packer.compile()
disable_commands = false, -- disable creating commands
opt_default = false, -- default to using opt (as opposed to start) plugins
transitive_opt = true, -- make dependencies of opt plugins also opt by default
transitive_disable = true, -- automatically disable dependencies of disabled plugins
git = {
cmd = 'git', -- the base command for git operations
clone_timeout = 600, -- timeout, in seconds, for git clones
depth = 1, -- git clone depth
subcommands = { -- format strings for git subcommands
update = 'pull --ff-only --progress --rebase=false',
install = 'clone --depth %i --no-single-branch --progress',
fetch = 'fetch --depth 999999 --progress',
checkout = 'checkout %s --',
update_branch = 'merge --ff-only @{u}',
current_branch = 'branch --show-current',
diff = 'log --color=never --pretty=format:FMT --no-show-signature HEAD@{1}...HEAD',
diff_fmt = '%%h %%s (%%cr)',
get_rev = 'rev-parse --short HEAD',
get_msg = 'log --color=never --pretty=format:FMT --no-show-signature HEAD -n 1',
submodules = 'submodule update --init --recursive --progress'
},
},
display = {
non_interactive = false, -- if true, disable display windows for all operations
open_fn = nil, -- an optional function to open a window for packer's display
open_cmd = '60vnew packer', -- an optional command to open a window for packer's display
working_sym = '⟳', -- the symbol for a plugin being installed/updated
error_sym = '✗', -- the symbol for a plugin with an error in installation/updating
done_sym = '✓', -- the symbol for a plugin which has completed installation/updating
removed_sym = '-', -- the symbol for an unused plugin which was removed
moved_sym = '→', -- the symbol for a plugin which was moved (e.g. from opt to start)
header_sym = '━', -- the symbol for the header line in packer's display
show_all_info = true, -- should packer show all update details automatically?
},
luarocks = {
python_cmd = 'python' -- set the python command to use for running hererocks
},
profile = {
enable = false,
threshold = 1, -- integer in milliseconds, plugins which load faster than this won't be shown in profile output
}
})
end
return {
setup = setup
}
|
--***********************************************************
--** THE INDIE STONE **
--***********************************************************
require "TimedActions/ISBaseTimedAction"
---@class ISChopTreeAction : ISBaseTimedAction
ISChopTreeAction = ISBaseTimedAction:derive("ISChopTreeAction")
function ISChopTreeAction:isValid()
return self.tree ~= nil and self.tree:getObjectIndex() >= 0 and
self.character:CanAttack() and
self.character:getPrimaryHandItem() ~= nil and
self.character:getPrimaryHandItem():getScriptItem():getCategories():contains("Axe")
end
function ISChopTreeAction:waitToStart()
self.character:faceThisObject(self.tree)
return self.character:shouldBeTurning()
end
function ISChopTreeAction:update()
self.axe:setJobDelta(self:getJobDelta());
self.character:faceThisObject(self.tree)
if instanceof(self.character, "IsoPlayer") then
self.character:setMetabolicTarget(Metabolics.ForestryAxe);
end
end
function ISChopTreeAction:start()
self.axe = self.character:getPrimaryHandItem()
-- self.action:setTime(math.max((self.tree:getHealth() / self.axe:getTreeDamage()) * 62, 30)) --62 is as close as I can get to making the timer sync up. -Fox
self.axe:setJobType(getText("ContextMenu_Chop_Tree"));
self.axe:setJobDelta(0.0);
if self.character:isTimedActionInstant() then
self.tree:setHealth(1)
end
self:setActionAnim(CharacterActionAnims.Chop_tree);
self:setOverrideHandModels(self.axe, nil)
end
function ISChopTreeAction:stop()
self.axe:setJobDelta(0.0);
ISBaseTimedAction.stop(self)
end
function ISChopTreeAction:perform()
self.axe:setJobDelta(0.0);
-- needed to remove from queue / start next.
ISBaseTimedAction.perform(self)
end
function ISChopTreeAction:animEvent(event, parameter)
if event == 'ChopTree' then
self.tree:WeaponHit(self.character, self.axe)
self:useEndurance()
if ZombRand(self.axe:getConditionLowerChance() * 2 + self.character:getMaintenanceMod() * 2) == 0 then
self.axe:setCondition(self.axe:getCondition() - 1)
ISWorldObjectContextMenu.checkWeapon(self.character);
else
self.character:getXp():AddXP(Perks.Maintenance, 1)
end
if self.tree:getObjectIndex() == -1 then
self:forceComplete()
end
end
end
function ISChopTreeAction:useEndurance()
if self.axe:isUseEndurance() then
local use = self.axe:getWeight() * self.axe:getFatigueMod(self.character) * self.character:getFatigueMod() * self.axe:getEnduranceMod() * 0.1
local useChargeDelta = 1.0
use = use * useChargeDelta * 0.041
if self.axe:isTwoHandWeapon() and self.character:getSecondaryHandItem() ~= self.axe then
use = use + self.axe:getWeight() / 1.5 / 10 / 20
end
self.character:getStats():setEndurance(self.character:getStats():getEndurance() - use)
end
end
function ISChopTreeAction:new(character, tree)
local o = {}
setmetatable(o, self)
self.__index = self
o.character = character
o.tree = tree
o.stopOnWalk = true
o.stopOnRun = true
o.maxTime = -1
o.spriteFrame = 0
o.caloriesModifier = 8;
o.forceProgressBar = true;
return o
end
|
return {
["baseline"] = {
["action"] = {
["perm_media"] = "http://www.roblox.com/asset/?id=6031215982";
["sticky_note_2"] = "http://www.roblox.com/asset/?id=6031265972";
["gavel"] = "http://www.roblox.com/asset/?id=6023565902";
["table_view"] = "http://www.roblox.com/asset/?id=6031233835";
["home"] = "http://www.roblox.com/asset/?id=6026568195";
["list"] = "http://www.roblox.com/asset/?id=6026568229";
["alarm_add"] = "http://www.roblox.com/asset/?id=6023426898";
["speaker_notes"] = "http://www.roblox.com/asset/?id=6031266001";
["check_circle_outline"] = "http://www.roblox.com/asset/?id=6023426909";
["extension"] = "http://www.roblox.com/asset/?id=6023565892";
["pending"] = "http://www.roblox.com/asset/?id=6031084745";
["pageview"] = "http://www.roblox.com/asset/?id=6031216007";
["group_work"] = "http://www.roblox.com/asset/?id=6023565910";
["zoom_in"] = "http://www.roblox.com/asset/?id=6031075573";
["aspect_ratio"] = "http://www.roblox.com/asset/?id=6022668895";
["code"] = "http://www.roblox.com/asset/?id=6022668955";
["3d_rotation"] = "http://www.roblox.com/asset/?id=6022668893";
["translate"] = "http://www.roblox.com/asset/?id=6031225812";
["star_rate"] = "http://www.roblox.com/asset/?id=6031265978";
["system_update_alt"] = "http://www.roblox.com/asset/?id=6031251515";
["open_with"] = "http://www.roblox.com/asset/?id=6026568265";
["build_circle"] = "http://www.roblox.com/asset/?id=6023426952";
["toc"] = "http://www.roblox.com/asset/?id=6031229341";
["settings_phone"] = "http://www.roblox.com/asset/?id=6031289445";
["open_in_full"] = "http://www.roblox.com/asset/?id=6026568245";
["history"] = "http://www.roblox.com/asset/?id=6026568197";
["accessibility_new"] = "http://www.roblox.com/asset/?id=6022668945";
["hourglass_disabled"] = "http://www.roblox.com/asset/?id=6026568193";
["line_style"] = "http://www.roblox.com/asset/?id=6026568276";
["account_circle"] = "http://www.roblox.com/asset/?id=6022668898";
["settings_cell"] = "http://www.roblox.com/asset/?id=6031280890";
["search_off"] = "http://www.roblox.com/asset/?id=6031260783";
["shop"] = "http://www.roblox.com/asset/?id=6031265983";
["anchor"] = "http://www.roblox.com/asset/?id=6023426906";
["language"] = "http://www.roblox.com/asset/?id=6026568213";
["settings_brightness"] = "http://www.roblox.com/asset/?id=6031280902";
["restore_page"] = "http://www.roblox.com/asset/?id=6031154877";
["chrome_reader_mode"] = "http://www.roblox.com/asset/?id=6023426912";
["sync_alt"] = "http://www.roblox.com/asset/?id=6031233840";
["book"] = "http://www.roblox.com/asset/?id=6022860343";
["smart_button"] = "http://www.roblox.com/asset/?id=6031265962";
["request_page"] = "http://www.roblox.com/asset/?id=6031154873";
["lock_clock"] = "http://www.roblox.com/asset/?id=6026568260";
["android"] = "http://www.roblox.com/asset/?id=6022668966";
["outgoing_mail"] = "http://www.roblox.com/asset/?id=6026568242";
["dynamic_form"] = "http://www.roblox.com/asset/?id=6023426970";
["track_changes"] = "http://www.roblox.com/asset/?id=6031225814";
["source"] = "http://www.roblox.com/asset/?id=6031289451";
["thumb_down"] = "http://www.roblox.com/asset/?id=6031229336";
["integration_instructions"] = "http://www.roblox.com/asset/?id=6026568214";
["opacity"] = "http://www.roblox.com/asset/?id=6026568295";
["perm_identity"] = "http://www.roblox.com/asset/?id=6031215978";
["view_module"] = "http://www.roblox.com/asset/?id=6031079152";
["perm_data_setting"] = "http://www.roblox.com/asset/?id=6031215991";
["assignment_turned_in"] = "http://www.roblox.com/asset/?id=6023426904";
["change_history"] = "http://www.roblox.com/asset/?id=6023426914";
["thumb_down_off_alt"] = "http://www.roblox.com/asset/?id=6031229354";
["text_rotation_angledown"] = "http://www.roblox.com/asset/?id=6031251513";
["bookmark"] = "http://www.roblox.com/asset/?id=6022852108";
["view_stream"] = "http://www.roblox.com/asset/?id=6031079164";
["remove_done"] = "http://www.roblox.com/asset/?id=6031086169";
["markunread_mailbox"] = "http://www.roblox.com/asset/?id=6031082531";
["store"] = "http://www.roblox.com/asset/?id=6031265968";
["text_rotation_angleup"] = "http://www.roblox.com/asset/?id=6031229337";
["eco"] = "http://www.roblox.com/asset/?id=6023426988";
["find_in_page"] = "http://www.roblox.com/asset/?id=6023426986";
["api"] = "http://www.roblox.com/asset/?id=6022668911";
["launch"] = "http://www.roblox.com/asset/?id=6026568211";
["text_rotation_down"] = "http://www.roblox.com/asset/?id=6031229334";
["flip_to_back"] = "http://www.roblox.com/asset/?id=6023565896";
["contact_page"] = "http://www.roblox.com/asset/?id=6022668881";
["preview"] = "http://www.roblox.com/asset/?id=6031260793";
["restore"] = "http://www.roblox.com/asset/?id=6031260800";
["favorite_border"] = "http://www.roblox.com/asset/?id=6023565882";
["assignment_late"] = "http://www.roblox.com/asset/?id=6022668880";
["youtube_searched_for"] = "http://www.roblox.com/asset/?id=6031075934";
["hourglass_full"] = "http://www.roblox.com/asset/?id=6026568190";
["timeline"] = "http://www.roblox.com/asset/?id=6031229350";
["turned_in"] = "http://www.roblox.com/asset/?id=6031225808";
["info"] = "http://www.roblox.com/asset/?id=6026568227";
["restore_from_trash"] = "http://www.roblox.com/asset/?id=6031154869";
["arrow_circle_down"] = "http://www.roblox.com/asset/?id=6022668877";
["flaky"] = "http://www.roblox.com/asset/?id=6031082523";
["alarm_on"] = "http://www.roblox.com/asset/?id=6023426920";
["swap_vertical_circle"] = "http://www.roblox.com/asset/?id=6031233839";
["open_in_new"] = "http://www.roblox.com/asset/?id=6026568256";
["watch_later"] = "http://www.roblox.com/asset/?id=6031075924";
["alarm_off"] = "http://www.roblox.com/asset/?id=6023426901";
["maximize"] = "http://www.roblox.com/asset/?id=6026568267";
["lock_outline"] = "http://www.roblox.com/asset/?id=6031082533";
["outbond"] = "http://www.roblox.com/asset/?id=6026568244";
["view_carousel"] = "http://www.roblox.com/asset/?id=6031251507";
["published_with_changes"] = "http://www.roblox.com/asset/?id=6031243328";
["verified_user"] = "http://www.roblox.com/asset/?id=6031225819";
["drag_indicator"] = "http://www.roblox.com/asset/?id=6023426962";
["lightbulb_outline"] = "http://www.roblox.com/asset/?id=6026568254";
["segment"] = "http://www.roblox.com/asset/?id=6031260773";
["assignment"] = "http://www.roblox.com/asset/?id=6022668882";
["work_outline"] = "http://www.roblox.com/asset/?id=6031075930";
["line_weight"] = "http://www.roblox.com/asset/?id=6026568226";
["dangerous"] = "http://www.roblox.com/asset/?id=6022668916";
["assessment"] = "http://www.roblox.com/asset/?id=6022668897";
["view_day"] = "http://www.roblox.com/asset/?id=6031079153";
["help_center"] = "http://www.roblox.com/asset/?id=6026568192";
["logout"] = "http://www.roblox.com/asset/?id=6031082522";
["event"] = "http://www.roblox.com/asset/?id=6023426959";
["get_app"] = "http://www.roblox.com/asset/?id=6023565889";
["tab"] = "http://www.roblox.com/asset/?id=6031233851";
["label"] = "http://www.roblox.com/asset/?id=6031082525";
["g_translate"] = "http://www.roblox.com/asset/?id=6031082526";
["view_week"] = "http://www.roblox.com/asset/?id=6031079154";
["view_in_ar"] = "http://www.roblox.com/asset/?id=6031079158";
["card_travel"] = "http://www.roblox.com/asset/?id=6023426925";
["lock_open"] = "http://www.roblox.com/asset/?id=6026568220";
["voice_over_off"] = "http://www.roblox.com/asset/?id=6031075927";
["app_blocking"] = "http://www.roblox.com/asset/?id=6022668952";
["settings_ethernet"] = "http://www.roblox.com/asset/?id=6031280883";
["supervised_user_circle"] = "http://www.roblox.com/asset/?id=6031289449";
["done_all"] = "http://www.roblox.com/asset/?id=6023426929";
["lightbulb"] = "http://www.roblox.com/asset/?id=6026568247";
["find_replace"] = "http://www.roblox.com/asset/?id=6023426979";
["bookmarks"] = "http://www.roblox.com/asset/?id=6023426924";
["today"] = "http://www.roblox.com/asset/?id=6031229352";
["class"] = "http://www.roblox.com/asset/?id=6022668949";
["supervisor_account"] = "http://www.roblox.com/asset/?id=6031251516";
["support"] = "http://www.roblox.com/asset/?id=6031251532";
["done_outline"] = "http://www.roblox.com/asset/?id=6023426936";
["reorder"] = "http://www.roblox.com/asset/?id=6031154868";
["fact_check"] = "http://www.roblox.com/asset/?id=6023426951";
["thumb_up"] = "http://www.roblox.com/asset/?id=6031229347";
["assignment_returned"] = "http://www.roblox.com/asset/?id=6023426899";
["card_giftcard"] = "http://www.roblox.com/asset/?id=6023426978";
["trending_down"] = "http://www.roblox.com/asset/?id=6031225811";
["settings_backup_restore"] = "http://www.roblox.com/asset/?id=6031280886";
["settings_voice"] = "http://www.roblox.com/asset/?id=6031265966";
["dns"] = "http://www.roblox.com/asset/?id=6023426958";
["perm_scan_wifi"] = "http://www.roblox.com/asset/?id=6031215985";
["plagiarism"] = "http://www.roblox.com/asset/?id=6031243320";
["commute"] = "http://www.roblox.com/asset/?id=6022668901";
["gif"] = "http://www.roblox.com/asset/?id=6031082540";
["work"] = "http://www.roblox.com/asset/?id=6031075939";
["picture_in_picture_alt"] = "http://www.roblox.com/asset/?id=6031215979";
["query_builder"] = "http://www.roblox.com/asset/?id=6031086183";
["label_off"] = "http://www.roblox.com/asset/?id=6026568209";
["all_out"] = "http://www.roblox.com/asset/?id=6022668876";
["article"] = "http://www.roblox.com/asset/?id=6022668907";
["shopping_basket"] = "http://www.roblox.com/asset/?id=6031265997";
["mark_as_unread"] = "http://www.roblox.com/asset/?id=6026568223";
["work_off"] = "http://www.roblox.com/asset/?id=6031075937";
["delete_outline"] = "http://www.roblox.com/asset/?id=6022668962";
["account_box"] = "http://www.roblox.com/asset/?id=6023426915";
["home_filled"] = "http://www.roblox.com/asset/?id=6026568198";
["lock"] = "http://www.roblox.com/asset/?id=6026568224";
["perm_device_information"] = "http://www.roblox.com/asset/?id=6031215996";
["add_task"] = "http://www.roblox.com/asset/?id=6022668912";
["text_rotate_up"] = "http://www.roblox.com/asset/?id=6031251526";
["swipe"] = "http://www.roblox.com/asset/?id=6031233863";
["eject"] = "http://www.roblox.com/asset/?id=6023426930";
["mediation"] = "http://www.roblox.com/asset/?id=6026568249";
["label_important_outline"] = "http://www.roblox.com/asset/?id=6026568199";
["settings_remote"] = "http://www.roblox.com/asset/?id=6031289442";
["history_toggle_off"] = "http://www.roblox.com/asset/?id=6026568196";
["invert_colors"] = "http://www.roblox.com/asset/?id=6026568253";
["visibility_off"] = "http://www.roblox.com/asset/?id=6031075929";
["addchart"] = "http://www.roblox.com/asset/?id=6023426905";
["cancel_schedule_send"] = "http://www.roblox.com/asset/?id=6022668963";
["loyalty"] = "http://www.roblox.com/asset/?id=6026568237";
["speaker_notes_off"] = "http://www.roblox.com/asset/?id=6031265965";
["online_prediction"] = "http://www.roblox.com/asset/?id=6026568239";
["remove_shopping_cart"] = "http://www.roblox.com/asset/?id=6031260778";
["text_rotate_vertical"] = "http://www.roblox.com/asset/?id=6031251518";
["visibility"] = "http://www.roblox.com/asset/?id=6031075931";
["add_to_drive"] = "http://www.roblox.com/asset/?id=6022860335";
["accessible"] = "http://www.roblox.com/asset/?id=6022668902";
["bookmark_border"] = "http://www.roblox.com/asset/?id=6022860339";
["tour"] = "http://www.roblox.com/asset/?id=6031229362";
["compare_arrows"] = "http://www.roblox.com/asset/?id=6022668951";
["view_sidebar"] = "http://www.roblox.com/asset/?id=6031079160";
["face"] = "http://www.roblox.com/asset/?id=6023426944";
["wysiwyg"] = "http://www.roblox.com/asset/?id=6031075938";
["camera_enhance"] = "http://www.roblox.com/asset/?id=6023426935";
["perm_camera_mic"] = "http://www.roblox.com/asset/?id=6031215983";
["model_training"] = "http://www.roblox.com/asset/?id=6026568222";
["arrow_circle_up"] = "http://www.roblox.com/asset/?id=6022668934";
["euro_symbol"] = "http://www.roblox.com/asset/?id=6023426954";
["pending_actions"] = "http://www.roblox.com/asset/?id=6031260777";
["not_accessible"] = "http://www.roblox.com/asset/?id=6026568269";
["explore_off"] = "http://www.roblox.com/asset/?id=6023426953";
["build"] = "http://www.roblox.com/asset/?id=6023426938";
["backup"] = "http://www.roblox.com/asset/?id=6023426911";
["settings_input_antenna"] = "http://www.roblox.com/asset/?id=6031280891";
["disabled_by_default"] = "http://www.roblox.com/asset/?id=6023426939";
["upgrade"] = "http://www.roblox.com/asset/?id=6031225815";
["contactless"] = "http://www.roblox.com/asset/?id=6022668886";
["trending_flat"] = "http://www.roblox.com/asset/?id=6031225818";
["schedule"] = "http://www.roblox.com/asset/?id=6031260808";
["offline_pin"] = "http://www.roblox.com/asset/?id=6031084770";
["date_range"] = "http://www.roblox.com/asset/?id=6022668894";
["flight_land"] = "http://www.roblox.com/asset/?id=6023565897";
["view_headline"] = "http://www.roblox.com/asset/?id=6031079151";
["cached"] = "http://www.roblox.com/asset/?id=6023426921";
["unpublished"] = "http://www.roblox.com/asset/?id=6031225817";
["outlet"] = "http://www.roblox.com/asset/?id=6031084748";
["favorite"] = "http://www.roblox.com/asset/?id=6023426974";
["vertical_split"] = "http://www.roblox.com/asset/?id=6031225820";
["report_problem"] = "http://www.roblox.com/asset/?id=6031086176";
["fingerprint"] = "http://www.roblox.com/asset/?id=6023565895";
["important_devices"] = "http://www.roblox.com/asset/?id=6026568202";
["outbox"] = "http://www.roblox.com/asset/?id=6026568263";
["all_inbox"] = "http://www.roblox.com/asset/?id=6022668909";
["label_important"] = "http://www.roblox.com/asset/?id=6026568215";
["print"] = "http://www.roblox.com/asset/?id=6031243324";
["settings_bluetooth"] = "http://www.roblox.com/asset/?id=6031280905";
["power_settings_new"] = "http://www.roblox.com/asset/?id=6031260781";
["zoom_out"] = "http://www.roblox.com/asset/?id=6031075577";
["stars"] = "http://www.roblox.com/asset/?id=6031265971";
["offline_bolt"] = "http://www.roblox.com/asset/?id=6031084742";
["feedback"] = "http://www.roblox.com/asset/?id=6023426957";
["accessibility"] = "http://www.roblox.com/asset/?id=6022668887";
["announcement"] = "http://www.roblox.com/asset/?id=6022668946";
["settings_input_hdmi"] = "http://www.roblox.com/asset/?id=6031280970";
["leaderboard"] = "http://www.roblox.com/asset/?id=6026568216";
["view_quilt"] = "http://www.roblox.com/asset/?id=6031079155";
["note_add"] = "http://www.roblox.com/asset/?id=6031084749";
["theaters"] = "http://www.roblox.com/asset/?id=6031229335";
["alarm"] = "http://www.roblox.com/asset/?id=6023426910";
["settings_input_composite"] = "http://www.roblox.com/asset/?id=6031280896";
["grade"] = "http://www.roblox.com/asset/?id=6026568189";
["tab_unselected"] = "http://www.roblox.com/asset/?id=6031251505";
["swap_vert"] = "http://www.roblox.com/asset/?id=6031233847";
["assignment_return"] = "http://www.roblox.com/asset/?id=6023426931";
["highlight_alt"] = "http://www.roblox.com/asset/?id=6023565913";
["shopping_bag"] = "http://www.roblox.com/asset/?id=6031265970";
["contact_support"] = "http://www.roblox.com/asset/?id=6022668879";
["flip_to_front"] = "http://www.roblox.com/asset/?id=6023565894";
["touch_app"] = "http://www.roblox.com/asset/?id=6031229361";
["room"] = "http://www.roblox.com/asset/?id=6031154875";
["send_and_archive"] = "http://www.roblox.com/asset/?id=6031280889";
["view_array"] = "http://www.roblox.com/asset/?id=6031225842";
["settings_power"] = "http://www.roblox.com/asset/?id=6031289446";
["admin_panel_settings"] = "http://www.roblox.com/asset/?id=6022668961";
["open_in_browser"] = "http://www.roblox.com/asset/?id=6026568266";
["card_membership"] = "http://www.roblox.com/asset/?id=6023426942";
["rule"] = "http://www.roblox.com/asset/?id=6031154859";
["schedule_send"] = "http://www.roblox.com/asset/?id=6031154866";
["calendar_today"] = "http://www.roblox.com/asset/?id=6022668917";
["info_outline"] = "http://www.roblox.com/asset/?id=6026568210";
["description"] = "http://www.roblox.com/asset/?id=6022668888";
["dashboard_customize"] = "http://www.roblox.com/asset/?id=6022668899";
["rowing"] = "http://www.roblox.com/asset/?id=6031154857";
["swap_horizontal_circle"] = "http://www.roblox.com/asset/?id=6031233833";
["account_balance_wallet"] = "http://www.roblox.com/asset/?id=6022668892";
["view_agenda"] = "http://www.roblox.com/asset/?id=6031225831";
["shop_two"] = "http://www.roblox.com/asset/?id=6031289461";
["done"] = "http://www.roblox.com/asset/?id=6023426926";
["circle_notifications"] = "http://www.roblox.com/asset/?id=6023426923";
["compress"] = "http://www.roblox.com/asset/?id=6022668878";
["calendar_view_day"] = "http://www.roblox.com/asset/?id=6023426946";
["thumbs_up_down"] = "http://www.roblox.com/asset/?id=6031229373";
["account_balance"] = "http://www.roblox.com/asset/?id=6022668900";
["play_for_work"] = "http://www.roblox.com/asset/?id=6031260776";
["pets"] = "http://www.roblox.com/asset/?id=6031260782";
["view_column"] = "http://www.roblox.com/asset/?id=6031079172";
["search"] = "http://www.roblox.com/asset/?id=6031154871";
["autorenew"] = "http://www.roblox.com/asset/?id=6023565901";
["copyright"] = "http://www.roblox.com/asset/?id=6023565898";
["privacy_tip"] = "http://www.roblox.com/asset/?id=6031260784";
["arrow_right_alt"] = "http://www.roblox.com/asset/?id=6022668890";
["delete"] = "http://www.roblox.com/asset/?id=6022668885";
["nightlight_round"] = "http://www.roblox.com/asset/?id=6031084743";
["batch_prediction"] = "http://www.roblox.com/asset/?id=6022860334";
["shopping_cart"] = "http://www.roblox.com/asset/?id=6031265976";
["login"] = "http://www.roblox.com/asset/?id=6031082527";
["settings_input_svideo"] = "http://www.roblox.com/asset/?id=6031289444";
["payment"] = "http://www.roblox.com/asset/?id=6031084751";
["update"] = "http://www.roblox.com/asset/?id=6031225810";
["text_rotation_none"] = "http://www.roblox.com/asset/?id=6031229344";
["perm_contact_calendar"] = "http://www.roblox.com/asset/?id=6031215990";
["explore"] = "http://www.roblox.com/asset/?id=6023426941";
["delete_forever"] = "http://www.roblox.com/asset/?id=6022668939";
["rounded_corner"] = "http://www.roblox.com/asset/?id=6031154861";
["book_online"] = "http://www.roblox.com/asset/?id=6022860332";
["quickreply"] = "http://www.roblox.com/asset/?id=6031243319";
["bug_report"] = "http://www.roblox.com/asset/?id=6022852107";
["subtitles_off"] = "http://www.roblox.com/asset/?id=6031289466";
["close_fullscreen"] = "http://www.roblox.com/asset/?id=6023426928";
["horizontal_split"] = "http://www.roblox.com/asset/?id=6026568194";
["minimize"] = "http://www.roblox.com/asset/?id=6026568240";
["filter_list_alt"] = "http://www.roblox.com/asset/?id=6023426955";
["add_shopping_cart"] = "http://www.roblox.com/asset/?id=6022668875";
["next_plan"] = "http://www.roblox.com/asset/?id=6026568231";
["view_list"] = "http://www.roblox.com/asset/?id=6031079156";
["receipt"] = "http://www.roblox.com/asset/?id=6031086173";
["polymer"] = "http://www.roblox.com/asset/?id=6031260785";
["spellcheck"] = "http://www.roblox.com/asset/?id=6031289450";
["wifi_protected_setup"] = "http://www.roblox.com/asset/?id=6031075926";
["label_outline"] = "http://www.roblox.com/asset/?id=6026568207";
["highlight_off"] = "http://www.roblox.com/asset/?id=6023565916";
["turned_in_not"] = "http://www.roblox.com/asset/?id=6031225806";
["edit_off"] = "http://www.roblox.com/asset/?id=6023426983";
["question_answer"] = "http://www.roblox.com/asset/?id=6031086172";
["settings_overscan"] = "http://www.roblox.com/asset/?id=6031289459";
["trending_up"] = "http://www.roblox.com/asset/?id=6031225816";
["verified"] = "http://www.roblox.com/asset/?id=6031225809";
["flight_takeoff"] = "http://www.roblox.com/asset/?id=6023565891";
["grading"] = "http://www.roblox.com/asset/?id=6026568191";
["dashboard"] = "http://www.roblox.com/asset/?id=6022668883";
["expand"] = "http://www.roblox.com/asset/?id=6022668891";
["backup_table"] = "http://www.roblox.com/asset/?id=6022860338";
["analytics"] = "http://www.roblox.com/asset/?id=6022668884";
["picture_in_picture"] = "http://www.roblox.com/asset/?id=6031215994";
["settings"] = "http://www.roblox.com/asset/?id=6031280882";
["accessible_forward"] = "http://www.roblox.com/asset/?id=6022668906";
["pan_tool"] = "http://www.roblox.com/asset/?id=6031084771";
["https"] = "http://www.roblox.com/asset/?id=6026568200";
["filter_alt"] = "http://www.roblox.com/asset/?id=6023426984";
["thumb_up_off_alt"] = "http://www.roblox.com/asset/?id=6031229342";
["record_voice_over"] = "http://www.roblox.com/asset/?id=6031243318";
["help_outline"] = "http://www.roblox.com/asset/?id=6026568201";
["check_circle"] = "http://www.roblox.com/asset/?id=6023426945";
["comment_bank"] = "http://www.roblox.com/asset/?id=6023426937";
["perm_phone_msg"] = "http://www.roblox.com/asset/?id=6031215986";
["settings_applications"] = "http://www.roblox.com/asset/?id=6031280894";
["exit_to_app"] = "http://www.roblox.com/asset/?id=6023426922";
["saved_search"] = "http://www.roblox.com/asset/?id=6031154867";
["toll"] = "http://www.roblox.com/asset/?id=6031229343";
["not_started"] = "http://www.roblox.com/asset/?id=6026568232";
["subject"] = "http://www.roblox.com/asset/?id=6031289452";
["redeem"] = "http://www.roblox.com/asset/?id=6031086170";
["input"] = "http://www.roblox.com/asset/?id=6026568225";
["settings_input_component"] = "http://www.roblox.com/asset/?id=6031280884";
["assignment_ind"] = "http://www.roblox.com/asset/?id=6022668935";
["swap_horiz"] = "http://www.roblox.com/asset/?id=6031233841";
};
["navigation"] = {
["fullscreen"] = "http://www.roblox.com/asset/?id=6031094681";
["cancel"] = "http://www.roblox.com/asset/?id=6031094677";
["subdirectory_arrow_left"] = "http://www.roblox.com/asset/?id=6031104654";
["close"] = "http://www.roblox.com/asset/?id=6031094678";
["arrow_back_ios"] = "http://www.roblox.com/asset/?id=6031091003";
["east"] = "http://www.roblox.com/asset/?id=6031094675";
["unfold_more"] = "http://www.roblox.com/asset/?id=6031104644";
["south"] = "http://www.roblox.com/asset/?id=6031104646";
["arrow_drop_up"] = "http://www.roblox.com/asset/?id=6031090990";
["arrow_back"] = "http://www.roblox.com/asset/?id=6031091000";
["arrow_downward"] = "http://www.roblox.com/asset/?id=6031090991";
["west"] = "http://www.roblox.com/asset/?id=6031104677";
["legend_toggle"] = "http://www.roblox.com/asset/?id=6031097233";
["fullscreen_exit"] = "http://www.roblox.com/asset/?id=6031094691";
["last_page"] = "http://www.roblox.com/asset/?id=6031094686";
["switch_right"] = "http://www.roblox.com/asset/?id=6031104649";
["check"] = "http://www.roblox.com/asset/?id=6031094667";
["home_work"] = "http://www.roblox.com/asset/?id=6031094683";
["north_east"] = "http://www.roblox.com/asset/?id=6031097228";
["double_arrow"] = "http://www.roblox.com/asset/?id=6031094674";
["more_vert"] = "http://www.roblox.com/asset/?id=6031104648";
["chevron_left"] = "http://www.roblox.com/asset/?id=6031094670";
["more_horiz"] = "http://www.roblox.com/asset/?id=6031104650";
["unfold_less"] = "http://www.roblox.com/asset/?id=6031104681";
["first_page"] = "http://www.roblox.com/asset/?id=6031094682";
["payments"] = "http://www.roblox.com/asset/?id=6031097227";
["arrow_right"] = "http://www.roblox.com/asset/?id=6031090994";
["offline_share"] = "http://www.roblox.com/asset/?id=6031097267";
["south_west"] = "http://www.roblox.com/asset/?id=6031104652";
["expand_less"] = "http://www.roblox.com/asset/?id=6031094679";
["south_east"] = "http://www.roblox.com/asset/?id=6031104642";
["assistant_navigation"] = "http://www.roblox.com/asset/?id=6031091006";
["apps"] = "http://www.roblox.com/asset/?id=6031090999";
["arrow_upward"] = "http://www.roblox.com/asset/?id=6031090997";
["app_settings_alt"] = "http://www.roblox.com/asset/?id=6031090998";
["subdirectory_arrow_right"] = "http://www.roblox.com/asset/?id=6031104647";
["north_west"] = "http://www.roblox.com/asset/?id=6031104630";
["switch_left"] = "http://www.roblox.com/asset/?id=6031104651";
["chevron_right"] = "http://www.roblox.com/asset/?id=6031094680";
["arrow_forward"] = "http://www.roblox.com/asset/?id=6031090995";
["arrow_forward_ios"] = "http://www.roblox.com/asset/?id=6031091008";
["arrow_drop_down"] = "http://www.roblox.com/asset/?id=6031091004";
["refresh"] = "http://www.roblox.com/asset/?id=6031097226";
["pivot_table_chart"] = "http://www.roblox.com/asset/?id=6031097234";
["expand_more"] = "http://www.roblox.com/asset/?id=6031094687";
["campaign"] = "http://www.roblox.com/asset/?id=6031094666";
["arrow_left"] = "http://www.roblox.com/asset/?id=6031091002";
["arrow_drop_down_circle"] = "http://www.roblox.com/asset/?id=6031091001";
["menu_open"] = "http://www.roblox.com/asset/?id=6031097229";
["waterfall_chart"] = "http://www.roblox.com/asset/?id=6031104632";
["assistant_direction"] = "http://www.roblox.com/asset/?id=6031091005";
["menu"] = "http://www.roblox.com/asset/?id=6031097225";
};
["notification"] = {
["personal_video"] = "http://www.roblox.com/asset/?id=6034457070";
["power_off"] = "http://www.roblox.com/asset/?id=6034457087";
["wifi_off"] = "http://www.roblox.com/asset/?id=6034461625";
["adb"] = "http://www.roblox.com/asset/?id=6034418515";
["airline_seat_recline_normal"] = "http://www.roblox.com/asset/?id=6034418512";
["sync_problem"] = "http://www.roblox.com/asset/?id=6034452653";
["network_check"] = "http://www.roblox.com/asset/?id=6034461631";
["event_busy"] = "http://www.roblox.com/asset/?id=6034439634";
["airline_seat_flat"] = "http://www.roblox.com/asset/?id=6034418511";
["disc_full"] = "http://www.roblox.com/asset/?id=6034418518";
["sd_card"] = "http://www.roblox.com/asset/?id=6034457089";
["time_to_leave"] = "http://www.roblox.com/asset/?id=6034452660";
["phone_bluetooth_speaker"] = "http://www.roblox.com/asset/?id=6034457057";
["phone_paused"] = "http://www.roblox.com/asset/?id=6034457066";
["phone_locked"] = "http://www.roblox.com/asset/?id=6034457058";
["more"] = "http://www.roblox.com/asset/?id=6034461627";
["add_call"] = "http://www.roblox.com/asset/?id=6034418524";
["account_tree"] = "http://www.roblox.com/asset/?id=6034418507";
["do_not_disturb_on"] = "http://www.roblox.com/asset/?id=6034439649";
["event_note"] = "http://www.roblox.com/asset/?id=6034439637";
["sync_disabled"] = "http://www.roblox.com/asset/?id=6034452649";
["mms"] = "http://www.roblox.com/asset/?id=6034461621";
["airline_seat_flat_angled"] = "http://www.roblox.com/asset/?id=6034418513";
["bluetooth_audio"] = "http://www.roblox.com/asset/?id=6034418522";
["vibration"] = "http://www.roblox.com/asset/?id=6034452651";
["system_update"] = "http://www.roblox.com/asset/?id=6034452663";
["enhanced_encryption"] = "http://www.roblox.com/asset/?id=6034439652";
["wc"] = "http://www.roblox.com/asset/?id=6034452643";
["live_tv"] = "http://www.roblox.com/asset/?id=6034439648";
["folder_special"] = "http://www.roblox.com/asset/?id=6034439639";
["phone_missed"] = "http://www.roblox.com/asset/?id=6034457056";
["airline_seat_recline_extra"] = "http://www.roblox.com/asset/?id=6034418528";
["sms"] = "http://www.roblox.com/asset/?id=6034452645";
["tap_and_play"] = "http://www.roblox.com/asset/?id=6034452650";
["confirmation_number"] = "http://www.roblox.com/asset/?id=6034418519";
["event_available"] = "http://www.roblox.com/asset/?id=6034439643";
["sms_failed"] = "http://www.roblox.com/asset/?id=6034452676";
["do_not_disturb_alt"] = "http://www.roblox.com/asset/?id=6034461619";
["do_not_disturb"] = "http://www.roblox.com/asset/?id=6034439645";
["ondemand_video"] = "http://www.roblox.com/asset/?id=6034457065";
["no_encryption"] = "http://www.roblox.com/asset/?id=6034457059";
["airline_seat_legroom_extra"] = "http://www.roblox.com/asset/?id=6034418508";
["tv_off"] = "http://www.roblox.com/asset/?id=6034452646";
["sim_card_alert"] = "http://www.roblox.com/asset/?id=6034452641";
["airline_seat_legroom_normal"] = "http://www.roblox.com/asset/?id=6034418532";
["wifi"] = "http://www.roblox.com/asset/?id=6034461626";
["do_not_disturb_off"] = "http://www.roblox.com/asset/?id=6034439642";
["imagesearch_roller"] = "http://www.roblox.com/asset/?id=6034439635";
["power"] = "http://www.roblox.com/asset/?id=6034457105";
["airline_seat_legroom_reduced"] = "http://www.roblox.com/asset/?id=6034418520";
["phone_in_talk"] = "http://www.roblox.com/asset/?id=6034457067";
["airline_seat_individual_suite"] = "http://www.roblox.com/asset/?id=6034418514";
["priority_high"] = "http://www.roblox.com/asset/?id=6034457092";
["phone_callback"] = "http://www.roblox.com/asset/?id=6034457104";
["phone_forwarded"] = "http://www.roblox.com/asset/?id=6034457106";
["sync"] = "http://www.roblox.com/asset/?id=6034452662";
["vpn_lock"] = "http://www.roblox.com/asset/?id=6034452648";
["support_agent"] = "http://www.roblox.com/asset/?id=6034452656";
["network_locked"] = "http://www.roblox.com/asset/?id=6034457064";
["directions_off"] = "http://www.roblox.com/asset/?id=6034418517";
["drive_eta"] = "http://www.roblox.com/asset/?id=6034464371";
};
["home"] = {
["sensor_window"] = "http://www.roblox.com/asset/?id=6031067242";
["sensor_door"] = "http://www.roblox.com/asset/?id=6031067241";
};
["hardware"] = {
["keyboard_return"] = "http://www.roblox.com/asset/?id=6034818370";
["monitor"] = "http://www.roblox.com/asset/?id=6034837803";
["device_hub"] = "http://www.roblox.com/asset/?id=6034789877";
["keyboard"] = "http://www.roblox.com/asset/?id=6034818398";
["keyboard_voice"] = "http://www.roblox.com/asset/?id=6034818360";
["cast"] = "http://www.roblox.com/asset/?id=6034789876";
["developer_board"] = "http://www.roblox.com/asset/?id=6034789883";
["tablet"] = "http://www.roblox.com/asset/?id=6034848733";
["keyboard_hide"] = "http://www.roblox.com/asset/?id=6034818386";
["dock"] = "http://www.roblox.com/asset/?id=6034789888";
["phonelink"] = "http://www.roblox.com/asset/?id=6034837801";
["device_unknown"] = "http://www.roblox.com/asset/?id=6034789884";
["speaker_group"] = "http://www.roblox.com/asset/?id=6034848732";
["desktop_mac"] = "http://www.roblox.com/asset/?id=6034789898";
["point_of_sale"] = "http://www.roblox.com/asset/?id=6034837798";
["memory"] = "http://www.roblox.com/asset/?id=6034837807";
["keyboard_tab"] = "http://www.roblox.com/asset/?id=6034818363";
["router"] = "http://www.roblox.com/asset/?id=6034837806";
["sim_card"] = "http://www.roblox.com/asset/?id=6034837800";
["headset"] = "http://www.roblox.com/asset/?id=6034789880";
["gamepad"] = "http://www.roblox.com/asset/?id=6034789879";
["speaker"] = "http://www.roblox.com/asset/?id=6034848746";
["devices_other"] = "http://www.roblox.com/asset/?id=6034789873";
["laptop"] = "http://www.roblox.com/asset/?id=6034818367";
["scanner"] = "http://www.roblox.com/asset/?id=6034837799";
["tv"] = "http://www.roblox.com/asset/?id=6034848740";
["headset_mic"] = "http://www.roblox.com/asset/?id=6034818383";
["browser_not_supported"] = "http://www.roblox.com/asset/?id=6034789875";
["computer"] = "http://www.roblox.com/asset/?id=6034789874";
["connected_tv"] = "http://www.roblox.com/asset/?id=6034789870";
["phonelink_off"] = "http://www.roblox.com/asset/?id=6034837804";
["headset_off"] = "http://www.roblox.com/asset/?id=6034818402";
["cast_connected"] = "http://www.roblox.com/asset/?id=6034789895";
["watch"] = "http://www.roblox.com/asset/?id=6034848747";
["keyboard_arrow_up"] = "http://www.roblox.com/asset/?id=6034818379";
["keyboard_backspace"] = "http://www.roblox.com/asset/?id=6034818381";
["laptop_chromebook"] = "http://www.roblox.com/asset/?id=6034818364";
["phone_iphone"] = "http://www.roblox.com/asset/?id=6034837811";
["smartphone"] = "http://www.roblox.com/asset/?id=6034848731";
["power_input"] = "http://www.roblox.com/asset/?id=6034837794";
["videogame_asset"] = "http://www.roblox.com/asset/?id=6034848748";
["desktop_windows"] = "http://www.roblox.com/asset/?id=6034789893";
["keyboard_arrow_down"] = "http://www.roblox.com/asset/?id=6034818372";
["laptop_mac"] = "http://www.roblox.com/asset/?id=6034837808";
["laptop_windows"] = "http://www.roblox.com/asset/?id=6034837796";
["keyboard_arrow_right"] = "http://www.roblox.com/asset/?id=6034818365";
["cast_for_education"] = "http://www.roblox.com/asset/?id=6034789872";
["keyboard_capslock"] = "http://www.roblox.com/asset/?id=6034818403";
["toys"] = "http://www.roblox.com/asset/?id=6034848752";
["tablet_android"] = "http://www.roblox.com/asset/?id=6034848734";
["mouse"] = "http://www.roblox.com/asset/?id=6034837797";
["phone_android"] = "http://www.roblox.com/asset/?id=6034837793";
["keyboard_arrow_left"] = "http://www.roblox.com/asset/?id=6034818375";
["security"] = "http://www.roblox.com/asset/?id=6034837802";
};
["maps"] = {
["dry_cleaning"] = "http://www.roblox.com/asset/?id=6034754456";
["bakery_dining"] = "http://www.roblox.com/asset/?id=6034767610";
["place"] = "http://www.roblox.com/asset/?id=6034503372";
["run_circle"] = "http://www.roblox.com/asset/?id=6034503367";
["local_post_office"] = "http://www.roblox.com/asset/?id=6034513883";
["takeout_dining"] = "http://www.roblox.com/asset/?id=6034467808";
["nightlife"] = "http://www.roblox.com/asset/?id=6034510003";
["design_services"] = "http://www.roblox.com/asset/?id=6034754453";
["celebration"] = "http://www.roblox.com/asset/?id=6034767613";
["near_me_disabled"] = "http://www.roblox.com/asset/?id=6034509988";
["add_location_alt"] = "http://www.roblox.com/asset/?id=6034483678";
["directions_run"] = "http://www.roblox.com/asset/?id=6034754445";
["local_fire_department"] = "http://www.roblox.com/asset/?id=6034684949";
["add_road"] = "http://www.roblox.com/asset/?id=6034483677";
["my_location"] = "http://www.roblox.com/asset/?id=6034509987";
["dinner_dining"] = "http://www.roblox.com/asset/?id=6034754457";
["local_airport"] = "http://www.roblox.com/asset/?id=6034687951";
["zoom_out_map"] = "http://www.roblox.com/asset/?id=6035229856";
["pin_drop"] = "http://www.roblox.com/asset/?id=6034470807";
["subway"] = "http://www.roblox.com/asset/?id=6034467790";
["electric_moped"] = "http://www.roblox.com/asset/?id=6034744027";
["restaurant_menu"] = "http://www.roblox.com/asset/?id=6034503378";
["local_gas_station"] = "http://www.roblox.com/asset/?id=6034684935";
["local_cafe"] = "http://www.roblox.com/asset/?id=6034687954";
["theater_comedy"] = "http://www.roblox.com/asset/?id=6034467796";
["directions_bus"] = "http://www.roblox.com/asset/?id=6034754434";
["hail"] = "http://www.roblox.com/asset/?id=6034744033";
["satellite"] = "http://www.roblox.com/asset/?id=6034503370";
["local_phone"] = "http://www.roblox.com/asset/?id=6034513884";
["electric_bike"] = "http://www.roblox.com/asset/?id=6034744032";
["local_see"] = "http://www.roblox.com/asset/?id=6034513887";
["transit_enterexit"] = "http://www.roblox.com/asset/?id=6034467805";
["local_convenience_store"] = "http://www.roblox.com/asset/?id=6034687956";
["local_offer"] = "http://www.roblox.com/asset/?id=6034513891";
["electric_car"] = "http://www.roblox.com/asset/?id=6034744029";
["beenhere"] = "http://www.roblox.com/asset/?id=6034483675";
["miscellaneous_services"] = "http://www.roblox.com/asset/?id=6034509993";
["maps_ugc"] = "http://www.roblox.com/asset/?id=6034509992";
["moped"] = "http://www.roblox.com/asset/?id=6034509999";
["medical_services"] = "http://www.roblox.com/asset/?id=6034510001";
["money"] = "http://www.roblox.com/asset/?id=6034509997";
["transfer_within_a_station"] = "http://www.roblox.com/asset/?id=6034467809";
["electrical_services"] = "http://www.roblox.com/asset/?id=6034744038";
["museum"] = "http://www.roblox.com/asset/?id=6034510005";
["add_location"] = "http://www.roblox.com/asset/?id=6034483672";
["layers"] = "http://www.roblox.com/asset/?id=6034687957";
["handyman"] = "http://www.roblox.com/asset/?id=6034744057";
["local_pharmacy"] = "http://www.roblox.com/asset/?id=6034513903";
["electric_rickshaw"] = "http://www.roblox.com/asset/?id=6034744043";
["alt_route"] = "http://www.roblox.com/asset/?id=6034483670";
["no_transfer"] = "http://www.roblox.com/asset/?id=6034503363";
["pedal_bike"] = "http://www.roblox.com/asset/?id=6034503374";
["directions_transit"] = "http://www.roblox.com/asset/?id=6034754436";
["railway_alert"] = "http://www.roblox.com/asset/?id=6034470823";
["local_police"] = "http://www.roblox.com/asset/?id=6034513895";
["directions_car"] = "http://www.roblox.com/asset/?id=6034754441";
["category"] = "http://www.roblox.com/asset/?id=6034767621";
["attractions"] = "http://www.roblox.com/asset/?id=6034767620";
["person_pin_circle"] = "http://www.roblox.com/asset/?id=6034503375";
["cleaning_services"] = "http://www.roblox.com/asset/?id=6034767619";
["terrain"] = "http://www.roblox.com/asset/?id=6034467794";
["no_meals"] = "http://www.roblox.com/asset/?id=6034510024";
["train"] = "http://www.roblox.com/asset/?id=6034467803";
["delivery_dining"] = "http://www.roblox.com/asset/?id=6034767644";
["pest_control"] = "http://www.roblox.com/asset/?id=6034470809";
["directions"] = "http://www.roblox.com/asset/?id=6034754449";
["atm"] = "http://www.roblox.com/asset/?id=6034767614";
["rate_review"] = "http://www.roblox.com/asset/?id=6034503385";
["local_bar"] = "http://www.roblox.com/asset/?id=6034687950";
["local_drink"] = "http://www.roblox.com/asset/?id=6034687965";
["directions_railway"] = "http://www.roblox.com/asset/?id=6034754433";
["person_pin"] = "http://www.roblox.com/asset/?id=6034503364";
["ev_station"] = "http://www.roblox.com/asset/?id=6034744037";
["home_repair_service"] = "http://www.roblox.com/asset/?id=6034744064";
["bus_alert"] = "http://www.roblox.com/asset/?id=6034767618";
["agriculture"] = "http://www.roblox.com/asset/?id=6034483674";
["volunteer_activism"] = "http://www.roblox.com/asset/?id=6034467799";
["breakfast_dining"] = "http://www.roblox.com/asset/?id=6034483671";
["layers_clear"] = "http://www.roblox.com/asset/?id=6034687975";
["plumbing"] = "http://www.roblox.com/asset/?id=6034470800";
["taxi_alert"] = "http://www.roblox.com/asset/?id=6034467792";
["add_business"] = "http://www.roblox.com/asset/?id=6034483666";
["badge"] = "http://www.roblox.com/asset/?id=6034767607";
["edit_attributes"] = "http://www.roblox.com/asset/?id=6034754443";
["directions_walk"] = "http://www.roblox.com/asset/?id=6034754448";
["local_play"] = "http://www.roblox.com/asset/?id=6034513889";
["bike_scooter"] = "http://www.roblox.com/asset/?id=6034483669";
["two_wheeler"] = "http://www.roblox.com/asset/?id=6034467795";
["local_florist"] = "http://www.roblox.com/asset/?id=6034684940";
["local_hotel"] = "http://www.roblox.com/asset/?id=6034684939";
["no_meals_ouline"] = "http://www.roblox.com/asset/?id=6034510025";
["festival"] = "http://www.roblox.com/asset/?id=6034744031";
["local_shipping"] = "http://www.roblox.com/asset/?id=6034684926";
["directions_boat"] = "http://www.roblox.com/asset/?id=6034754442";
["wrong_location"] = "http://www.roblox.com/asset/?id=6034467801";
["restaurant"] = "http://www.roblox.com/asset/?id=6034503366";
["directions_subway"] = "http://www.roblox.com/asset/?id=6034754440";
["not_listed_location"] = "http://www.roblox.com/asset/?id=6034503380";
["electric_scooter"] = "http://www.roblox.com/asset/?id=6034744041";
["ramen_dining"] = "http://www.roblox.com/asset/?id=6034503377";
["edit_road"] = "http://www.roblox.com/asset/?id=6034744035";
["local_printshop"] = "http://www.roblox.com/asset/?id=6034513897";
["map"] = "http://www.roblox.com/asset/?id=6034684930";
["car_rental"] = "http://www.roblox.com/asset/?id=6034767641";
["multiple_stop"] = "http://www.roblox.com/asset/?id=6034510026";
["brunch_dining"] = "http://www.roblox.com/asset/?id=6034767611";
["local_laundry_service"] = "http://www.roblox.com/asset/?id=6034684943";
["set_meal"] = "http://www.roblox.com/asset/?id=6034503368";
["local_car_wash"] = "http://www.roblox.com/asset/?id=6034687976";
["pest_control_rodent"] = "http://www.roblox.com/asset/?id=6034470803";
["local_pizza"] = "http://www.roblox.com/asset/?id=6034513885";
["local_grocery_store"] = "http://www.roblox.com/asset/?id=6034684933";
["traffic"] = "http://www.roblox.com/asset/?id=6034467797";
["departure_board"] = "http://www.roblox.com/asset/?id=6034767615";
["icecream"] = "http://www.roblox.com/asset/?id=6034687967";
["navigation"] = "http://www.roblox.com/asset/?id=6034509984";
["near_me"] = "http://www.roblox.com/asset/?id=6034509996";
["fastfood"] = "http://www.roblox.com/asset/?id=6034744034";
["local_library"] = "http://www.roblox.com/asset/?id=6034684931";
["local_activity"] = "http://www.roblox.com/asset/?id=6034687955";
["local_hospital"] = "http://www.roblox.com/asset/?id=6034684956";
["menu_book"] = "http://www.roblox.com/asset/?id=6034509994";
["directions_bike"] = "http://www.roblox.com/asset/?id=6034754459";
["store_mall_directory"] = "http://www.roblox.com/asset/?id=6034470811";
["trip_origin"] = "http://www.roblox.com/asset/?id=6034467804";
["tram"] = "http://www.roblox.com/asset/?id=6034467806";
["edit_location"] = "http://www.roblox.com/asset/?id=6034754439";
["streetview"] = "http://www.roblox.com/asset/?id=6034470805";
["hvac"] = "http://www.roblox.com/asset/?id=6034687960";
["lunch_dining"] = "http://www.roblox.com/asset/?id=6034684928";
["car_repair"] = "http://www.roblox.com/asset/?id=6034767617";
["compass_calibration"] = "http://www.roblox.com/asset/?id=6034767623";
["360"] = "http://www.roblox.com/asset/?id=6034767608";
["flight"] = "http://www.roblox.com/asset/?id=6034744030";
["local_mall"] = "http://www.roblox.com/asset/?id=6034684934";
["hotel"] = "http://www.roblox.com/asset/?id=6034687977";
["local_parking"] = "http://www.roblox.com/asset/?id=6034513893";
["hardware"] = "http://www.roblox.com/asset/?id=6034744036";
["local_dining"] = "http://www.roblox.com/asset/?id=6034687963";
["park"] = "http://www.roblox.com/asset/?id=6034503369";
["location_pin"] = "http://www.roblox.com/asset/?id=6034684937";
["local_movies"] = "http://www.roblox.com/asset/?id=6034684936";
["local_atm"] = "http://www.roblox.com/asset/?id=6034687953";
["local_taxi"] = "http://www.roblox.com/asset/?id=6034684927";
};
["device"] = {
["brightness_low"] = "http://www.roblox.com/asset/?id=6034989542";
["screen_lock_landscape"] = "http://www.roblox.com/asset/?id=6034996700";
["graphic_eq"] = "http://www.roblox.com/asset/?id=6034989551";
["screen_lock_rotation"] = "http://www.roblox.com/asset/?id=6034996710";
["signal_cellular_4_bar"] = "http://www.roblox.com/asset/?id=6035030076";
["airplanemode_inactive"] = "http://www.roblox.com/asset/?id=6034983848";
["signal_wifi_0_bar"] = "http://www.roblox.com/asset/?id=6035030067";
["battery_full"] = "http://www.roblox.com/asset/?id=6034983854";
["gps_fixed"] = "http://www.roblox.com/asset/?id=6034989550";
["brightness_high"] = "http://www.roblox.com/asset/?id=6034989541";
["ad_units"] = "http://www.roblox.com/asset/?id=6034983845";
["signal_cellular_alt"] = "http://www.roblox.com/asset/?id=6035030079";
["bluetooth_connected"] = "http://www.roblox.com/asset/?id=6034983855";
["wifi_tethering"] = "http://www.roblox.com/asset/?id=6035039430";
["dvr"] = "http://www.roblox.com/asset/?id=6034989561";
["screen_search_desktop"] = "http://www.roblox.com/asset/?id=6034996711";
["network_wifi"] = "http://www.roblox.com/asset/?id=6034996712";
["access_alarms"] = "http://www.roblox.com/asset/?id=6034983853";
["nfc"] = "http://www.roblox.com/asset/?id=6034996698";
["location_disabled"] = "http://www.roblox.com/asset/?id=6034996694";
["signal_wifi_4_bar"] = "http://www.roblox.com/asset/?id=6035030077";
["access_time"] = "http://www.roblox.com/asset/?id=6034983856";
["mobile_off"] = "http://www.roblox.com/asset/?id=6034996702";
["battery_unknown"] = "http://www.roblox.com/asset/?id=6034983842";
["signal_cellular_null"] = "http://www.roblox.com/asset/?id=6035030075";
["bluetooth_disabled"] = "http://www.roblox.com/asset/?id=6034989562";
["developer_mode"] = "http://www.roblox.com/asset/?id=6034989549";
["network_cell"] = "http://www.roblox.com/asset/?id=6034996709";
["sd_storage"] = "http://www.roblox.com/asset/?id=6034996719";
["signal_cellular_no_sim"] = "http://www.roblox.com/asset/?id=6035030078";
["devices"] = "http://www.roblox.com/asset/?id=6034989540";
["screen_rotation"] = "http://www.roblox.com/asset/?id=6034996701";
["device_thermostat"] = "http://www.roblox.com/asset/?id=6034989544";
["signal_wifi_off"] = "http://www.roblox.com/asset/?id=6035030074";
["widgets"] = "http://www.roblox.com/asset/?id=6035039429";
["bluetooth"] = "http://www.roblox.com/asset/?id=6034983880";
["battery_charging_full"] = "http://www.roblox.com/asset/?id=6034983849";
["mobile_friendly"] = "http://www.roblox.com/asset/?id=6034996699";
["signal_cellular_0_bar"] = "http://www.roblox.com/asset/?id=6035030072";
["storage"] = "http://www.roblox.com/asset/?id=6035030083";
["send_to_mobile"] = "http://www.roblox.com/asset/?id=6034996697";
["location_searching"] = "http://www.roblox.com/asset/?id=6034996695";
["brightness_auto"] = "http://www.roblox.com/asset/?id=6034989545";
["wifi_lock"] = "http://www.roblox.com/asset/?id=6035039428";
["gps_not_fixed"] = "http://www.roblox.com/asset/?id=6034989547";
["access_alarm"] = "http://www.roblox.com/asset/?id=6034983844";
["battery_alert"] = "http://www.roblox.com/asset/?id=6034983843";
["signal_cellular_off"] = "http://www.roblox.com/asset/?id=6035030084";
["signal_cellular_connected_no_internet_4"] = "http://www.roblox.com/asset/?id=6035229858";
["gps_off"] = "http://www.roblox.com/asset/?id=6034989548";
["add_alarm"] = "http://www.roblox.com/asset/?id=6034983850";
["brightness_medium"] = "http://www.roblox.com/asset/?id=6034989543";
["usb"] = "http://www.roblox.com/asset/?id=6035030080";
["airplanemode_active"] = "http://www.roblox.com/asset/?id=6034983864";
["reset_tv"] = "http://www.roblox.com/asset/?id=6034996696";
["wallpaper"] = "http://www.roblox.com/asset/?id=6035030102";
["settings_system_daydream"] = "http://www.roblox.com/asset/?id=6035030081";
["bluetooth_searching"] = "http://www.roblox.com/asset/?id=6034989553";
["add_to_home_screen"] = "http://www.roblox.com/asset/?id=6034983858";
["screen_lock_portrait"] = "http://www.roblox.com/asset/?id=6034996706";
["data_usage"] = "http://www.roblox.com/asset/?id=6034989568";
};
["alert"] = {
["_auto_delete"] = "http://www.roblox.com/asset/?id=6031071068";
["_error"] = "http://www.roblox.com/asset/?id=6031071057";
["_notification_important"] = "http://www.roblox.com/asset/?id=6031071056";
["_add_alert"] = "http://www.roblox.com/asset/?id=6031071067";
["_warning"] = "http://www.roblox.com/asset/?id=6031071053";
["_error_outline"] = "http://www.roblox.com/asset/?id=6031071050";
};
["toggle"] = {
["check_box_outline_blank"] = "http://www.roblox.com/asset/?id=6031068420";
["toggle_off"] = "http://www.roblox.com/asset/?id=6031068429";
["indeterminate_check_box"] = "http://www.roblox.com/asset/?id=6031068445";
["radio_button_checked"] = "http://www.roblox.com/asset/?id=6031068426";
["toggle_on"] = "http://www.roblox.com/asset/?id=6031068430";
["check_box"] = "http://www.roblox.com/asset/?id=6031068421";
["radio_button_unchecked"] = "http://www.roblox.com/asset/?id=6031068433";
["star"] = "http://www.roblox.com/asset/?id=6031068423";
["star_border"] = "http://www.roblox.com/asset/?id=6031068425";
["star_half"] = "http://www.roblox.com/asset/?id=6031068427";
["star_outline"] = "http://www.roblox.com/asset/?id=6031068428";
};
["editor"] = {
["multiline_chart"] = "http://www.roblox.com/asset/?id=6034941721";
["pie_chart"] = "http://www.roblox.com/asset/?id=6034973076";
["format_line_spacing"] = "http://www.roblox.com/asset/?id=6034910905";
["format_align_left"] = "http://www.roblox.com/asset/?id=6034900727";
["linear_scale"] = "http://www.roblox.com/asset/?id=6034941707";
["insert_photo"] = "http://www.roblox.com/asset/?id=6034941703";
["scatter_plot"] = "http://www.roblox.com/asset/?id=6034973094";
["post_add"] = "http://www.roblox.com/asset/?id=6034973083";
["format_textdirection_r_to_l"] = "http://www.roblox.com/asset/?id=6034925623";
["format_size"] = "http://www.roblox.com/asset/?id=6034910908";
["format_color_fill"] = "http://www.roblox.com/asset/?id=6034910903";
["format_paint"] = "http://www.roblox.com/asset/?id=6034925618";
["format_underlined"] = "http://www.roblox.com/asset/?id=6034925627";
["format_shapes"] = "http://www.roblox.com/asset/?id=6034910909";
["title"] = "http://www.roblox.com/asset/?id=6034934042";
["highlight"] = "http://www.roblox.com/asset/?id=6034925617";
["bar_chart"] = "http://www.roblox.com/asset/?id=6034898096";
["format_indent_increase"] = "http://www.roblox.com/asset/?id=6034900724";
["merge_type"] = "http://www.roblox.com/asset/?id=6034941705";
["bubble_chart"] = "http://www.roblox.com/asset/?id=6034925612";
["publish"] = "http://www.roblox.com/asset/?id=6034973085";
["format_indent_decrease"] = "http://www.roblox.com/asset/?id=6034900733";
["margin"] = "http://www.roblox.com/asset/?id=6034941701";
["table_rows"] = "http://www.roblox.com/asset/?id=6034934025";
["stacked_line_chart"] = "http://www.roblox.com/asset/?id=6034934039";
["border_clear"] = "http://www.roblox.com/asset/?id=6034898135";
["border_color"] = "http://www.roblox.com/asset/?id=6034898100";
["border_inner"] = "http://www.roblox.com/asset/?id=6034898131";
["insert_chart"] = "http://www.roblox.com/asset/?id=6034925628";
["border_top"] = "http://www.roblox.com/asset/?id=6034900726";
["padding"] = "http://www.roblox.com/asset/?id=6034973078";
["border_vertical"] = "http://www.roblox.com/asset/?id=6034900725";
["score"] = "http://www.roblox.com/asset/?id=6034934041";
["border_right"] = "http://www.roblox.com/asset/?id=6034898120";
["add_chart"] = "http://www.roblox.com/asset/?id=6034898093";
["space_bar"] = "http://www.roblox.com/asset/?id=6034934037";
["border_outer"] = "http://www.roblox.com/asset/?id=6034898104";
["mode_comment"] = "http://www.roblox.com/asset/?id=6034941700";
["attach_money"] = "http://www.roblox.com/asset/?id=6034898098";
["drag_handle"] = "http://www.roblox.com/asset/?id=6034910907";
["format_align_right"] = "http://www.roblox.com/asset/?id=6034900723";
["pie_chart_outlined"] = "http://www.roblox.com/asset/?id=6034973077";
["horizontal_rule"] = "http://www.roblox.com/asset/?id=6034925610";
["border_all"] = "http://www.roblox.com/asset/?id=6034898101";
["border_style"] = "http://www.roblox.com/asset/?id=6034898097";
["insert_comment"] = "http://www.roblox.com/asset/?id=6034925609";
["vertical_align_top"] = "http://www.roblox.com/asset/?id=6034973080";
["vertical_align_center"] = "http://www.roblox.com/asset/?id=6034934051";
["format_color_text"] = "http://www.roblox.com/asset/?id=6034910910";
["format_quote"] = "http://www.roblox.com/asset/?id=6034925629";
["height"] = "http://www.roblox.com/asset/?id=6034925613";
["add_comment"] = "http://www.roblox.com/asset/?id=6034898128";
["format_strikethrough"] = "http://www.roblox.com/asset/?id=6034910904";
["strikethrough_s"] = "http://www.roblox.com/asset/?id=6034934030";
["border_left"] = "http://www.roblox.com/asset/?id=6034898099";
["format_list_bulleted"] = "http://www.roblox.com/asset/?id=6034925620";
["format_italic"] = "http://www.roblox.com/asset/?id=6034910912";
["format_list_numbered"] = "http://www.roblox.com/asset/?id=6034925622";
["attach_file"] = "http://www.roblox.com/asset/?id=6034898102";
["wrap_text"] = "http://www.roblox.com/asset/?id=6034973118";
["insert_invitation"] = "http://www.roblox.com/asset/?id=6034973091";
["format_list_numbered_rtl"] = "http://www.roblox.com/asset/?id=6034910906";
["border_horizontal"] = "http://www.roblox.com/asset/?id=6034898105";
["format_align_center"] = "http://www.roblox.com/asset/?id=6034900718";
["format_textdirection_l_to_r"] = "http://www.roblox.com/asset/?id=6034925619";
["show_chart"] = "http://www.roblox.com/asset/?id=6034934032";
["insert_chart_outlined"] = "http://www.roblox.com/asset/?id=6034925606";
["vertical_align_bottom"] = "http://www.roblox.com/asset/?id=6034934023";
["subscript"] = "http://www.roblox.com/asset/?id=6034934059";
["format_align_justify"] = "http://www.roblox.com/asset/?id=6034900721";
["format_clear"] = "http://www.roblox.com/asset/?id=6034910902";
["notes"] = "http://www.roblox.com/asset/?id=6034973084";
["insert_drive_file"] = "http://www.roblox.com/asset/?id=6034941697";
["functions"] = "http://www.roblox.com/asset/?id=6034925614";
["insert_emoticon"] = "http://www.roblox.com/asset/?id=6034973079";
["insert_link"] = "http://www.roblox.com/asset/?id=6034973074";
["format_color_reset"] = "http://www.roblox.com/asset/?id=6034900743";
["monetization_on"] = "http://www.roblox.com/asset/?id=6034973115";
["short_text"] = "http://www.roblox.com/asset/?id=6034934035";
["mode_edit"] = "http://www.roblox.com/asset/?id=6034941708";
["superscript"] = "http://www.roblox.com/asset/?id=6034934034";
["table_chart"] = "http://www.roblox.com/asset/?id=6034973081";
["format_bold"] = "http://www.roblox.com/asset/?id=6034900732";
["money_off"] = "http://www.roblox.com/asset/?id=6034973088";
["border_bottom"] = "http://www.roblox.com/asset/?id=6034898094";
["text_fields"] = "http://www.roblox.com/asset/?id=6034934040";
};
["media"] = {
["note"] = "http://www.roblox.com/asset/?id=6026663734";
["shuffle"] = "http://www.roblox.com/asset/?id=6026667003";
["library_books"] = "http://www.roblox.com/asset/?id=6026660085";
["library_music"] = "http://www.roblox.com/asset/?id=6026660075";
["surround_sound"] = "http://www.roblox.com/asset/?id=6026671209";
["forward_30"] = "http://www.roblox.com/asset/?id=6026660088";
["music_video"] = "http://www.roblox.com/asset/?id=6026663704";
["videocam_off"] = "http://www.roblox.com/asset/?id=6026671212";
["control_camera"] = "http://www.roblox.com/asset/?id=6026647916";
["explicit"] = "http://www.roblox.com/asset/?id=6026647913";
["3k_plus"] = "http://www.roblox.com/asset/?id=6026681598";
["fiber_pin"] = "http://www.roblox.com/asset/?id=6026660064";
["skip_previous"] = "http://www.roblox.com/asset/?id=6026667011";
["pause_circle_filled"] = "http://www.roblox.com/asset/?id=6026663718";
["video_settings"] = "http://www.roblox.com/asset/?id=6026671211";
["movie"] = "http://www.roblox.com/asset/?id=6026660081";
["add_to_queue"] = "http://www.roblox.com/asset/?id=6026647903";
["6k"] = "http://www.roblox.com/asset/?id=6026681579";
["web_asset"] = "http://www.roblox.com/asset/?id=6026671239";
["play_circle_outline"] = "http://www.roblox.com/asset/?id=6026663726";
["volume_off"] = "http://www.roblox.com/asset/?id=6026671224";
["mic_off"] = "http://www.roblox.com/asset/?id=6026660076";
["featured_play_list"] = "http://www.roblox.com/asset/?id=6026647932";
["pause_circle_outline"] = "http://www.roblox.com/asset/?id=6026663701";
["slow_motion_video"] = "http://www.roblox.com/asset/?id=6026681583";
["7k"] = "http://www.roblox.com/asset/?id=6026681584";
["playlist_add"] = "http://www.roblox.com/asset/?id=6026663728";
["fiber_smart_record"] = "http://www.roblox.com/asset/?id=6026660080";
["8k"] = "http://www.roblox.com/asset/?id=6026643014";
["hd"] = "http://www.roblox.com/asset/?id=6026660065";
["repeat_one_on"] = "http://www.roblox.com/asset/?id=6026666992";
["recent_actors"] = "http://www.roblox.com/asset/?id=6026663773";
["fiber_new"] = "http://www.roblox.com/asset/?id=6026647930";
["fiber_dvr"] = "http://www.roblox.com/asset/?id=6026647912";
["hearing_disabled"] = "http://www.roblox.com/asset/?id=6026660068";
["forward_10"] = "http://www.roblox.com/asset/?id=6026660062";
["4k_plus"] = "http://www.roblox.com/asset/?id=6026643005";
["repeat_one"] = "http://www.roblox.com/asset/?id=6026681590";
["equalizer"] = "http://www.roblox.com/asset/?id=6026647906";
["stop"] = "http://www.roblox.com/asset/?id=6026681576";
["2k"] = "http://www.roblox.com/asset/?id=6026643032";
["playlist_add_check"] = "http://www.roblox.com/asset/?id=6026663727";
["not_interested"] = "http://www.roblox.com/asset/?id=6026663743";
["videocam"] = "http://www.roblox.com/asset/?id=6026671213";
["sort_by_alpha"] = "http://www.roblox.com/asset/?id=6026667009";
["library_add"] = "http://www.roblox.com/asset/?id=6026660063";
["stop_circle"] = "http://www.roblox.com/asset/?id=6026681577";
["pause"] = "http://www.roblox.com/asset/?id=6026663719";
["new_releases"] = "http://www.roblox.com/asset/?id=6026663730";
["album"] = "http://www.roblox.com/asset/?id=6026647905";
["sd"] = "http://www.roblox.com/asset/?id=6026681582";
["volume_up"] = "http://www.roblox.com/asset/?id=6026671215";
["replay_5"] = "http://www.roblox.com/asset/?id=6026666993";
["high_quality"] = "http://www.roblox.com/asset/?id=6026660059";
["shuffle_on"] = "http://www.roblox.com/asset/?id=6026666996";
["play_arrow"] = "http://www.roblox.com/asset/?id=6026663699";
["snooze"] = "http://www.roblox.com/asset/?id=6026667006";
["closed_caption_disabled"] = "http://www.roblox.com/asset/?id=6026647900";
["subscriptions"] = "http://www.roblox.com/asset/?id=6026671207";
["skip_next"] = "http://www.roblox.com/asset/?id=6026667005";
["branding_watermark"] = "http://www.roblox.com/asset/?id=6026647911";
["speed"] = "http://www.roblox.com/asset/?id=6026681578";
["art_track"] = "http://www.roblox.com/asset/?id=6026647908";
["3k"] = "http://www.roblox.com/asset/?id=6026681574";
["4k"] = "http://www.roblox.com/asset/?id=6026643017";
["volume_mute"] = "http://www.roblox.com/asset/?id=6026671214";
["playlist_play"] = "http://www.roblox.com/asset/?id=6026663723";
["remove_from_queue"] = "http://www.roblox.com/asset/?id=6026663771";
["fast_forward"] = "http://www.roblox.com/asset/?id=6026647902";
["play_disabled"] = "http://www.roblox.com/asset/?id=6026663702";
["fast_rewind"] = "http://www.roblox.com/asset/?id=6026647942";
["5k"] = "http://www.roblox.com/asset/?id=6026681575";
["replay_10"] = "http://www.roblox.com/asset/?id=6026667007";
["video_library"] = "http://www.roblox.com/asset/?id=6026671208";
["loop"] = "http://www.roblox.com/asset/?id=6026660087";
["replay_circle_filled"] = "http://www.roblox.com/asset/?id=6026667002";
["5g"] = "http://www.roblox.com/asset/?id=6026643007";
["library_add_check"] = "http://www.roblox.com/asset/?id=6026660083";
["repeat"] = "http://www.roblox.com/asset/?id=6026666998";
["queue_play_next"] = "http://www.roblox.com/asset/?id=6026663700";
["forward_5"] = "http://www.roblox.com/asset/?id=6026660067";
["web"] = "http://www.roblox.com/asset/?id=6026671234";
["mic_none"] = "http://www.roblox.com/asset/?id=6026660066";
["queue"] = "http://www.roblox.com/asset/?id=6026663724";
["closed_caption_off"] = "http://www.roblox.com/asset/?id=6026647943";
["hearing"] = "http://www.roblox.com/asset/?id=6026660060";
["queue_music"] = "http://www.roblox.com/asset/?id=6026663725";
["airplay"] = "http://www.roblox.com/asset/?id=6026647929";
["9k"] = "http://www.roblox.com/asset/?id=6026643013";
["video_label"] = "http://www.roblox.com/asset/?id=6026671204";
["8k_plus"] = "http://www.roblox.com/asset/?id=6026643003";
["play_circle_filled"] = "http://www.roblox.com/asset/?id=6026663705";
["1k"] = "http://www.roblox.com/asset/?id=6026643002";
["fiber_manual_record"] = "http://www.roblox.com/asset/?id=6026647909";
["closed_caption"] = "http://www.roblox.com/asset/?id=6026647896";
["subtitles"] = "http://www.roblox.com/asset/?id=6026671203";
["featured_video"] = "http://www.roblox.com/asset/?id=6026647910";
["replay_30"] = "http://www.roblox.com/asset/?id=6026667010";
["10k"] = "http://www.roblox.com/asset/?id=6026643035";
["5k_plus"] = "http://www.roblox.com/asset/?id=6026643028";
["6k_plus"] = "http://www.roblox.com/asset/?id=6026643019";
["replay"] = "http://www.roblox.com/asset/?id=6026666999";
["repeat_on"] = "http://www.roblox.com/asset/?id=6026666994";
["1k_plus"] = "http://www.roblox.com/asset/?id=6026681580";
["2k_plus"] = "http://www.roblox.com/asset/?id=6026681588";
["games"] = "http://www.roblox.com/asset/?id=6026660074";
["volume_down"] = "http://www.roblox.com/asset/?id=6026671206";
["mic"] = "http://www.roblox.com/asset/?id=6026660078";
["call_to_action"] = "http://www.roblox.com/asset/?id=6026647898";
["7k_plus"] = "http://www.roblox.com/asset/?id=6026643012";
["av_timer"] = "http://www.roblox.com/asset/?id=6026647934";
["9k_plus"] = "http://www.roblox.com/asset/?id=6026681585";
["radio"] = "http://www.roblox.com/asset/?id=6026663698";
};
["image"] = {
["10mp"] = "http://www.roblox.com/asset/?id=6031328149";
["20mp"] = "http://www.roblox.com/asset/?id=6031488940";
["wb_twighlight"] = "http://www.roblox.com/asset/?id=6034412760";
["movie_creation"] = "http://www.roblox.com/asset/?id=6034323681";
["crop_portrait"] = "http://www.roblox.com/asset/?id=6031630198";
["filter_5"] = "http://www.roblox.com/asset/?id=6031597518";
["broken_image"] = "http://www.roblox.com/asset/?id=6031471480";
["flip_camera_android"] = "http://www.roblox.com/asset/?id=6034333280";
["flip_camera_ios"] = "http://www.roblox.com/asset/?id=6034333267";
["circle"] = "http://www.roblox.com/asset/?id=6031625146";
["photo_camera_front"] = "http://www.roblox.com/asset/?id=6031771000";
["assistant"] = "http://www.roblox.com/asset/?id=6031360356";
["face_retouching_natural"] = "http://www.roblox.com/asset/?id=6034333274";
["palette"] = "http://www.roblox.com/asset/?id=6034316009";
["nature_people"] = "http://www.roblox.com/asset/?id=6034323711";
["14mp"] = "http://www.roblox.com/asset/?id=6031328161";
["gradient"] = "http://www.roblox.com/asset/?id=6034333261";
["filter_4"] = "http://www.roblox.com/asset/?id=6031597512";
["panorama_wide_angle_select"] = "http://www.roblox.com/asset/?id=6031770990";
["photo"] = "http://www.roblox.com/asset/?id=6031770993";
["grid_off"] = "http://www.roblox.com/asset/?id=6034333286";
["leak_add"] = "http://www.roblox.com/asset/?id=6034407074";
["landscape"] = "http://www.roblox.com/asset/?id=6034407069";
["exposure_plus_1"] = "http://www.roblox.com/asset/?id=6034328970";
["slideshow"] = "http://www.roblox.com/asset/?id=6031754546";
["camera_alt"] = "http://www.roblox.com/asset/?id=6031572307";
["audiotrack"] = "http://www.roblox.com/asset/?id=6031471489";
["filter_none"] = "http://www.roblox.com/asset/?id=6031600815";
["blur_off"] = "http://www.roblox.com/asset/?id=6031371055";
["crop_16_9"] = "http://www.roblox.com/asset/?id=6031630205";
["blur_on"] = "http://www.roblox.com/asset/?id=6031371068";
["brightness_4"] = "http://www.roblox.com/asset/?id=6031471483";
["details"] = "http://www.roblox.com/asset/?id=6034328968";
["panorama_horizontal"] = "http://www.roblox.com/asset/?id=6034315966";
["camera_rear"] = "http://www.roblox.com/asset/?id=6031572316";
["hdr_weak"] = "http://www.roblox.com/asset/?id=6034407083";
["collections"] = "http://www.roblox.com/asset/?id=6031625145";
["hdr_enhanced_select"] = "http://www.roblox.com/asset/?id=6034333281";
["adjust"] = "http://www.roblox.com/asset/?id=6031339048";
["burst_mode"] = "http://www.roblox.com/asset/?id=6031572306";
["nature"] = "http://www.roblox.com/asset/?id=6034323695";
["brightness_6"] = "http://www.roblox.com/asset/?id=6031572309";
["19mp"] = "http://www.roblox.com/asset/?id=6031339054";
["grain"] = "http://www.roblox.com/asset/?id=6034333288";
["receipt_long"] = "http://www.roblox.com/asset/?id=6031763428";
["photo_filter"] = "http://www.roblox.com/asset/?id=6031770992";
["edit"] = "http://www.roblox.com/asset/?id=6034328955";
["healing"] = "http://www.roblox.com/asset/?id=6034407071";
["exposure_neg_1"] = "http://www.roblox.com/asset/?id=6034328957";
["exposure"] = "http://www.roblox.com/asset/?id=6034328962";
["wb_shade"] = "http://www.roblox.com/asset/?id=6034315974";
["compare"] = "http://www.roblox.com/asset/?id=6031625151";
["cases"] = "http://www.roblox.com/asset/?id=6031572324";
["timer_3"] = "http://www.roblox.com/asset/?id=6031754540";
["exposure_plus_2"] = "http://www.roblox.com/asset/?id=6034328961";
["12mp"] = "http://www.roblox.com/asset/?id=6031328140";
["22mp"] = "http://www.roblox.com/asset/?id=6031360353";
["timer_off"] = "http://www.roblox.com/asset/?id=6031734881";
["auto_stories"] = "http://www.roblox.com/asset/?id=6031360360";
["rotate_left"] = "http://www.roblox.com/asset/?id=6031763427";
["wb_iridescent"] = "http://www.roblox.com/asset/?id=6034315972";
["shutter_speed"] = "http://www.roblox.com/asset/?id=6031763443";
["switch_video"] = "http://www.roblox.com/asset/?id=6031754536";
["23mp"] = "http://www.roblox.com/asset/?id=6031339045";
["euro"] = "http://www.roblox.com/asset/?id=6034328963";
["15mp"] = "http://www.roblox.com/asset/?id=6031328158";
["filter_center_focus"] = "http://www.roblox.com/asset/?id=6031600817";
["photo_library"] = "http://www.roblox.com/asset/?id=6031770998";
["mp"] = "http://www.roblox.com/asset/?id=6034323674";
["looks_4"] = "http://www.roblox.com/asset/?id=6034407089";
["filter_2"] = "http://www.roblox.com/asset/?id=6031597521";
["crop_3_2"] = "http://www.roblox.com/asset/?id=6034328956";
["auto_fix_normal"] = "http://www.roblox.com/asset/?id=6031371074";
["auto_fix_off"] = "http://www.roblox.com/asset/?id=6031360381";
["wb_auto"] = "http://www.roblox.com/asset/?id=6031734875";
["switch_camera"] = "http://www.roblox.com/asset/?id=6031754550";
["filter_vintage"] = "http://www.roblox.com/asset/?id=6031600811";
["photo_size_select_small"] = "http://www.roblox.com/asset/?id=6031763457";
["blur_linear"] = "http://www.roblox.com/asset/?id=6031488930";
["hdr_on"] = "http://www.roblox.com/asset/?id=6034333279";
["tag_faces"] = "http://www.roblox.com/asset/?id=6031754560";
["21mp"] = "http://www.roblox.com/asset/?id=6031339065";
["camera"] = "http://www.roblox.com/asset/?id=6031572312";
["image_aspect_ratio"] = "http://www.roblox.com/asset/?id=6034407073";
["filter_b_and_w"] = "http://www.roblox.com/asset/?id=6031600824";
["crop_landscape"] = "http://www.roblox.com/asset/?id=6031630202";
["13mp"] = "http://www.roblox.com/asset/?id=6031328137";
["grid_on"] = "http://www.roblox.com/asset/?id=6034333276";
["motion_photos_pause"] = "http://www.roblox.com/asset/?id=6034323668";
["filter_6"] = "http://www.roblox.com/asset/?id=6031597524";
["linked_camera"] = "http://www.roblox.com/asset/?id=6034407082";
["panorama_fish_eye"] = "http://www.roblox.com/asset/?id=6034315969";
["panorama"] = "http://www.roblox.com/asset/?id=6034315955";
["color_lens"] = "http://www.roblox.com/asset/?id=6031625148";
["lens"] = "http://www.roblox.com/asset/?id=6034407081";
["crop_din"] = "http://www.roblox.com/asset/?id=6031630208";
["exposure_neg_2"] = "http://www.roblox.com/asset/?id=6034328973";
["mic_external_off"] = "http://www.roblox.com/asset/?id=6034323672";
["crop_free"] = "http://www.roblox.com/asset/?id=6031630212";
["crop_original"] = "http://www.roblox.com/asset/?id=6031630204";
["panorama_photosphere_select"] = "http://www.roblox.com/asset/?id=6034315975";
["photo_size_select_actual"] = "http://www.roblox.com/asset/?id=6031771012";
["leak_remove"] = "http://www.roblox.com/asset/?id=6034407080";
["collections_bookmark"] = "http://www.roblox.com/asset/?id=6034328965";
["straighten"] = "http://www.roblox.com/asset/?id=6031754545";
["timelapse"] = "http://www.roblox.com/asset/?id=6031754541";
["picture_as_pdf"] = "http://www.roblox.com/asset/?id=6031763425";
["crop_rotate"] = "http://www.roblox.com/asset/?id=6031630203";
["control_point_duplicate"] = "http://www.roblox.com/asset/?id=6034328959";
["photo_camera_back"] = "http://www.roblox.com/asset/?id=6031771007";
["looks_3"] = "http://www.roblox.com/asset/?id=6034407088";
["motion_photos_off"] = "http://www.roblox.com/asset/?id=6034323670";
["rotate_right"] = "http://www.roblox.com/asset/?id=6031763429";
["view_compact"] = "http://www.roblox.com/asset/?id=6031734878";
["crop_7_5"] = "http://www.roblox.com/asset/?id=6031630197";
["style"] = "http://www.roblox.com/asset/?id=6031754538";
["exposure_zero"] = "http://www.roblox.com/asset/?id=6034329000";
["camera_front"] = "http://www.roblox.com/asset/?id=6031572318";
["hdr_strong"] = "http://www.roblox.com/asset/?id=6034333272";
["view_comfy"] = "http://www.roblox.com/asset/?id=6031734876";
["panorama_vertical"] = "http://www.roblox.com/asset/?id=6034315963";
["panorama_vertical_select"] = "http://www.roblox.com/asset/?id=6034315961";
["looks_two"] = "http://www.roblox.com/asset/?id=6034412757";
["filter_drama"] = "http://www.roblox.com/asset/?id=6031600813";
["center_focus_strong"] = "http://www.roblox.com/asset/?id=6031625147";
["18mp"] = "http://www.roblox.com/asset/?id=6031339064";
["7mp"] = "http://www.roblox.com/asset/?id=6031328139";
["wb_sunny"] = "http://www.roblox.com/asset/?id=6034412758";
["filter_9_plus"] = "http://www.roblox.com/asset/?id=6031600812";
["crop"] = "http://www.roblox.com/asset/?id=6034328964";
["vignette"] = "http://www.roblox.com/asset/?id=6031734905";
["brightness_2"] = "http://www.roblox.com/asset/?id=6031488938";
["crop_square"] = "http://www.roblox.com/asset/?id=6031630222";
["looks_5"] = "http://www.roblox.com/asset/?id=6034412764";
["flip"] = "http://www.roblox.com/asset/?id=6034333275";
["looks_one"] = "http://www.roblox.com/asset/?id=6034412761";
["flash_off"] = "http://www.roblox.com/asset/?id=6034333270";
["hdr_off"] = "http://www.roblox.com/asset/?id=6034333266";
["photo_album"] = "http://www.roblox.com/asset/?id=6031770989";
["motion_photos_paused"] = "http://www.roblox.com/asset/?id=6034323675";
["photo_camera"] = "http://www.roblox.com/asset/?id=6031770997";
["2mp"] = "http://www.roblox.com/asset/?id=6031328138";
["3mp"] = "http://www.roblox.com/asset/?id=6031328136";
["24mp"] = "http://www.roblox.com/asset/?id=6031360352";
["filter_9"] = "http://www.roblox.com/asset/?id=6031597534";
["6mp"] = "http://www.roblox.com/asset/?id=6031328131";
["remove_red_eye"] = "http://www.roblox.com/asset/?id=6031763426";
["4mp"] = "http://www.roblox.com/asset/?id=6031328152";
["add_a_photo"] = "http://www.roblox.com/asset/?id=6031339049";
["filter_3"] = "http://www.roblox.com/asset/?id=6031597513";
["crop_5_4"] = "http://www.roblox.com/asset/?id=6034328960";
["8mp"] = "http://www.roblox.com/asset/?id=6031328133";
["camera_roll"] = "http://www.roblox.com/asset/?id=6031572314";
["panorama_wide_angle"] = "http://www.roblox.com/asset/?id=6031770995";
["transform"] = "http://www.roblox.com/asset/?id=6031734873";
["flare"] = "http://www.roblox.com/asset/?id=6031600816";
["image_search"] = "http://www.roblox.com/asset/?id=6034407084";
["auto_awesome"] = "http://www.roblox.com/asset/?id=6031360365";
["motion_photos_on"] = "http://www.roblox.com/asset/?id=6034323669";
["rotate_90_degrees_ccw"] = "http://www.roblox.com/asset/?id=6031763456";
["filter_1"] = "http://www.roblox.com/asset/?id=6031597511";
["filter_tilt_shift"] = "http://www.roblox.com/asset/?id=6031600814";
["image"] = "http://www.roblox.com/asset/?id=6034407078";
["center_focus_weak"] = "http://www.roblox.com/asset/?id=6031625144";
["blur_circular"] = "http://www.roblox.com/asset/?id=6031488945";
["bedtime"] = "http://www.roblox.com/asset/?id=6031371054";
["auto_fix_high"] = "http://www.roblox.com/asset/?id=6031360355";
["monochrome_photos"] = "http://www.roblox.com/asset/?id=6034323678";
["flash_auto"] = "http://www.roblox.com/asset/?id=6034333287";
["5mp"] = "http://www.roblox.com/asset/?id=6031328144";
["photo_size_select_large"] = "http://www.roblox.com/asset/?id=6031763423";
["assistant_photo"] = "http://www.roblox.com/asset/?id=6031339052";
["animation"] = "http://www.roblox.com/asset/?id=6031625150";
["looks"] = "http://www.roblox.com/asset/?id=6034407096";
["17mp"] = "http://www.roblox.com/asset/?id=6031339055";
["panorama_horizontal_select"] = "http://www.roblox.com/asset/?id=6034315965";
["flash_on"] = "http://www.roblox.com/asset/?id=6034333271";
["iso"] = "http://www.roblox.com/asset/?id=6034407106";
["music_note"] = "http://www.roblox.com/asset/?id=6034323673";
["music_off"] = "http://www.roblox.com/asset/?id=6034323679";
["navigate_next"] = "http://www.roblox.com/asset/?id=6034315956";
["timer"] = "http://www.roblox.com/asset/?id=6031754564";
["loupe"] = "http://www.roblox.com/asset/?id=6034412770";
["navigate_before"] = "http://www.roblox.com/asset/?id=6034323696";
["brightness_1"] = "http://www.roblox.com/asset/?id=6031471488";
["brightness_7"] = "http://www.roblox.com/asset/?id=6031471491";
["tonality"] = "http://www.roblox.com/asset/?id=6031734891";
["brush"] = "http://www.roblox.com/asset/?id=6031572320";
["colorize"] = "http://www.roblox.com/asset/?id=6031625161";
["filter_7"] = "http://www.roblox.com/asset/?id=6031597515";
["16mp"] = "http://www.roblox.com/asset/?id=6031328168";
["timer_10"] = "http://www.roblox.com/asset/?id=6031734880";
["portrait"] = "http://www.roblox.com/asset/?id=6031763434";
["tune"] = "http://www.roblox.com/asset/?id=6031734877";
["image_not_supported"] = "http://www.roblox.com/asset/?id=6034407076";
["wb_cloudy"] = "http://www.roblox.com/asset/?id=6031734907";
["auto_awesome_motion"] = "http://www.roblox.com/asset/?id=6031360370";
["filter_8"] = "http://www.roblox.com/asset/?id=6031597532";
["brightness_5"] = "http://www.roblox.com/asset/?id=6031471479";
["movie_filter"] = "http://www.roblox.com/asset/?id=6034323687";
["add_photo_alternate"] = "http://www.roblox.com/asset/?id=6031471484";
["add_to_photos"] = "http://www.roblox.com/asset/?id=6031371075";
["texture"] = "http://www.roblox.com/asset/?id=6031754553";
["11mp"] = "http://www.roblox.com/asset/?id=6031328141";
["mic_external_on"] = "http://www.roblox.com/asset/?id=6034323671";
["looks_6"] = "http://www.roblox.com/asset/?id=6034412759";
["dehaze"] = "http://www.roblox.com/asset/?id=6031630200";
["control_point"] = "http://www.roblox.com/asset/?id=6031625131";
["panorama_photosphere"] = "http://www.roblox.com/asset/?id=6034412763";
["filter_frames"] = "http://www.roblox.com/asset/?id=6031600833";
["auto_awesome_mosaic"] = "http://www.roblox.com/asset/?id=6031371053";
["9mp"] = "http://www.roblox.com/asset/?id=6031328146";
["filter"] = "http://www.roblox.com/asset/?id=6031597514";
["brightness_3"] = "http://www.roblox.com/asset/?id=6031572317";
["dirty_lens"] = "http://www.roblox.com/asset/?id=6034328967";
["wb_incandescent"] = "http://www.roblox.com/asset/?id=6034316010";
["filter_hdr"] = "http://www.roblox.com/asset/?id=6031600819";
};
["communication"] = {
["textsms"] = "http://www.roblox.com/asset/?id=6035202006";
["comment"] = "http://www.roblox.com/asset/?id=6035181871";
["call_end"] = "http://www.roblox.com/asset/?id=6035173845";
["qr_code_scanner"] = "http://www.roblox.com/asset/?id=6035202022";
["phonelink_setup"] = "http://www.roblox.com/asset/?id=6035202025";
["call_merge"] = "http://www.roblox.com/asset/?id=6035173843";
["phonelink_erase"] = "http://www.roblox.com/asset/?id=6035202085";
["contact_mail"] = "http://www.roblox.com/asset/?id=6035181868";
["contact_phone"] = "http://www.roblox.com/asset/?id=6035181861";
["screen_share"] = "http://www.roblox.com/asset/?id=6035202008";
["present_to_all"] = "http://www.roblox.com/asset/?id=6035202020";
["stay_primary_portrait"] = "http://www.roblox.com/asset/?id=6035202009";
["message"] = "http://www.roblox.com/asset/?id=6035202033";
["sentiment_satisfied_alt"] = "http://www.roblox.com/asset/?id=6035202069";
["stay_current_portrait"] = "http://www.roblox.com/asset/?id=6035202004";
["voicemail"] = "http://www.roblox.com/asset/?id=6035202019";
["business"] = "http://www.roblox.com/asset/?id=6035173853";
["mail_outline"] = "http://www.roblox.com/asset/?id=6035190844";
["vpn_key"] = "http://www.roblox.com/asset/?id=6035202034";
["forward_to_inbox"] = "http://www.roblox.com/asset/?id=6035190840";
["contacts"] = "http://www.roblox.com/asset/?id=6035181864";
["phonelink_ring"] = "http://www.roblox.com/asset/?id=6035202066";
["domain_disabled"] = "http://www.roblox.com/asset/?id=6035181862";
["person_add_disabled"] = "http://www.roblox.com/asset/?id=6035202007";
["stay_primary_landscape"] = "http://www.roblox.com/asset/?id=6035202026";
["alternate_email"] = "http://www.roblox.com/asset/?id=6035173865";
["phone_disabled"] = "http://www.roblox.com/asset/?id=6035202028";
["email"] = "http://www.roblox.com/asset/?id=6035181866";
["mobile_screen_share"] = "http://www.roblox.com/asset/?id=6035202021";
["live_help"] = "http://www.roblox.com/asset/?id=6035190836";
["chat_bubble"] = "http://www.roblox.com/asset/?id=6035181858";
["stop_screen_share"] = "http://www.roblox.com/asset/?id=6035202042";
["location_on"] = "http://www.roblox.com/asset/?id=6035190846";
["chat_bubble_outline"] = "http://www.roblox.com/asset/?id=6035181869";
["dialer_sip"] = "http://www.roblox.com/asset/?id=6035181865";
["no_sim"] = "http://www.roblox.com/asset/?id=6035202030";
["list_alt"] = "http://www.roblox.com/asset/?id=6035190838";
["call"] = "http://www.roblox.com/asset/?id=6035173859";
["pause_presentation"] = "http://www.roblox.com/asset/?id=6035202015";
["invert_colors_off"] = "http://www.roblox.com/asset/?id=6035190842";
["call_missed_outgoing"] = "http://www.roblox.com/asset/?id=6035173847";
["stay_current_landscape"] = "http://www.roblox.com/asset/?id=6035202011";
["import_export"] = "http://www.roblox.com/asset/?id=6035202040";
["add_ic_call"] = "http://www.roblox.com/asset/?id=6035173839";
["dialpad"] = "http://www.roblox.com/asset/?id=6035181892";
["nat"] = "http://www.roblox.com/asset/?id=6035202082";
["unsubscribe"] = "http://www.roblox.com/asset/?id=6035202044";
["mark_chat_unread"] = "http://www.roblox.com/asset/?id=6035190841";
["portable_wifi_off"] = "http://www.roblox.com/asset/?id=6035202091";
["location_off"] = "http://www.roblox.com/asset/?id=6035202049";
["person_search"] = "http://www.roblox.com/asset/?id=6035202013";
["phonelink_lock"] = "http://www.roblox.com/asset/?id=6035202064";
["desktop_access_disabled"] = "http://www.roblox.com/asset/?id=6035181863";
["import_contacts"] = "http://www.roblox.com/asset/?id=6035190854";
["rss_feed"] = "http://www.roblox.com/asset/?id=6035202016";
["chat"] = "http://www.roblox.com/asset/?id=6035173838";
["print_disabled"] = "http://www.roblox.com/asset/?id=6035202041";
["mark_email_read"] = "http://www.roblox.com/asset/?id=6035202038";
["hourglass_top"] = "http://www.roblox.com/asset/?id=6035190886";
["clear_all"] = "http://www.roblox.com/asset/?id=6035181870";
["forum"] = "http://www.roblox.com/asset/?id=6035202002";
["qr_code"] = "http://www.roblox.com/asset/?id=6035202012";
["speaker_phone"] = "http://www.roblox.com/asset/?id=6035202018";
["rtt"] = "http://www.roblox.com/asset/?id=6035202010";
["domain_verification"] = "http://www.roblox.com/asset/?id=6035181867";
["app_registration"] = "http://www.roblox.com/asset/?id=6035173870";
["call_split"] = "http://www.roblox.com/asset/?id=6035173861";
["cell_wifi"] = "http://www.roblox.com/asset/?id=6035173852";
["phone_enabled"] = "http://www.roblox.com/asset/?id=6035202089";
["call_made"] = "http://www.roblox.com/asset/?id=6035173858";
["call_received"] = "http://www.roblox.com/asset/?id=6035173844";
["phone"] = "http://www.roblox.com/asset/?id=6035202017";
["ring_volume"] = "http://www.roblox.com/asset/?id=6035202032";
["mark_email_unread"] = "http://www.roblox.com/asset/?id=6035202027";
["hourglass_bottom"] = "http://www.roblox.com/asset/?id=6035202043";
["read_more"] = "http://www.roblox.com/asset/?id=6035202014";
["duo"] = "http://www.roblox.com/asset/?id=6035181860";
["more_time"] = "http://www.roblox.com/asset/?id=6035202036";
["wifi_calling"] = "http://www.roblox.com/asset/?id=6035202065";
["swap_calls"] = "http://www.roblox.com/asset/?id=6035202037";
["cancel_presentation"] = "http://www.roblox.com/asset/?id=6035173837";
["call_missed"] = "http://www.roblox.com/asset/?id=6035173850";
["mark_chat_read"] = "http://www.roblox.com/asset/?id=6035202031";
};
["file"] = {
["text_snippet"] = "http://www.roblox.com/asset/?id=6031302995";
["snippet_folder"] = "http://www.roblox.com/asset/?id=6031302947";
["workspaces_outline"] = "http://www.roblox.com/asset/?id=6031302952";
["file_download"] = "http://www.roblox.com/asset/?id=6031302931";
["request_quote"] = "http://www.roblox.com/asset/?id=6031302941";
["approval"] = "http://www.roblox.com/asset/?id=6031302928";
["drive_folder_upload"] = "http://www.roblox.com/asset/?id=6031302929";
["rule_folder"] = "http://www.roblox.com/asset/?id=6031302940";
["attach_email"] = "http://www.roblox.com/asset/?id=6031302935";
["topic"] = "http://www.roblox.com/asset/?id=6031302976";
["upload_file"] = "http://www.roblox.com/asset/?id=6031302959";
["attachment"] = "http://www.roblox.com/asset/?id=6031302921";
["file_download_done"] = "http://www.roblox.com/asset/?id=6031302926";
["drive_file_move_outline"] = "http://www.roblox.com/asset/?id=6031302924";
["cloud_upload"] = "http://www.roblox.com/asset/?id=6031302992";
["cloud_circle"] = "http://www.roblox.com/asset/?id=6031302919";
["folder_shared"] = "http://www.roblox.com/asset/?id=6031302945";
["cloud_download"] = "http://www.roblox.com/asset/?id=6031302917";
["file_upload"] = "http://www.roblox.com/asset/?id=6031302996";
["workspaces_filled"] = "http://www.roblox.com/asset/?id=6031302961";
["cloud_queue"] = "http://www.roblox.com/asset/?id=6031302916";
["cloud"] = "http://www.roblox.com/asset/?id=6031302918";
["folder_open"] = "http://www.roblox.com/asset/?id=6031302934";
["grid_view"] = "http://www.roblox.com/asset/?id=6031302950";
["cloud_off"] = "http://www.roblox.com/asset/?id=6031302993";
["create_new_folder"] = "http://www.roblox.com/asset/?id=6031302933";
["cloud_done"] = "http://www.roblox.com/asset/?id=6031302927";
["folder"] = "http://www.roblox.com/asset/?id=6031302932";
["drive_file_move"] = "http://www.roblox.com/asset/?id=6031302922";
["drive_file_rename_outline"] = "http://www.roblox.com/asset/?id=6031302994";
};
["social"] = {
["notifications_active"] = "http://www.roblox.com/asset/?id=6034304908";
["sentiment_neutral"] = "http://www.roblox.com/asset/?id=6034230636";
["sick"] = "http://www.roblox.com/asset/?id=6034230642";
["poll"] = "http://www.roblox.com/asset/?id=6034267991";
["emoji_events"] = "http://www.roblox.com/asset/?id=6034275726";
["groups"] = "http://www.roblox.com/asset/?id=6034281935";
["sports_soccer"] = "http://www.roblox.com/asset/?id=6034227075";
["person_add"] = "http://www.roblox.com/asset/?id=6034287514";
["mood_bad"] = "http://www.roblox.com/asset/?id=6034295706";
["person_remove_alt_1"] = "http://www.roblox.com/asset/?id=6034287515";
["king_bed"] = "http://www.roblox.com/asset/?id=6034281948";
["architecture"] = "http://www.roblox.com/asset/?id=6034275730";
["deck"] = "http://www.roblox.com/asset/?id=6034295703";
["group_add"] = "http://www.roblox.com/asset/?id=6034281909";
["sports_basketball"] = "http://www.roblox.com/asset/?id=6034230649";
["emoji_symbols"] = "http://www.roblox.com/asset/?id=6034281899";
["switch_account"] = "http://www.roblox.com/asset/?id=6034227138";
["remove_moderator"] = "http://www.roblox.com/asset/?id=6034267998";
["coronavirus"] = "http://www.roblox.com/asset/?id=6034275724";
["people"] = "http://www.roblox.com/asset/?id=6034287513";
["person"] = "http://www.roblox.com/asset/?id=6034287594";
["elderly"] = "http://www.roblox.com/asset/?id=6034295698";
["clean_hands"] = "http://www.roblox.com/asset/?id=6034275729";
["emoji_flags"] = "http://www.roblox.com/asset/?id=6034304898";
["psychology"] = "http://www.roblox.com/asset/?id=6034287516";
["person_add_alt"] = "http://www.roblox.com/asset/?id=6034267994";
["sports_volleyball"] = "http://www.roblox.com/asset/?id=6034227139";
["domain"] = "http://www.roblox.com/asset/?id=6034275722";
["emoji_objects"] = "http://www.roblox.com/asset/?id=6034281900";
["ios_share"] = "http://www.roblox.com/asset/?id=6034281941";
["history_edu"] = "http://www.roblox.com/asset/?id=6034281934";
["share"] = "http://www.roblox.com/asset/?id=6034230648";
["military_tech"] = "http://www.roblox.com/asset/?id=6034295711";
["sports_kabaddi"] = "http://www.roblox.com/asset/?id=6034227141";
["cake"] = "http://www.roblox.com/asset/?id=6034295702";
["engineering"] = "http://www.roblox.com/asset/?id=6034281908";
["emoji_food_beverage"] = "http://www.roblox.com/asset/?id=6034304883";
["notifications_none"] = "http://www.roblox.com/asset/?id=6034308947";
["emoji_people"] = "http://www.roblox.com/asset/?id=6034281904";
["thumb_down_alt"] = "http://www.roblox.com/asset/?id=6034227069";
["sentiment_very_satisfied"] = "http://www.roblox.com/asset/?id=6034230650";
["nights_stay"] = "http://www.roblox.com/asset/?id=6034304881";
["reduce_capacity"] = "http://www.roblox.com/asset/?id=6034268013";
["add_moderator"] = "http://www.roblox.com/asset/?id=6034295699";
["science"] = "http://www.roblox.com/asset/?id=6034230640";
["pages"] = "http://www.roblox.com/asset/?id=6034304892";
["sentiment_satisfied"] = "http://www.roblox.com/asset/?id=6034230668";
["plus_one"] = "http://www.roblox.com/asset/?id=6034268012";
["party_mode"] = "http://www.roblox.com/asset/?id=6034287521";
["person_remove"] = "http://www.roblox.com/asset/?id=6034267996";
["single_bed"] = "http://www.roblox.com/asset/?id=6034230651";
["mood"] = "http://www.roblox.com/asset/?id=6034295704";
["public"] = "http://www.roblox.com/asset/?id=6034287522";
["sports_rugby"] = "http://www.roblox.com/asset/?id=6034227073";
["sports_handball"] = "http://www.roblox.com/asset/?id=6034227074";
["person_add_alt_1"] = "http://www.roblox.com/asset/?id=6034287519";
["people_alt"] = "http://www.roblox.com/asset/?id=6034287518";
["notifications_off"] = "http://www.roblox.com/asset/?id=6034304894";
["whatshot"] = "http://www.roblox.com/asset/?id=6034287525";
["emoji_transportation"] = "http://www.roblox.com/asset/?id=6034281894";
["outdoor_grill"] = "http://www.roblox.com/asset/?id=6034304900";
["sentiment_very_dissatisfied"] = "http://www.roblox.com/asset/?id=6034230659";
["masks"] = "http://www.roblox.com/asset/?id=6034295710";
["luggage"] = "http://www.roblox.com/asset/?id=6034295708";
["sports_motorsports"] = "http://www.roblox.com/asset/?id=6034227071";
["sports_esports"] = "http://www.roblox.com/asset/?id=6034227061";
["location_city"] = "http://www.roblox.com/asset/?id=6034304889";
["sports_golf"] = "http://www.roblox.com/asset/?id=6034227060";
["sentiment_dissatisfied"] = "http://www.roblox.com/asset/?id=6034230637";
["no_luggage"] = "http://www.roblox.com/asset/?id=6034304891";
["fireplace"] = "http://www.roblox.com/asset/?id=6034281910";
["emoji_nature"] = "http://www.roblox.com/asset/?id=6034281896";
["group"] = "http://www.roblox.com/asset/?id=6034281901";
["thumb_up_alt"] = "http://www.roblox.com/asset/?id=6034227076";
["sports_tennis"] = "http://www.roblox.com/asset/?id=6034227068";
["facebook"] = "http://www.roblox.com/asset/?id=6034281898";
["sports_mma"] = "http://www.roblox.com/asset/?id=6034227072";
["person_outline"] = "http://www.roblox.com/asset/?id=6034268008";
["sports_baseball"] = "http://www.roblox.com/asset/?id=6034230652";
["sports_cricket"] = "http://www.roblox.com/asset/?id=6034230660";
["people_outline"] = "http://www.roblox.com/asset/?id=6034287528";
["notifications_paused"] = "http://www.roblox.com/asset/?id=6034304896";
["emoji_emotions"] = "http://www.roblox.com/asset/?id=6034275731";
["follow_the_signs"] = "http://www.roblox.com/asset/?id=6034281911";
["sanitizer"] = "http://www.roblox.com/asset/?id=6034287586";
["self_improvement"] = "http://www.roblox.com/asset/?id=6034230634";
["notifications"] = "http://www.roblox.com/asset/?id=6034308946";
["public_off"] = "http://www.roblox.com/asset/?id=6034287538";
["recommend"] = "http://www.roblox.com/asset/?id=6034287524";
["sports_football"] = "http://www.roblox.com/asset/?id=6034227067";
["sports_hockey"] = "http://www.roblox.com/asset/?id=6034227064";
["school"] = "http://www.roblox.com/asset/?id=6034230641";
["connect_without_contact"] = "http://www.roblox.com/asset/?id=6034275800";
["sports"] = "http://www.roblox.com/asset/?id=6034230647";
["construction"] = "http://www.roblox.com/asset/?id=6034275725";
};
["content"] = {
["inventory"] = "http://www.roblox.com/asset/?id=6035056487";
["add_box"] = "http://www.roblox.com/asset/?id=6035047375";
["how_to_reg"] = "http://www.roblox.com/asset/?id=6035053288";
["unarchive"] = "http://www.roblox.com/asset/?id=6035078921";
["block_flipped"] = "http://www.roblox.com/asset/?id=6035047378";
["file_copy"] = "http://www.roblox.com/asset/?id=6035053293";
["bolt"] = "http://www.roblox.com/asset/?id=6035047381";
["remove_circle_outline"] = "http://www.roblox.com/asset/?id=6035067843";
["move_to_inbox"] = "http://www.roblox.com/asset/?id=6035067838";
["save_alt"] = "http://www.roblox.com/asset/?id=6035067842";
["weekend"] = "http://www.roblox.com/asset/?id=6035078894";
["where_to_vote"] = "http://www.roblox.com/asset/?id=6035078913";
["biotech"] = "http://www.roblox.com/asset/?id=6035047385";
["report_off"] = "http://www.roblox.com/asset/?id=6035067830";
["clear"] = "http://www.roblox.com/asset/?id=6035047409";
["redo"] = "http://www.roblox.com/asset/?id=6035056483";
["link"] = "http://www.roblox.com/asset/?id=6035056475";
["drafts"] = "http://www.roblox.com/asset/?id=6035053297";
["push_pin"] = "http://www.roblox.com/asset/?id=6035056481";
["reply"] = "http://www.roblox.com/asset/?id=6035067844";
["undo"] = "http://www.roblox.com/asset/?id=6035078896";
["archive"] = "http://www.roblox.com/asset/?id=6035047379";
["add"] = "http://www.roblox.com/asset/?id=6035047377";
["insights"] = "http://www.roblox.com/asset/?id=6035067839";
["flag"] = "http://www.roblox.com/asset/?id=6035053279";
["save"] = "http://www.roblox.com/asset/?id=6035067857";
["text_format"] = "http://www.roblox.com/asset/?id=6035078890";
["content_cut"] = "http://www.roblox.com/asset/?id=6035053280";
["ballot"] = "http://www.roblox.com/asset/?id=6035047386";
["remove"] = "http://www.roblox.com/asset/?id=6035067836";
["calculate"] = "http://www.roblox.com/asset/?id=6035047384";
["report"] = "http://www.roblox.com/asset/?id=6035067826";
["markunread"] = "http://www.roblox.com/asset/?id=6035056476";
["delete_sweep"] = "http://www.roblox.com/asset/?id=6035053301";
["gesture"] = "http://www.roblox.com/asset/?id=6035053287";
["link_off"] = "http://www.roblox.com/asset/?id=6035056484";
["forward"] = "http://www.roblox.com/asset/?id=6035053298";
["reply_all"] = "http://www.roblox.com/asset/?id=6035067824";
["how_to_vote"] = "http://www.roblox.com/asset/?id=6035053295";
["square_foot"] = "http://www.roblox.com/asset/?id=6035078918";
["outlined_flag"] = "http://www.roblox.com/asset/?id=6035056486";
["add_circle"] = "http://www.roblox.com/asset/?id=6035047380";
["stacked_bar_chart"] = "http://www.roblox.com/asset/?id=6035078892";
["policy"] = "http://www.roblox.com/asset/?id=6035056512";
["backspace"] = "http://www.roblox.com/asset/?id=6035047397";
["sort"] = "http://www.roblox.com/asset/?id=6035078888";
["content_paste"] = "http://www.roblox.com/asset/?id=6035053285";
["low_priority"] = "http://www.roblox.com/asset/?id=6035056491";
["font_download"] = "http://www.roblox.com/asset/?id=6035053275";
["shield"] = "http://www.roblox.com/asset/?id=6035078889";
["waves"] = "http://www.roblox.com/asset/?id=6035078898";
["select_all"] = "http://www.roblox.com/asset/?id=6035067834";
["dynamic_feed"] = "http://www.roblox.com/asset/?id=6035053289";
["mail"] = "http://www.roblox.com/asset/?id=6035056477";
["amp_stories"] = "http://www.roblox.com/asset/?id=6035047382";
["filter_list"] = "http://www.roblox.com/asset/?id=6035053294";
["send"] = "http://www.roblox.com/asset/?id=6035067832";
["create"] = "http://www.roblox.com/asset/?id=6035053304";
["stream"] = "http://www.roblox.com/asset/?id=6035078897";
["next_week"] = "http://www.roblox.com/asset/?id=6035067835";
["inbox"] = "http://www.roblox.com/asset/?id=6035067831";
["add_link"] = "http://www.roblox.com/asset/?id=6035047374";
["content_copy"] = "http://www.roblox.com/asset/?id=6035053278";
["remove_circle"] = "http://www.roblox.com/asset/?id=6035067837";
["add_circle_outline"] = "http://www.roblox.com/asset/?id=6035047391";
["block"] = "http://www.roblox.com/asset/?id=6035047387";
["tag"] = "http://www.roblox.com/asset/?id=6035078895";
};
["places"] = {
["beach_access"] = "http://www.roblox.com/asset/?id=6035107923";
["stroller"] = "http://www.roblox.com/asset/?id=6035161535";
["family_restroom"] = "http://www.roblox.com/asset/?id=6035121916";
["corporate_fare"] = "http://www.roblox.com/asset/?id=6035121908";
["no_meeting_room"] = "http://www.roblox.com/asset/?id=6035153649";
["do_not_touch"] = "http://www.roblox.com/asset/?id=6035121915";
["ac_unit"] = "http://www.roblox.com/asset/?id=6035107929";
["business_center"] = "http://www.roblox.com/asset/?id=6035107933";
["spa"] = "http://www.roblox.com/asset/?id=6035153639";
["no_flash"] = "http://www.roblox.com/asset/?id=6035145424";
["no_cell"] = "http://www.roblox.com/asset/?id=6035145376";
["room_service"] = "http://www.roblox.com/asset/?id=6035153648";
["tapas"] = "http://www.roblox.com/asset/?id=6035161533";
["microwave"] = "http://www.roblox.com/asset/?id=6035145367";
["meeting_room"] = "http://www.roblox.com/asset/?id=6035145361";
["wash"] = "http://www.roblox.com/asset/?id=6035161540";
["escalator"] = "http://www.roblox.com/asset/?id=6035121939";
["house_siding"] = "http://www.roblox.com/asset/?id=6035145393";
["food_bank"] = "http://www.roblox.com/asset/?id=6035121921";
["foundation"] = "http://www.roblox.com/asset/?id=6035121918";
["elevator"] = "http://www.roblox.com/asset/?id=6035121912";
["room_preferences"] = "http://www.roblox.com/asset/?id=6035153642";
["do_not_step"] = "http://www.roblox.com/asset/?id=6035121910";
["free_breakfast"] = "http://www.roblox.com/asset/?id=6035145363";
["house"] = "http://www.roblox.com/asset/?id=6035145364";
["child_care"] = "http://www.roblox.com/asset/?id=6035107927";
["night_shelter"] = "http://www.roblox.com/asset/?id=6035145378";
["child_friendly"] = "http://www.roblox.com/asset/?id=6035121942";
["checkroom"] = "http://www.roblox.com/asset/?id=6035107931";
["hot_tub"] = "http://www.roblox.com/asset/?id=6035145382";
["dry"] = "http://www.roblox.com/asset/?id=6035121909";
["charging_station"] = "http://www.roblox.com/asset/?id=6035107925";
["all_inclusive"] = "http://www.roblox.com/asset/?id=6035107920";
["bento"] = "http://www.roblox.com/asset/?id=6035107924";
["no_backpack"] = "http://www.roblox.com/asset/?id=6035145368";
["storefront"] = "http://www.roblox.com/asset/?id=6035161534";
["no_food"] = "http://www.roblox.com/asset/?id=6035145372";
["backpack"] = "http://www.roblox.com/asset/?id=6035107928";
["stairs"] = "http://www.roblox.com/asset/?id=6035153637";
["carpenter"] = "http://www.roblox.com/asset/?id=6035107955";
["no_stroller"] = "http://www.roblox.com/asset/?id=6035153661";
["roofing"] = "http://www.roblox.com/asset/?id=6035153656";
["umbrella"] = "http://www.roblox.com/asset/?id=6035161550";
["sports_bar"] = "http://www.roblox.com/asset/?id=6035153638";
["apartment"] = "http://www.roblox.com/asset/?id=6035107922";
["smoke_free"] = "http://www.roblox.com/asset/?id=6035153647";
["pool"] = "http://www.roblox.com/asset/?id=6035153655";
["bathtub"] = "http://www.roblox.com/asset/?id=6035107939";
["no_drinks"] = "http://www.roblox.com/asset/?id=6035145390";
["escalator_warning"] = "http://www.roblox.com/asset/?id=6035121930";
["wheelchair_pickup"] = "http://www.roblox.com/asset/?id=6035161536";
["smoking_rooms"] = "http://www.roblox.com/asset/?id=6035153636";
["rice_bowl"] = "http://www.roblox.com/asset/?id=6035153662";
["tty"] = "http://www.roblox.com/asset/?id=6035161541";
["no_photography"] = "http://www.roblox.com/asset/?id=6035153664";
["casino"] = "http://www.roblox.com/asset/?id=6035107936";
["fence"] = "http://www.roblox.com/asset/?id=6035121923";
["grass"] = "http://www.roblox.com/asset/?id=6035145359";
["countertops"] = "http://www.roblox.com/asset/?id=6035121914";
["kitchen"] = "http://www.roblox.com/asset/?id=6035145362";
["golf_course"] = "http://www.roblox.com/asset/?id=6035145423";
["soap"] = "http://www.roblox.com/asset/?id=6035153645";
["water_damage"] = "http://www.roblox.com/asset/?id=6035161563";
["airport_shuttle"] = "http://www.roblox.com/asset/?id=6035107921";
["fitness_center"] = "http://www.roblox.com/asset/?id=6035121907";
["baby_changing_station"] = "http://www.roblox.com/asset/?id=6035107930";
["fire_extinguisher"] = "http://www.roblox.com/asset/?id=6035121913";
};
};
}
|
---
-- Filter a complex or real valued signal with a single-pole high-pass IIR
-- filter.
--
-- $$ H(s) = \frac{\tau s}{\tau s + 1} $$
--
-- $$ H(z) = \frac{2\tau f_s}{1 + 2\tau f_s} \frac{1 - z^{-1}}{1 + (\frac{1 - 2\tau f_s}{1 + 2\tau f_s}) z^{-1}} $$
--
-- $$ y[n] = \frac{2\tau f_s}{1 + 2\tau f_s} \; x[n] + \frac{2\tau f_s}{1 + 2\tau f_s} \; x[n-1] - \frac{1 - 2\tau f_s}{1 + 2\tau f_s} \; y[n-1] $$
--
-- @category Filtering
-- @block SinglepoleHighpassFilterBlock
-- @tparam number cutoff Cutoff frequency in Hz
--
-- @signature in:Float32 > out:Float32
-- @signature in:ComplexFloat32 > out:ComplexFloat32
--
-- @usage
-- -- Single-pole highpass filter with 100 Hz cutoff
-- local hpf = radio.SinglepoleHighpassFilterBlock(100)
local block = require('radio.core.block')
local types = require('radio.types')
local IIRFilterBlock = require('radio.blocks.signal.iirfilter')
local SinglepoleHighpassFilterBlock = block.factory("SinglepoleHighpassFilterBlock", IIRFilterBlock)
function SinglepoleHighpassFilterBlock:instantiate(cutoff)
self.cutoff = assert(cutoff, "Missing argument #1 (cutoff)")
IIRFilterBlock.instantiate(self, types.Float32.vector(2), types.Float32.vector(2))
end
--
-- Single-pole high-pass filter transfer function:
-- H(s) = (tau*s)/(tau*s + 1)
--
-- Bilinear transformed transfer function:
-- H(z) = (2*tau/T)/(1 + 2*tau/T) * (1 - z^-1) / (1 + ((1 - 2*tau/T)/(1 + 2*tau/T))*z^-1)
--
-- Difference equation:
-- y[n] + (1 - 2*tau/T)/(1 + 2*tau/T) y[n-1] = (2*tau/T)/(1 + 2*tau/T) x[n] - (2*tau/T)/(1 + 2*tau/T) x[n-1]
-- y[n] = (2*tau/T)/(1 + 2*tau/T) x[n] - (2*tau/T)/(1 + 2*tau/T) x[n-1] - (1 - 2*tau/T)/(1 + 2*tau/T) y[n-1]
--
-- Frequency warping:
-- omega = 1/tau
-- omega_warped = (2/T) tan(omega * (T/2))
-- tau_warped = 1/omega_warped
-- tau_warped = 1/(2/T * tan(T/(2*tau)))
--
-- b_taps = { (2*tau/T)/(1 + 2*tau/T), -(2*tau/T)/(1 + 2*tau/T) }
-- a_taps = { 1, ((1 - 2*tau/T)/(1 + 2*tau/T)) }
--
function SinglepoleHighpassFilterBlock:initialize()
-- Warp tau
local tau = 1/(2*math.pi*self.cutoff)
tau = 1/(2*self:get_rate()*math.tan(1/(2*self:get_rate()*tau)))
-- Populate taps
self.b_taps.data[0].value = (2*tau*self:get_rate())/(1 + 2*tau*self:get_rate())
self.b_taps.data[1].value = -(2*tau*self:get_rate())/(1 + 2*tau*self:get_rate())
self.a_taps.data[0].value = 1
self.a_taps.data[1].value = (1 - 2*tau*self:get_rate())/(1 + 2*tau*self:get_rate())
IIRFilterBlock.initialize(self)
end
return SinglepoleHighpassFilterBlock
|
-- this gets called starts when the level loads.
function start(song) -- arguments, the song name
print("modchart loaded!")
for i=0,3 do -- fade out the first 4 receptors (the ai receptors)
tweenPosXAngle(i, _G['defaultStrum'..i..'X'] + 725,getActorAngle(i) - 980, 0.6, 'setDefault')
end
for i = 4, 7 do -- go to the center
tweenPosXAngle(i, _G['defaultStrum'..i..'X'] - 625,getActorAngle(i) + 880, 0.6, 'setDefault')
end
end
function setDefault(id)
_G['defaultStrum'..id..'X'] = getActorX(id)
end
-- this gets called every frame
function update(elapsed) -- arguments, how long it took to complete a frame
local currentBeat = (songPos / 2000)*(bpm / 180)
if distortion then
for i=0, 7 do -- HOW IT WORKS!!! (['defaultStrum'..i..'Y'] - (INTENSITY) * (HOW FAST IT WILL DO STRUM) * (STRUMPOSITION)
setActorY(_G['defaultStrum'..i..'Y'] - 32 * math.cos((currentBeat + i*5) * math.pi) + 10,i)
setActorX(_G['defaultStrum'..i..'X'] - 20 * math.sin((currentBeat + i*0.25) * math.pi),i)
setHudPosition(6 * math.sin((currentBeat * 15 + i*0.25) * math.pi), 6 * math.cos((currentBeat * 12 + i*0.25) * math.pi))
end
for i=0,3 do -- fade out the first 4 receptors (the ai receptors)
end
for i = 4, 7 do -- go to the center
end
end
end
-- this gets called every beat
function beatHit(beat) -- arguments, the current beat of the song
end
-- this gets called every step
function stepHit(step) -- arguments, the current step of the song (4 steps are in a beat)
if step == 1 then
distortion = true
end
if step == 2560 then
distortion = false
end
end
|
---@return Player
function Player(...) end
---@class Player
local cls = Player()
---@return any
function cls:GetPing(...) end
---@return any
function cls:GetCameraLocation(...) end
---@return any
function cls:Unsubscribe(...) end
---@return any
function cls:GetAccountID(...) end
---@return any
function cls:Super(...) end
---@return any
function cls:IsValid(...) end
---@return any
function cls:SetCameraArmLength(...) end
---@return any
function cls:GetType(...) end
---@return any
function cls:ResetCamera(...) end
---@return any
function cls:RotateCameraTo(...) end
---@return any
function cls:GetControlledCharacter(...) end
---@return any
function cls:GetVOIPSetting(...) end
---@return any
function cls:GetSteamID(...) end
---@return any
function cls:Destroy(...) end
---@return any
function cls:SetCameraSocketOffset(...) end
---@return any
function cls:GetID(...) end
---@return any
function cls:TranslateCameraTo(...) end
---@return any
function cls:GetValue(...) end
---@return any
function cls:IsLocalPlayer(...) end
---@return any
function cls:Spectate(...) end
---@return any
function cls:GetCameraRotation(...) end
---@return any
function cls:SetVOIPVolume(...) end
---@return any
function cls:SetValue(...) end
---@return any
function cls:SetVOIPSetting(...) end
---@return any
function cls:GetAccountName(...) end
---@return any
function cls:GetName(...) end
---@return any
function cls:Subscribe(...) end
---@return any
function cls:GetVOIPChannel(...) end
---@return any
function cls:SetCameraLocation(...) end
---@return any
function cls:AttachCameraTo(...) end
---@return any
function cls:SetCameraRotation(...) end
|
local ib = require ('util.img_button')
local pi = require ('util.panel_item')
local beautiful = require ('beautiful')
local awful = require ('awful')
local dpi = beautiful.xresources.apply_dpi
-- local wibox = require ('wibox')
local next_tag = ib {
image = 'tag-next.svg',
recolor = true,
hide_tooltip = true,
buttons = awful.button( {}, 1, function()
awful.tag.viewnext()
end)
}
return pi {
widget = next_tag,
-- shape = gears.shape.rounded_rect,
bg = '#00000000',
-- margins = 0,
margins = dpi(6)
}
|
local status_ok, toggleterm = pcall(require, "toggleterm")
if not status_ok then
vim.notify("toggleterm not found")
return
end
toggleterm.setup {
-- size can be a number or function which is passed the current terminal
size = function(term)
if term.direction == "horizontal" then
return 15
elseif term.direction == "vertical" then
return vim.o.columns * 0.4
end
end,
open_mapping = [[<c-\>]],
--on_open = fun(t: Terminal), -- function to run when the terminal opens
--on_close = fun(t: Terminal), -- function to run when the terminal closes
hide_numbers = true, -- hide the number column in toggleterm buffers
shade_filetypes = {},
shade_terminals = true,
shading_factor = '3', -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light
start_in_insert = true,
insert_mappings = true, -- whether or not the open mapping applies in insert mode
terminal_mappings = true, -- whether or not the open mapping applies in the opened terminals
persist_size = true,
direction = "float", --'vertical' | 'horizontal' | 'window' | 'float',
close_on_exit = true, -- close the terminal window when the process exits
shell = vim.o.shell, -- change the default shell
-- This field is only relevant if direction is set to 'float'
float_opts = {
-- The border key is *almost* the same as 'nvim_open_win'
-- see :h nvim_open_win for details on borders however
-- the 'curved' border is a custom border type
-- not natively supported but implemented in this plugin.
border = "curved", --'single' | 'double' | 'shadow' | 'curved' | ... other options supported by win open
--width = 100,
--height = 10,
winblend = 3,
highlights = {
border = "Normal",
background = "Normal",
}
}
}
function _G.set_terminal_keymaps()
local opts = {noremap = true}
-- only used when direction != "float"
-- vim.api.nvim_buf_set_keymap(0, 't', '<esc>', [[<C-\><C-n>]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', 'jk', [[<C-\><C-n>]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-h>', [[<C-\><C-n><C-W>h]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-j>', [[<C-\><C-n><C-W>j]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-k>', [[<C-\><C-n><C-W>k]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-l>', [[<C-\><C-n><C-W>l]], opts)
end
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
local Terminal = require("toggleterm.terminal").Terminal
local lazygit = Terminal:new({ cmd = "lazygit", hidden = true })
function _LAZYGIT_TOGGLE()
lazygit:toggle()
end
local node = Terminal:new({ cmd = "node", hidden = true })
function _NODE_TOGGLE()
node:toggle()
end
local ncdu = Terminal:new({ cmd = "ncdu", hidden = true })
function _NCDU_TOGGLE()
ncdu:toggle()
end
local htop = Terminal:new({ cmd = "htop", hidden = true })
function _HTOP_TOGGLE()
htop:toggle()
end
local python = Terminal:new({ cmd = "python", hidden = true })
function _PYTHON_TOGGLE()
python:toggle()
end
|
--------------------------------------------------------------------
--Env
--------------------------------------------------------------------
--[[
PROJECT ENVIRONMENT VARIABLES
* should be set by either editor or runtime launcher
]]
-- GII_VERSION_MAJOR = 0
-- GII_VERSION_MINOR = 1
-- GII_VERSION_REV = 0
-- GII_PROJECT_ASSET_PATH = 'game/asset'
-- GII_PROJECT_SCRIPT_LIB_PATH = 'game/lib'
-- GII_PROJECT_ENV_LIB_PATH = 'env/lib'
--------------------------------------------------------------------
--Setup package path
--------------------------------------------------------------------
package.path = package.path
.. ( ';' .. GII_PROJECT_SCRIPT_LIB_PATH .. '/?.lua' )
.. ( ';' .. GII_PROJECT_SCRIPT_LIB_PATH .. '/?/init.lua' )
.. ( ';' .. GII_PROJECT_ENV_LUA_PATH .. '/?.lua' )
.. ( ';' .. GII_PROJECT_ENV_LUA_PATH .. '/?/init.lua' )
.. ( ';' .. GII_LIB_LUA_PATH .. '/?.lua' )
.. ( ';' .. GII_LIB_LUA_PATH .. '/?/init.lua' )
--------------------------------------------------------------------
function doRuntimeScript(name)
local path = GII_DATA_PATH..'/lua/'..name
return dofile(path)
end
--------------------------------------------------------------------
function lupaErrFunc( msg )
return msg .. '\n' ..debug.traceback(2)
end
_collectgarbage = collectgarbage --keep a copy of original collectgarbage
python.seterrfunc( lupaErrFunc ) --lupa err func
--------------------------------------------------------------------
require 'gii'
--------------------------------------------------------------------
--DEFAULT RUNTIME MODULES
--------------------------------------------------------------------
require 'gamelib'
GameModule.addGameModulePath( GII_PROJECT_ASSET_PATH .. '/?.lua' )
GameModule.addGameModulePath( GII_PROJECT_ASSET_PATH .. '/?/init.lua' )
|
love.graphics.setDefaultFilter("nearest", "nearest")
local Cpml = require("lib.cpml")
local Concord = require("lib.concord").init({
useEvents = true,
})
local C = require("src.components")
local S = require("src.systems")
local CubeMesh = require("cubeMesh")
local Game = Concord.instance()
local controller = S.controller()
local cameraController = S.cameraController()
Game:addSystem(controller, "update")
Game:addSystem(controller, "keypressed")
Game:addSystem(controller, "mousemoved")
Game:addSystem(cameraController, "draw")
Game:addSystem(S.meshRenderer(), "renderscene", "draw")
local Camera = Concord.entity()
Camera:give(C.transform)
Camera:give(C.camera)
Camera:give(C.controllable)
Game:addEntity(Camera)
for x = 1, 20 do
for z = 1, 20 do
--for z = 1, 16 do
if love.math.random() < 0.7 then
local cube = Concord.entity()
cube:give(C.transform, Cpml.vec3(x - 10, x + z, 10 + z))
cube:give(C.mesh, CubeMesh)
Game:addEntity(cube)
end
--end
end
end
Concord.addInstance(Game)
|
local a = require("plenary.async_lib")
local formatting = a.async_void(function(bufnr)
vim.lsp.buf.formatting()
a.await(a.scheduler())
vim.api.nvim_command(bufnr .. "bufdo! silent noautocmd update")
end)
return formatting
|
local Camera = require('camera')
local config = require('config.cfg')
local obj = assets.loadModel("assets/models/sponza.wmdl")
if obj == nil then
print("Unable to load model.")
return
end
assets.loadMaterials(obj)
engine.setClearColor(1, 1, 1, 1)
local cam = Camera.new(Vector3.new(-2.5, 0, 0))
local speed = 1
local fastSpeed = 2
engine.tick:bind(function(dt)
local moveSpeed = speed
if input.getKey(input.key.LeftShift) == input.action.Press then
moveSpeed = fastSpeed
end
if input.getKey(input.key.W) == input.action.Press then
cam:moveForward(moveSpeed * dt)
end
if input.getKey(input.key.S) == input.action.Press then
cam:moveForward(-moveSpeed * dt)
end
if input.getKey(input.key.A) == input.action.Press then
cam:moveRight(-moveSpeed * dt)
end
if input.getKey(input.key.D) == input.action.Press then
cam:moveRight(moveSpeed * dt)
end
if input.getKey(input.key.Q) == input.action.Press then
cam:moveUp(-moveSpeed * dt)
end
if input.getKey(input.key.E) == input.action.Press then
cam:moveUp(moveSpeed * dt)
end
local params = Material.new()
params:setMatrix4("transform", math.scale{0.002, 0.002, 0.002})
cam:use(params)
obj:draw(params)
end)
engine.quit:bind(function()
print("Shutdown at " .. engine.getTime())
end)
input.event.key:bind(function(key, action)
if key == input.key.Escape and action == input.action.Release then
engine.stop()
end
end)
local lastX = 0
local lastY = 0
local firstMouse = true
input.setCursorMode(input.cursorMode.Disabled)
input.event.cursorPos:bind(function(x, y)
if firstMouse then
firstMouse = false
lastX = x
lastY = y
end
local xOffset = (x - lastX) * config.input.mouseSensitivity
local yOffset = (y - lastY) * config.input.mouseSensitivity
cam:addRotation(Vector3.new{0, xOffset, yOffset})
lastX = x
lastY = y
end)
|
fx_version 'cerulean'
games { 'gta5' }
server_only 'yes'
--[[
THIS SCRIPT WAS MADE BY PITERMCFLEBOR
DON'T CHANGE THE SCRIPT NAME OR REMOVE THIS SIGN
Remove Github API Limitation?
https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/creating-a-personal-access-token#creating-a-token
Write your token inside '.authkey' file!
]]
auto 'no' -- enable auto updates?
server_scripts {
'utils.lua',
'git.lua',
'checker.lua',
}
pmc_updates 'yes'
pmc_github 'https://github.com/pitermcflebor/pmc-updater'
pmc_version 'v1.1'
|
util.AddNetworkString("CW20_DEPLOYANGLE")
util.AddNetworkString("CW20_DEPLOY")
util.AddNetworkString("CW20_THROWGRENADE")
util.AddNetworkString("CW20_GLOBALDELAY")
util.AddNetworkString("CW20_FORCESTATE")
util.AddNetworkString("CW20_M203ON")
util.AddNetworkString("CW20_M203OFF")
util.AddNetworkString("CW20_M203OFF_RELOAD")
util.AddNetworkString("CW20_FIREM203")
util.AddNetworkString("CW20_RELOADM203")
util.AddNetworkString("CW20_GRENADETYPE")
util.AddNetworkString("CW20_M203CHAMBER")
|
-- Slam a unit into the ground
-- https://gist.github.com/IndigoFenix/8543557
args={...}
local unit=dfhack.gui.getSelectedUnit()
if unit == nil then
local unit = df.unit.find(tonumber(args[2]))
end
local strength=args[1]
if unit == nil then
print('No unit selected')
return
end
if strength == nil then
print('No argument for velocity found. Try inputting "slam 100000"')
return
end
if unit then
local l = df.global.world.proj_list
local lastlist=l
l=l.next
count = 0
while l do
count=count+1
if l.next==nil then
lastlist=l
end
l = l.next
end
unitTarget=unit
newlist = df.proj_list_link:new()
lastlist.next=newlist
newlist.prev=lastlist
proj = df.proj_unitst:new()
newlist.item=proj
proj.link=newlist
proj.id=df.global.proj_next_id
df.global.proj_next_id=df.global.proj_next_id+1
proj.unit=unitTarget
proj.origin_pos.x=unitTarget.pos.x
proj.origin_pos.y=unitTarget.pos.y
proj.origin_pos.z=unitTarget.pos.z
proj.prev_pos.x=unitTarget.pos.x
proj.prev_pos.y=unitTarget.pos.y
proj.prev_pos.z=unitTarget.pos.z
proj.cur_pos.x=unitTarget.pos.x
proj.cur_pos.y=unitTarget.pos.y
proj.cur_pos.z=unitTarget.pos.z
proj.flags.no_impact_destroy=true
proj.flags.piercing=true
proj.flags.parabolic=true
proj.flags.unk9=true
proj.speed_x=0
proj.speed_y=0
proj.speed_z=strength
unitoccupancy = dfhack.maps.getTileBlock(unitTarget.pos).occupancy[unitTarget.pos.x%16][unitTarget.pos.y%16]
if not unitTarget.flags1.on_ground then
unitoccupancy.unit = false
else
unitoccupancy.unit_grounded = false
end
unitTarget.flags1.projectile=true
unitTarget.flags1.on_ground=false
end
|
--[[--------------------------------------------------------------------------
--
-- File: UAStalktheLantern.Ui.RoundLoop.lua
-- Copyright (c) Ubisoft Entertainment. All rights reserved.
--
-- Project: Ubitoys.Tag
-- Date: August 03, 2010
--
------------------------------------------------------------------------------
--
-- Description: ...
--
----------------------------------------------------------------------------]]
--[[ Dependencies ----------------------------------------------------------]]
require "UTActivity.Ui.RoundLoop"
require "Ui/UIAFP"
require "Ui/UILeaderboard"
--[[ Class -----------------------------------------------------------------]]
UAStalktheLantern.Ui = UAStalktheLantern.Ui or {}
UAStalktheLantern.Ui.RoundLoop = UTClass(UIMenuPage)
-- default
UAStalktheLantern.Ui.RoundLoop.profiles = UAStalktheLantern.Ui.RoundLoop.profiles or {
[1] = { icon = "base:texture/ui/Leaderboard_Stalker.tga", name = l"oth114", teamColor = "red", color = { 0.85, 0.15, 0.04 },
details = "base:texture/ui/Detail_LineRedTeam.tga", detailsHeader = "base:texture/ui/Detail_HeaderRed.tga" },
[2] = { icon = "base:texture/ui/Leaderboard_Defender.tga", name = l"oth113", teamColor = "blue", color = { 0.05, 0.53, 0.84 },
details = "base:texture/ui/Detail_LineBlueTeam.tga", detailsHeader = "base:texture/ui/Detail_HeaderBlue.tga" },
[3] = { icon = "base:texture/ui/Leaderboard_Defender.tga", name = l"oth115", teamColor = "blue", color = { 0.05, 0.53, 0.84 },
details = "base:texture/ui/Detail_LineBlueTeam.tga", detailsHeader = "base:texture/ui/Detail_HeaderBlue.tga" },
}
-- __ctor -------------------------------------------------------------------
function UAStalktheLantern.Ui.RoundLoop:__ctor(...)
-- label
self.uiLabel = self:AddComponent(UILabel:New(), "uiLabel")
self.uiLabel.fontColor = UIComponent.colors.black
self.uiLabel.rectangle = { 300, 0, 700, 80 }
------------------------------------------------
-- AFP TEST
------------------------------------------------
activity.uiAFP = self:AddComponent(UIAFP:New(), "uiAFP")
activity.uiAFP:MoveTo(20, 40)
------------------------------------------------
-- create a team for stalkers
------------------------------------------------
activity.match.challengers = {}
local defenders = UTTeam:New()
defenders.index = 1
defenders.profile = self.profiles[2]
defenders.data.heap.score = 1
table.insert(activity.match.challengers, defenders)
local stalkers = UTTeam:New()
stalkers.index = 2
stalkers.profile = self.profiles[1]
stalkers.data.heap.score = 0
table.insert(activity.match.challengers, stalkers)
for _, player in ipairs(activity.players) do
if (player.defender) then
table.insert(defenders.players, player)
player.team = defenders
else
table.insert(stalkers.players, player)
player.team = stalkers
end
end
activity.teams = activity.match.challengers
if (#defenders.players > 1) then
defenders.profile = self.profiles[3]
end
------------------------------------------------
-- LEADERBOARD DEFENDERS
------------------------------------------------
self.uiLeaderboard = self:AddComponent(UILeaderboard:New(), "uiLeaderboard")
self.uiLeaderboard:MoveTo(550, 40)
-- key / icon / position / justification
if (activity.scoringField) then
for i, field in ipairs(activity.scoringField) do
self.uiLeaderboard:RegisterField(unpack(field))
end
end
self.uiLeaderboard.showRanking = false
self.uiLeaderboard:Build(activity.match.challengers, "heap")
end
-- __dtor -------------------------------------------------------------------
function UAStalktheLantern.Ui.RoundLoop:__dtor()
end
-- Update -------------------------------------------------------------------
function UAStalktheLantern.Ui.RoundLoop:Update()
end
|
--[[
RedWeb browser
by DvgCraft
Requirements:
- Wireless modem
- Advanced computer
- IDS and webserver
VERSION 0.9.14.3
DATE 31-05-2016
Protocols:
- app://
- web://
- search://
]]--
-- Variables
local path = "/.DvgFiles/data/RedWeb"
local running = true
local c = {
mainbg = colors.red,
maintxt = colors.white,
errortxt = colors.red,
inputbg = colors.white,
inputtxt = colors.black,
sinputtxt = colors.lightGray,
}
local shades = {
[1] = colors.pink,
[2] = colors.white,
}
local errors = {}
local protocol = ""
local url = ""
local goto = ""
-- Functions
local function receive( sProtocolFilter, nTimeout ) -- From rednet API
-- The parameters used to be ( nTimeout ), detect this case for backwards compatibility
if type(sProtocolFilter) == "number" and nTimeout == nil then
sProtocolFilter, nTimeout = nil, sProtocolFilter
end
-- Start the timer
local timer = nil
local sFilter = nil
if nTimeout then
timer = os.startTimer( nTimeout )
sFilter = nil
else
sFilter = "rednet_message"
end
-- Wait for events
while true do
local sEvent, p1, p2, p3 = os.pullEvent( sFilter )
if sEvent == "rednet_message" then
-- Return the first matching rednet_message
local nSenderID, message, sProtocol = p1, p2, p3
if sProtocolFilter == nil or sProtocol == sProtocolFilter then
os.cancelTimer( timer )
return nSenderID, message, sProtocol
end
elseif sEvent == "timer" then
-- Return nil if we timeout
if p1 == timer then
return nil
end
end
end
end
function mainInterface()
term.setTextColor( c.maintxt )
dvg.bg( c.mainbg )
dvg.center( "RedWeb browser", 5 )
dvg.center( "EXIT SETTINGS", 16 )
dvg.center( "While in webpage view, press "..rwSettings.exitKey.val.." to exit", 19 )
term.setBackgroundColor( c.inputbg )
dvg.center( " ", 9 )
term.setCursorPos( 7,9 )
term.setBackgroundColor( c.inputbg )
term.setTextColor( c.sinputtxt )
write( protocol ~= "" and protocol.."://" or "" )
term.setTextColor( c.inputtxt )
write( url ~= "" and url or "" )
term.setTextColor( c.errortxt )
for i = 1, math.min( #errors, 3 ) do
term.setBackgroundColor( shades[ errors[i].state ] )
dvg.center( " "..errors[i].txt.." ", 4-i )
end
end
function getInput()
local input = (protocol ~= "" and protocol.."://" or "").. (url ~= "" and url or "")
local oldInput = ""
local list = {}
local num = 0
while true do
term.setCursorPos( 7,9 )
term.setBackgroundColor( c.mainbg )
term.clearLine()
term.setBackgroundColor( c.inputbg )
dvg.center( " ", 9 )
term.setCursorPos( 7,9 )
write( input )
if input ~= "" and rwSettings.liveSearch.val then
if input ~= oldInput then
rednet.broadcast( input, "DVG_REDWEB_IDS_SEARCH_REQUEST" )
_, list = receive( "DVG_REDWEB_IDS_SEARCH_ANSWER", 0.1 )
end
term.setTextColor( c.sinputtxt )
for i = 1, 5 do
if list and list[i] then term.setBackgroundColor( c.inputbg ) else term.setBackgroundColor( c.mainbg ) end
dvg.center( dvg.fill( " "..(list[i] and list[i] or ""), 40 ), 9+i )
end
term.setTextColor( c.inputtxt )
elseif rwSettings.liveSearch.val then
term.setBackgroundColor( c.mainbg )
for i = 1, 5 do
dvg.center( string.rep(" ", 41), 9+i )
end
end -- End if input ~= ""
oldInput = input
term.setCursorBlink( true )
input, enterPressed, continue, event, param = dvg.read( input, "mouse_click" )
term.setCursorBlink( false )
if event == "timer" then
for i, v in ipairs( errors ) do
if v.timer == param[1] then
v.state = v.state - 1
if v.state > 0 then
v.timer = os.startTimer( 0.2 )
else
table.remove( errors, i )
end
break
end -- End if v.timer finished
end -- End for
end -- End if timer
if not continue then
os.queueEvent( event, unpack(param) )
return input, enterPressed
end
end -- End while true
end
function handleInput( input )
protocol, url = rw.separate( input, false )
webpage, success = rw.getWebpage( protocol, url )
if success then
term.setBackgroundColor( colors.white )
term.clear()
local goto, status = rw.doWebpage( webpage )
if status == false then
if #goto > 0 then
table.insert( errors, 1, { txt = goto, timer = os.startTimer(tonumber(rwSettings.errorTime.val)), state = 2 } )
end
return ""
else
return goto
end
else
if #webpage > 0 then
table.insert( errors, 1, { txt = webpage, timer = os.startTimer(tonumber(rwSettings.errorTime.val)), state = 2 } )
end
return ""
end -- End if success
end
-- Run
if dvg.version < "2.15.3" then
print( "Please update dvg API v"..dvg.version.." to at least v2.15.3" )
print( "Update now? y/n" )
input = read():lower()
if input == "y" then
shell.run( "/.DvgFiles/update dvg" )
end
os.reboot()
end
if not dvgapps then
print( "Dvgapps API required" )
print( "Install now? y/n" )
input = read():lower()
if input == "y" then
shell.run( "/.DvgFiles/update dvgapps" )
end
os.reboot()
end
local success, msg = dvg.openRednet()
if not success then error( msg ) end
local file = fs.open( path.."/settings.cfg", "r" ) -- Open settings and save in global var
_G["rwSettings"] = textutils.unserialize( file.readAll() )
file.close()
while running do
for i = #errors, 1, -1 do
if errors[i].state <= 0 then
table.remove( errors, i )
end
end
if goto and goto ~= "" then
goto = handleInput( goto )
else
mainInterface()
local event, button, x, y = os.pullEvent()
if event == "mouse_click" then
if y == 16 and x >= 18 and x <= 21 then
running = false
term.setBackgroundColor( colors.black )
term.clear()
term.setCursorPos( 1,1 )
elseif y == 16 and x >= 27 and x <= 34 then
shell.run( path.."/settings" )
local file = fs.open( path.."/settings.cfg", "r" ) -- Open settings and save in global var
_G["rwSettings"] = textutils.unserialize( file.readAll() )
file.close()
elseif y == 9 and x >= 6 and x <= 46 then
term.setCursorPos( 7,8 )
dvg.printColor( (protocol ~= "" and protocol.."://" or "") .. (url ~= "" and url or ""), c.sinputtxt )
term.setCursorPos( 7,8 )
term.setTextColor( c.inputtxt )
local input, enterPressed = getInput()
if enterPressed then
goto = handleInput( input )
end
end -- End if y
elseif event == "timer" then
for i, v in ipairs( errors ) do
if v.timer == button then
v.state = v.state - 1
if v.state > 0 then
v.timer = os.startTimer( 0.2 )
end
break
end -- End if v.timer finished
end -- End for
end -- End if event
end -- End if goto
end
|
--[[
This system has a general issue where the reset causes it to remove all of the NPCs. Because of other complications this
kills all of the current npcs, which triggers a bunch of things, like opening doors and finished objectives. Because of
performance, that is done over a few seconds. Therefore each system may have to wait 5-10 seconds before reseting so
the work doesn't get undone.
]]
local API_RE = require(script:GetCustomProperty("APIReliableEvents"))
local API_DS = require(script:GetCustomProperty("APIDifficultySystem"))
local DATA_GROUP = script:GetCustomProperty("DataGroup"):WaitForObject()
local END_DUNGEON_RESET_DELAY = 30.0
local resetTime = nil
local hasResetWhenEmpty = false
function ResetDungeon(delay)
if not resetTime then
resetTime = time() + delay
script:SetNetworkedCustomProperty("ResetTime", resetTime)
Task.Spawn(function()
while time() < resetTime do
Task.Wait()
end
API_RE.Broadcast("ResetDungeon")
Task.Wait() -- We need the checkpoint system to update the spawn points before we respawn players
for _, player in pairs(Game.GetPlayers()) do
player:Respawn()
end
Task.Wait(15.0) -- Some of the resetting behavior takes a while, and we don't want to overlap it
resetTime = nil
end)
end
end
function OnDungeonEnd()
ResetDungeon(END_DUNGEON_RESET_DELAY)
--[[if API_DS.GetDifficultyLevel() == 4 then
API_DS.AddBonusLevel()
end]]
end
function Tick(deltaTime)
local hasPlayers = #Game.GetPlayers() ~= 0
if hasPlayers then
-- Reset for next time its empty
hasResetWhenEmpty = false
else
if not hasResetWhenEmpty then
ResetDungeon(0.0)
hasResetWhenEmpty = true
if API_DS.GetDifficultyLevel() == 4 then
API_DS.ResetBonusLevel()
end
end
end
end
API_RE.Connect(DATA_GROUP:GetCustomProperty("DungeonEndEventName"), OnDungeonEnd)
|
--[[
J0sh the healer bot
]]
AddCSLuaFile()
ENT.Type = "anim"
ENT.DisableDuplicator = true
ENT.Model = Model( "models/combine_scanner.mdl" )
ENT.RenderGroup = RENDERGROUP_BOTH
if SERVER then
util.AddNetworkString("yawd.j0shbot")
else
ENT.AutomaticFrameAdvance = true
end
local healing_loop = Sound( "items/suitcharge1.wav" )
local status_end = Sound("npc/turret_floor/retract.wav")
local healing_start = Sound( "npc/scanner/combat_scan1.wav" )
function ENT:Initialize()
self:SetModel( self.Model )
if SERVER then
self:PhysicsInit( SOLID_OBB )
self:SetMoveType( MOVETYPE_NOCLIP )
self:SetCollisionGroup( COLLISION_GROUP_WEAPON )
if not IsValid(self.Owner) then
self.Owner = player.GetAll()[1]
end
local phys = self:GetPhysicsObject()
if ( IsValid( phys ) ) then
phys:EnableGravity(false)
phys:Wake()
end
self.m_acc = 0
end
end
function ENT:GetTarget()
return self.m_ETarget
end
function ENT:OnRemove()
self:StopSound( healing_loop )
local effectdata = EffectData()
effectdata:SetOrigin( self:GetPos() )
effectdata:SetMagnitude(1)
util.Effect( "cball_bounce", effectdata )
end
function ENT:OnStatusChanged()
if CLIENT then
self:StopSound(healing_loop)
if IsValid(self:GetTarget()) then
self:EmitSound(healing_start)
self:EmitSound(healing_loop, 70, nil, 0.25)
else
self:EmitSound(status_end)
end
self:SetRenderBounds(self:OBBMins(), self:OBBMaxs())
end
end
if CLIENT then
net.Receive("yawd.j0shbot", function()
local self = net.ReadEntity()
if not IsValid(self) then return end
if not net.ReadBool() then
self.m_ETarget = nil
else
self.m_ETarget = net.ReadEntity()
end
self:OnStatusChanged()
end)
local ratio = 1
function ENT:Think()
-- Animation
if not IsValid( self:GetTarget() ) then
self:SetSequence("idle")
self.m_nCykle = ((self.m_nCykle or 0) + FrameTime() * 0.5) % 1
self:SetCycle( self.m_nCykle )
else
self:SetSequence("flare")
self.m_nCykle = math.min(1, (self.m_nCykle or 0) + FrameTime() * 0.5)
self:SetCycle( self.m_nCykle)
end
self:NextThink(CurTime())
-- Handle angle
local t_angle
if self.m_ETarget and IsValid(self.m_ETarget) then
local t_pos = self.m_ETarget:GetPos() + self.m_ETarget:OBBCenter()
t_angle = (t_pos - self:GetPos()):Angle()
else
local v = self:GetAbsVelocity()
t_angle = v:Angle()
if t_angle.y == 0 then return true end
end
local y_n = (self:GetRenderAngles() or self:GetAngles()).y
local y_diff = math.AngleDifference(y_n, t_angle.y)
if math.abs(y_diff) < 1 then return true end
local n_y = y_n - math.Clamp(y_diff, -ratio, ratio)
self:SetRenderAngles(Angle(0,n_y,0))
self.m_FakeYaw = n_y
return true
end
else
function ENT:ClearTarget( )
self.m_ETarget = nil
net.Start("yawd.j0shbot")
net.WriteEntity(self)
net.WriteBool(false)
net.Broadcast()
self:OnStatusChanged()
print(self,"clear")
end
function ENT:SetHealingTarget( ply )
self.m_ETarget = ply
net.Start("yawd.j0shbot")
net.WriteEntity(self)
net.WriteBool( true )
net.WriteEntity( ply )
net.Broadcast()
self:OnStatusChanged()
end
function ENT:MoveTo( pos, min_dis )
pos.z = pos.z + math.sin(CurTime()) * 5
local dif = (pos - self:GetPos())
local le = math.max(0, dif:Length() - min_dis)
if le > 10 then
self.m_acc = math.min(self.m_acc + 0.25, le / 50, 1.5)
dif:GetNormal()
self:SetAbsVelocity( dif * self.m_acc )
elseif self:GetPos().z ~= pos.z then
self:SetAbsVelocity( Vector(0,0,pos.z - self:GetPos().z) )
else
self:SetAbsVelocity( Vector(0,0,0) )
end
end
function ENT:ScanPlayers() -- Locates the lowest player with health
local c,ply
for k,v in ipairs(player.GetAll()) do
if v:Health() >= v:GetMaxHealth() then continue end
if v:GetPos():DistToSqr(v:GetPos()) > 123336 then continue end
local tr = util.TraceLine( {
start = self:GetPos(),
endpos = v:GetPos() + v:OBBCenter(),
mask = MASK_SOLID_BRUSHONLY,
filter = self
} )
if tr.Hit and tr.Entity ~= v then continue end -- Behind a wall
if not c or c > v:Health() then
c = v:Health()
ply = v
end
end
return ply
end
function ENT:HealPlayer( ply )
local n_health = math.min( ply:GetMaxHealth(), ply:Health() + 10 )
ply:SetHealth( n_health )
end
function ENT:Think() -- Turn towards the target
if IsValid(self.Owner) and self.Owner:Alive() then
local z_target = self.Owner:GetPos() + Vector(0, 0, self.Owner:OBBMaxs().z + 20)
self:MoveTo( z_target, 100 )
self:NextThink( CurTime() )
else
self:Remove()
end
-- Heal players
if (self.m_Ps or 0) < CurTime() then
if not IsValid( self:GetTarget() ) then
local heal = self:ScanPlayers()
if heal then
self:SetHealingTarget( heal )
elseif self:GetTarget() then
self:ClearTarget()
end
self.m_Ps = CurTime() + 2
else
local hp_diff = self:GetTarget():GetMaxHealth() - self:GetTarget():Health()
if hp_diff <= 0 then
self:ClearTarget()
else
self:HealPlayer( self:GetTarget() )
end
self.m_Ps = CurTime() + 1
end
end
self:NextThink( CurTime() )
return true
end
end
local mat_light = Material("sprites/light_glow02_add")
local mat_beam = Material("sprites/tp_beam001")
function ENT:Draw()
self:DrawModel()
local y = EyeAngles().y + 270
cam.Start3D2D(self:GetPos() + Vector(0,0,30), Angle(0, y, 90), 0.5)
draw.DrawText("J0sh", "HUD.TargetID", 0, 0, color_white, TEXT_ALIGN_CENTER)
cam.End3D2D()
local target = self:GetTarget()
if IsValid(target) then
local r = math.rad(self.m_FakeYaw or self:GetAngles().y)
local pos1 = self:GetPos() + Vector(math.cos(r),math.sin(r),0) * 15
local pos2 = target:GetPos() + target:OBBCenter() * 1.3
local dis = pos1:Distance( pos2 ) / 128
local c = -CurTime() % 1
render.SetMaterial(mat_light)
render.DrawSprite(pos1, 32,32, Color(55,255,55))
render.DrawSprite(pos2, 64,64, Color(55,255,55))
render.SetMaterial(mat_beam)
render.StartBeam(2)
render.AddBeam(pos1, 10, c, Color(55,255,55))
render.AddBeam(pos2, 10, c + dis, Color(55,255,55))
render.EndBeam()
self:SetRenderBounds(self:OBBMins(), self:OBBMaxs(), Vector(dis, dis, dis) * 128)
end
end
|
-- triggers scripts when a syndrome is applied
--author expwnent
local usage = [====[
modtools/syndrome-trigger
=========================
Triggers dfhack commands when syndromes are applied to units.
Arguments::
-clear
clear all triggers
-syndrome name
specify the name of a syndrome
-command [ commandStrs ]
specify the command to be executed after infection
args
\\SYNDROME_ID
\\UNIT_ID
\\LOCATION
\\anything -> \anything
anything -> anything
]====]
local eventful = require 'plugins.eventful'
local utils = require 'utils'
onInfection = onInfection or {}
eventful.enableEvent(eventful.eventType.UNLOAD,1)
eventful.onUnload.syndromeTrigger = function()
onInfection = {}
end
eventful.enableEvent(eventful.eventType.SYNDROME,5) --requires iterating through every unit, so not cheap, but not slow either
local function processTrigger(args)
local command = {}
for i,arg in ipairs(args.command) do
if arg == '\\SYNDROME_ID' then
table.insert(command, '' .. args.syndrome.id)
elseif arg == '\\UNIT_ID' then
table.insert(command, '' .. args.unit.id)
elseif arg == '\\LOCATION' then
table.insert(command, '' .. args.unit.pos.x)
table.insert(command, '' .. args.unit.pos.y)
table.insert(command, '' .. args.unit.pos.z)
elseif string.sub(arg,1,1) == '\\' then
table.insert(command, string.sub(arg,2))
else
table.insert(command, arg)
end
end
dfhack.run_command(table.unpack(command))
end
eventful.onSyndrome.syndromeTrigger = function(unitId, syndromeIndex)
local unit = df.unit.find(unitId)
local unit_syndrome = unit.syndromes.active[syndromeIndex]
local syn_id = unit_syndrome['type']
if not onInfection[syn_id] then
return
end
local syndrome = df.syndrome.find(syn_id)
local table = {}
table.unit = unit
table.unit_syndrome = unit_syndrome
table.syndrome = syndrome
for _,args in ipairs(onInfection[syn_id] or {}) do
utils.fillTable(args,table)
processTrigger(args)
utils.unfillTable(args,table)
end
end
------------------------------
--argument processing
validArgs = validArgs or utils.invert({
'clear',
'help',
'command',
'syndrome',
'synclass'
})
local args = utils.processArgs({...}, validArgs)
if args.help then
print(usage)
return
end
if args.clear then
onInfection = {}
end
if not args.command then
return
end
if not args.syndrome
and not args.synclass then
error 'Select a syndrome.'
end
function processSyndrome(syndrome)
onInfection[syndrome] = onInfection[syndrome] or {}
table.insert(onInfection[syndrome], args)
end
local syndrome
for _,syn in ipairs(df.global.world.raws.syndromes.all) do
if args.syndrome then
if syn.syn_name == args.syndrome then
if syndrome then
error ('Multiple syndromes with same name: ' .. syn.syn_name)
end
syndrome = syn.id
processSyndrome(syn.id)
end
elseif args.synclass then
for _,synclass in ipairs(syn.syn_class) do
if synclass.value == args.synclass then
syndrome = syn.id
processSyndrome(syn.id)
end
end
end
end
if not syndrome then
if args.syndrome then
error ('Invalid syndrome name: '..args.syndrome..'')
elseif args.synclass then
error ('Invalid syndrome class: '..args.synclass..'')
end
end
|
local skynet = require "skynet"
local tinsert = table.insert
local smatch = string.match
local sgmatch = string.gmatch
local function timeout(ti)
if ti then
ti = tonumber(ti)
if ti <= 0 then
ti = nil
end
else
ti = TIMEOUT
end
return ti
end
local function list()
return skynet.call(".launcher", "lua", "LIST")
end
local function gc()
return skynet.call(".launcher", "lua", "GC", timeout(ti))
end
local mem_reg = "([0-9%.]+% [a-zA-Z]+)"
local name_args_reg = "%((.+)%)"
local function parse_mem(data)
local mem_info = {}
mem_info.mem = smatch(data, mem_reg)
mem_info.args = ""
local name_args = smatch(data, name_args_reg)
local index = 0
for value in sgmatch(name_args, "[^%s]+") do
index = index + 1
if index == 1 then
mem_info.type = value
elseif index == 2 then
mem_info.service = value
else
if index > 3 then
mem_info.args = mem_info.args .. " "
end
mem_info.args = mem_info.args .. value
end
end
return mem_info
end
local function mem()
local mem_list = skynet.call(".launcher", "lua", "MEM", timeout(ti))
local transfrom = {}
for addr, data in pairs(mem_list) do
local mem_info = parse_mem(data)
mem_info.addr = addr
tinsert(transfrom, mem_info)
end
return transfrom
end
local function stat()
local stat_list = skynet.call(".launcher", "lua", "STAT", timeout(ti))
local transfrom = {}
for addr, data in pairs(stat_list) do
tinsert(transfrom, {
addr = addr,
task = data.task,
message = data.message,
cpu = data.cpu,
mqlen = data.mqlen
})
end
return transfrom
end
local function service()
return skynet.call("SERVICE", "lua", "LIST")
end
local function infolist()
return skynet.call(".SystemMonitor", "lua", "getinfolist")
end
local function hostinfo()
return skynet.call(".SystemMonitor", "lua", "gethostinfo")
end
local function sendmessage()
skynet.error("print one line log")
end
local router = {
["/debug/list"] = list,
["/debug/gc"] = gc,
["/debug/mem"] = mem,
["/debug/stat"] = stat,
["/debug/service"] = service,
["/debug/infolist"] = infolist,
["/debug/hostinfo"] = hostinfo,
["/debug/sendmessage"] = sendmessage
}
return router
|
function jtorch._saveSpatialConvolutionMMNode(node, ofile)
-- The layout is as follows:
-- 1. filter width (int)
-- 2. filter height (int)
-- 3. filter input features (int)
-- 4. filter output features (int)
-- 5. padding
-- 6. filter weights (float array)
-- 7. filter Biases (float)
ofile:writeInt(node.kW)
ofile:writeInt(node.kH)
ofile:writeInt(node.nInputPlane)
ofile:writeInt(node.nOutputPlane)
if (node.padding) then
-- Old version
ofile:writeInt(node.padding)
ofile:writeInt(node.padding)
else
ofile:writeInt(node.padW)
ofile:writeInt(node.padH)
end
local fanin = node.nInputPlane
assert(node.weight:dim() == 2, 'weight tensor is not 2D!')
assert(node.weight:size(2) == (node.nInputPlane * node.kH * node.kW),
'bad weight tensor size!')
-- Resize to 4D
node.weight:resize(node.nOutputPlane, node.nInputPlane, node.kH, node.kW)
jtorch._saveFloatTensorSafe(ofile, node.weight)
-- Now Resize back to 2D
node.weight:resize(node.nOutputPlane, node.nInputPlane * node.kH * node.kW)
assert(node.bias:dim() == 1, 'bias vector is not 1D!')
jtorch._saveFloatTensorSafe(ofile, node.bias)
end
|
LANGUAGE = "c"
ML_PARAM_LIST_COUNT_THRESHOLD = 1
ML_SPECIFIER_MODIFIER_LIST = true
INTRO_FILE = "page_index.rst"
CREF_DB = true
|
--- Speech to text transcription handler, Watson Speech to Text API.
--
-- Uses Watson's Speech to Text service. The service requires a valid developer
-- account and API key, see
-- [here](https://cloud.ibm.com/catalog/services/speech-to-text) for more information.
--
-- @module speech_to_text_watson_handler
-- @author Chad Phillips
-- @copyright 2011-2021 Chad Phillips
require "jester.support.table"
require "jester.modules.speech_to_text.support"
local core = require "jester.core"
core.bootstrap()
local LOG_PREFIX = "JESTER::MODULE::SPEECH_TO_TEXT::WATSON"
local DEFAULT_PARAMS = {
retries = 3,
retry_wait_seconds = 60,
query_parameters = {
},
}
local _M = {}
local https = require 'ssl.https'
local ltn12 = require("ltn12")
local cjson = require("cjson")
local function process_response(self, response, status_code, status_description)
local response_string = table.concat(response)
if status_code == 200 then
self.log.debug("JSON response string '%s'", response_string)
return true, response_string
else
self.log.err("Request failed, status %s: description: %s, response: %s", status_code, status_description, response_string)
return false, status_description
end
end
local function request(self, url, attributes)
local request_handler = self.params.request_handler or https
local response = {}
local body, status_code, headers, status_description = request_handler.request({
method = "POST",
headers = {
["content-length"] = attributes.content_length,
["content-type"] = attributes.content_type,
["accept"] = "application/json",
},
url = url,
sink = ltn12.sink.table(response),
source = ltn12.source.file(attributes.file),
})
return process_response(self, response, status_code, status_description)
end
local function build_and_execute_request(self, attributes, query_parameters)
local service_uri = self.params.service_uri:gsub("https?://", "")
local query_string = table.stringify(query_parameters)
local url = string.format("https://apikey:%s@%s/v1/recognize?%s", self.params.api_key, service_uri, query_string)
self.log.debug("Got request to transcribe file '%s', using request URI '%s'", attributes.path, url)
return request(self, url, attributes)
end
local function parse(self, response)
local transcriptions = {}
local data = cjson.decode(response)
for k, chunk in ipairs(data.results) do
transcriptions[k] = {}
transcriptions[k].text = chunk.alternatives[1].transcript
transcriptions[k].confidence = chunk.alternatives[1].confidence
end
return transcriptions
end
local function check_params(params, file_params)
if params.api_key and params.service_uri and file_params.path then
params = stt_set_start_end_timestamps(params)
return true, params
else
return false, "ERROR: Missing API key, service URI, or filepath"
end
end
local function assemble_transcriptions_to_text(self, confidence_sum, text_parts, data, next_i)
local i, part = next(data, next_i)
if i then
confidence_sum = confidence_sum + part.confidence
table.insert(text_parts, part.text)
return assemble_transcriptions_to_text(self, confidence_sum, text_parts, data, i)
else
local confidence = confidence_sum == 0 and 0 or (confidence_sum / #data * 100)
local text = table.concat(text_parts, "\n\n")
return confidence, text
end
end
--- Format transcription data to plain text.
--
-- @param self
-- @tab data
-- A table of transcription data as returned by @{parse_transcriptions}.
-- @treturn number confidence
-- Number from zero to one hundred, representing the average confidence of all
-- transcribed parts.
-- @treturn string text
-- Concatenated transcription.
-- @usage
-- confidence, text = transcriptions_to_text(data)
function _M:transcriptions_to_text(data)
local confidence_sum = 0
local text_parts = {}
local confidence, text = assemble_transcriptions_to_text(self, confidence_sum, text_parts, data)
self.log.debug("Confidence in transcription: %.2f%%\n", confidence)
self.log.debug("TEXT: \n\n%s", text)
return confidence, text
end
--- Parse a response from a successful API call.
--
-- @param self
-- @string response
-- The response from the API call.
-- @treturn bool success
-- Indicates if operation succeeded.
-- @return data
-- Table of transcriptions on success, error message on fail.
-- @usage
-- success, data = parse_transcriptions(response)
function _M:parse_transcriptions(response)
success, data = pcall(parse, self, response)
return success, data
end
--- Make a request to the Watson Speech to Text API to transcribe an audio file.
--
-- @param self
-- @param file_params
-- Table of file parameters, as passed to @{speech_to_text_support.load_file_attributes}.
-- @tab query_parameters
-- Optional. Query parameters to pass to the API request.
-- @treturn bool success
-- Indicates if operation succeeded.
-- @treturn string response
-- Contents of response on success, error message on fail.
-- @usage
-- local file_params = {
-- path = "/tmp/myfile.wav",
-- }
-- success, response = handler:make_request(file_params)
function _M:make_request(file_params, query_parameters)
query_parameters = query_parameters and query_parameters or {}
query_parameters = table.merge(self.params.query_parameters, query_parameters)
local success, response = check_params(self.params, file_params)
if success then
self.params = response
success, response = load_file_attributes(file_params)
if success then
return build_and_execute_request(self, response, query_parameters)
end
end
return success, response
end
--- Create a new Watson speech to text handler object.
--
-- @param self
-- @tab params
-- Configuration parameters, see @{speech_to_text.new} for general parameters.
-- @param params.api_key
-- Developer API key as obtained from the service credentials.
-- @param params.service_uri
-- Service URL as obtained from the service credentials.
-- @param params.query_parameters
-- Optional. Table of query parameters to pass to the API call.
-- @return A Watson speech to text handler object.
-- @usage
-- local watson = require("jester.modules.speech_to_text.watson")
-- local params = {
-- api_key = "some_api_key",
-- service_uri = "some_service_uri",
-- -- other params...
-- }
-- local handler = watson:new(params)
function _M.new(self, params)
local watson = {}
watson.params = table.merge(DEFAULT_PARAMS, params or {})
watson.log = core.logger({prefix = LOG_PREFIX})
setmetatable(watson, self)
self.__index = self
watson.log.debug("New Watson speech to text handler object")
return watson
end
return _M
|
--[[
The MIT License (MIT)
Copyright (c) 2016 Simon "Tenry" Burchert
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
]]
-- Compatible with Lua 5.3.
Class =
{
instanceOf = function(self, class)
if type(self) == 'table' then
local myClass = getmetatable(self).__class
while myClass ~= class do
if myClass.super then
myClass = myClass.super
else
return false
end
end
return true
else
return false
end
end
}
local mt = {}
function mt.__call(func, base)
local class = {}
local mt
-- local mt = { __index = class }
class.metatable =
{
-- __index = class
construct = function() return setmetatable({}, mt) end,
-- getters = {},
-- setters = {},
__index = function(self, prop)
local getter
-- foobar => getFoobar
if type(prop) == 'string' then
getter = 'get' .. prop:upper():sub(1, 1) .. prop:sub(2)
end
-- check for getter (e.g. getFoobar) in class + base classes
if getter and type(class[getter]) == 'function' then
return class[getter](self)
-- otherwise just get the attribute (e.g. foobar),
-- possibly from a base class
else
return class[prop]
end
end,
__newindex = function(self, prop, value)
local setter
-- foobar => setFoobar
if type(prop) == 'string' then
setter = 'set' .. prop:upper():sub(1, 1) .. prop:sub(2)
end
-- check for getter (e.g. setFoobar) in class + base classes
if setter and type(class[setter]) == 'function' then
return class[setter](self, value)
-- otherwise rawset the attribute (e.g. foobar) in this instance
else
-- class[prop] = value
rawset(self, prop, value)
end
end,
__class = class
}
mt = class.metatable -- shorthand
local function construct(func, ...)
-- local self = setmetatable(mt.construct(), mt)
local self = mt.construct(class, ...)
if class.construct then
class.construct(self, ...)
end
return self
end
local function destruct(self)
local base = self
while base do
if type(base) == 'table' and rawget(base, 'destruct') then
base.destruct(self)
end
if base == self then base = class
else base = base.super end
-- local mt = getmetatable(base)
-- if (not mt) or (not mt.__index) then break end
-- base = mt.__index
end
end
mt.__gc = destruct
setmetatable(class, { __call = construct, __index = base })
class.super = base
class.instanceOf = Class.instanceOf
-- if base then
-- setmetatable(class, { __index = base })
-- end
return class
end
setmetatable(Class, mt)
|
local addonName = ...
local addon = _G[addonName] or CreateFrame("Frame", addonName)
local backpackButton = MainMenuBarBackpackButton
local backpackButtonText = MainMenuBarBackpackButtonCount
function addon:UpdateFreeSlotCount()
backpackButtonText:SetText(format("(%d)", backpackButton.freeSlots))
end
function addon:Initialize()
if not backpackButton then
print("|cff00ffffFreeSpace|r: The default UI has been modifed. As such, your bags' free space count cannot be inserted added where it needs to be. You should either go back to the default GUI, or find an addon that will modify the GUI in the way you want as well as giving you your bag item count.")
return
end
self:UpdateFreeSlotCount()
self:RegisterEvent("BAG_UPDATE")
end
addon.BAG_UPDATE = addon.UpdateFreeSlotCount
addon.PLAYER_ENTERING_WORLD = addon.Initialize
addon:SetScript("OnEvent", function(self, event, ...) self[event](self, event, ...) end)
addon:RegisterEvent("PLAYER_ENTERING_WORLD")
|
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0)
---@class AceAddon-3.0
local AceAddon = {}
---@class AceAddon
local addon = {}
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-2)
function addon:Disable() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-3)
---@param name string
function addon:DisableModule(name) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-4)
function addon:Enable() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-5)
---@param name string
function addon:EnableModule(name) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-6)
---@param name string
---@param silent? boolean
---@return table module
function addon:GetModule(name, silent) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-7)
---@return string name
function addon:GetName() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-8)
---@return boolean enabled
function addon:IsEnabled() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-9)
---@return function iter
---@return table invariant
---@return number init
function addon:IterateModules() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-10)
---@param name string
---@param lib string
---@vararg string
function AceAddon:NewModule(name, lib, ...) end
--function AceAddon:NewModule(name, prototype, lib, ...) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-11)
---@param lib string
---@vararg string
function AceAddon:SetDefaultModuleLibraries(lib, ...) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-12)
---@param prototype table
function AceAddon:SetDefaultModulePrototype(prototype) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-13)
---@param state boolean
function AceAddon:SetDefaultModuleState(state) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-14)
---@param state boolean
function AceAddon:SetEnabledState(state) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-15)
---@param name string
---@param silent? boolean
---@return AceAddon addon
function AceAddon:GetAddon(name, silent) end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-16)
---@return function iter
---@return table invariant
---@return number init
function AceAddon:IterateAddonStatus() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-17)
---@return function iter
---@return table invariant
---@return number init
function AceAddon:IterateAddons() end
---[Documentation](https://www.wowace.com/projects/ace3/pages/api/ace-addon-3-0#title-18)
---@param name string
---@param lib string
---@vararg string
---@return AceAddon addon
function AceAddon:NewAddon(name, lib, ...) end
--function AceAddon:NewAddon(object, name, lib, ...) end
|
local callback = require "lj-async.callback"
local ffi = require "ffi"
local cb_t = callback("int(*)(int)")
local cb = cb_t(function(n) print(n); return n end)
assert(cb:funcptr()(123) == 123)
cb:free()
|
if SL.Global.GameMode ~= "Casual" then
local player = ...
local pn = ToEnumShortString(player)
local PlayerState = GAMESTATE:GetPlayerState(player)
-- grab the song options from this PlayerState
local PlayerOptions = PlayerState:GetPlayerOptionsArray(0)
-- start with an empty string...
local optionslist = ""
-- if the player used an xMod of 1x, it won't be in PlayerOptions list
-- so check here, and add it in manually if necessary
if SL[pn].ActiveModifiers.SpeedModType == "x" and SL[pn].ActiveModifiers.SpeedMod == 1 then
optionslist = "1x, "
end
local TimingWindowScale = round(PREFSMAN:GetPreference("TimingWindowScale") * 100)
-- ...and append options to that string as needed
for i,option in ipairs(PlayerOptions) do
-- these don't need to show up in the mods list
if option ~= "FailAtEnd" and option ~= "FailImmediateContinue" and option ~= "FailImmediate" then
-- 100% Mini will be in the PlayerOptions as just "Mini" so use the value from the SL table instead
if option:match("Mini") then
option = SL[pn].ActiveModifiers.Mini .. " Mini"
end
if option:match("Cover") then
option = THEME:GetString("OptionNames", "Cover")
end
if i < #PlayerOptions then
optionslist = optionslist..option..", "
else
optionslist = optionslist..option
end
end
end
-- Display TimingWindowScale as a modifier if it's set to anything other than 1.0
if TimingWindowScale ~= 100 then
optionslist = optionslist .. ", " .. tostring(TimingWindowScale) .. "% Timing Window"
end
local font_zoom = 0.7
return Def.ActorFrame{
OnCommand=cmd(y, _screen.cy+200.5),
Def.Quad{
InitCommand=cmd(diffuse,color("#1E282F"); zoomto, 300, 26)
},
LoadFont("_miso")..{
Text=optionslist,
InitCommand=cmd(zoom, font_zoom; xy,-140,-5; align, 0,0; vertspacing, -6; wrapwidthpixels, 290 / font_zoom )
}
}
end
|
local System = Xile.class()
Xile.System = System
local from = Xile.from
function System:init()
local _nodes = {}
local _qry = from(_nodes):keys()
-- important assumes first arg to be key
self.nodes = function(self,...)
local key = select(1,...)
local item = _nodes[key]
if item == nil then
local l =Xile.List()
item = {
keys={...},
list = l,
add=function(sender,e) l:add(e.node) end,
remove=function(sender,e) l:remove(e.node) end,
attach = function(self,engine)
local n = engine:item(unpack(self.keys))
n:onadd():add(self.add)
n:onremove():add(self.remove)
end,
detach = function(self,engine)
local n = engine:item(unpack(self.keys))
n:onadd():remove(self.add)
n:onremove():remove(self.remove)
end
}
_nodes[key] = item
end
return item.list
end
self.attach = function(self,engine)
_qry:each(function(k)
_nodes[k]:attach(engine)
end)
end
self.detach = function(self,engine)
_qry:each(function(k)
_nodes[k]:detach(engine)
_nodes[k] = nil
end)
end
self.dispose = function(self)
_nodes = nil
_qry = nil
end
end
|
ITEM.name = "Aluminium"
ITEM.description = "itemAluminiumDesc"
ITEM.price = 3
ITEM.model = "models/mosi/fallout4/props/junk/components/aluminum.mdl"
|
local Native = require('lib.stdlib.native')
---@class Button : Agent
local Button = class('Button', require('lib.stdlib.oop.agent'))
return Button
|
object_tangible_loot_creature_loot_collections_space_booster_mark_04_kessel = object_tangible_loot_creature_loot_collections_space_shared_booster_mark_04_kessel:new {
}
ObjectTemplates:addTemplate(object_tangible_loot_creature_loot_collections_space_booster_mark_04_kessel, "object/tangible/loot/creature/loot/collections/space/booster_mark_04_kessel.iff")
|
CLASS.name = "Civil Worker's Union"
CLASS.faction = FACTION_CITIZEN
function CLASS:CanSwitchTo(client)
return false
end
CLASS_CWU = CLASS.index
|
-- Generated By protoc-gen-lua Do not Edit
local protobuf = require "protobuf"
module('BseVipPeriodList_pb', package.seeall)
local VIPPERIOD = protobuf.Descriptor();
local VIPPERIOD_MONTH_FIELD = protobuf.FieldDescriptor();
local VIPPERIOD_YUANBAOPRICE_FIELD = protobuf.FieldDescriptor();
local VIPPERIOD_VOUCHERPRICE_FIELD = protobuf.FieldDescriptor();
local VIPPERIOD_MEDALPRICE_FIELD = protobuf.FieldDescriptor();
local BSEVIPPERIODLIST = protobuf.Descriptor();
local BSEVIPPERIODLIST_CHARGES_FIELD = protobuf.FieldDescriptor();
VIPPERIOD_MONTH_FIELD.name = "month"
VIPPERIOD_MONTH_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.VipPeriod.month"
VIPPERIOD_MONTH_FIELD.number = 1
VIPPERIOD_MONTH_FIELD.index = 0
VIPPERIOD_MONTH_FIELD.label = 2
VIPPERIOD_MONTH_FIELD.has_default_value = false
VIPPERIOD_MONTH_FIELD.default_value = 0
VIPPERIOD_MONTH_FIELD.type = 13
VIPPERIOD_MONTH_FIELD.cpp_type = 3
VIPPERIOD_YUANBAOPRICE_FIELD.name = "yuanbaoPrice"
VIPPERIOD_YUANBAOPRICE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.VipPeriod.yuanbaoPrice"
VIPPERIOD_YUANBAOPRICE_FIELD.number = 2
VIPPERIOD_YUANBAOPRICE_FIELD.index = 1
VIPPERIOD_YUANBAOPRICE_FIELD.label = 2
VIPPERIOD_YUANBAOPRICE_FIELD.has_default_value = false
VIPPERIOD_YUANBAOPRICE_FIELD.default_value = 0
VIPPERIOD_YUANBAOPRICE_FIELD.type = 13
VIPPERIOD_YUANBAOPRICE_FIELD.cpp_type = 3
VIPPERIOD_VOUCHERPRICE_FIELD.name = "voucherPrice"
VIPPERIOD_VOUCHERPRICE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.VipPeriod.voucherPrice"
VIPPERIOD_VOUCHERPRICE_FIELD.number = 3
VIPPERIOD_VOUCHERPRICE_FIELD.index = 2
VIPPERIOD_VOUCHERPRICE_FIELD.label = 2
VIPPERIOD_VOUCHERPRICE_FIELD.has_default_value = false
VIPPERIOD_VOUCHERPRICE_FIELD.default_value = 0
VIPPERIOD_VOUCHERPRICE_FIELD.type = 13
VIPPERIOD_VOUCHERPRICE_FIELD.cpp_type = 3
VIPPERIOD_MEDALPRICE_FIELD.name = "medalPrice"
VIPPERIOD_MEDALPRICE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.VipPeriod.medalPrice"
VIPPERIOD_MEDALPRICE_FIELD.number = 4
VIPPERIOD_MEDALPRICE_FIELD.index = 3
VIPPERIOD_MEDALPRICE_FIELD.label = 2
VIPPERIOD_MEDALPRICE_FIELD.has_default_value = false
VIPPERIOD_MEDALPRICE_FIELD.default_value = 0
VIPPERIOD_MEDALPRICE_FIELD.type = 13
VIPPERIOD_MEDALPRICE_FIELD.cpp_type = 3
VIPPERIOD.name = "VipPeriod"
VIPPERIOD.full_name = ".com.xinqihd.sns.gameserver.proto.VipPeriod"
VIPPERIOD.nested_types = {}
VIPPERIOD.enum_types = {}
VIPPERIOD.fields = {VIPPERIOD_MONTH_FIELD, VIPPERIOD_YUANBAOPRICE_FIELD, VIPPERIOD_VOUCHERPRICE_FIELD, VIPPERIOD_MEDALPRICE_FIELD}
VIPPERIOD.is_extendable = false
VIPPERIOD.extensions = {}
BSEVIPPERIODLIST_CHARGES_FIELD.name = "charges"
BSEVIPPERIODLIST_CHARGES_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BseVipPeriodList.charges"
BSEVIPPERIODLIST_CHARGES_FIELD.number = 1
BSEVIPPERIODLIST_CHARGES_FIELD.index = 0
BSEVIPPERIODLIST_CHARGES_FIELD.label = 3
BSEVIPPERIODLIST_CHARGES_FIELD.has_default_value = false
BSEVIPPERIODLIST_CHARGES_FIELD.default_value = {}
BSEVIPPERIODLIST_CHARGES_FIELD.message_type = VIPPERIOD
BSEVIPPERIODLIST_CHARGES_FIELD.type = 11
BSEVIPPERIODLIST_CHARGES_FIELD.cpp_type = 10
BSEVIPPERIODLIST.name = "BseVipPeriodList"
BSEVIPPERIODLIST.full_name = ".com.xinqihd.sns.gameserver.proto.BseVipPeriodList"
BSEVIPPERIODLIST.nested_types = {}
BSEVIPPERIODLIST.enum_types = {}
BSEVIPPERIODLIST.fields = {BSEVIPPERIODLIST_CHARGES_FIELD}
BSEVIPPERIODLIST.is_extendable = false
BSEVIPPERIODLIST.extensions = {}
BseVipPeriodList = protobuf.Message(BSEVIPPERIODLIST)
VipPeriod = protobuf.Message(VIPPERIOD)
_G.BSEVIPPERIODLIST_PB_BSEVIPPERIODLIST = BSEVIPPERIODLIST
_G.VIPPERIOD_PB_VIPPERIOD = VIPPERIOD
|
HUD_IW_MAX = 8
HUD_IW_TICK = 0.4
if minetest.is_singleplayer() == true then
HUD_IW_TICK = 0.2
end
HUD_SB_SIZE = {x = 24, y = 24}
HUD_HEALTH_POS = {x = 0.5,y = 1}
HUD_HEALTH_OFFSET = {x = -262, y = -87}
HUD_AIR_POS = {x = 0.5, y = 1}
HUD_AIR_OFFSET = {x = 15, y = -135}
HUD_HUNGER_POS = {x = 0.5, y = 1}
HUD_HUNGER_OFFSET = {x = 15, y = -87}
HUD_ARMOR_POS = {x = 0.5, y = 1}
HUD_ARMOR_OFFSET = {x = -262, y = -135}
-- read hud.conf settings
--hud.read_conf()
local damage_enabled = minetest.setting_getbool("enable_damage")
hud.show_hunger = minetest.get_modpath("hunger") ~= nil
hud.show_armor = true
if damage_enabled then
hud.register("health", {
hud_elem_type = "statbar",
position = HUD_HEALTH_POS,
size = HUD_SB_SIZE,
text = "hud_heart_fg.png",
number = 20,
alignment = {x = -1, y = -1},
offset = HUD_HEALTH_OFFSET,
background = "hud_heart_bg.png",
events = {
{
type = "damage",
func = function(player)
hud.change_item(player, "health", {number = player:get_hp()})
end
}
},
})
hud.register("air", {
hud_elem_type = "statbar",
position = HUD_AIR_POS,
size = HUD_SB_SIZE,
text = "hud_air_fg.png",
number = 0,
alignment = {x = -1, y = -1},
offset = HUD_AIR_OFFSET,
background = nil,
events = {
{
type = "breath",
func = function(player)
local air = player:get_breath()
if air > 10 then
air = 0
end
hud.change_item(player, "air", {number = air * 2})
end
}
},
})
hud.register("armor", {
hud_elem_type = "statbar",
position = HUD_ARMOR_POS,
size = HUD_SB_SIZE,
text = "hud_armor_fg.png",
number = 0,
alignment = {x = -1, y = -1},
offset = HUD_ARMOR_OFFSET,
background = "hud_armor_bg.png",
autohide_bg = true,
max = 20,
})
hud.register("hunger", {
hud_elem_type = "statbar",
position = HUD_HUNGER_POS,
size = HUD_SB_SIZE,
text = "hud_hunger_fg.png",
number = 0,
alignment = {x = 1, y = 1},
offset = HUD_HUNGER_OFFSET,
background = "hud_hunger_bg.png",
max = 0,
})
else
hud.show_armor = false
end
|
test_run = require('test_run').new()
REPLICASET_1 = { 'storage_1_a', 'storage_1_b' }
REPLICASET_2 = { 'storage_2_a', 'storage_2_b' }
test_run:create_cluster(REPLICASET_1, 'router')
test_run:create_cluster(REPLICASET_2, 'router')
util = require('util')
util.wait_master(test_run, REPLICASET_1, 'storage_1_a')
util.wait_master(test_run, REPLICASET_2, 'storage_2_a')
util.map_evals(test_run, {REPLICASET_1, REPLICASET_2}, 'bootstrap_storage(\'memtx\')')
_ = test_run:cmd("create server router_1 with script='router/router_1.lua'")
_ = test_run:cmd("start server router_1")
_ = test_run:switch('router_1')
util = require('util')
rs1 = vshard.router.static.replicasets[util.replicasets[1]]
min_timeout = vshard.consts.CALL_TIMEOUT_MIN
--
-- Try two read requests with exection time = MIN_TIMEOUT + 0.5.
-- It leads to increased network timeout.
--
util.collect_timeouts(rs1)
_ = rs1:callro('sleep', {min_timeout + 0.5}, {timeout = min_timeout})
_ = rs1:callro('sleep', {min_timeout + 0.5}, {timeout = min_timeout})
util.collect_timeouts(rs1)
for i = 1, 9 do rs1:callro('echo') end
util.collect_timeouts(rs1)
--
-- Ensure the luajit errors are not retried.
--
fiber = require('fiber')
start = fiber.time()
_, e = rs1:callro('raise_luajit_error', {}, {timeout = 10})
string.match(e.message, 'assertion')
fiber.time() - start < 1
start = fiber.time()
_, e = rs1:callro('raise_client_error', {}, {timeout = 5})
fiber.time() - start < 1
e.trace = nil
e
_, e = rs1:callro('sleep', {1}, {timeout = 0.0001})
e.trace = nil
e
--
-- Do not send multiple requests during timeout - it brokes long
-- polling requests.
--
_ = rs1:callro('sleep', {4}, {timeout = 100})
_
_ = test_run:switch("default")
_ = test_run:cmd("stop server router_1")
_ = test_run:cmd("cleanup server router_1")
test_run:drop_cluster(REPLICASET_1)
test_run:drop_cluster(REPLICASET_2)
|
local PLAYER = FindMetaTable("Player")
function PLAYER:IsHuman()
return self:Team() == TEAM_HUMANS
end
function PLAYER:IsZombie()
return self:Team() == TEAM_ZOMBIES
end
|
WTF("foo")
|
local Request = require('request')
local match, gmatch
do
local _table_0 = require('string')
match = _table_0.match
gmatch = _table_0.gmatch
end
Request.prototype.parse_cookies = function(self)
self.cookies = { }
if self.headers.cookie then
for cookie in gmatch(self.headers.cookie, '[^;]+') do
local name, value = match(cookie, '%s*([^=%s]-)%s*=%s*([^%s]*)')
if name and value then
self.cookies[name] = value
end
end
end
return
end
|
local Random = math.random
local Broadcast = require("core.Broadcast")
local wrapper = require("core.lib.wrapper")
local CommandParser = wrapper.loadBundleScript("lib/CommandParser",
"bundle-example-lib");
local say = Broadcast.sayAt
return {
usage = "flee [direction]",
command = function(state)
return function(self, direction, player)
if not player:isInCombat() then
return say(player, "You jump at the sight of your own shadow.");
end
local roomExit
if direction then
roomExit = CommandParser:canGo(player, direction);
else
local exits = player.room:getExits()
roomExit = exits[Random(1, #exits)]
end
local randomRoom = state.RoomManager:getRoom(roomExit.roomId);
if not randomRoom then
say(player, "You can't find anywhere to run!");
return;
end
local door = player.room:getDoor(randomRoom) or
randomRoom:getDoor(player.room);
if randomRoom and door and (door.locked or door.closed) then
say(player, "In your panic you run into a closed door!");
return;
end
say(player, "You cowardly flee from the battle!");
player:removeFromCombat();
player:emit("move", { roomExit = roomExit });
end
end,
};
|
local ffi = require "ffi"
local ffi_cast = ffi.cast
local C = ffi.C
ffi.cdef[[
typedef unsigned char u_char;
uint32_t ngx_murmur_hash2(u_char *data, size_t len);
]]
return function(value)
return tonumber(C.ngx_murmur_hash2(ffi_cast('uint8_t *', value), #value))
end
|
object_building_mustafar_dungeon_lava_cave_must_lava_cave = object_building_mustafar_dungeon_lava_cave_shared_must_lava_cave:new {
customObjectName = "Lava Cave",
}
ObjectTemplates:addTemplate(object_building_mustafar_dungeon_lava_cave_must_lava_cave, "object/building/mustafar/dungeon/lava_cave/must_lava_cave.iff")
|
--[[=========================================
_ _ _
| | | | | | /\ /\
| | | | | | / \ _ __ _ __ / \ _ __ ___
| | | | | |/ /\ \ | '_ \| '_ \ / /\ \ | '__/ __|
| |___| |__| / ____ \| |_) | |_) / ____ \| | | (__
|______\____/_/ \_\ .__/| .__/_/ \_\_| \___|
Scripting Project | | | | Improved LUA Engine
|_| |_|
SVN: http://svn.burning-azzinoth.de/LUAppArc
LOG: http://luapparc.burning-azzinoth.de/trac/timeline
TRAC: http://luapparc.burning-azzinoth.de/trac
----------------------
AQ.lua
Original Code by DARKI
Version 1
========================================]]--
--Anubisath Defender by Project eXa
function Defender_ExplodeTwo(pUnit, event)
pUnit:CastSpell(25699)
end
function Defender_Explode(pUnit, Event)
if (pUnit:GetHealthPct() < 10) then
pUnit:RemoveEvents()
pUnit:FullCastSpell(25698)
pUnit:StopMovement(7100)
pUnit:RegisterEvent("Defender_ExplodeTwo", 7000, 1)
end
end
function Defender_Enrage(pUnit, Event)
if (pUnit:GetHealthPct() < 10) then
pUnit:CastSpell(44779)
pUnit:RemoveEvents()
end
end
function Defender_Thunderclap(pUnit, Event)
pUnit:CastSpell(2834)
local TcTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_Thunderclap2", TcTimer, 1)
end
function Defender_Thunderclap2(pUnit, Event)
pUnit:CastSpell(2834)
local TcTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_Thunderclap", TcTimer, 1)
end
function Defender_ShadowStorm(pUnit, Event)
pUnit:CastSpell(2148)
local SsTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_ShadowStorm2", SsTimer, 1)
end
function Defender_ShadowStorm2(pUnit, Event)
pUnit:CastSpell(2148)
local SsTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_ShadowStorm", SsTimer, 1)
end
function Defender_Plague(pUnit, Event) --No extreme issues here so I won't comment it out. It is supposed to affect players within 5yards of the affected player, this can be fixed. Please do so by checking the distance from the affected players to nearby players, if it's less than 5yards have the boss cast the spell on them.
pUnit:CastSpellOnTarget(22997, pUnit:GetRandomPlayer(0))
local PTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_Plague2", PTimer, 1)
end
function Defender_Plague2(pUnit, Event) --No extreme issues here so I won't comment it out. It is supposed to affect players within 5yards of the affected player, this can be fixed. Please do so by checking the distance from the affected players to nearby players, if it's less than 5yards have the boss cast the spell on them.
pUnit:CastSpellOnTarget(22997, pUnit:GetRandomPlayer(0))
local PTimer = math.random(45000, 65000)
pUnit:RegisterEvent("Defender_Plague", PTimer, 1)
end
function Defender_OnCombat(pUnit, Event)
GeneralTimer = math.random(45000, 65000)
Flip1 = math.random(1, 2)
Flip2 = math.random(1, 2)
Flip3 = math.random(1, 2)
Flip4 = math.random(1, 2)
if (Flip1 == 1) then
pUnit:RegisterEvent("Defender_Plague", GeneralTimer, 1)
end
if (Flip2 == 1) then
pUnit:RegisterEvent("Defender_ShadowStorm", GeneralTimer, 1)
else
pUnit:RegisterEvent("Defender_Thunderclap", GeneralTimer, 1)
end
if (Flip3 == 1) then
pUnit:RegisterEvent("Defender_Enrage", 1000, 0)
else
pUnit:RegisterEvent("Defender_Explode", 1000, 0)
end
if (Flip4 == 1) then
pUnit:CastSpell(13022)
else
pUnit:CastSpell(19595)
end
end
function Defender_OnLeaveCombat(pUnit)
pUnit:RemoveEvents()
end
function Defender_OnDied(pUnit)
pUnit:RemoveEvents()
end
RegisterUnitEvent(15277, 1, "Defender_OnCombat")
RegisterUnitEvent(15277, 2, "Defender_OnLeaveCombat")
RegisterUnitEvent(15277, 4, "Defender_OnDied")
--Anubisath Sentinel by Project eXa
function Sentinel_OnCombat(Unit, Event)
local CoinFlip = math.random(1, 9)
if (CoinFlip == 1) then
Unit:CastSpell(28747)
Mending = 1
elseif (CoinFlip == 2) then
Unit:CastSpell(21737)
KnockAway = 1
elseif (CoinFlip == 3) then
Unit:CastSpell(25777)
Thorns = 1
elseif (CoinFlip == 4) then
Unit:CastSpell(2834)
ThunderClap = 1
elseif (CoinFlip == 5) then
Unit:CastSpell(13022)
ReflectArcFire = 1
elseif (CoinFlip == 6) then
Unit:CastSpell(19595)
ReflectShadFrost = 1
elseif (CoinFlip == 7) then
Unit:CastSpell(2148)
ShadowStorm = 1
elseif (CoinFlip == 8) then
Unit:CastSpell(812)
ManaBurn = 1
elseif (CoinFlip == 9 )then
Unit:CastSpell(9347)
MortalStrike = 1
end
Unit:RegisterEvent("DeathCheck",1000,0)
end
function DeathCheck(Unit, Event)
if (Mending == 2) then
Unit:CastSpell(28747)
Mending = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (KnockAway == 2) then
Unit:CastSpell(21737)
KnockAway = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (Thorns == 2) then
Unit:CastSpel(25777)
Thorns = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (ThunderClap == 2) then
Unit:CastSpell(2834)
ThunderClap = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (ReflectArcFire == 2) then
Unit:CastSpell(13022)
ReflectArcFire = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (ReflectShadFrost == 2) then
Unit:CastSpell(19595)
ReflectShadFrost = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (ShadowStorm == 2) then
Unit:CastSpell(2148)
ShadowStorm = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (ManaBurn == 2) then
Unit:CastSpell(812)
ManaBurn = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
elseif (MortalStrike == 2) then
Unit:CastSpell(9347)
MortalStrike = 1
MaxHp = Unit:GetMaxHealth()
SetHp = Unit:GetHealth() + (MaxHp / 2)
Unit:SetHealth(SetHp)
end
end
function Sentinel_OnDeath(Unit, Event)
if(Mending == 1) then
Mending = 2
elseif (KnockAway == 1) then
KnockAway = 2
elseif (Thorns == 1) then
Thorns = 2
elseif (ThunderClap == 1) then
ThunderClap = 2
elseif (ReflectArcFire == 1) then
ReflectArcFire = 2
elseif (ReflectShadFrost == 1) then
ReflectShadFrost = 2
elseif (ShadowStorm == 1) then
ShadowStorm = 2
elseif (ManaBurn == 1) then
ManaBurn = 2
elseif (MortalStrike == 1) then
MortalStrike = 2
end
Unit:RemoveEvents()
end
function Sentinel_OnLeaveCombat(Unit, Event)
Unit:RemoveEvents()
end
RegisterUnitEvent(15264, 1, "Sentinel_OnCombat")
RegisterUnitEvent(15264, 2, "Sentinel_OnLeaveCombat")
RegisterUnitEvent(15264, 4, "Sentinel_OnDeath")
--Anubisath Warder by Project eXa
function Warder_Root(Unit, Event)
local RootTimer = math.random(15000, 30000)
Unit:CastSpell(20699)
Unit:RegisterEvent("Warder_Root2", RootTimer, 1)
end
function Warder_Root2(Unit, Event)
local RootTimer = math.random(15000, 30000)
Unit:CastSpell(20699)
Unit:RegisterEvent("Warder_Root", RootTimer, 1)
end
function Warder_Fear(Unit, Event)
local FearTimer = math.random(15000, 30000)
Unit:CastSpell(30584)
Unit:RegisterEvent("Warder_Fear2", FearTimer, 1)
end
function Warder_Fear2(Unit, Event)
local FearTimer = math.random(15000, 30000)
Unit:CastSpell(30584)
Unit:RegisterEvent("Warder_Fear", FearTimer, 1)
end
function Warder_Cloud(Unit, Event)
local CloudTimer = math.random(12000, 25000)
Unit:FullCastSpell(26072)
Unit:RegisterEvent("Warder_Cloud2", CloudTimer, 1)
end
function Warder_Cloud2(Unit, Event)
local CloudTimer = math.random(12000, 25000)
Unit:FullCastSpell(26072)
Unit:RegisterEvent("Warder_Cloud", CloudTimer, 1)
end
function Warder_Silence(Unit, Event)
local SilenceTimer = math.random(12000, 25000)
Unit:FullCastSpell(12528)
Unit:RegisterEvent("Warder_Silence2", SilenceTimer, 1)
end
function Warder_Silence2(Unit, Event)
local SilenceTimer = math.random(12000, 25000)
Unit:FullCastSpell(12528)
Unit:RegisterEvent("Warder_Silence", SilenceTimer, 1)
end
function Warder_Nova(Unit, Event)
local NovaTimer = math.random(25000, 45000)
Unit:CastSpell(18432)
Unit:RegisterEvent("Warder_Nova2", NovaTimer, 1)
end
function Warder_Nova2(Unit, Event)
local NovaTimer = math.random(25000, 45000)
Unit:CastSpell(18432)
Unit:RegisterEvent("Warder_Nova", NovaTimer, 1)
end
function Warder_OnCombat(Unit, Event)
local RootOrFear = math.random(1, 2)
local DustOrSilence = math.random(1, 2)
if (RootOrFear == 1) then
Unit:CastSpell(20699)
local RootTimer = math.random(15000, 30000)
Unit:RegisterEvent("Warder_Root", RootTimer, 1)
else
Unit:CastSpell(30584)
local FearTimer = math.random(15000, 30000)
Unit:RegisterEvent("Warder_Fear", FearTimer, 1)
end
if (DustOrSilence == 1) then
Unit:FullCastSpell(26072)
local CloudTimer = math.random(12000, 25000)
Unit:RegisterEvent("Warder_Cloud", CloudTimer, 1)
else
Unit:FullCastSpell(12528)
local SilenceTimer = math.random(12000, 25000)
Unit:RegisterEvent("Warder_Silence", SilenceTimer, 1)
end
local NovaTimer = math.random(25000, 45000)
Unit:RegisterEvent("Warder_Nova", NovaTimer, 1)
end
function Warder_OnLeaveCombat(Unit, Event)
Unit:RemoveEvents()
end
function Warder_OnDied(Unit, Event)
Unit:RemoveEvents()
end
RegisterUnitEvent(15311,1,"Warder_OnCombat")
RegisterUnitEvent(15311,2,"Warder_OnLeaveCombat")
RegisterUnitEvent(15311,4,"Warder_OnDied")
--Obsidian Nullifier by Project eXa
function Nullifier_ShockBlast(pUnit, event)
if (pUnit:GetManaPct() > 99) then
pUnit:CastSpell(26458)
pUnit:SetMana(0)
end
end
function Nullifier_Siphon(pUnit, event) --Not blizzlike but it will work until I can get a better idea.
local b = pUnit:GetMaxHealth() /(10);
if (pUnit:GetManaPct() > 89) then
pUnit:FullCastSpell(27287)
pUnit:SetMana(pUnit:GetMana() + pUnit:GetMana()) --I know it will go over 100% mana, but it's okay cause it get's reset to 0. Plus this prevents glitches.
else
pUnit:FullCastSpell(27287)
pUnit:SetMana(pUnit:GetMana() + b)
end
end
function Nullifier_OnCombat(Unit, Event) --There isnt a :SetManaPct() function.
Unit:SetMana(0)
Unit:SetMaxMana(50000)
Unit:RegisterEvent("Nullifier_Siphon",2000,0)
Unit:RegisterEvent("Nullifier_ShockBlast",1000,0)
end
function Nullifier_OnLeaveCombat(Unit, Event)
Unit:RemoveEvents()
end
function Nullifier_OnDied(Unit, Event)
Unit:RemoveEvents()
end
RegisterUnitEvent(15312,1,"Nullifier_OnCombat")
RegisterUnitEvent(15312,2,"Nullifier_OnLeaveCombat")
RegisterUnitEvent(15312,4,"Nullifier_OnDied")
--Obsidian Eradicator by Project eXa
function Eradicator_Siphon(pUnit, event) --Not blizzlike but it will work until I can get a better idea.
local a = pUnit:GetMaxHealth() /(10);
if pUnit:GetManaPct() > 89 then
pUnit:FullCastSpell(27287)
pUnit:SetMana(pUnit:GetMana() + pUnit:GetMana()) --I know it will go over 100% mana, but it's okay cause it get's reset to 0. Plus this prevents glitches.
else
pUnit:FullCastSpell(27287)
pUnit:SetMana(pUnit:GetMana() + a)
end
end
function Eradicator_ShockBlast(pUnit, event)
if (pUnit:GetManaPct() > 99) then
pUnit:CastSpell(26458)
pUnit:SetMana(0)
end
end
function Eradicator_OnCombat(Unit, Event) --There isnt a :SetManaPct() function.
Unit:SetMana(0)
Unit:SetMaxMana(24000)
Unit:RegisterEvent("Eradicator_Siphon",2000,0)
Unit:RegisterEvent("Eradicator_ShockBlast",1000,0)
end
function Eradicator_OnLeaveCombat(Unit, Event)
Unit:RemoveEvents()
end
function Eradicator_OnDied(Unit, Event)
local ex = Unit:GetX()
local ey = Unit:GetY()
local ez = Unit:GetZ()
local eo = Unit:GetO()
Unit:SpawnGameObject(181068, ex, ey, ez, eo, 300000)
end
RegisterUnitEvent(15262,1,"Eradicator_OnCombat")
RegisterUnitEvent(15262,2,"Eradicator_OnLeaveCombat")
RegisterUnitEvent(15262,4,"Eradicator_OnDied")
--Qiraji Champion by Ikillonyxia. Couldnt find correct hp% for enrage so didnt include that, along with the nature dot which no info is available for.
function Champion_Cleave(pUnit, event)
pUnit:FullCastSpellOnTarget(31043, pUnit:GetMainTank())
end
function Champion_Fear(pUnit, event)
pUnit:FullCastSpell(19134)
end
function Champion_OnEnterCombat(pUnit, event)
pUnit:RegisterEvent("Champion_Cleave", 15000, 0)
pUnit:RegisterEvent("Champion_Fear", 27000, 0)
end
function Champion_OnWipe(pUnit, event)
pUnit:RemoveEvents()
end
function Champion_OnDie(pUnit, event)
pUnit:RemoveEvents()
end
RegisterUnitEvent(15252, 4, "Champion_OnDie")
RegisterUnitEvent(15252, 2, "Champion_OnWipe")
RegisterUnitEvent(15252, 1, "Champion_OnEnterCombat")
--Qiraji Brainwasher by Ikillonyxia. Only spell that I can guess on is the Mind Flay, the rest of his spells are to technical to be making guesses on.
function Brainwasher_MindFlay(pUnit, event) --No info on who it targets, so going to do random target(seems logical).
pUnit:FullCastSpellOnTarget(26044, pUnit:GetRandomPlayer(0))
end
function Brainwasher_OnEnterCombat(pUnit, event)
pUnit:RegisterEvent("Brainwasher_MindFlay", 32000, 0)
end
function Brainwasher_OnWipe(pUnit, event)
pUnit:RemoveEvents()
end
function Brainwasher_OnDie(pUnit, event)
pUnit:RemoveEvents()
end
RegisterUnitEvent(15247, 4, "Brainwasher_OnDie")
RegisterUnitEvent(15247, 2, "Brainwasher_OnWipe")
RegisterUnitEvent(15247, 1, "Brainwasher_OnEnterCombat")
--Qiraji Mindslayer by Ikillonyxia.
function Mindslayer_CleaveRepeat(pUnit, event)
pUnit:FullCastSpellOnTarget(31043, pUnit:GetMainTank())
pUnit:RegisterEvent("Mindslayer_Cleave", math.random(15000, 18000), 1)
end
function Mindslayer_Cleave(pUnit, event)
pUnit:FullCastSpellOnTarget(31043, pUnit:GetMainTank())
pUnit:RegisterEvent("Mindslayer_CleaveRepeat", math.random(15000, 18000), 1)
end
function Mindslayer_MindFlay(pUnit, event)
pUnit:FullCastSpellOnTarget(26044, pUnit:GetRandomPlayer(0))
end
function Mindslayer_OnEnterCombat(pUnit, event)
pUnit:RegisterEvent("Mindslayer_Cleave", math.random(15000, 18000), 1)
pUnit:RegisterEvent("Mindslayer_MindFlay", 32000, 0)
end
function Mindslayer_OnWipe(pUnit, event)
pUnit:RemoveEvents()
end
function Mindslayer_OnDie(pUnit, event)
pUnit:RemoveEvents()
end
RegisterUnitEvent(15246, 4, "Mindslayer_OnDie")
RegisterUnitEvent(15246, 2, "Mindslayer_OnWipe")
RegisterUnitEvent(15246, 1, "Mindslayer_OnEnterCombat")
--::BOSSESS:--
--Twin Emperors by Project eXa
--::Emperor Vek'nilash: Swings a big sword, immune to all magical damage (except holy)::--
--Uppercut(18072) - Knocks back a single random target in melee range.
--Unbalancing Strike(26613) - Inflicts 350% weapon damage and leaves the target unbalanced, reducing their defense skill by 100 for 6 sec.
--Mutate Bug - Mutates a bug every 10-15 sec or so making it grow to a gigantic size and attack the raid.
--::Emperor Vek'lor: Caster, immune to all physical damage, has a mana bar.::--
--Shadow Bolt - Spams on his aggro target, hits for 3000-4000. Partially resistible.
--Blizzard - Slows and damages everyone within its area of effect. 1500 damage/tick.
--Arcane Burst - 4000-4950 arcane damage AoE counterattack whenever a player is within melee range.
--Explode Bug - Every 7-10 secs Emperor Vek'lor forces a nearby bug to explode, blowing it up
--::Both Emperors::--
--Heal Brother - Whenever the twins get within 60 yards of one another, they will spam heal each other.
--Twin Teleport - the two twins will switch places. The twins will be rooted for 2 seconds. There is a complete aggro wipe.
--Berserk(45078) - After 15 minutes, the Emperors will go berserk dramatically increasing damage and wiping the raid.
--Combined Health - The Emperors share health. Damage to one emperor hurts the other emperor as well.
--===SPELLS===--
--[[Emperor Vek'nilash yells: Oh so much pain...
Emperor Vek'nilash yells: The feast of souls begins now...
Emperor Vek'nilash yells: Vek'lor, I feel your pain!
Emperor Vek'nilash yells: Where are your manners, brother. Let us properly welcome our guests.
Emperor Vek'nilash yells: Your fate is sealed!
Emperor Vek'lor yells: Come, little ones.
Emperor Vek'lor yells: My brother, no!
Emperor Vek'lor yells: Only flesh and bone. Mortals are such easy prey...
Emperor Vek'lor yells: There will be pain...
Emperor Vek'lor yells: You will not escape death!]]--
function Brothers_Berserk(Unit, Event)
Unit:CastSpell(45078)
end
function Veknilash_Uppercut(pUnit, event)
pUnit:CastSpellOnTarget(18072, pUnit:GetRandomPlayer(1))
end
function Veknilash_Unbalancing(pUnit, event)
pUnit:CastSpellOnTarget(26613, pUnit:GetMainTank())
end
function Veknilash_OnCombat(Unit, Event)
local Veknilash = Unit
Unit:SetMaxHealth(2000000)
NNewHp=2000000
Veknilash:RegisterEvent("SharedHealth",1500,0)
Veknilash:RegisterEvent("Brothers_Berserk",900000,0)
end
function Veklor_OnCombat(Unit, Event)
local Veklor = Unit
Unit:SetMaxHealth(20000000)
LNewHp=2000000
Veklor:RegisterEvent("SharedHealth",1000,0)
Veklor:RegisterEvent("Brothers_Berserk",900000,0)
end
function SharedHealth(Unit, Event)
NilashHealth = Veknilash:GetHealth()
LorHealth = Veklor:GetHealth()
Veklor:SendChatMessage(11,0,LorHealth)
NDmgTaken = NNewHp - NilashHealth
LDmgTaken = LNewHp - LorHealth
Veklor:SendChatMessage(11,0,NDmgTaken)
NNewHp = NilashHealth - LDmgTaken
LNewHp = LorHealth - NDmgTaken
Veklinash:SendChatMessage(11,0,NNewHp)
Veknilash:SetHealth(NNewHp)
Veklor:SetHealth(LNewHp)
end
RegisterUnitEvent(15275,1,"Veknilash_OnCombat")
RegisterUnitEvent(15276,1,"Veklor_OnCombat")
|
require("gameData/gameData");
--@brief 个人的排行信息
UserRankInfo = class(GameData);
UserRankInfo.Delegate = {
onUserRankInfoCallBack = "onUserRankInfoCallBack";
}
UserRankInfo.initData = function(self)
self.m_data = {}; -- V["rankType"]["flag"]["mid"] = info
self.m_updateFlagMap = {};
end
--@override
--@param mid:用户id
--@param rankType:排行榜类型
--@param flag: 1:(今日)/-1(昨天)
UserRankInfo.requestData = function(self, mid, rankType, flag)
local param = {
["mid"] = mid;
["type"] = rankType;
["flag"] = tonumber(flag) or RankListConstants.eFlag.Today;
};
OnlineSocketManager.getInstance():sendMsg(PHP_GET_RANK_INFO, param);
end
UserRankInfo.onSocketCBRankMineInfo = function(self, isSuccess, info, requestData)
Log.v("UserRankInfo.onSocketCBRankMineInfo -> ", "isSuccess = ",isSuccess,"info = ",info,"requestData = ",requestData);
local rankType = requestData.type or RankListConstants.eRankType.Money;
local flag = requestData.flag or RankListConstants.eFlag.Today;
local mid = requestData.mid or -1;
if isSuccess then
self.m_updateFlagMap[rankType] = self.m_updateFlagMap[rankType] or {};
self.m_updateFlagMap[rankType][flag] = self.m_updateFlagMap[rankType][flag] or {};
self.m_updateFlagMap[rankType][flag][mid] = true;
self:updateData(true, info, mid, flag);
end
local list = self:__getUserRankInfo(mid, rankType, flag);
self:execDelegate(UserRankInfo.Delegate.onUserRankInfoCallBack, isSuccess, mid, rankType, flag, list);
end
--@override
UserRankInfo.updateMemData = function(self, data, mid, flag)
if table.isEmpty(data) then
return;
end
local afterFomartData = self:__formatData(data);
self:__insertUserRankInfo(afterFomartData, mid, flag);
end
UserRankInfo.getUserRankInfo = function(self, mid, rankType, flag)
if not ( self.m_updateFlagMap[rankType] and self.m_updateFlagMap[rankType][flag] and self.m_updateFlagMap[rankType][flag][mid] ) then
self:requestData(mid, rankType, flag);
end
return self:__getUserRankInfo(mid, rankType, flag);
end
UserRankInfo.__getUserRankInfo = function(self, mid, rankType, flag)
rankType = tostring(rankType);
mid = tostring(mid);
flag = tostring(flag);
local data = self.m_data[rankType] and self.m_data[rankType][flag] and self.m_data[rankType][flag][mid];
return table.verify(data);
end
UserRankInfo.__insertUserRankInfo = function(self, data, mid, flag)
local rankType = data.ranktab or RankListConstants.eRankType.Money;
rankType = tostring(rankType);
mid = tostring(mid);
flag = tostring(flag);
self.m_data[rankType] = table.verify( self.m_data[rankType] );
self.m_data[rankType][flag] = table.verify( self.m_data[rankType][flag] );
self.m_data[rankType][flag][mid] = data;
end
UserRankInfo.__formatData = function(self, data)
data.ranktab = tostring(data.ranktab) or RankListConstants.eRankType.Money;
data.nick = tostring(data.nick) or "";
data.icon = tostring(data.icon) or "";
data.account = tonumber(data.account) or 0;
data.curpos = tonumber(data.curpos) or 0;
data.reward = tonumber(data.reward) or 0;
data.name = tostring(data.name) or "";
data.tel = tostring(data.tel) or "";
data.addr = tostring(data.addr) or "";
return data;
end
--@override
UserRankInfo.loadDictData = function(self, dict)
local strData = dict:getString("UserRankData");
local userRankData = json.decode(strData);
if table.isTable(userRankData) then
self.m_data = userRankData;
end
end
--@override
UserRankInfo.saveDictData = function(self, dict)
dict:setString("UserRankData", json.encode(self.m_data) or "");
end
--@override
UserRankInfo.getLocalDictName = function(self)
return "UserRankData";
end
UserRankInfo.s_socketCmdFuncMap = {
[PHP_GET_RANK_INFO] = UserRankInfo.onSocketCBRankMineInfo;
};
|
-- character name = {specific insult}
return {
abed = {'You are a foreigner, not able to comprehend anyone or anything, even something as undemanding as time.'},
troy = {'You are a cotton-picking jock boy who is impossibly far from being a grown-up.'},
shirley = {'You are a minority, a fragile personality, and an all-around dreadful parental figure.'},
annie = {'You are a dirty Jewess, whose only friend in high school was a bottle of pills.'},
pierce = {'You are one of the biggest disappointments to the name of Hawkthorne and will never be accepted in our family.'},
britta = {'You are a false-protesting Swedish dog, formed by generations of race-mixing with laplanders. Youre basically a finn.',
'Youre the worst'},
jeff = {'You are an unseasonably tan egotist who comes from a broken family with a father who does not love or care for you.'},
gilbert = {'You are the bastard offspring of a colored seductress and an unknown, weak-willed miscegenist.'},
dean = {'You are a pansexual imp, with an abundance of impulses and fetishes that no one can possibly understand.'},
chang = {'You are a rice-eating vagrant, psychotic teacher, lone wolf, murderous security guard, and a forgetful plotting lunatic.'},
guzman = {'You are one of the worst actors alive, tainting Boogie Nights with your disgraceful southern structure.'},
fatneil = {'You are a dungeon-loving nerd who cant help eating everything in sight, basting your chubby cheeks in tears of gravy as you try to keep hold of that miserable thing you call "your life".'},
buddy = {'You are an insecure wreck who panders to popular individuals when they come into your radar.'},
vicedean = {'You are an overweight man who cant get a grip on his life, let alone his school, and cant tell a difference between a right-hand man and a murderer.'},
leonard = {' You are a war veteran, unable to recover from your memories, instead hiding them by playing your money away and drowning your sorrows in hip flasks of whisky.'},
vaughan = {'You are a miniscule-nippled wannabe-rebel who asks the sky for help and sings about meaningless feelings that Im surprised even YOU care about.'},
duncan = {'You are a British slob, sticking your rod in anything that remotely resembles a woman, and cant teach a single class without a drink.'},
kevin = {'You are nothing but a figment of a psychos imagination, leading a fake double life that will still never accomplish anything except be a puppet of a coloured power-hungry miscreant.'},
rich = {'You are a flawed pretty boy who thinks that by being as successful as can be he might be able to win back the heart of a mother who never loved him in the first place.'},
garrett = {'You are a weak-willed individual who will never amount to anything except the most accidents in a single day.'},
vicki = {'You are a cookie-cutter who has no other distinguishing features than the thick slabs of fat you call legs.'},
misc = {},
}
--[[general insults with no use yet
"Why your not even fit to be an ivory buffer."
"As to be expected of the common stock"
"The best way to dispose of you would be with a Hawthorne brand Moist Towelette!"
"It's not your fault, blame your lineage."
'You are just an average-looking guy with a big chin.',
'You are streets behind.' ,
'Your team is Al Gore because your views are wrong.' ,
'You are like the exact opposite of an anti-oxidant.'
'Your feet are long and stupid. '
'Life sued you and you lost.'
'You are a bad rowboat, someone should sink you. '
'Were you born that way, or did you start off normal and then get wiener? '
'You are a puff of hot air from the lips of a ghost in the shadow of a unicorns dream.'
'You are the AT&T of people.'
'You are human tennis elbow. '
'You are a pizza burn on the roof of the worlds mouth.'
'You are the opposite of Batman.'
'Your love is weird, and toxic, and it destroys everything it touches!'
'Shouldnt you be making weird art movies or well-engineered cars?'
'If you get any nuttier, they are going to put you on The View. '
'You are crazytown banana pants.'
'What are you, a North Korean seamstress?'
'Your demographics historical vanity is well-documented! '
'You look like a pizza guy who couldnt make it into porn. '
'Youre a monster, youre Hitler, youre a racist pedophile!'
'If you had let being bad at something stop you, you wouldnt be here. '
'It must be hard to find someone willing to stomach your imminent dementia and present incontinence. '
'Ive always thought you were a joke and this isnt disproving the theory. '
'If a mechanical spider was tearing you to pieces, Tom Selleck would just stand there and watch you die. '
'Id like to see you try that without the benefit of your stylish clothing. '
'Go tongue Chang.'
'I thought you were like Bill Murray in any of his films, but youre more like Michael Douglas in any of his films.'
'You non-miraculous son of a bitch.']]
|
local BLOCK = require 'Core.Modules.logic-block'
local INFO = require 'Data.info'
local M = {}
local function showTypeScroll(event)
if event.phase == 'began' then
display.getCurrentStage():setFocus(event.target)
event.target.click = true
elseif event.phase == 'moved' then
if math.abs(event.x - event.xStart) > 30 or math.abs(event.y - event.yStart) > 30 then
display.getCurrentStage():setFocus(nil)
event.target.click = false
end
elseif event.phase == 'ended' or event.phase == 'cancelled' then
display.getCurrentStage():setFocus(nil)
if event.target.click and M.group.currentIndex ~= event.target.index then
event.target.click = false
M.group.types[event.target.index].scroll.isVisible = true
M.group.types[M.group.currentIndex].scroll.isVisible = false
M.group[3].isVisible = event.target.index == 1
M.group[4].isVisible = event.target.index == 1
M.group.currentIndex = event.target.index
end
end
return true
end
local function newBlockListener(event)
if event.phase == 'began' then
display.getCurrentStage():setFocus(event.target)
event.target.click = true
elseif event.phase == 'moved' then
if math.abs(event.x - event.xStart) > 30 or math.abs(event.y - event.yStart) > 30 then
M.group.types[event.target.index[1]].scroll:takeFocus(event)
event.target.click = false
end
elseif event.phase == 'ended' or event.phase == 'cancelled' then
display.getCurrentStage():setFocus(nil)
if event.target.click then
event.target.click = false
M.group:removeSelf() M.group = nil
BLOCKS.group.isVisible = true
local data = GET_GAME_CODE(CURRENT_LINK)
local scrollY = select(2, BLOCKS.group[8]:getContentPosition())
local diffY = BLOCKS.group[8].y - BLOCKS.group[8].height / 2
local targetY = math.abs(scrollY) + diffY + CENTER_Y - 150
local blockName = INFO.listBlock[INFO.listType[event.target.index[1]]][event.target.index[2]]
local blockEvent = INFO.getType(blockName) == 'events'
local blockIndex = #BLOCKS.group.blocks + 1
local blockParams = {name = blockName, params = {}, event = blockEvent, comment = false, nested = blockEvent and {} or nil}
for i = 1, #BLOCKS.group.blocks do
if BLOCKS.group.blocks[i].y > targetY then
blockIndex = i break
end
end
if not blockEvent and #BLOCKS.group.blocks == 0 then
table.insert(data.scripts[CURRENT_SCRIPT].params, 1, {name = 'onStart', params = {}, event = true, comment = false, nested = {}})
BLOCKS.new('onStart', 1, true, {}, false, {}) blockIndex = 2
end
table.insert(data.scripts[CURRENT_SCRIPT].params, blockIndex, blockParams)
SET_GAME_CODE(CURRENT_LINK, data)
BLOCKS.new(blockName, blockIndex, blockEvent, {}, false, blockEvent and {} or nil)
if #BLOCKS.group.blocks > 2 then
display.getCurrentStage():setFocus(BLOCKS.group.blocks[blockIndex])
BLOCKS.group.blocks[blockIndex].click = true
BLOCKS.group.blocks[blockIndex].move = true
newMoveLogicBlock({target = BLOCKS.group.blocks[blockIndex]}, BLOCKS.group, BLOCKS.group[8], true)
end
end
end
return true
end
local function textListener(event)
if event.phase == 'editing' then
M.group.types[1].scroll:removeSelf()
M.group.types[1].scroll = nil
M.group.types[1].scroll = WIDGET.newScrollView({
x = CENTER_X, y = (M.group[3].y + 2 + M.group[2].y) / 2,
width = DISPLAY_WIDTH, height = M.group[2].y - M.group[3].y + 2,
hideBackground = true, hideScrollBar = false,
horizontalScrollDisabled = true, isBounceEnabled = true,
})
M.group:insert(M.group.types[1].scroll)
local lastY = 90
local scrollHeight = 50
for j = 1, #INFO.listBlock.everyone do
if UTF8.find(UTF8.lower(STR['blocks.' .. INFO.listBlock.everyone[j]]), UTF8.lower(event.target.text), 1, true) then
local event = INFO.getType(INFO.listBlock.everyone[j]) == 'events'
M.group.types[1].blocks[j] = display.newPolygon(0, 0, BLOCK.getPolygonParams(event, DISPLAY_WIDTH - BOTTOM_WIDTH - 60, event and 102 or 116))
M.group.types[1].blocks[j].x = DISPLAY_WIDTH / 2
M.group.types[1].blocks[j].y = lastY
M.group.types[1].blocks[j]:setFillColor(INFO.getBlockColor(INFO.listBlock.everyone[j]))
M.group.types[1].blocks[j]:setStrokeColor(0.3)
M.group.types[1].blocks[j].strokeWidth = 4
M.group.types[1].blocks[j].index = {1, j}
M.group.types[1].blocks[j]:addEventListener('touch', newBlockListener)
M.group.types[1].scroll:insert(M.group.types[1].blocks[j])
M.group.types[1].blocks[j].text = display.newText({
text = STR['blocks.' .. INFO.listBlock.everyone[j]],
x = DISPLAY_WIDTH / 2 - M.group.types[1].blocks[j].width / 2 + 20,
y = lastY, width = M.group.types[1].blocks[j].width - 40,
height = 40, font = 'ubuntu', fontSize = 32, align = 'left'
}) M.group.types[1].blocks[j].text.anchorX = 0
M.group.types[1].scroll:insert(M.group.types[1].blocks[j].text)
lastY = lastY + 140
scrollHeight = scrollHeight + 116
end
end
M.group.types[1].scroll:setScrollHeight(scrollHeight)
end
end
M.create = function()
M.group = display.newGroup()
M.group.types = {}
M.group.currentIndex = 1
local bg = display.newImage('Sprites/bg.png', CENTER_X, CENTER_Y)
bg.width = DISPLAY_WIDTH
bg.height = DISPLAY_HEIGHT
M.group:insert(bg)
local line = display.newRect(CENTER_X, MAX_Y - 360, DISPLAY_WIDTH, 2)
line:setFillColor(0.45)
M.group:insert(line)
local find = display.newRect(CENTER_X, ZERO_Y + 80, DISPLAY_WIDTH - BOTTOM_WIDTH - 60, 2)
find:setFillColor(0.9)
M.group:insert(find)
local box = native.newTextField(5000, ZERO_Y + 50, DISPLAY_WIDTH - BOTTOM_WIDTH - 70, system.getInfo 'environment' ~= 'simulator' and 28 or 56)
timer.performWithDelay(0, function()
if M.group.isVisible then
box.x = CENTER_X
box.isEditable = true
box.hasBackground = false
box.placeholder = STR['button.block.find']
box.font = native.newFont('ubuntu', 28)
if system.getInfo 'platform' == 'android' and system.getInfo 'environment' ~= 'simulator' then
box:setTextColor(0.9)
else
box:setTextColor(0.1)
end
end
end) box:addEventListener('userInput', textListener)
M.group:insert(box)
local width = DISPLAY_WIDTH / 5 - 24
local x, y = ZERO_X + 20, MAX_Y - 305
for i = 1, #INFO.listType do
M.group.types[i] = display.newRoundedRect(x, y, width, 62, 11)
M.group.types[i].index = i
M.group.types[i].blocks = {}
M.group.types[i].anchorX = 0
M.group.types[i]:setFillColor(INFO.getBlockColor(nil, nil, INFO.listType[i]))
M.group.types[i]:addEventListener('touch', showTypeScroll)
M.group:insert(M.group.types[i])
local text = display.newText({
text = STR['blocks.' .. INFO.listType[i]],
x = 0, y = 0, width = width - 2, font = 'sans.ttf', fontSize = 19
}) local textheight = text.height > 55 and 55 or text.height text:removeSelf()
M.group.types[i].text = display.newText({
text = STR['blocks.' .. INFO.listType[i]],
x = x, y = y, width = width - 2, height = textheight,
font = 'ubuntu', fontSize = 19, align = 'center'
}) M.group.types[i].text.anchorX = 0
M.group:insert(M.group.types[i].text)
M.group.types[i].scroll = WIDGET.newScrollView({
x = CENTER_X, y = ((i == 1 and find.y + 2 or ZERO_Y + 1) + line.y) / 2,
width = DISPLAY_WIDTH, height = line.y - (i == 1 and find.y + 2 or ZERO_Y + 1),
hideBackground = true, hideScrollBar = false,
horizontalScrollDisabled = true, isBounceEnabled = true,
})
M.group:insert(M.group.types[i].scroll)
if i ~= 1 then M.group.types[i].scroll.isVisible = false end
if i % 5 == 0 then y, x = y + 85, ZERO_X + 20 else x = x + width + 20 end
local lastY = 90
local scrollHeight = 50
if INFO.listType[i] ~= 'none' then
for j = 1, #INFO.listBlock[INFO.listType[i]] do
local event = INFO.getType(INFO.listBlock[INFO.listType[i]][j]) == 'events'
M.group.types[i].blocks[j] = display.newPolygon(0, 0, BLOCK.getPolygonParams(event, DISPLAY_WIDTH - BOTTOM_WIDTH - 60, event and 102 or 116))
M.group.types[i].blocks[j].x = DISPLAY_WIDTH / 2
M.group.types[i].blocks[j].y = lastY
M.group.types[i].blocks[j]:setFillColor(INFO.getBlockColor(INFO.listBlock[INFO.listType[i]][j]))
M.group.types[i].blocks[j]:setStrokeColor(0.3)
M.group.types[i].blocks[j].strokeWidth = 4
M.group.types[i].blocks[j].index = {i, j}
M.group.types[i].blocks[j]:addEventListener('touch', newBlockListener)
M.group.types[i].scroll:insert(M.group.types[i].blocks[j])
M.group.types[i].blocks[j].text = display.newText({
text = STR['blocks.' .. INFO.listBlock[INFO.listType[i]][j]],
x = DISPLAY_WIDTH / 2 - M.group.types[i].blocks[j].width / 2 + 20,
y = lastY, width = M.group.types[i].blocks[j].width - 40,
height = 40, font = 'ubuntu', fontSize = 32, align = 'left'
}) M.group.types[i].blocks[j].text.anchorX = 0
M.group.types[i].scroll:insert(M.group.types[i].blocks[j].text)
lastY = lastY + 140
scrollHeight = scrollHeight + 140
end
end
M.group.types[i].scroll:setScrollHeight(scrollHeight)
end
end
return M
|
default_policy = {}
default_policy.endpoints = {}
default_policy.policy = {
["move"] = true, -- moves session items when metadata target.node changes
["follow"] = true, -- moves session items to the default device when it has changed
-- Set to 'true' to disable channel splitting & merging on nodes and enable
-- passthrough of audio in the same format as the format of the device.
-- Note that this breaks JACK support; it is generally not recommended
["audio.no-dsp"] = false,
-- how much to lower the volume of lower priority streams when ducking
-- note that this is a linear volume modifier (not cubic as in pulseaudio)
["duck.level"] = 0.3,
}
function default_policy.enable()
-- Session item factories, building blocks for the session management graph
-- Do not disable these unless you really know what you are doing
load_module("si-node")
load_module("si-audio-adapter")
load_module("si-standard-link")
load_module("si-audio-endpoint")
-- API to access default nodes from scripts
load_module("default-nodes-api")
-- API to access volume of streams from scripts
load_module("route-settings-api")
-- API to access mixer controls, needed for volume ducking
load_module("mixer-api")
-- Create endpoints statically at startup
load_script("static-endpoints.lua", default_policy.endpoints)
-- Create items for nodes that appear in the graph
load_script("create-item.lua", default_policy.policy)
-- Link nodes to each other to make media flow in the graph
load_script("policy-node.lua", default_policy.policy)
-- Link client nodes with endpoints to make media flow in the graph
load_script("policy-endpoint-client.lua", default_policy.policy)
load_script("policy-endpoint-client-links.lua", default_policy.policy)
-- Link endpoints with device nodes to make media flow in the graph
load_script("policy-endpoint-device.lua", default_policy.policy)
end
|
SILE.hyphenator.languages["es"] = {};
SILE.hyphenator.languages["es"].patterns =
{
"1b",
"4b.",
"2bb",
"2bc",
"2bd",
"2bf",
"2bg",
"2b1h",
"2bj",
"2bk",
"2bm",
"2bn",
"2bp",
"2bq",
"2bs",
"2bt",
"2bv",
"2bw",
"2bx",
"2by",
"2bz",
"1c",
"4c.",
"2cb",
"2cc",
"2cd",
"2cf",
"2cg",
"2cj",
"2ck",
"2cm",
"2cn",
"2cp",
"2cq",
"2cs",
"2ct",
"2cv",
"2cw",
"2cx",
"2cy",
"2cz",
"1d",
"4d.",
"2db",
"2dc",
"2dd",
"2df",
"2dg",
"2d1h",
"2dj",
"2dk",
"2dl",
"2dm",
"2dn",
"2dp",
"2dq",
"2ds",
"2dt",
"2dv",
"2dw",
"2dx",
"2dy",
"2dz",
"1f",
"4f.",
"2fb",
"2fc",
"2fd",
"2ff",
"2fg",
"2f1h",
"2fj",
"2fk",
"2fm",
"2fn",
"2fp",
"2fq",
"2fs",
"2ft",
"2fv",
"2fw",
"2fx",
"2fy",
"2fz",
"1g",
"4g.",
"2gb",
"2gc",
"2gd",
"2gf",
"2gg",
"2g1h",
"2gj",
"2gk",
"2gm",
"2gn",
"2gp",
"2gq",
"2gs",
"2gt",
"2gv",
"2gw",
"2gx",
"2gy",
"2gz",
"4h.",
"2hb",
"2hc",
"2hd",
"2hf",
"2hg",
"2h1h",
"2hj",
"2hk",
"2hl",
"2hm",
"2hn",
"2hp",
"2hq",
"2hr",
"2hs",
"2ht",
"2hv",
"2hw",
"2hx",
"2hy",
"2hz",
"1j",
"4j.",
"2jb",
"2jc",
"2jd",
"2jf",
"2jg",
"2j1h",
"2jj",
"2jk",
"2jl",
"2jm",
"2jn",
"2jp",
"2jq",
"2jr",
"2js",
"2jt",
"2jv",
"2jw",
"2jx",
"2jy",
"2jz",
"1k",
"4k.",
"2kb",
"2kc",
"2kd",
"2kf",
"2kg",
"2k1h",
"2kj",
"2kk",
"2km",
"2kn",
"2kp",
"2kq",
"2ks",
"2kt",
"2kv",
"2kw",
"2kx",
"2ky",
"2kz",
"1l",
"4l.",
"2lb",
"2lc",
"2ld",
"2lf",
"2lg",
"2l1h",
"2lj",
"2lk",
"2lm",
"2ln",
"2lp",
"2lq",
"2lr",
"2ls",
"2lt",
"2lv",
"2lw",
"2lx",
"2ly",
"2lz",
"1m",
"4m.",
"2mb",
"2mc",
"2md",
"2mf",
"2mg",
"2m1h",
"2mj",
"2mk",
"2ml",
"2mm",
"2mn",
"2mp",
"2mq",
"2mr",
"2ms",
"2mt",
"2mv",
"2mw",
"2mx",
"2my",
"2mz",
"1n",
"4n.",
"2nb",
"2nc",
"2nd",
"2nf",
"2ng",
"2n1h",
"2nj",
"2nk",
"2nl",
"2nm",
"2nn",
"2np",
"2nq",
"2nr",
"2ns",
"2nt",
"2nv",
"2nw",
"2nx",
"2ny",
"2nz",
"1p",
"4p.",
"2pb",
"2pc",
"2pd",
"2pf",
"2pg",
"2p1h",
"2pj",
"2pk",
"2pm",
"2pn",
"2pp",
"2pq",
"2ps",
"2pt",
"2pv",
"2pw",
"2px",
"2py",
"2pz",
"1q",
"4q.",
"2qb",
"2qc",
"2qd",
"2qf",
"2qg",
"2q1h",
"2qj",
"2qk",
"2ql",
"2qm",
"2qn",
"2qp",
"2qq",
"2qr",
"2qs",
"2qt",
"2qv",
"2qw",
"2qx",
"2qy",
"2qz",
"1r",
"4r.",
"2rb",
"2rc",
"2rd",
"2rf",
"2rg",
"2r1h",
"2rj",
"2rk",
"2rl",
"2rm",
"2rn",
"2rp",
"2rq",
"2rs",
"2rt",
"2rv",
"2rw",
"2rx",
"2ry",
"2rz",
"1s",
"4s.",
"2sb",
"2sc",
"2sd",
"2sf",
"2sg",
"2s1h",
"2sj",
"2sk",
"2sl",
"2sm",
"2sn",
"2sp",
"2sq",
"2sr",
"2ss",
"2st",
"2sv",
"2sw",
"2sx",
"2sy",
"2sz",
"1t",
"4t.",
"2tb",
"2tc",
"2td",
"2tf",
"2tg",
"2t1h",
"2tj",
"2tk",
"2tm",
"2tn",
"2tp",
"2tq",
"2ts",
"2tt",
"2tv",
"2tw",
"2tx",
"2ty",
"2tz",
"1v",
"4v.",
"2vb",
"2vc",
"2vd",
"2vf",
"2vg",
"2v1h",
"2vj",
"2vk",
"2vm",
"2vn",
"2vp",
"2vq",
"2vs",
"2vt",
"2vv",
"2vw",
"2vx",
"2vy",
"2vz",
"1w",
"4w.",
"2wb",
"2wc",
"2wd",
"2wf",
"2wg",
"2w1h",
"2wj",
"2wk",
"2wl",
"2wm",
"2wn",
"2wp",
"2wq",
"2wr",
"2ws",
"2wt",
"2wv",
"2ww",
"2wx",
"2wy",
"2wz",
"1x",
"4x.",
"2xb",
"2xc",
"2xd",
"2xf",
"2xg",
"2x1h",
"2xj",
"2xk",
"2xl",
"2xm",
"2xn",
"2xp",
"2xq",
"2xr",
"2xs",
"2xt",
"2xv",
"2xw",
"2xx",
"2xy",
"2xz",
"1y",
"4y.",
"2yb",
"2yc",
"2yd",
"2yf",
"2yg",
"2y1h",
"2yj",
"2yk",
"2yl",
"2ym",
"2yn",
"2yp",
"2yq",
"2yr",
"2ys",
"2yt",
"2yv",
"2yw",
"2yx",
"2yy",
"2yz",
"1z",
"4z.",
"2zb",
"2zc",
"2zd",
"2zf",
"2zg",
"2z1h",
"2zj",
"2zk",
"2zl",
"2zm",
"2zn",
"2zp",
"2zq",
"2zr",
"2zs",
"2zt",
"2zv",
"2zw",
"2zx",
"2zy",
"2zz",
"1ñ",
"4ñ.",
"c4h",
"4ch.",
"2chb",
"2chc",
"2chd",
"2chf",
"2chg",
"2chh",
"2chj",
"2chk",
"ch2l",
"2chm",
"2chn",
"2chp",
"2chq",
"ch2r",
"2chs",
"2cht",
"2chv",
"2chw",
"2chx",
"2chy",
"2chz",
"l4l",
"4ll.",
"2llb",
"2llc",
"2lld",
"2llf",
"2llg",
"2llh",
"2llj",
"2llk",
"2lll",
"2llm",
"2lln",
"2llp",
"2llq",
"2llr",
"2lls",
"2llt",
"2llv",
"2llw",
"2llx",
"2lly",
"2llz",
"b2l",
"4bl.",
"2bl2b",
"2bl2c",
"2bl2d",
"2bl2f",
"2bl2g",
"2bl2h",
"2bl2j",
"2bl2k",
"2bl2l",
"2bl2m",
"2bl2n",
"2bl2p",
"2bl2q",
"2bl2r",
"2bl2s",
"2bl2t",
"2bl2v",
"2bl2w",
"2bl2x",
"2bl2y",
"2bl2z",
"c2l",
"4cl.",
"2cl2b",
"2cl2c",
"2cl2d",
"2cl2f",
"2cl2g",
"2cl2h",
"2cl2j",
"2cl2k",
"2cl2l",
"2cl2m",
"2cl2n",
"2cl2p",
"2cl2q",
"2cl2r",
"2cl2s",
"2cl2t",
"2cl2v",
"2cl2w",
"2cl2x",
"2cl2y",
"2cl2z",
"f2l",
"4fl.",
"2fl2b",
"2fl2c",
"2fl2d",
"2fl2f",
"2fl2g",
"2fl2h",
"2fl2j",
"2fl2k",
"2fl2l",
"2fl2m",
"2fl2n",
"2fl2p",
"2fl2q",
"2fl2r",
"2fl2s",
"2fl2t",
"2fl2v",
"2fl2w",
"2fl2x",
"2fl2y",
"2fl2z",
"g2l",
"4gl.",
"2gl2b",
"2gl2c",
"2gl2d",
"2gl2f",
"2gl2g",
"2gl2h",
"2gl2j",
"2gl2k",
"2gl2l",
"2gl2m",
"2gl2n",
"2gl2p",
"2gl2q",
"2gl2r",
"2gl2s",
"2gl2t",
"2gl2v",
"2gl2w",
"2gl2x",
"2gl2y",
"2gl2z",
"k2l",
"4kl.",
"2kl2b",
"2kl2c",
"2kl2d",
"2kl2f",
"2kl2g",
"2kl2h",
"2kl2j",
"2kl2k",
"2kl2l",
"2kl2m",
"2kl2n",
"2kl2p",
"2kl2q",
"2kl2r",
"2kl2s",
"2kl2t",
"2kl2v",
"2kl2w",
"2kl2x",
"2kl2y",
"2kl2z",
"p2l",
"4pl.",
"2pl2b",
"2pl2c",
"2pl2d",
"2pl2f",
"2pl2g",
"2pl2h",
"2pl2j",
"2pl2k",
"2pl2l",
"2pl2m",
"2pl2n",
"2pl2p",
"2pl2q",
"2pl2r",
"2pl2s",
"2pl2t",
"2pl2v",
"2pl2w",
"2pl2x",
"2pl2y",
"2pl2z",
"v2l",
"4vl.",
"2vl2b",
"2vl2c",
"2vl2d",
"2vl2f",
"2vl2g",
"2vl2h",
"2vl2j",
"2vl2k",
"2vl2l",
"2vl2m",
"2vl2n",
"2vl2p",
"2vl2q",
"2vl2r",
"2vl2s",
"2vl2t",
"2vl2v",
"2vl2w",
"2vl2x",
"2vl2y",
"2vl2z",
"b2r",
"4br.",
"2br2b",
"2br2c",
"2br2d",
"2br2f",
"2br2g",
"2br2h",
"2br2j",
"2br2k",
"2br2l",
"2br2m",
"2br2n",
"2br2p",
"2br2q",
"2br2r",
"2br2s",
"2br2t",
"2br2v",
"2br2w",
"2br2x",
"2br2y",
"2br2z",
"c2r",
"4cr.",
"2cr2b",
"2cr2c",
"2cr2d",
"2cr2f",
"2cr2g",
"2cr2h",
"2cr2j",
"2cr2k",
"2cr2l",
"2cr2m",
"2cr2n",
"2cr2p",
"2cr2q",
"2cr2r",
"2cr2s",
"2cr2t",
"2cr2v",
"2cr2w",
"2cr2x",
"2cr2y",
"2cr2z",
"d2r",
"4dr.",
"2dr2b",
"2dr2c",
"2dr2d",
"2dr2f",
"2dr2g",
"2dr2h",
"2dr2j",
"2dr2k",
"2dr2l",
"2dr2m",
"2dr2n",
"2dr2p",
"2dr2q",
"2dr2r",
"2dr2s",
"2dr2t",
"2dr2v",
"2dr2w",
"2dr2x",
"2dr2y",
"2dr2z",
"f2r",
"4fr.",
"2fr2b",
"2fr2c",
"2fr2d",
"2fr2f",
"2fr2g",
"2fr2h",
"2fr2j",
"2fr2k",
"2fr2l",
"2fr2m",
"2fr2n",
"2fr2p",
"2fr2q",
"2fr2r",
"2fr2s",
"2fr2t",
"2fr2v",
"2fr2w",
"2fr2x",
"2fr2y",
"2fr2z",
"g2r",
"4gr.",
"2gr2b",
"2gr2c",
"2gr2d",
"2gr2f",
"2gr2g",
"2gr2h",
"2gr2j",
"2gr2k",
"2gr2l",
"2gr2m",
"2gr2n",
"2gr2p",
"2gr2q",
"2gr2r",
"2gr2s",
"2gr2t",
"2gr2v",
"2gr2w",
"2gr2x",
"2gr2y",
"2gr2z",
"k2r",
"4kr.",
"2kr2b",
"2kr2c",
"2kr2d",
"2kr2f",
"2kr2g",
"2kr2h",
"2kr2j",
"2kr2k",
"2kr2l",
"2kr2m",
"2kr2n",
"2kr2p",
"2kr2q",
"2kr2r",
"2kr2s",
"2kr2t",
"2kr2v",
"2kr2w",
"2kr2x",
"2kr2y",
"2kr2z",
"p2r",
"4pr.",
"2pr2b",
"2pr2c",
"2pr2d",
"2pr2f",
"2pr2g",
"2pr2h",
"2pr2j",
"2pr2k",
"2pr2l",
"2pr2m",
"2pr2n",
"2pr2p",
"2pr2q",
"2pr2r",
"2pr2s",
"2pr2t",
"2pr2v",
"2pr2w",
"2pr2x",
"2pr2y",
"2pr2z",
"r2r",
"4rr.",
"2rr2b",
"2rr2c",
"2rr2d",
"2rr2f",
"2rr2g",
"2rr2h",
"2rr2j",
"2rr2k",
"2rr2l",
"2rr2m",
"2rr2n",
"2rr2p",
"2rr2q",
"2rr2r",
"2rr2s",
"2rr2t",
"2rr2v",
"2rr2w",
"2rr2x",
"2rr2y",
"2rr2z",
"t2r",
"4tr.",
"2tr2b",
"2tr2c",
"2tr2d",
"2tr2f",
"2tr2g",
"2tr2h",
"2tr2j",
"2tr2k",
"2tr2l",
"2tr2m",
"2tr2n",
"2tr2p",
"2tr2q",
"2tr2r",
"2tr2s",
"2tr2t",
"2tr2v",
"2tr2w",
"2tr2x",
"2tr2y",
"2tr2z",
"v2r",
"4vr.",
"2vr2b",
"2vr2c",
"2vr2d",
"2vr2f",
"2vr2g",
"2vr2h",
"2vr2j",
"2vr2k",
"2vr2l",
"2vr2m",
"2vr2n",
"2vr2p",
"2vr2q",
"2vr2r",
"2vr2s",
"2vr2t",
"2vr2v",
"2vr2w",
"2vr2x",
"2vr2y",
"2vr2z",
"2b3p2t",
"2c3p2t",
"2d3p2t",
"2l3p2t",
"2m3p2t",
"2n3p2t",
"2r3p2t",
"2s3p2t",
"2t3p2t",
"2x3p2t",
"2y3p2t",
"4pt.",
"2b3c2t",
"2c3c2t",
"2d3c2t",
"2l3c2t",
"2m3c2t",
"2n3c2t",
"2r3c2t",
"2s3c2t",
"2t3c2t",
"2x3c2t",
"2y3c2t",
"4ct.",
"2b3c2n",
"2c3c2n",
"2d3c2n",
"2l3c2n",
"2m3c2n",
"2n3c2n",
"2r3c2n",
"2s3c2n",
"2t3c2n",
"2x3c2n",
"2y3c2n",
"4cn.",
"2b3p2s",
"2c3p2s",
"2d3p2s",
"2l3p2s",
"2m3p2s",
"2n3p2s",
"2r3p2s",
"2s3p2s",
"2t3p2s",
"2x3p2s",
"2y3p2s",
"4ps.",
"2b3m2n",
"2c3m2n",
"2d3m2n",
"2l3m2n",
"2m3m2n",
"2n3m2n",
"2r3m2n",
"2s3m2n",
"2t3m2n",
"2x3m2n",
"2y3m2n",
"4mn.",
"2b3g2n",
"2c3g2n",
"2d3g2n",
"2l3g2n",
"2m3g2n",
"2n3g2n",
"2r3g2n",
"2s3g2n",
"2t3g2n",
"2x3g2n",
"2y3g2n",
"4gn.",
"2b3f2t",
"2c3f2t",
"2d3f2t",
"2l3f2t",
"2m3f2t",
"2n3f2t",
"2r3f2t",
"2s3f2t",
"2t3f2t",
"2x3f2t",
"2y3f2t",
"4ft.",
"2b3p2n",
"2c3p2n",
"2d3p2n",
"2l3p2n",
"2m3p2n",
"2n3p2n",
"2r3p2n",
"2s3p2n",
"2t3p2n",
"2x3p2n",
"2y3p2n",
"4pn.",
"2b3c2z",
"2c3c2z",
"2d3c2z",
"2l3c2z",
"2m3c2z",
"2n3c2z",
"2r3c2z",
"2s3c2z",
"2t3c2z",
"2x3c2z",
"2y3c2z",
"4cz.",
"2b3t2z",
"2c3t2z",
"2d3t2z",
"2l3t2z",
"2m3t2z",
"2n3t2z",
"2r3t2z",
"2s3t2z",
"2t3t2z",
"2x3t2z",
"2y3t2z",
"4tz.",
"2b3t2s",
"2c3t2s",
"2d3t2s",
"2l3t2s",
"2m3t2s",
"2n3t2s",
"2r3t2s",
"2s3t2s",
"2t3t2s",
"2x3t2s",
"2y3t2s",
"4ts.",
"san4c5t",
"plan4c5t",
"2no.",
"2t2l",
"4caca4",
"4cago4",
"4caga4",
"4cagas.",
"4teta.",
"4tetas.",
"4puta4",
"4puto4",
".hu4mea",
".hu4meo",
".he4mee",
"4meo.",
"4meable.",
"4meables.",
"4pedo4",
"4culo4",
"3mente.",
"4i3go.",
"4es.",
"4és",
"4e.",
"4e3mos.",
"4éis.",
"4en.",
"4ía.",
"4ías.",
"4ía3mos.",
"4íais.",
"4ían.",
"4í.",
"4í4s3te.",
"4í4s3tes.",
"4í3tes.",
"4í3mos.",
"4ís3teis.",
"4e3ré.",
"4e3rás.",
"4e3rés.",
"4e3rís.",
"4e3rá.",
"4e3re3mos.",
"4e3réis.",
"4e3rán.",
"4i3ga.",
"4i3gas.",
"4i3gás.",
"4i3gamos.",
"4i3gáis.",
"4a4i3gan.",
"4e3ría.",
"4e3rías.",
"4e3ríamos.",
"4e3ríais.",
"4e3rían.",
"4i3gá3mosme.",
"4i3gá3mosmele.",
"4i3gá3mosmelo.",
"4i3gá3mos3mela.",
"4i3gá3mosmeles.",
"4i3gá3mosmelos.",
"4i3gá3mos3melas.",
"4i3gá3moste.",
"4i3gá3mostele.",
"4i3gá3mostelo.",
"4i3gá3mos3tela.",
"4i3gá3mosteles.",
"4i3gá3mostelos.",
"4i3gá3mos3telas.",
"4i3gá3mosle.",
"4i3gá3mosla.",
"4i3gá3moslo.",
"4i3gá3mosele.",
"4i3gá3moselo.",
"4i3gá3mosela.",
"4i3gá3moseles.",
"4i3gá3moselos.",
"4i3gá3moselas.",
"4i3gá3monos.",
"4i3gá3monosle.",
"4i3gá3monoslo.",
"4i3gá3monosla.",
"4i3gá3monosles.",
"4i3gá3monoslos.",
"4i3gá3monoslas.",
"4i3gá3moos.",
"4i3gá3moosle.",
"4i3gá3mooslo.",
"4i3gá3moosla.",
"4i3gá3moosles.",
"4i3gá3mooslos.",
"4i3gá3mooslas.",
"4i3gá3mosles.",
"4i3gá3moslas.",
"4i3gá3moslos.",
"4ed.",
"4é.",
"4edme.",
"4édmele.",
"4édmelo.",
"4éd3mela.",
"4édmeles.",
"4édmelos.",
"4éd3melas.",
"4edte.",
"4édtele.",
"4édtelo.",
"4éd3tela.",
"4édteles.",
"4édtelos.",
"4éd3telas.",
"4edle.",
"4eedla.",
"4edlo.",
"4édsele.",
"4édselo.",
"4édsela.",
"4édseles.",
"4édselos.",
"4édselas.",
"4ednos.",
"4édnosle.",
"4édnoslo.",
"4édnosla.",
"4édnosles.",
"4édnoslos.",
"4édnoslas.",
"4eos.",
"4éosle.",
"4éoslo.",
"4éosla.",
"4éosles.",
"4éoslos.",
"4éoslas.",
"4edles.",
"4edlas.",
"4edlos.",
"4er.",
"4erme.",
"4érmele.",
"4érmelo.",
"4ér3mela.",
"4érmeles.",
"4érmelos.",
"4ér3melas.",
"4erte.",
"4értele.",
"4értelo.",
"4ér3tela.",
"4érteles.",
"4értelos.",
"4ér3telas.",
"4erle.",
"4erla.",
"4erlo.",
"4erse.",
"4érsele.",
"4érselo.",
"4érsela.",
"4érseles.",
"4érselos.",
"4érselas.",
"4ernos.",
"4érnosle.",
"4érnoslo.",
"4érnosla.",
"4érnosles.",
"4érnoslos.",
"4érnoslas.",
"4e3ros.",
"4é3rosle.",
"4é3roslo.",
"4é3rosla.",
"4é3rosles.",
"4é3roslos.",
"4é3roslas.",
"4erles.",
"4erlas.",
"4erlos.",
"4í3do.",
"4í3da.",
"4í3dos.",
"4í3das.",
"4o.",
"4as.",
"4a.",
"4ás.",
"4a3mos.",
"4áis.",
"4an.",
"4aste.",
"4astes.",
"4ó.",
"4ates.",
"4asteis.",
"4a3ron.",
"4a3ba.",
"4a3bas.",
"4á3bamos.",
"4a3bais.",
"4a3ban.",
"4a3ría.",
"4a3rías.",
"4a3ríamos.",
"4a3ríais",
"4a3rían.",
"4a3ré.",
"4a3rás.",
"4a3rés.",
"4a3rís.",
"4a3rá.",
"4a3remos.",
"4a3réis.",
"4a3rán.",
"4a3ra.",
"4a3ras.",
"4á3ramos.",
"4a3rais.",
"4a3ran.",
"4a3re.",
"4a3res.",
"4á3remos.",
"4a3reis.",
"4a3ren.",
"4a3se.",
"4a3ses.",
"4á3semos.",
"4a3seis.",
"4a3sen.",
"4ad.",
"e5r4as.",
"e5r4a3mos.",
"e5r4áis.",
"e5r4an.",
"e5r4aste.",
"e5r4astes.",
"e5r4ates.",
"e5r4asteis.",
"e5r4a3ron.",
"e5r4a3ba.",
"e5r4a3bas.",
"e5r4á3bamos.",
"e5r4a3bais.",
"e5r4a3ban.",
"e5r4a3ría.",
"e5r4a3rías.",
"e5r4a3ríamos.",
"e5r4a3ríais",
"e5r4a3rían.",
"e5r4a3ré.",
"e5r4a3rás.",
"e5r4a3rés.",
"e5r4a3rís.",
"e5r4a3rá.",
"e5r4a3remos.",
"e5r4a3réis.",
"e5r4a3rán.",
"e5r4a3ra.",
"e5r4a3ras.",
"e5r4á3ramos.",
"e5r4a3rais.",
"e5r4a3ran.",
"e5r4a3re.",
"e5r4a3res.",
"e5r4á3remos.",
"e5r4a3reis.",
"e5r4a3ren.",
"e5r4a3se.",
"e5r4a3ses.",
"e5r4á3semos.",
"e5r4a3seis.",
"e5r4a3sen.",
"e5r4ad.",
"4adme.",
"4ádmele.",
"4ádmelo.",
"4ád3mela.",
"4ádmeles.",
"4ádmelos.",
"4ád3melas.",
"4adte.",
"4ádtele.",
"4ádtelo.",
"4ád3tela.",
"4ádteles.",
"4ádtelos.",
"4ád3telas.",
"4adle.",
"4eadla.",
"4adlo.",
"4ádsele.",
"4ádselo.",
"4ádsela.",
"4ádseles.",
"4ádselos.",
"4ádselas.",
"4adnos.",
"4ádnosle.",
"4ádnoslo.",
"4ádnosla.",
"4ádnosles.",
"4ádnoslos.",
"4ádnoslas.",
"4aos.",
"4áosle.",
"4áoslo.",
"4áosla.",
"4áosles.",
"4áoslos.",
"4áoslas.",
"4adles.",
"4adlas.",
"4adlos.",
"4ar.",
"4a4rme.",
"4á4rmele.",
"4á4rmelo.",
"4á4r3mela.",
"4á4r3meles.",
"4á4r3melos.",
"4á4r3melas.",
"4a4r3te.",
"4á4r3tele.",
"4á4r3telo.",
"4á4r3tela.",
"4á4r3teles.",
"4á4r3telos.",
"4á4r3telas.",
"4a4r3le.",
"4a4r3la.",
"4a4r3lo.",
"4a4r3se.",
"4á4r3sele.",
"4á4r3selo.",
"4á4r3sela.",
"4á4r3seles.",
"4á4r3selos.",
"4á4r3selas.",
"4a4r3nos.",
"4á4r3nosle.",
"4á4r3noslo.",
"4á4r3nosla.",
"4á4r3nosles.",
"4á4r3noslos.",
"4á4r3noslas.",
"4a3ros.",
"4árosle.",
"4ároslo.",
"4árosla.",
"4árosles.",
"4ároslos.",
"4ároslas.",
"4a4r3les.",
"4a4r3las.",
"4a4r3los.",
"4a3do.",
"4a3da.",
"4a3dos.",
"4a3das.",
"e5r4a3do.",
"e5r4a3da.",
"e5r4a3dos.",
"e5r4a3das.",
"4ando",
"4ándole.",
"4ándolo.",
"4ándola.",
"4ándoles.",
"4ándolos.",
"4ándolas.",
"4ándonos.",
"4ándoos.",
"4ándome.",
"4ándomelo.",
"4ándomela.",
"4ándomele.",
"4ándomelos.",
"4ándomelas.",
"4ándomeles.",
"4ándote.",
"4ándoteme.",
"4ándotelo.",
"4ándotela.",
"4ándotele.",
"4ándotelos.",
"4ándotelas.",
"4ándoteles.",
"4ándotenos.",
"4ándose.",
"4ándoseme.",
"4ándoselo.",
"4ándosela.",
"4ándosele.",
"4ándoselos.",
"4ándoselas.",
"4ándoseles.",
"4ándosenos.",
"4a3dor.",
"4a3dora.",
"4a3dores.",
"4a3doras.",
"e5r4a3dor.",
"e5r4a3dora.",
"e5r4a3dores.",
"e5r4a3doras.",
"acto1h",
"acto1a2",
"acto1e2",
"acto1i2",
"acto1o2",
"acto1u2",
"acto1á2",
"acto1é2",
"acto1í2",
"acto1ó2",
"acto1ú2",
"afro1h",
"afro1a2",
"afro1e2",
"afro1i2",
"afro1o2",
"afro1u2",
"afro1á2",
"afro1é2",
"afro1í2",
"afro1ó2",
"afro1ú2",
".a2",
".an2a2",
".an2e2",
".an2i2",
".an2o2",
".an2u2",
".an2á2",
".an2é2",
".an2í2",
".an2ó2",
".an2ú2.",
"ana3lí",
".aná3li",
".ana3li",
".an3aero",
".an3e2pigr",
".ane3xa",
".ane3xá",
".ane3xe",
".ane3xé",
".ane3xio",
".ane3xió",
".an3h",
".ani3mad",
".ani3mád",
".ani3dar",
".ani3ll",
".ani3m",
".aniña",
".ani3q",
".an3i2so",
".an3i2só",
".ani3vel",
".ano5che",
".ano5din",
".ano5mal",
".ano5nad",
".anó3nim",
".anó5mal",
".ano5nim",
".ano5ta",
".ano3tá",
".anua3l",
".anua4lm",
".anu3bl",
".anu3da",
".anu3l",
"asu3b2",
"aero1h",
"aero1a2",
"aero1e2",
"aero1i2",
"aero1o2",
"aero1u2",
"aero1á2",
"aero1é2",
"aero1í2",
"aero1ó2",
"aero1ú2",
"anfi1h",
"anfi1a2",
"anfi1e2",
"anfi1i2",
"anfi1o2",
"anfi1u2",
"anfi1á2",
"anfi1é2",
"anfi1í2",
"anfi1ó2",
"anfi1ú2",
"anglo1h",
"anglo1a2",
"anglo1e2",
"anglo1i2",
"anglo1o2",
"anglo1u2",
"anglo1á2",
"anglo1é2",
"anglo1í2",
"anglo1ó2",
"anglo1ú2",
"ante1h",
"ante1a2",
"ante1e2",
"ante1i2",
"ante1o2",
"ante1u2",
"ante1á2",
"ante1é2",
"ante1í2",
"ante1ó2",
"ante1ú2",
".ante2o3je",
"acante2",
"4ísmo.",
"4ísmos.",
"4ísta.",
"4ístas.",
"4ístico.",
"4ísticos.",
"4ística.",
"4ísticas.",
"t4eo3nes.",
"mante4a",
"e4a3miento",
".anti1h",
".anti1a2",
".anti1e2",
".anti1i2",
".anti1o2",
".anti1u2",
".anti1á2",
".anti1é2",
".anti1í2",
".anti1ó2",
".anti1ú2",
"ti2o3qu",
"ti2o3co",
"archi1h",
"archi1a2",
"archi1e2",
"archi1i2",
"archi1o2",
"archi1u2",
"archi1á2",
"archi1é2",
"archi1í2",
"archi1ó2",
"archi1ú2",
"auto1h",
"auto1a2",
"auto1e2",
"auto1i2",
"auto1o2",
"auto1u2",
"auto1á2",
"auto1é2",
"auto1í2",
"auto1ó2",
"auto1ú2",
"biblio1h",
"biblio1a2",
"biblio1e2",
"biblio1i2",
"biblio1o2",
"biblio1u2",
"biblio1á2",
"biblio1é2",
"biblio1í2",
"biblio1ó2",
"biblio1ú2",
"bio1h",
"bio1a2",
"bio1e2",
"bio1i2",
"bio1o2",
"bio1u2",
"bio1á2",
"bio1é2",
"bio1í2",
"bio1ó2",
"bio1ú2",
"bi1u2ní",
"cardio1h",
"cardio1a2",
"cardio1e2",
"cardio1i2",
"cardio1o2",
"cardio1u2",
"cardio1á2",
"cardio1é2",
"cardio1í2",
"cardio1ó2",
"cardio1ú2",
"cefalo1h",
"cefalo1a2",
"cefalo1e2",
"cefalo1i2",
"cefalo1o2",
"cefalo1u2",
"cefalo1á2",
"cefalo1é2",
"cefalo1í2",
"cefalo1ó2",
"cefalo1ú2",
"centi1h",
"centi1a2",
"centi1e2",
"centi1i2",
"centi1o2",
"centi1u2",
"centi1á2",
"centi1é2",
"centi1í2",
"centi1ó2",
"centi1ú2",
"centi5área",
"ciclo1h",
"ciclo1a2",
"ciclo1e2",
"ciclo1i2",
"ciclo1o2",
"ciclo1u2",
"ciclo1á2",
"ciclo1é2",
"ciclo1í2",
"ciclo1ó2",
"ciclo1ú2",
"o4i3dea.",
"o4i3deas.",
"o4i3dal.",
"o4i3dales.",
"4o2i3de.",
"4o2i3des.",
"4i2dal.",
"4i2dales.",
"4i3deo.",
"4i3deos.",
"cito1h",
"cito1a2",
"cito1e2",
"cito1i2",
"cito1o2",
"cito1u2",
"cito1á2",
"cito1é2",
"cito1í2",
"cito1ó2",
"cito1ú2",
"3c2neor",
"cnico1h",
"cnico1a2",
"cnico1e2",
"cnico1i2",
"cnico1o2",
"cnico1u2",
"cnico1á2",
"cnico1é2",
"cnico1í2",
"cnico1ó2",
"cnico1ú2",
".co2a2",
".co2e2",
".co2i2",
".co3o4",
".co2u2",
".co2á2",
".co2é2",
".co2í2",
".co2ó2",
".co2ú2",
"co4á3gul",
"co4acci",
"co4acti",
"co4adju",
"co4a3dun",
"co4adyu",
"co3agen",
"co4a3gul",
"co4a3lic",
"co4aptac",
"co4art",
"co4árt",
"co4e3fic",
"co4erc",
"co4erz",
"co4e3tá",
"co3exis",
"co4imbr",
"co4inci",
"co4i3to",
"co3n4imbri",
"co4o3per",
"co4o3pér",
"co4opt",
"co4ord",
"con1imbr",
"con1urb",
"cripto1h",
"cripto1a2",
"cripto1e2",
"cripto1i2",
"cripto1o2",
"cripto1u2",
"cripto1á2",
"cripto1é2",
"cripto1í2",
"cripto1ó2",
"cripto1ú2",
"crono1h",
"crono1a2",
"crono1e2",
"crono1i2",
"crono1o2",
"crono1u2",
"crono1á2",
"crono1é2",
"crono1í2",
"crono1ó2",
"crono1ú2",
"contra1h",
"contra1a2",
"contra1e2",
"contra1i2",
"contra1o2",
"contra1u2",
"contra1á2",
"contra1é2",
"contra1í2",
"contra1ó2",
"contra1ú2",
"deca1h",
"deca1a2",
"deca1e2",
"deca1i2",
"deca1o2",
"deca1u2",
"deca1á2",
"deca1é2",
"deca1í2",
"deca1ó2",
"deca1ú2",
"4e3dro.",
"4e3dros.",
"4é3drico.",
"4é3dricos.",
"4é3drica.",
"4é3dricas.",
".de2sa2",
".de2se2",
".de2si2",
".de2so2",
".de2su2",
".de2sá2",
".de2sé2",
".de2sí2",
".de2só2",
".de2sú2",
"deca2i3mient",
"decimo1",
"3sa.",
"3sas.",
"de2s3órde",
"de2s3orde",
"de2s3abast",
"de2s3aboll",
"de2s3aboto",
"de2s3abr",
"desa3brid",
"de2s3abroch",
"de2s3aceit",
"de2s3aceler",
"desa3cert",
"desa3ciert",
"de2s3acobar",
"de2s3acomod",
"de2s3acomp",
"de2s3acons",
"de2s3acopl",
"de2s3acorr",
"de2s3acostum",
"de2s3acot",
"desa3craliz",
"de2s3acredit",
"de2s3activ",
"de2s3acuart",
"de2s3aderez",
"de2s3adeud",
"de2s3adorar",
"de2s3adormec",
"de2s3adorn",
"de2s3advert",
"de2s3aferr",
"de2s3afic",
"de2s3afil",
"de2s3afin",
"de2s3afor",
"desa3gú",
"desa3garr",
"de2s3agraci",
"de2s3agrad",
"de2s3agravi",
"de2s3agreg",
"de2s3agrup",
"de2s3agu",
"desa3guisado",
"de2s3aherr",
"de2s3ahij",
"de2s3ajust",
"de2s3alagar",
"de2s3alent",
"de2s3alfom",
"de2s3alfor",
"de2s3aliñ",
"desa3lin",
"de2s3alien",
"de2s3aline",
"desa3liv",
"de2s3alm",
"de2s3almid",
"de2s3aloj",
"de2s3alquil",
"de2s3alter",
"de2s3alumbr",
"desa3marr",
"desa3mobl",
"de2s3amold",
"de2s3amort",
"de2s3amuebl",
"de2s3ampa",
"de2s3and",
"de2s3angel",
"de3sangr",
"de2s3anid",
"de2s3anim",
"de2s3aním",
"de2s3anud",
"desa3pañ",
"desa3pacib",
"de2s3apadr",
"de2s3apare",
"de2s3aparec",
"de2s3aparic",
"de2s3apeg",
"de2s3apercib",
"de2s3apes",
"de2s3aplic",
"de2s3apolill",
"de2s3apoy",
"de2s3aprend",
"de2s3apret",
"de2s3apriet",
"de2s3aprob",
"de2s3apropi",
"de2s3aprovech",
"de2s3arbol",
"de2s3aren",
"de2s3arm",
"des4arme",
"de2s3arraig",
"de2s3arregl",
"de2s3arrend",
"de2s3arrim",
"desa3rroll",
"de2s3arrop",
"de2s3arrug",
"de2s3articul",
"de2s3asent",
"de2s3asist",
"de2s3asn",
"desa3soseg",
"desa3sosieg",
"de2s3atenc",
"de2s3atend",
"de2s3atiend",
"de2s3atent",
"desa3tin",
"de2s3atorn",
"de2s3atranc",
"de2s3autor",
"de2s3avis",
"desa3yun",
"desa3zón",
"desa3zon",
"de2s3embal",
"de2s3embál",
"de2s3embar",
"de2s3embár",
"de2s3embarg",
"de2s3embols",
"de2s3emborr",
"de2s3embosc",
"de2s3embot",
"de2s3embrag",
"de2s3embrág",
"de2s3embrave",
"de2s3embráve",
"de2s3embroll",
"de2s3embróll",
"de2s3embruj",
"de2s3embrúj",
"de3semej",
"de2s3empañ",
"de2s3empáñ",
"de2s3empac",
"de2s3empaquet",
"de2s3empaquét",
"de2s3emparej",
"de2s3emparéj",
"de2s3emparent",
"de2s3empat",
"de2s3empé",
"de2s3empedr",
"de2s3empeg",
"de2s3empeor",
"de2s3emperez",
"de2s3empern",
"de2s3emple",
"de2s3empolv",
"de2s3empotr",
"de2s3empoz",
"de2s3enam",
"de2s3encab",
"de2s3encad",
"de2s3encaj",
"de2s3encáj",
"de2s3encall",
"de2s3encáll",
"de2s3encam",
"de3sencant",
"de2s3encap",
"de2s3encar",
"de2s3encár",
"de2s3ench",
"de2s3encl",
"de2s3enco",
"de2s3encr",
"de2s3encu",
"de2s3end",
"de3senfad",
"de3senfád",
"de2s3enfi",
"de2s3enfo",
"de2s3enfó",
"de3senfren",
"de2s3enfund",
"de2s3enfur",
"de3sengañ",
"de3sengáñ",
"de2s3enganch",
"de2s3engar",
"de2s3engas",
"de2s3engom",
"de2s3engoz",
"de2s3engra",
"de2s3enhebr",
"de2s3enj",
"de2s3enlad",
"de2s3enlaz",
"de2s3enlo",
"de2s3enm",
"de2s3enr",
"de2s3ens",
"de2s3enta",
"de3sentend",
"de3sentien",
"de3sentién",
"de2s3enter",
"de2s3entier",
"de2s3entiér",
"de2s3ento",
"de2s3entr",
"de2s3entu",
"de2s3envain",
"de3senvolvim",
"de3seo",
"de2s3eq",
"de3s4erci",
"de3s4ert",
"de3s4ért",
"de2s3espa",
"de3sesperac",
"de2s3esperanz",
"de3sesper",
"de2s3estabil",
"de2s3estim",
"de3sider",
"de3sidia",
"de3sidio",
"de3siert",
"de3sign",
"de3sigual",
"de3silusi",
"de2s3imagin",
"de2s3iman",
"de2s3impon",
"de2s3impres",
"de2s3incent",
"de2s3inclin",
"de2s3incorp",
"de2s3incrust",
"de3sinenc",
"de3sinfec",
"de3su3dar",
"de3su3das",
"de3su3dan",
"de2s3inflam",
"de2s3infl",
"de2s3inform",
"de2s3inhib",
"de2s3insect",
"de2s3instal",
"ini3ci",
"iní3ci",
"de3s4integr",
"de3s4inter",
"de2s3intox",
"de2s3inver",
"de3sisten",
"de3isti",
"de2s3obedec",
"de2s3oblig",
"de2s3obstr",
"de3socup",
"de2s3odor",
"de3solac",
"de3solad",
"de3soll",
"de2s3orej",
"de2s3orient",
"de3sortij",
"de2s3organi",
"de3suell",
"de3sonce",
"de2s3ovi",
"de2s3oxi",
"de2s3oye",
"de2s3oyé",
"de3s4ubstan",
"de3s4ustan",
"de3s4oseg",
"de2s3ub4ic",
"de2s3unir",
"de2s3unier",
"de2s3unim",
".dieci1o2",
"dodeca1h",
"dodeca1a2",
"dodeca1e2",
"dodeca1i2",
"dodeca1o2",
"dodeca1u2",
"dodeca1á2",
"dodeca1é2",
"dodeca1í2",
"dodeca1ó2",
"dodeca1ú2",
"ecano1h",
"ecano1a2",
"ecano1e2",
"ecano1i2",
"ecano1o2",
"ecano1u2",
"ecano1á2",
"ecano1é2",
"ecano1í2",
"ecano1ó2",
"ecano1ú2",
"eco1h",
"eco1a2",
"eco1e2",
"eco1i2",
"eco1o2",
"eco1u2",
"eco1á2",
"eco1é2",
"eco1í2",
"eco1ó2",
"eco1ú2",
"ectro1h",
"ectro1a2",
"ectro1e2",
"ectro1i2",
"ectro1o2",
"ectro1u2",
"ectro1á2",
"ectro1é2",
"ectro1í2",
"ectro1ó2",
"ectro1ú2",
".en2a2",
".en2e2",
".en2i2",
".en2o2",
".en2u2",
".en2á2",
".en2é2",
".en2í2",
".en2ó2",
".en2ú2",
".ene3mist",
".ene3míst",
".eno3jar",
".enu3mera",
".enu3merá",
".enu3mere",
"4o3lógico.",
"4o3lógica.",
"4o3lógicos.",
"4o3lógicas.",
"4o3lógicamente.",
"4o3logía.",
"4o3logías.",
"4ó3logo.",
"4ó3loga.",
"4ó3logos.",
"4ó3logas.",
"endo1h",
"endo1a2",
"endo1e2",
"endo1i2",
"endo1o2",
"endo1u2",
"endo1á2",
"endo1é2",
"endo1í2",
"endo1ó2",
"endo1ú2",
"ento1h",
"ento1a2",
"ento1e2",
"ento1i2",
"ento1o2",
"ento1u2",
"ento1á2",
"ento1é2",
"ento1í2",
"ento1ó2",
"ento1ú2",
"4emboca",
"entre1h",
"entre1a2",
"entre1e2",
"entre1i2",
"entre1o2",
"entre1u2",
"entre1á2",
"entre1é2",
"entre1í2",
"entre1ó2",
"entre1ú2",
"euco1h",
"euco1a2",
"euco1e2",
"euco1i2",
"euco1o2",
"euco1u2",
"euco1á2",
"euco1é2",
"euco1í2",
"euco1ó2",
"euco1ú2",
"euro1h",
"euro1a2",
"euro1e2",
"euro1i2",
"euro1o2",
"euro1u2",
"euro1á2",
"euro1é2",
"euro1í2",
"euro1ó2",
"euro1ú2",
"extra1h",
"extra1a2",
"extra1e2",
"extra1i2",
"extra1o2",
"extra1u2",
"extra1á2",
"extra1é2",
"extra1í2",
"extra1ó2",
"extra1ú2",
"u4teri",
".cau5t",
".deu5t",
"fono1h",
"fono1a2",
"fono1e2",
"fono1i2",
"fono1o2",
"fono1u2",
"fono1á2",
"fono1é2",
"fono1í2",
"fono1ó2",
"fono1ú2",
"foto1h",
"foto1a2",
"foto1e2",
"foto1i2",
"foto1o2",
"foto1u2",
"foto1á2",
"foto1é2",
"foto1í2",
"foto1ó2",
"foto1ú2",
"gastro1h",
"gastro1a2",
"gastro1e2",
"gastro1i2",
"gastro1o2",
"gastro1u2",
"gastro1á2",
"gastro1é2",
"gastro1í2",
"gastro1ó2",
"gastro1ú2",
"geo1h",
"geo1a2",
"geo1e2",
"geo1i2",
"geo1o2",
"geo1u2",
"geo1á2",
"geo1é2",
"geo1í2",
"geo1ó2",
"geo1ú2",
"gluco1h",
"gluco1a2",
"gluco1e2",
"gluco1i2",
"gluco1o2",
"gluco1u2",
"gluco1á2",
"gluco1é2",
"gluco1í2",
"gluco1ó2",
"gluco1ú2",
"hecto1h",
"hecto1a2",
"hecto1e2",
"hecto1i2",
"hecto1o2",
"hecto1u2",
"hecto1á2",
"hecto1é2",
"hecto1í2",
"hecto1ó2",
"hecto1ú2",
"helio1h",
"helio1a2",
"helio1e2",
"helio1i2",
"helio1o2",
"helio1u2",
"helio1á2",
"helio1é2",
"helio1í2",
"helio1ó2",
"helio1ú2",
"hemato1h",
"hemato1a2",
"hemato1e2",
"hemato1i2",
"hemato1o2",
"hemato1u2",
"hemato1á2",
"hemato1é2",
"hemato1í2",
"hemato1ó2",
"hemato1ú2",
"hemi1h",
"hemi1a2",
"hemi1e2",
"hemi1i2",
"hemi1o2",
"hemi1u2",
"hemi1á2",
"hemi1é2",
"hemi1í2",
"hemi1ó2",
"hemi1ú2",
"hemo1h",
"hemo1a2",
"hemo1e2",
"hemo1i2",
"hemo1o2",
"hemo1u2",
"hemo1á2",
"hemo1é2",
"hemo1í2",
"hemo1ó2",
"hemo1ú2",
"2al.",
"2ales.",
"hexa1h",
"hexa1a2",
"hexa1e2",
"hexa1i2",
"hexa1o2",
"hexa1u2",
"hexa1á2",
"hexa1é2",
"hexa1í2",
"hexa1ó2",
"hexa1ú2",
"hidro1h",
"hidro1a2",
"hidro1e2",
"hidro1i2",
"hidro1o2",
"hidro1u2",
"hidro1á2",
"hidro1é2",
"hidro1í2",
"hidro1ó2",
"hidro1ú2",
"hipe2r3r",
"hipe2r1a2",
"hipe2r1e2",
"hipe2r1i2",
"hipe2r1o2",
"hipe2r1u2",
"hipe2r1á2",
"hipe2r1é2",
"hipe2r1í2",
"hipe2r1ó2",
"hipe2r1ú2",
"pe3r4e3mia",
"histo1h",
"histo1a2",
"histo1e2",
"histo1i2",
"histo1o2",
"histo1u2",
"histo1á2",
"histo1é2",
"histo1í2",
"histo1ó2",
"histo1ú2",
"homo1h",
"homo1a2",
"homo1e2",
"homo1i2",
"homo1o2",
"homo1u2",
"homo1á2",
"homo1é2",
"homo1í2",
"homo1ó2",
"homo1ú2",
"icono1h",
"icono1a2",
"icono1e2",
"icono1i2",
"icono1o2",
"icono1u2",
"icono1á2",
"icono1é2",
"icono1í2",
"icono1ó2",
"icono1ú2",
".i2n2a2",
".i2n2e2",
".i2n2i2",
".i2n2o2",
".i2n2u2",
".i2n2á2",
".i2n2é2",
".i2n2í2",
".i2n2ó2",
".i2n2ú2",
".in3abord",
".in3abarc",
".in3acent",
".in3aguant",
".in3adapt",
".ina3movib",
".in3analiz",
".ina3nic",
".in3anim",
".iná3nim",
".in3apel",
".in3aplic",
".in3aprens",
".in3apreci",
".in3arrug",
".in3asist",
".iné3dit",
".in3efic",
".in3efici",
".in3eludi",
".ine3narr",
"ini3cia",
"iní3cia",
"ini3ciá",
"ini3cie",
".rei3na",
"re3ini3cia",
"re3iní3cia",
"re3ini3ciá",
"re3ini3cie",
".ini3cuo",
".ini3cua",
".ino3cuo",
".ino3cua",
".ino3cula",
".ino3culá",
".ino3cule",
".inú3til",
".inu3tiliz",
"infra1h",
"infra1a2",
"infra1e2",
"infra1i2",
"infra1o2",
"infra1u2",
"infra1á2",
"infra1é2",
"infra1í2",
"infra1ó2",
"infra1ú2",
".inte2r3r",
".inte2r1a2",
".inte2r1e2",
".inte2r1i2",
".inte2r1o2",
".inte2r1u2",
".inte2r1á2",
".inte2r1é2",
".inte2r1í2",
".inte2r1ó2",
".inte2r1ú2",
".in3ter2e3sa",
".in3ter2e3se",
".in3ter2e3so",
".in3ter2e3sá",
".in3ter2e3sé",
".in3ter2e3só",
".de3s4in3ter2e3sa",
".de3s4in3ter2e3se",
".de3s4in3ter2e3so",
".de3s4in3ter2e3sá",
".de3s4in3ter2e3sé",
".de3s4in3ter2e3só",
"3te3ri3n",
"4te4r5i4nsu",
".in3te3r4rog",
".in3te3r4rupc",
".in3te3r4rupt",
".in3te3r4rump",
"intra1h",
"intra1a2",
"intra1e2",
"intra1i2",
"intra1o2",
"intra1u2",
"intra1á2",
"intra1é2",
"intra1í2",
"intra1ó2",
"intra1ú2",
"iso1h",
"iso1a2",
"iso1e2",
"iso1i2",
"iso1o2",
"iso1u2",
"iso1á2",
"iso1é2",
"iso1í2",
"iso1ó2",
"iso1ú2",
"kilo1h",
"kilo1a2",
"kilo1e2",
"kilo1i2",
"kilo1o2",
"kilo1u2",
"kilo1á2",
"kilo1é2",
"kilo1í2",
"kilo1ó2",
"kilo1ú2",
"macro1h",
"macro1a2",
"macro1e2",
"macro1i2",
"macro1o2",
"macro1u2",
"macro1á2",
"macro1é2",
"macro1í2",
"macro1ó2",
"macro1ú2",
"mal2",
"ma4l3h",
".ma4l3e4du",
"mal3b",
"mal3c",
"mal3d",
"mal3f",
"mal3g",
"mal3m",
"mal3p",
"mal3q",
"mal3s",
"mal3t",
"mal3v",
"bien2",
"bien3h",
"bien3v",
"bien3q",
"bien3m",
"bien3t",
"b4ien3do.",
".su3b4ien",
"b4ien3das.",
"maxi1h",
"maxi1a2",
"maxi1e2",
"maxi1i2",
"maxi1o2",
"maxi1u2",
"maxi1á2",
"maxi1é2",
"maxi1í2",
"maxi1ó2",
"maxi1ú2",
"megalo1h",
"megalo1a2",
"megalo1e2",
"megalo1i2",
"megalo1o2",
"megalo1u2",
"megalo1á2",
"megalo1é2",
"megalo1í2",
"megalo1ó2",
"megalo1ú2",
"mega1h",
"mega1a2",
"mega1e2",
"mega1i2",
"mega1o2",
"mega1u2",
"mega1á2",
"mega1é2",
"mega1í2",
"mega1ó2",
"mega1ú2",
"melano1h",
"melano1a2",
"melano1e2",
"melano1i2",
"melano1o2",
"melano1u2",
"melano1á2",
"melano1é2",
"melano1í2",
"melano1ó2",
"melano1ú2",
"micro1h",
"micro1a2",
"micro1e2",
"micro1i2",
"micro1o2",
"micro1u2",
"micro1á2",
"micro1é2",
"micro1í2",
"micro1ó2",
"micro1ú2",
"mili1h",
"mili1a2",
"mili1e2",
"mili1i2",
"mili1o2",
"mili1u2",
"mili1á2",
"mili1é2",
"mili1í2",
"mili1ó2",
"mili1ú2",
"familia3ri",
"ia5res.",
"amili6a",
"a3rio",
"li5área",
"mini1h",
"mini1a2",
"mini1e2",
"mini1i2",
"mini1o2",
"mini1u2",
"mini1á2",
"mini1é2",
"mini1í2",
"mini1ó2",
"mini1ú2",
"2os.",
"2o3so.",
"2o3sos.",
"2o3sa.",
"2o3sas.",
"2o3samente.",
"mini4a5tur",
"multi1h",
"multi1a2",
"multi1e2",
"multi1i2",
"multi1o2",
"multi1u2",
"multi1á2",
"multi1é2",
"multi1í2",
"multi1ó2",
"multi1ú2",
"miria1h",
"miria1a2",
"miria1e2",
"miria1i2",
"miria1o2",
"miria1u2",
"miria1á2",
"miria1é2",
"miria1í2",
"miria1ó2",
"miria1ú2",
"mono1h",
"mono1a2",
"mono1e2",
"mono1i2",
"mono1o2",
"mono1u2",
"mono1á2",
"mono1é2",
"mono1í2",
"mono1ó2",
"mono1ú2",
"2i3co.",
"2i3cos.",
"2i3ca.",
"2i3cas.",
"namo1h",
"namo1a2",
"namo1e2",
"namo1i2",
"namo1o2",
"namo1u2",
"namo1á2",
"namo1é2",
"namo1í2",
"namo1ó2",
"namo1ú2",
"necro1h",
"necro1a2",
"necro1e2",
"necro1i2",
"necro1o2",
"necro1u2",
"necro1á2",
"necro1é2",
"necro1í2",
"necro1ó2",
"necro1ú2",
"neo1h",
"neo1a2",
"neo1e2",
"neo1i2",
"neo1o2",
"neo1u2",
"neo1á2",
"neo1é2",
"neo1í2",
"neo1ó2",
"neo1ú2",
"neto1h",
"neto1a2",
"neto1e2",
"neto1i2",
"neto1o2",
"neto1u2",
"neto1á2",
"neto1é2",
"neto1í2",
"neto1ó2",
"neto1ú2",
"norte1h",
"norte1a2",
"norte1e2",
"norte1i2",
"norte1o2",
"norte1u2",
"norte1á2",
"norte1é2",
"norte1í2",
"norte1ó2",
"norte1ú2",
"octo1h",
"octo1a2",
"octo1e2",
"octo1i2",
"octo1o2",
"octo1u2",
"octo1á2",
"octo1é2",
"octo1í2",
"octo1ó2",
"octo1ú2",
"octa1h",
"octa1a2",
"octa1e2",
"octa1i2",
"octa1o2",
"octa1u2",
"octa1á2",
"octa1é2",
"octa1í2",
"octa1ó2",
"octa1ú2",
"oligo1h",
"oligo1a2",
"oligo1e2",
"oligo1i2",
"oligo1o2",
"oligo1u2",
"oligo1á2",
"oligo1é2",
"oligo1í2",
"oligo1ó2",
"oligo1ú2",
"omni1h",
"omni1a2",
"omni1e2",
"omni1i2",
"omni1o2",
"omni1u2",
"omni1á2",
"omni1é2",
"omni1í2",
"omni1ó2",
"omni1ú2",
"i2o.",
"i2os.",
"paleo1h",
"paleo1a2",
"paleo1e2",
"paleo1i2",
"paleo1o2",
"paleo1u2",
"paleo1á2",
"paleo1é2",
"paleo1í2",
"paleo1ó2",
"paleo1ú2",
"para1h",
"para1a2",
"para1e2",
"para1i2",
"para1o2",
"para1u2",
"para1á2",
"para1é2",
"para1í2",
"para1ó2",
"para1ú2",
"para2is.",
"aí5so.",
"aí5sos.",
"penta1h",
"penta1a2",
"penta1e2",
"penta1i2",
"penta1o2",
"penta1u2",
"penta1á2",
"penta1é2",
"penta1í2",
"penta1ó2",
"penta1ú2",
"piezo1h",
"piezo1a2",
"piezo1e2",
"piezo1i2",
"piezo1o2",
"piezo1u2",
"piezo1á2",
"piezo1é2",
"piezo1í2",
"piezo1ó2",
"piezo1ú2",
"pluri1h",
"pluri1a2",
"pluri1e2",
"pluri1i2",
"pluri1o2",
"pluri1u2",
"pluri1á2",
"pluri1é2",
"pluri1í2",
"pluri1ó2",
"pluri1ú2",
"poli1h",
"poli1a2",
"poli1e2",
"poli1i2",
"poli1o2",
"poli1u2",
"poli1á2",
"poli1é2",
"poli1í2",
"poli1ó2",
"poli1ú2",
"poli4u3r",
"poli4o5mie",
"poli4arq",
"poli4árq",
"poli4éste",
"poli4andr",
"poli4antea",
"expoli4",
".pos2t2a2",
".pos2t2e2",
".pos2t2i2",
".pos2t2o2",
".pos2t2u2",
".pos2t2á2",
".pos2t2é2",
".pos2t2í2",
".pos2t2ó2",
".pos2t2ú2",
".pos3tin",
".pos3tín",
"pos3ta.",
"pos3tas.",
"s3te.",
"s3tes.",
"s3tal.",
"s3ta3les.",
"s3ti3lla.",
"s3ti3llas.",
"s3ti3llón.",
"s3ti3llones.",
".pos3tó3ni",
".pos3terg",
".pos3te3ri",
".pos3ti3go",
".pos3ti3la",
".pos3ti3ne",
".pos3ti3za",
".pos3ti3zo",
".pos3tu3ra",
"s3tor.",
"s3tora.",
"s3toras.",
"s3tores.",
".pos3tu3la",
".pos3tu3lá",
".pos3tu3le",
".pos3tu3lé",
".post3elec",
".post3impr",
".post3ind",
".post3ope",
".post3rev",
".pre2a2",
".pre2e2",
".pre2i2",
".pre2o2",
".pre2u2",
".pre2h2",
".pre2á2",
".pre2é2",
".pre2í2",
".pre2ó2",
".pre2ú2",
"pre3elij",
"pre3elig",
"pre3exis",
"pre3emin",
"preo3cup",
"preo2cúp",
"pre3olí",
"pre3opin",
".pro2a2",
".pro2e2",
".pro2i2",
".pro2o2",
".pro2u2",
".pro2h2",
".pro2á2",
".pro2é2",
".pro2í2",
".pro2ó2",
".pro2ú2",
"proto1h",
"proto1a2",
"proto1e2",
"proto1i2",
"proto1o2",
"proto1u2",
"proto1á2",
"proto1é2",
"proto1í2",
"proto1ó2",
"proto1ú2",
"radio1h",
"radio1a2",
"radio1e2",
"radio1i2",
"radio1o2",
"radio1u2",
"radio1á2",
"radio1é2",
"radio1í2",
"radio1ó2",
"radio1ú2",
"ranco1h",
"ranco1a2",
"ranco1e2",
"ranco1i2",
"ranco1o2",
"ranco1u2",
"ranco1á2",
"ranco1é2",
"ranco1í2",
"ranco1ó2",
"ranco1ú2",
".re2a2",
".re3e4",
".re2i2",
".re2o2",
".re2u2",
".re2á2",
".re2é2",
".re2í2",
".re2ó2",
".re2ú2",
"ea3cio.",
"ea3cios.",
"ea3cia.",
"ea3cias.",
".re3abr",
".re3ábr",
".re3afirm",
".re3afírm",
".re3ajust",
".rea3júst",
".rea3liza",
".rea3lizá",
".rea3líza",
".re3alim",
".rea3lism",
".rea3list",
".re3anim",
".re3aním",
".re3aparec",
".re3ubica",
".re3ubíca",
".reu3mati",
".reu3máti",
".re3unir",
".re3unír",
".re3usar",
".re3usár",
".re3utiliz",
".re3utilíz",
"rmano1h",
"rmano1a2",
"rmano1e2",
"rmano1i2",
"rmano1o2",
"rmano1u2",
"rmano1á2",
"rmano1é2",
"rmano1í2",
"rmano1ó2",
"rmano1ú2",
"retro1h",
"retro1a2",
"retro1e2",
"retro1i2",
"retro1o2",
"retro1u2",
"retro1á2",
"retro1é2",
"retro1í2",
"retro1ó2",
"retro1ú2",
"romo1h",
"romo1a2",
"romo1e2",
"romo1i2",
"romo1o2",
"romo1u2",
"romo1á2",
"romo1é2",
"romo1í2",
"romo1ó2",
"romo1ú2",
"sobre1h",
"sobre1a2",
"sobre1e2",
"sobre1i2",
"sobre1o2",
"sobre1u2",
"sobre1á2",
"sobre1é2",
"sobre1í2",
"sobre1ó2",
"sobre1ú2",
"semi1h",
"semi1a2",
"semi1e2",
"semi1i2",
"semi1o2",
"semi1u2",
"semi1á2",
"semi1é2",
"semi1í2",
"semi1ó2",
"semi1ú2",
"i2a.",
"i2as.",
"2ótic",
"emi2o2",
"seudo1h",
"seudo1a2",
"seudo1e2",
"seudo1i2",
"seudo1o2",
"seudo1u2",
"seudo1á2",
"seudo1é2",
"seudo1í2",
"seudo1ó2",
"seudo1ú2",
"o2os.",
".so3a4s",
"socio1h",
"socio1a2",
"socio1e2",
"socio1i2",
"socio1o2",
"socio1u2",
"socio1á2",
"socio1é2",
"socio1í2",
"socio1ó2",
"socio1ú2",
"a3rio.",
"a3rios.",
"3logía",
"4ón.",
"4ones.",
"4i4er.",
"4o2ico.",
"4o2icos.",
"4o2ica.",
"4o2icas.",
".su2b2a2",
".su2b2e2",
".su2b2i2",
".su2b2o2",
".su2b2u2",
".su2b2á2",
".su2b2é2",
".su2b2í2",
".su2b2ó2",
".su2b2ú2",
".sub2i3ll",
".sub2i3mien",
".sub3índ",
".sub3ími",
".su4b3ray",
".sub3aflue",
".sub3arr",
".sub3enten",
".sub3estim",
".sub3estím",
".sub3ofici",
".sub3urba",
".sub3alter",
".sub3insp",
".su3bién",
".su3bir",
".su3bam",
".su3bordin",
".su3bordín",
".sub3acuá",
".sub3espe",
".sub3esta",
".su3burbi",
".su4b5rein",
"supe2r3r",
"supe2r1a2",
"supe2r1e2",
"supe2r1i2",
"supe2r1o2",
"supe2r1u2",
"supe2r1á2",
"supe2r1é2",
"supe2r1í2",
"supe2r1ó2",
"supe2r1ú2",
"supe3r4a4r",
"supe3r4á4r",
"supe3r4á3vit.",
"supe3r4á3vits.",
"4a3ción.",
"4a3ciones.",
"4e3rior.",
"4e3riores.",
"4e3riora.",
"4e3rioras.",
"4e3riormente.",
"4e3rioridad.",
"4e3rioridades.",
"4e3ra3ble.",
"4e3ra3bles.",
"4e3ra3blemente.",
"pe5r4ante",
"perpon5d6r",
"supra1h",
"supra1a2",
"supra1e2",
"supra1i2",
"supra1o2",
"supra1u2",
"supra1á2",
"supra1é2",
"supra1í2",
"supra1ó2",
"supra1ú2",
"sup6ra",
"talmo1h",
"talmo1a2",
"talmo1e2",
"talmo1i2",
"talmo1o2",
"talmo1u2",
"talmo1á2",
"talmo1é2",
"talmo1í2",
"talmo1ó2",
"talmo1ú2",
"tele1h",
"tele1a2",
"tele1e2",
"tele1i2",
"tele1o2",
"tele1u2",
"tele1á2",
"tele1é2",
"tele1í2",
"tele1ó2",
"tele1ú2",
"4ósteo.",
"4ósteos.",
"termo1h",
"termo1a2",
"termo1e2",
"termo1i2",
"termo1o2",
"termo1u2",
"termo1á2",
"termo1é2",
"termo1í2",
"termo1ó2",
"termo1ú2",
"tetra1h",
"tetra1a2",
"tetra1e2",
"tetra1i2",
"tetra1o2",
"tetra1u2",
"tetra1á2",
"tetra1é2",
"tetra1í2",
"tetra1ó2",
"tetra1ú2",
"topo1h",
"topo1a2",
"topo1e2",
"topo1i2",
"topo1o2",
"topo1u2",
"topo1á2",
"topo1é2",
"topo1í2",
"topo1ó2",
"topo1ú2",
"tropo1h",
"tropo1a2",
"tropo1e2",
"tropo1i2",
"tropo1o2",
"tropo1u2",
"tropo1á2",
"tropo1é2",
"tropo1í2",
"tropo1ó2",
"tropo1ú2",
"poi3de.",
"poi3des.",
"ultra1h",
"ultra1a2",
"ultra1e2",
"ultra1i2",
"ultra1o2",
"ultra1u2",
"ultra1á2",
"ultra1é2",
"ultra1í2",
"ultra1ó2",
"ultra1ú2",
"xeno1h",
"xeno1a2",
"xeno1e2",
"xeno1i2",
"xeno1o2",
"xeno1u2",
"xeno1á2",
"xeno1é2",
"xeno1í2",
"xeno1ó2",
"xeno1ú2",
"inter4és",
"inter4esar",
"inter4in",
"inter4ino",
"inter4ior",
"mili4ar",
"mili4ario",
"para4íso",
"para4ulata",
"super4able",
"super4ación",
"super4ior",
"tran4sacc",
"trans4ar",
"trans4eúnte",
"trans4iber",
"trans4ición",
"trans4ido",
"trans4igen",
"trans4igir",
"trans4istor",
"trans4itab",
"trans4it",
"trans4itorio",
"trans4ubsta",
"ultra4ísmo",
"wa3s4h",
".bi1anual",
".bi1aur",
".bien1and",
".bien1apa",
".bien1ave",
".bien1est",
".bien1int",
".bi1ox",
".bi1ó2x",
".bi1un",
".en1aceit",
".en1aciy",
".en1aguach",
".en1aguaz",
".en1anch",
".en1apa",
".en1arb",
".en1art",
".en2artr",
".en1ej",
".hepta1e",
".intra1o",
".intra1u",
".mal1acon",
".mal1acos",
".mala1e",
".mal1andant",
".mal1andanz",
".mal1est",
".mal1int",
".pa4n1a4meri",
".pa4n1europ",
".pa4n1afri",
".pa4n1ópti",
"3p2sic",
"3p2siq",
".re3a2eg",
".re3a2q",
".re3a2z",
".re3a2grup",
".re3i2m",
".re3inc",
".re3ing",
".re3ins",
".re3int",
".re3o2b",
".re1oc",
".re1oj",
".re3orga",
".re1unt",
".retro1a",
".su2d1a2fr",
".su2d1a2me",
".su2d1est",
"su4d3oes",
".sur1a2me",
".sur1est",
".sur1oes",
".tele1imp",
".tele1obj",
".tra2s1a",
".tra2s1o",
".tra2s2oñ",
".tran2s1alp",
".tran2s1and",
".tran2s1atl",
".tran2s1oce",
".tran2s1ur",
".tri1ó2x",
};
|
test_run = require('test_run').new()
engine = test_run:get_cfg('engine')
_ = box.space._session_settings:update('sql_default_engine', {{'=', 2, engine}})
format = {}
format[1] = {'id', 'integer'}
s = box.schema.create_space('test', {format = format})
box.execute("SELECT * FROM \"test\";")
box.execute("INSERT INTO \"test\" VALUES (1);")
box.execute("DELETE FROM \"test\";")
box.execute("UPDATE \"test\" SET id = 3;")
s:drop()
-- Notorious artefact: check of view referencing counter occurs
-- after drop of indexes. So, if space:drop() fails due to being
-- referenced by a view, space becomes unusable in SQL terms.
--
box.execute("CREATE TABLE t1 (id INT PRIMARY KEY);")
box.execute("CREATE VIEW v1 AS SELECT * FROM t1;")
box.space.T1:drop()
box.execute("SELECT * FROM v1;")
box.space.V1:drop()
box.space.T1:drop()
|
---
-- HUD base class.
-- @class HUD
-- @section old_ttt
local surface = surface
-- Fonts
surface.CreateFont("TraitorState", {font = "Trebuchet24", size = 28, weight = 1000})
surface.CreateFont("TimeLeft", {font = "Trebuchet24", size = 24, weight = 800})
surface.CreateFont("HealthAmmo", {font = "Trebuchet24", size = 24, weight = 750})
surface.CreateFont("ItemInfo", {font = "Trebuchet24", size = 14, weight = 700})
local base = "hud_base"
DEFINE_BASECLASS(base)
HUD.Base = base
HUD.disableHUDEditor = true
HUD.previewImage = Material("vgui/ttt/huds/old_ttt/preview.png")
---
-- Loads this HUD and connects with special @{HUDELEMENT}
-- @realm client
function HUD:Initialize()
self:ForceElement("old_ttt_info")
self:ForceElement("old_ttt_punchometer")
self:ForceElement("old_ttt_sidebar")
self:ForceElement("old_ttt_mstack")
self:ForceElement("old_ttt_wswitch")
self:ForceElement("old_ttt_target")
self:ForceElement("old_ttt_pickup")
self:ForceElement("old_ttt_revival")
BaseClass.Initialize(self)
end
---
-- this is doing nothing, to prevent the hud from saving data to the database
-- @realm client
function HUD:SaveData()
end
---
-- this is doing nothing, to prevent the hud from loading data from the database
-- @realm client
function HUD:LoadData()
end
|
-----------------------------------
-- Area: Apollyon NE
-- Mob: Cronos
-----------------------------------
require("scripts/globals/limbus")
local ID = require("scripts/zones/Apollyon/IDs")
function onMobSpawn(mob)
mob:setMod(tpz.mod.UDMGPHYS, -100)
end
function onMobDeath(mob, player, isKiller, noKiller)
if isKiller or noKiller then
local mobID = mob:getID()
local battlefield = mob:getBattlefield()
local randomF4 = battlefield:getLocalVar("randomF4")
if randomF4 == mobID then
tpz.limbus.handleDoors(battlefield, true, ID.npc.APOLLYON_NE_PORTAL[4])
end
end
end
|
function GUIMessages()
local self = {}
local function showMsgInColor(msg,color)
if (term.isColor()) then
term.setTextColor(color)
print(msg)
term.setTextColor(colors.white)
else
print(msg)
end
end
function self.showErrorMsg(msg)
showMsgInColor(msg,colors.red)
print("")
end
function self.showSuccessMsg(msg)
showMsgInColor(msg,colors.lime)
end
function self.showWarningMsg(msg)
showMsgInColor(msg,colors.yellow)
end
function self.showInfoMsg(msg)
showMsgInColor(msg,colors.lightBlue)
end
function self.showHeader(msg)
showMsgInColor(msg,colors.blue)
end
function self.debug(msg)
local p = LoadPeripherals()
p.openWirelessModem(p.getTypes())
showMsgInColor(msg,colors.orange)
rednet.broadcast(msg,"debug")
end
return self
end
|
local mysql = exports.mrp_mysql
local banCache = {}
local banAffectedSerial = {}
local banAffectedIP = {}
local banAffectedAccount = {}
local lastBan = nil
local lastBanTimer = nil
local removeBan_ = removeBan
function banAPlayer(thePlayer, commandName, targetPlayer, hours, ...)
if exports["mrp_integration"]:isPlayerSeniorAdmin(thePlayer) then
if not (targetPlayer) or not (hours) or not tonumber(hours) or tonumber(hours)<0 or not (...) then
outputChatBox("#575757Redamancy: #ffffff /" .. commandName .. " [Oyuncu İsmi / ID] [0 = Sınırsız, Saat girin] [Açıklama]", thePlayer, 0, 55, 255, true)
else
local targetPlayer, targetPlayerName = exports.mrp_global:findPlayerByPartialNick(thePlayer, targetPlayer)
local targetPlayerSerial = getPlayerSerial(targetPlayer)
local targetPlayerIP = getPlayerIP(targetPlayer)
hours = tonumber(hours)
if not (targetPlayer) then
elseif (hours>168) then
outputChatBox("You cannot ban for more than 7 days (168 Hours).", thePlayer, 255, 194, 14)
else
local thePlayerPower = exports.mrp_global:getPlayerAdminLevel(thePlayer)
local targetPlayerPower = exports.mrp_global:getPlayerAdminLevel(targetPlayer)
reason = table.concat({...}, " ")
if (targetPlayerPower <= thePlayerPower) then -- Check the admin isn't banning someone higher rank them him
local hiddenAdmin = getElementData(thePlayer, "hiddenadmin")
local playerName = getPlayerName(thePlayer)
local accountID = getElementData(targetPlayer, "dbid")
local username = getElementData(targetPlayer, "account:username") or "N/A"
local seconds = ((hours*60)*60)
local rhours = hours
-- text value
if (hours==0) then
hours = "Sınırsız"
elseif (hours==1) then
hours = "1 Saat"
else
hours = hours .. " Saat"
end
if hours == "Sınırsız" then
reason = reason .. " (" .. hours .. ")"
else
reason = reason .. " (" .. hours .. ")"
end
exports['mrp_admins']:addAdminHistory(targetPlayer, thePlayer, reason, 2 , rhours)
local banId = nil
if (seconds == 0) then
banId = addToBan(accountID, targetPlayerSerial, targetPlayerIP, getElementData(thePlayer, "dbid"), reason)
if banId then
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
lastBan = res[1]
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
banCache[lastBan.id] = lastBan
banAffectedIP[lastBan.ip] = lastBan
banAffectedSerial[lastBan.serial] = lastBan
banAffectedAccount[lastBan.account] = lastBan
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE id=LAST_INSERT_ID()")
end
else
addBan(nil, nil, targetPlayerSerial, thePlayer, reason, seconds)
end
local adminUsername = getElementData(thePlayer, "account:username")
local adminUserID = getElementData(thePlayer, "dbid")
local adminTitle = exports.mrp_global:getPlayerAdminTitle(thePlayer)
for key, value in ipairs(getElementsByType("player")) do
if getPlayerSerial(value) == targetPlayerSerial then
local ip = "92.222.155.174"
local port = "22003"
redirectPlayer(value, ip, port)
end
end
adminTitle = exports.mrp_global:getAdminTitle1(thePlayer)
if (hiddenAdmin==1) then
adminTitle = "Gizli Yetkili"
end
if string.lower(commandName) == "sban" then
exports.mrp_global:sendMessageToAdmins("[SESSIZ BAN] " .. adminTitle .. " isimli yetkili " .. targetPlayerName .. " isimli oyuncuyu yasakladı. (" .. hours .. ")")
exports.mrp_global:sendMessageToAdmins("[SESSIZ BAN] Açıklama: " .. reason .. ".")
elseif string.lower(commandName) == "forceapp" then
outputChatBox("[FA] "..adminTitle .. " " .. playerName .. " isimli yetkili " .. targetPlayerName .. " isimli oyuncuyu yasakladı.", root, 255,0,0)
hours = "Sınırsız"
reason = "Kaldırtmak için www.inceptionroleplay.com"
outputChatBox("[FA]: Açıklama: " .. reason .. "." ,root, 255,0,0)
else
for i, player in ipairs(getElementsByType("player")) do
if getElementData(player, "jd.en") then
outputChatBox("[YASAKLAMA] " .. adminTitle .. " isimli yetkili " .. targetPlayerName .. " isimli oyuncuyu yasakladı. (" .. hours .. ")", player, 255,0,0)
outputChatBox("[YASAKLAMA] Açıklama: " .. reason .. ".", player, 255,0,0)
end
end
end
exports.mrp_global:sendMessageToAdmins("/showban yazarak detaylara bakabilirsiniz.")
else
outputChatBox("#575757Redamancy: #ffffffYetkisi sizden yüksek.", thePlayer, 255, 0, 0, true)
end
end
end
end
end
addCommandHandler("pban", banAPlayer, false, false)
addCommandHandler("sban", banAPlayer, false, false)
function karakterBanla(thePlayer, commandName, targetPlayer, ...)
local logged = getElementData(thePlayer, "loggedin")
local message = nil
if(logged==1) and (exports.mrp_integration:isPlayerSeniorAdmin(thePlayer)) then
if not (...) then
outputChatBox("#575757Redamancy: #ffffff/cban [OyuncuID/Isim] [Mesaj]", thePlayer, 0, 125, 255, true)
else
local targetPlayer, targetPlayerName = exports.mrp_global:findPlayerByPartialNick(thePlayer, targetPlayer)
if targetPlayer then
local affectedElements = { }
local message = table.concat({...}, " ")
local charID = getElementData(targetPlayer, "dbid")
local time = getRealTime()
local saat = time.hour
local saniye = time.minute
setElementData(targetPlayer, "activeCharacter", 0)
exports['mrp_admins']:addAdminHistory(targetPlayer, thePlayer, message.." | Sınırsız. (( "..targetPlayerName.." ))", 2 , 0)
outputChatBox("(( " .. targetPlayerName .. " sunucudan yasaklandı. Sure: Sınırsız Gerekce: ".. message .. " - " ..string.format("%02d", saat)..":"..string.format("%02d", saniye).. " ))", arrarPlayer, 255, 0, 0)
dbExec(mysql:getConnection(), "UPDATE characters SET active=0 WHERE id = "..(charID))
dbExec(mysql:getConnection(), "UPDATE characters SET activeDescription='"..message.."' WHERE id = "..(charID))
exports.mrp_global:updateTableCache("characters", getElementData(targetPlayer, "dbid"), {["active"] = 0, ["activeDescription"] = message})
redirectPlayer(targetPlayer, "", "")
end
end
end
end
addCommandHandler("cban", karakterBanla, false, false)
addEvent("selfckPlayer", true)
addEventHandler("selfckPlayer", root,
function(targetPlayer)
local message = "Karakter Ölümü"
local targetPlayerName = getPlayerName(targetPlayer)
setElementData(targetPlayer, "activeCharacter", 0)
local charID = getElementData(targetPlayer, "dbid")
local time = getRealTime()
local saat = time.hour
local saniye = time.minute
exports['mrp_admins']:addAdminHistory(targetPlayer, targetPlayer, message.." | Sınırsız. (( "..targetPlayerName.." ))", 2 , 0)
outputChatBox("(( " .. targetPlayerName .. " sunucudan yasaklandı. Sure: Sınırsız Gerekce: ".. message .. " - " ..string.format("%02d", saat)..":"..string.format("%02d", saniye).. " ))", root, 255, 0, 0)
dbExec(mysql:getConnection(), "UPDATE characters SET `active`='0', `activeDescription`='"..message.."' WHERE `id` = '"..charID.."'")
exports.mrp_global:updateTableCache("characters", getElementData(targetPlayer, "dbid"), {["active"] = 0, ["activeDescription"] = message})
redirectPlayer(targetPlayer, "", "")
end
)
addCommandHandler("unsban",
function(thePlayer, commandName, username)
if exports.mrp_integration:isPlayerSeniorAdmin(thePlayer) then
if not username then
outputChatBox("SYNTAX: /" .. commandName .. " [Username]", thePlayer, 255, 194, 14)
return
end
local row = exports.mrp_global:getAccountDetails(username)
if row then
for _, banElement in ipairs(getBans()) do
if getBanSerial(banElement) == row.mtaserial or getBanIP(banElement) == row.ip then
removeBan_(banElement)
outputChatBox(row.username.." adlı kullanıcının süreli yasağı başarıyla kaldırıldı.", thePlayer, 255, 194, 14)
return
end
end
outputChatBox(row.username.." adlı kullanıcının süreli yasağı yok.", thePlayer, 255, 194, 14)
else
outputChatBox("Kullanıcı adı bulunamadı.", thePlayer, 255, 194, 14)
end
end
end
)
function offlineBanAPlayer(thePlayer, commandName, targetUsername, hours, ...)
if exports.mrp_integration:isPlayerSeniorAdmin(thePlayer) then
if not (targetUsername) or not (hours) or not tonumber(hours) or (tonumber(hours)<0) or not (...) then
outputChatBox("SYNTAX: /" .. commandName .. " [Player Username] [Time in Hours, 0 = Infinite] [Reason]", thePlayer, 255, 194, 14)
else
hours = tonumber(hours) or 0
if (hours>168) then
outputChatBox("You cannot ban for more than 7 days (168 Hours).", thePlayer, 255, 194, 14)
return false
end
local user = exports.mrp_global:getCache("accounts", targetUsername, "username")
if user and user['id'] and tonumber(user['id']) then
targetUsername = user['username']
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
printBanInfo(thePlayer, res[1])
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE account='"..user["id"].."' LIMIT 1")
local thePlayerPower = exports.mrp_global:getPlayerAdminLevel(thePlayer)
local adminTitle = exports.mrp_global:getAdminTitle1(thePlayer)
local adminUsername = getElementData(thePlayer, "account:username" )
if (tonumber(user['admin']) > thePlayerPower) then
outputChatBox(" '"..targetUsername.."' is a higher level admin than you.", thePlayer, 255, 0, 0)
exports.mrp_global:sendMessageToAdmins("AdmWrn: "..adminTitle.." attempted to execute the ban command on higher admin '"..targetUsername.."'.")
return false
end
--check online players
for i, player in pairs(getElementsByType("player")) do
if getElementData(player, "dbid") == tonumber(user['id']) then
local cmd = "pban"
if string.lower(commandName) == "soban" then
cmd = "sban"
end
banAPlayer(thePlayer, cmd, getElementData(player, "playerid"), hours, (...))
return true
end
end
local reason = table.concat({...}, " ")
local hiddenAdmin = getElementData(thePlayer, "hiddenadmin")
local playerName = getPlayerName(thePlayer)
local seconds = ((hours*60)*60)
local rhours = hours
-- text value
if (hours==0) then
hours = "Sınırsız"
elseif (hours==1) then
hours = "1 Saat"
else
hours = hours .. " Saat"
end
reason = reason .. " (" .. hours .. ")"
exports['mrp_admins']:addAdminHistory(user['id'], thePlayer, reason, 2, rhours)
local targetSerial = nil
if user['mtaserial'] ~= nil then
targetSerial = user['mtaserial']
end
local banId = nil
if seconds == 0 then
banId = addToBan(user['id'], user['mtaserial'], user['ip'], getElementData(thePlayer, "dbid"), reason)
if banId then
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
lastBan = res[1]
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
banCache[lastBan.id] = lastBan
banAffectedIP[lastBan.ip] = lastBan
banAffectedSerial[lastBan.serial] = lastBan
banAffectedAccount[lastBan.account] = lastBan
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE id=LAST_INSERT_ID()")
end
elseif targetSerial then
addBan(nil, nil, targetSerial, thePlayer, reason, seconds)
end
local adminUsername = getElementData(thePlayer, "account:username")
local adminUserID = getElementData(thePlayer, "dbid")
adminTitle = exports.mrp_global:getPlayerAdminTitle(thePlayer)
if targetSerial then
for key, value in ipairs(getElementsByType("player")) do
if getPlayerSerial(value) == targetSerial then
--kickPlayer(value, thePlayer, reason)
local ip = "92.222.155.174"
local port = "22003"
redirectPlayer(value, ip, port)
end
end
end
if (hiddenAdmin==1) then
adminTitle = "Gizli Yetkili"
end
if string.lower(commandName) == "soban" then
exports.mrp_global:sendMessageToAdmins("[ÇEVRİMDIŞI-BAN]: " .. adminTitle .. " " .. adminUsername .. " isimli yetkili " .. targetUsername .. " kullanici adli oyuncuyu yasakladi. (" .. hours .. ")")
exports.mrp_global:sendMessageToAdmins("[ÇEVRİMDIŞI-BAN]: Açıklama: " .. reason .. ".")
else
outputChatBox("[ÇEVRİMDIŞI-BAN]: " .. adminTitle .. " " .. adminUsername .. " isimli yetkili " .. targetUsername .. " kullanici adli oyuncuyu yasakladi. (" .. hours .. ")", getRootElement(), 255, 0, 51)
outputChatBox("[ÇEVRİMDIŞI-BAN]: Açıklama: " .. reason .. ".", getRootElement(), 255, 0, 51)
end
exports.mrp_global:sendMessageToAdmins("/showban yazarak detaylara bakabilirsiniz.")
else
outputChatBox("#575757Redamancy: #ffffffKullanıcı adı tespit edilemedi.", thePlayer, 255, 0, 0, true)
return false
end
end
end
end
addCommandHandler("oban", offlineBanAPlayer, false, false)
addCommandHandler("soban", offlineBanAPlayer, false, false)
function banPlayerSerial(thePlayer, commandName, serial, ...)
if (exports.mrp_integration:isPlayerSeniorAdmin(thePlayer)) then
if not serial or not string.len(serial) or not string.len(serial) == 32 or not (...) then
outputChatBox("SYNTAX: /" .. commandName .. " [Serial Number] [Reason]", thePlayer, 255, 194, 14)
else
local reason = table.concat({...}, " ")
serial = string.upper(serial)
local id = addToBan(nil, serial, nil, getElementData(thePlayer,"dbid"), reason)
if id and tonumber(id) then
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
lastBan = res[1]
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
banCache[lastBan.id] = lastBan
banAffectedIP[lastBan.ip] = lastBan
banAffectedSerial[lastBan.serial] = lastBan
banAffectedAccount[lastBan.account] = lastBan
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE id=LAST_INSERT_ID()")
for key, value in ipairs(getElementsByType("player")) do
if getPlayerSerial(value) == serial then
kickPlayer(value, thePlayer, reason)
end
end
exports.mrp_global:sendMessageToAdmins("[BAN] "..exports.mrp_global:getPlayerFullIdentity(thePlayer).." has banned serial number '"..serial.."' permanently for '"..reason.."'. /showban for details.")
else
end
end
end
end
addCommandHandler("banserial", banPlayerSerial, false, false)
addCommandHandler("serialban", banPlayerSerial, false, false)
function banPlayerIP(thePlayer, commandName, ip, ...)
if (exports.mrp_integration:isPlayerSeniorAdmin(thePlayer)) then
if not ip or not string.len(ip) or string.len(ip) > 15 or not (...) then
outputChatBox("SYNTAX: /" .. commandName .. " [IP Address] [Reason]", thePlayer, 255, 194, 14)
outputChatBox("You can use * for IP range ban. For example: 192.168.*.*", thePlayer, 255, 194, 14)
else
local reason = table.concat({...}, " ")
local id = addToBan(nil, nil, ip, getElementData(thePlayer,"dbid"), reason)
if id and tonumber(id) then
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
lastBan = res[1]
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
banCache[lastBan.id] = lastBan
banAffectedIP[lastBan.ip] = lastBan
banAffectedSerial[lastBan.serial] = lastBan
banAffectedAccount[lastBan.account] = lastBan
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE id=LAST_INSERT_ID()")
for key, value in ipairs(getElementsByType("player")) do
if getPlayerIP(value) == ip then
kickPlayer(value, thePlayer, reason)
end
end
exports.mrp_global:sendMessageToAdmins("[BAN] "..exports.mrp_global:getPlayerFullIdentity(thePlayer).." has banned IP Address '"..ip.."' permanently for '"..reason.."'. /showban for details.")
end
end
end
end
addCommandHandler("ipban", banPlayerIP, false, false)
addCommandHandler("banip", banPlayerIP, false, false)
function banPlayerAccount(thePlayer, commandName, account, ...)
if (exports.mrp_integration:isPlayerSeniorAdmin(thePlayer)) then
if not account or not (...) then
outputChatBox("SYNTAX: /" .. commandName .. " [Username] [Reason]", thePlayer, 255, 194, 14)
else
local account = exports.mrp_global:getCache("accounts", account, "username")
if not account or account.id == nil then
outputChatBox("Account '"..account.."' does not existed.", thePlayer, 255, 0, 0)
return false
end
local reason = table.concat({...}, " ")
local id = addToBan(account.id, nil, nil, getElementData(thePlayer,"dbid"), reason)
if id and tonumber(id) then
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
lastBan = res[1]
banCache[lastBan.id] = lastBan
banAffectedIP[lastBan.ip] = lastBan
banAffectedSerial[lastBan.serial] = lastBan
banAffectedAccount[lastBan.account] = lastBan
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
end
end,
mysql:getConnection(), "SELECT * FROM bans WHERE id=LAST_INSERT_ID()")
for key, value in ipairs(getElementsByType("player")) do
if getElementData(value, "dbid") == tonumber(account.id) then
kickPlayer(value, thePlayer, reason)
end
end
exports.mrp_global:sendMessageToAdmins("[BAN] "..exports.mrp_global:getPlayerFullIdentity(thePlayer).." has banned account '"..(account.username).."' permanently for '"..reason.."'. /showban for details.")
end
end
end
end
addCommandHandler("banaccount", banPlayerAccount, false, false)
addCommandHandler("accountban", banPlayerAccount, false, false)
-- /UNBAN
function unbanPlayer(thePlayer, commandName, id)
if (exports.mrp_integration:isPlayerSeniorAdmin(thePlayer)) then
if not id or not tonumber(id) then
outputChatBox("SYNTAX: /" .. commandName .. " [Ban ID]", thePlayer, 255, 194, 14)
outputChatBox("/showban [Username or serial or IP] to retrieve ban ID.", thePlayer, 255, 194, 14)
else
if tonumber(getElementData(thePlayer, "cmd:unban")) ~= tonumber(id) then
dbQuery(
function(qh, thePlayer)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
local ban = res[1]
if ban and ban['id'] and tonumber(ban['id']) then
printBanInfo(thePlayer,ban)
outputChatBox("You're about to remove this ban record. Please type /unban "..ban['id'].." once again to proceed.", thePlayer, 255, 194, 14)
setElementData(thePlayer, "cmd:unban", ban['id'])
end
end
end,
{thePlayer}, mysql:getConnection(), "SELECT * FROM bans WHERE id='"..id.."'")
else
local res, rows = banCache[tonumber(id)], #banCache[tonumber(id)]
if rows then
local ban = res
if ban and ban['id'] and tonumber(ban['id']) then
lastBan = ban
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
banCache[lastBan.id] = nil
banAffectedIP[lastBan.ip] = nil
banAffectedSerial[lastBan.serial] = nil
banAffectedAccount[lastBan.account] = nil
collectgarbage("collect")
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
if dbExec(mysql:getConnection(), "DELETE FROM bans WHERE id='"..id.."'") then
for _, banElement in ipairs(getBans()) do
if getBanSerial(banElement) == ban['serial'] or getBanIP(banElement) == ban['ip'] then
removeBan_(banElement)
break
end
end
if ban['account'] ~= nil then
exports['mrp_admins']:addAdminHistory(ban['account'], thePlayer, "UNBAN", 2 , 0)
end
local hiddenAdmin = getElementData(thePlayer, "hiddenadmin")
exports.mrp_global:sendMessageToAdmins("[UNBAN] "..exports.mrp_global:getPlayerFullIdentity(thePlayer).." has removed ban record #"..ban['id']..". /showban for details.")
end
end
end
end
end
end
end
addCommandHandler("unban", unbanPlayer, false, false)
function checkAccountBan(userid)
return false
end
function showBanDetails(thePlayer, commandName, clue)
if exports.mrp_integration:isPlayerSeniorAdmin(thePlayer) then
if clue then
clue = (clue)
local bans = {}
if tostring(clue) and exports.mrp_global:getCache("accounts", clue, "username", true) then
clue = exports.mrp_global:getCache("accounts", clue, "username", true).id
end
if banAffectedAccount[clue] or banAffectedSerial[clue] or banAffectedIP[clue] then
printBanInfo(thePlayer, banAffectedAccount[clue] or banAffectedSerial[clue] or banAffectedIP[clue])
end
elseif lastBan then
printBanInfo(thePlayer, lastBan)
else
outputChatBox("SYNTAX: /" .. commandName .. " [Serial or IP or Username]", thePlayer, 255, 194, 14)
end
end
end
addCommandHandler("showban", showBanDetails, false, false)
addCommandHandler("findban", showBanDetails, false, false)
function printBanInfo(thePlayer, result)
outputChatBox("===========BAN KAYIT #"..result['id'].."============", thePlayer, 255, 194, 14)
local bannedAccount = exports.mrp_cache:getUsernameFromId(result['account'])
outputChatBox("Hesap: "..(bannedAccount and bannedAccount or "N/A"), thePlayer, 255, 194, 14)
local bannedSerial = nil
if result['serial'] ~= nil then
bannedSerial = result['serial']
end
outputChatBox("Serial: "..(bannedSerial and bannedSerial or "N/A"), thePlayer, 255, 194, 14)
local bannedIp = nil
if result['ip'] ~= nil then
bannedIp = result['ip']
end
outputChatBox("IP: "..(bannedIp and bannedIp or "N/A"), thePlayer, 255, 194, 14)
local banningAdmin = exports.mrp_cache:getUsernameFromId(result['admin'])
outputChatBox("Yetkili: "..(banningAdmin and banningAdmin or "N/A"), thePlayer, 255, 194, 14)
local bannedDate = nil
if result['date'] ~= nil then
bannedDate = result['date']
end
outputChatBox("Ban Tarihi: "..(bannedDate and bannedDate or "N/A"), thePlayer, 255, 194, 14)
local bannedReason = nil
if result['reason'] ~= nil then
bannedReason = result['reason']
end
outputChatBox("Reason: "..(bannedReason and bannedReason or "N/A"), thePlayer, 255, 194, 14)
outputChatBox("Ban konusu: "..(banThread and banThread or "N/A"), thePlayer, 255, 194, 14)
end
function addToBan(account, serial, ip, admin, reason)
local tail = ''
if serial then
tail = tail..", serial='"..serial.."'"
end
if ip then
tail = tail..", ip='"..ip.."'"
end
if admin and tonumber(admin) then
tail = tail..", admin='"..admin.."'"
end
if reason then
tail = tail..", reason='"..(reason).."'"
else
tail = tail..", reason='"..("N/A").."'"
end
if account and tonumber(account) then
tail = tail..", account='"..account.."'"
end
return dbExec(mysql:getConnection(), "INSERT INTO bans SET date=NOW() "..tail)
end
function checkForSerialOrIpBan()
local playerNick = getPlayerName(source)
local playerIP = getPlayerIP(source)
local playerUsername = getPlayerName(source)
local playerSerial = getPlayerSerial(source)
dbQuery(
function(qh, source)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
local result = res[1]
lastBan = result
if lastBanTimer and isTimer(lastBanTimer) then
killTimer(lastBanTimer)
lastBanTimer = nil
end
lastBanTimer = setTimer(function()
lastBan = nil
end, 1000*60*5,1)
local banText = "Sunucumuzdan uzaklaştırıldınız"
local bannedSerial = false
local bannedIp = false
if result['serial'] == playerSerial then
banText = "Sunucumuzda yasaklısınız"
bannedSerial = playerSerial
end
if result['ip'] == playerIP then
bannedIp = playerIP
banText = "Sunucumuzda IP Adresiniz banli durumda"
end
kickPlayer(source, "Sunucudan yasaklısınız.")
exports.mrp_global:sendMessageToAdmins("[BAN] "..(bannedSerial and (" serial: '"..tostring(bannedSerial).."'") or "" ).." "..(bannedIp and (" IP: '"..tostring(bannedIp).."'") or "").." oyuna girmeye çalıştı, /showban komutuyla detayları öğrenin.")
return true
end
end,
{source}, mysql:getConnection(), "SELECT * FROM bans WHERE serial='"..playerSerial.."' OR ip='"..playerIP.."' LIMIT 1")
end
addEventHandler("onPlayerJoin", getRootElement(), checkForSerialOrIpBan)
function checkBan(type, indexValue)
if type == "all" then
return banCache, banAffectedAccount, banAffectedSerial, banAffectedIP
else
if type == "serial" then
return banAffectedSerial[indexValue]
elseif type == "ip" then
return banAffectedIP[indexValue]
elseif type == "account" then
return banAffectedAccount[indexValue]
elseif type == "id" then
return banCache[indexValue]
end
end
end
function removeBan(type, indexValue)
if type == "serial" then
banAffectedSerial[indexValue] = nil
elseif type == "ip" then
banAffectedIP[indexValue] = nil
elseif type == "account" then
banAffectedAccount[indexValue] = nil
elseif type == "id" then
banCache[indexValue] = nil
end
end
addEventHandler("onResourceStart", resourceRoot,
function()
dbQuery(
function(qh)
local res, rows, err = dbPoll(qh, 0)
if rows > 0 then
for index, row in ipairs(res) do
banCache[row.id] = {}
for key, data in pairs(row) do
banCache[row.id][key] = data
end
banAffectedAccount[row.account] = banCache[row.id]
banAffectedSerial[row.serial] = banCache[row.id]
banAffectedIP[row.ip] = banCache[row.id]
end
end
end,
mysql:getConnection(), "SELECT * FROM `bans`")
end
)
addCommandHandler("cban",
function(thePlayer, commandName, playerName)
if exports.mrp_integration:isPlayerAdminI(thePlayer) then
if not playerName then
outputChatBox("Sözdizimi: /" .. commandName .. " [Isim_Soyisim]", thePlayer)
return
end
if string.find(playerName, "_") then
local targetPlayer, targetPlayerName = exports.mrp_global:findPlayerByPartialNick(thePlayer, playerName)
local result = dbExec(mysql:getConnection(),"UPDATE `characters` SET `cked`='1' WHERE `charactername`='"..playerName.."' ")
if result then
kickPlayer(targetPlayer, thePlayer)
outputChatBox("'" .. playerName .. " ' isimli karakter başarıyla yasaklandı!", thePlayer)
outputChatBox("" .. playerName .. " " .. getPlayerName(thePlayer) .. " tarafından sunucudan yasaklandı. Sure: Sınırsız Gerekce: Karakter Ölümü", arrarPlayer, 255, 0, 0)
else
outputChatBox("'" .. playerName .. "' isimli karakter açılırken bir hata oluştu.", thePlayer)
end
else
outputChatBox("[!] Sözdizimi: /" .. commandName .. " [Isim_Soyisim]", thePlayer)
return
end
end
end
)
addCommandHandler("uncban",
function(thePlayer, commandName, playerName)
if exports.mrp_integration:isPlayerAdminI(thePlayer) then
if not playerName then
outputChatBox("Sözdizimi: /" .. commandName .. " [Isim_Soyisim]", thePlayer)
return
end
if string.find(playerName, "_") then
local targetPlayer, targetPlayerName = exports.mrp_global:findPlayerByPartialNick(thePlayer, playerName)
local result = dbExec(mysql:getConnection(),"UPDATE `characters` SET `cked`='0' WHERE `charactername`='"..playerName.."' ")
if result then
kickPlayer(targetPlayer, thePlayer)
outputChatBox( "CBAN: " .. getPlayerName(thePlayer) .. " " .. playerName .. " isimli oyuncunun karakter yasağını kaldırdı.", arrayPlayer, 255, 0, 0)
outputChatBox("'" .. playerName .. " ' isimli karakterin başarı ile yasağı kaldırıldı!", thePlayer)
else
outputChatBox("'" .. playerName .. "' isimli karakter açılırken bir hata oluştu.", thePlayer)
end
else
outputChatBox("[!] Sözdizimi: /" .. commandName .. " [Isim_Soyisim]", thePlayer)
return
end
end
end
)
local userNamesCache = {}
function getUserNameFromID(userID)
if not userID then return false end
if userNamesCache[userID] then
return userNamesCache[userID]
end
local accounts, characters = exports.mrp_auth:getTableInformations()
for index, value in ipairs(accounts) do
if value.id == userID then
return characters[index]['username']
end
end
return false
end
|
-------------------------------------------------------------------------------
-- SF Helper for Starfall
-- By Jazzelhawk
-------------------------------------------------------------------------------
--- TO DO ---
--- search page
SF.Helper = {}
SF.Docs = {}
local helper = SF.Helper
local docs_set = false
local settings_set = false
if CLIENT then
function helper.getDocs ()
http.Fetch( "http://sf.inp.io/doc.json", function ( body, len, headers, code )
SF.Docs = util.JSONToTable( body )
docs_set = true
end, function( error ) print( "Starfall failed to load documentation, Error: ", error ) end )
end
helper.getDocs()
CreateClientConVar( "sf_helper_width", 930, true, false )
CreateClientConVar( "sf_helper_height", 615, true, false )
CreateClientConVar( "sf_helper_posx", ( ScrW() - 930 ) / 2, true, false )
CreateClientConVar( "sf_helper_posy", ( ScrH() - 615 ) / 2, true, false )
CreateClientConVar( "sf_helper_divheight", 400, true, false )
end
local function saveSettings ()
RunConsoleCommand( "sf_helper_width", helper.Frame:GetWide() )
RunConsoleCommand( "sf_helper_height", helper.Frame:GetTall() )
local x, y = helper.Frame:GetPos()
RunConsoleCommand( "sf_helper_posx", x )
RunConsoleCommand( "sf_helper_posy", y )
RunConsoleCommand( "sf_helper_divheight", helper.DocView.Div:GetTopHeight() )
end
function helper.create ()
helper.Views = {}
helper.Frame = vgui.Create( "StarfallFrame" )
helper.Frame:SetSize( 930, 615 )
helper.Frame:Center( )
helper.Frame:SetTitle( "SF Helper" )
helper.Frame._PerformLayout2 = helper.Frame.PerformLayout
function helper.Frame:PerformLayout ( ... )
local w, h = helper.Frame:GetSize()
if w < 620 then w = 620 end
if h < 410 then h = 410 end
helper.Frame:SetSize( w, h )
self:_PerformLayout2( ... )
helper.resize( )
end
function helper.Frame:OnOpen ()
SF.Editor.editor.components[ "buttonHolder" ]:getButton( "Helper" ).active = true
end
function helper.Frame:OnClose ()
SF.Editor.editor.components[ "buttonHolder" ]:getButton( "Helper" ).active = false
saveSettings()
end
helper.ScrollPanel = vgui.Create( "DScrollPanel", helper.Frame )
helper.ScrollPanel:SetPos( 5, 30 )
helper.CatList = vgui.Create( "DCategoryList", helper.ScrollPanel )
local lists = {}
local panels = {}
local function createList ( name, listfunc )
local Cat = helper.CatList:Add( name )
if name ~= "SF Helper" then Cat:SetExpanded( false ) end
local DPanel = vgui.Create( "StarfallPanel", Cat )
DPanel:SetPos( 2, 22 )
local List = vgui.Create( "DListView", DPanel )
List:SetHideHeaders( true )
List:SetMultiSelect( false )
List:DisableScrollbar()
List:AddColumn( "" )
local height = listfunc( List ) - 15
DPanel:SetSize( 113, height )
List:SetSize( 113, height )
List._OnRowSelected = List.OnRowSelected
function List:OnRowSelected ( LineID, Line )
for k, v in pairs( lists ) do
if v ~= List then
v:ClearSelection()
end
end
List:_OnRowSelected( LineID, Line )
end
lists[ name ] = List
table.insert( panels, DPanel )
end
helper.CatList._PerformLayout = helper.CatList.PerformLayout
function helper.CatList:PerformLayout ( ... )
self:_PerformLayout( ... )
for k, v in pairs( panels ) do
v:SetSize( self:GetCanvas():GetWide() - 8, v:GetTall() )
end
for k, v in pairs( lists ) do
v:SetSize( self:GetCanvas():GetWide() - 8, v:GetTall() )
end
end
createList( "SF Helper", function ( List )
local height = 16;
List:AddLine( "Index" )
height = height + 17
List:AddLine( "About" )
height = height + 17
List:SelectFirstItem()
function List:OnRowSelected ( LineID, Line )
if LineID == 1 then
helper.openView( "Index" )
else
helper.openView( "About" )
end
end
return height
end )
createList( "Preprocessor directives", function ( List )
local height = 16
for _, directive in ipairs( SF.Docs.directives ) do
List:AddLine( "--@" .. directive )
height = height + 17
end
function List:OnRowSelected ( LineID, Line )
helper.openView( "Doc" )
helper.updateDocView( Line, 4 )
helper.DocView.DirectivesList:SelectItem( helper.DocView.DirectivesList:GetLine( LineID ) )
end
return height
end )
createList( "Libraries", function ( List )
local height = 16
for _, modulename in ipairs( SF.Docs.libraries ) do
List:AddLine( modulename )
height = height + 17
end
function List:OnRowSelected( LineID, Line )
helper.openView( "Doc" )
helper.updateDocView( Line, 1 )
end
return height
end )
createList( "Types", function ( List )
local height = 16
for _, typename in ipairs( SF.Docs.classes ) do
List:AddLine( typename )
height = height + 17
end
function List:OnRowSelected ( LineID, Line )
helper.openView( "Doc" )
helper.updateDocView( Line, 2 )
end
return height
end )
createList( "Hooks", function ( List )
local height = 16
for _, hookname in ipairs( SF.Docs.hooks ) do
List:AddLine( hookname )
height = height + 17
end
function List:OnRowSelected ( LineID, Line )
helper.openView( "Doc" )
helper.updateDocView( Line, 3 )
helper.DocView.HooksList:SelectItem( helper.DocView.HooksList:GetLine( LineID ) )
end
return height
end )
function helper.clearViews ()
for _, View in pairs( helper.Views ) do
View:SetVisible( false )
if View.Info then
View.Info:SetVisible( false )
View.Div:SetVisible( false )
end
end
end
function helper.openView ( view )
helper.clearViews()
if helper.Views[ view ] then
helper.Views[ view ]:SetVisible( true )
if helper.Views[ view ].Info then
helper.Views[ view ].Info:SetVisible( true )
helper.Views[ view ].Div:SetVisible( true )
end
end
end
surface.CreateFont( "HelperTitle", {
font = "Tahoma",
size = 30,
weight = 1000
} )
surface.CreateFont( "HelperText", {
font = "Tahoma",
size = 22,
weight = 500
} )
surface.CreateFont( "HelperTextBold", {
font = "Tahoma",
size = 22,
weight = 1000
} )
surface.CreateFont( "CodeBlock", {
font = "Courier New",
size = 16,
weight = 540
} )
---- Index View ----
--------------------
helper.IndexView = vgui.Create( "StarfallPanel", helper.Frame )
helper.IndexView:SetPos( 166, 30 )
helper.Views.Index = helper.IndexView
helper.IndexLibs = vgui.Create( "DListView", helper.IndexView )
helper.IndexLibs:SetPos( 5, 5 )
helper.IndexLibs:SetMultiSelect( false )
helper.IndexLibs:AddColumn( "Libraries" ):SetFixedWidth( 100 )
helper.IndexLibs:AddColumn( "Description" )
for _, modulename in ipairs( SF.Docs.libraries ) do
helper.IndexLibs:AddLine( modulename, string.Trim( SF.Docs.libraries[ modulename ].summary ) )
end
function helper.IndexLibs:OnRowSelected ( LineID, Line )
helper.IndexHooks:ClearSelection()
lists[ "Libraries" ]:GetParent():GetParent():DoExpansion( true )
lists[ "Libraries" ]:SelectItem( lists[ "Libraries" ]:GetLine( LineID ) )
end
helper.IndexHooks = vgui.Create( "DListView", helper.IndexView )
helper.IndexHooks:SetMultiSelect( false )
helper.IndexHooks:AddColumn( "Hooks" ):SetFixedWidth( 100 )
helper.IndexHooks:AddColumn( "Description" )
for _, hookname in ipairs(SF.Docs.hooks) do
helper.IndexHooks:AddLine( hookname, string.Trim( SF.Docs.hooks[ hookname ].summary ) )
end
function helper.IndexHooks:OnRowSelected ( LineID, Line )
helper.IndexLibs:ClearSelection()
lists[ "Hooks" ]:GetParent():GetParent():DoExpansion( true )
lists[ "Hooks" ]:SelectItem( lists[ "Hooks" ]:GetLine( LineID ) )
end
---- Doc View ----
------------------
function helper.updateDocView ( Line, Type )
local view = helper.DocView
view.DocName = Line:GetColumnText( 1 )
view:GetVBar():SetScroll( 0 )
if Type == 1 then
view.Title:SetText( "Library - " .. view.DocName )
view.Doc = SF.Docs.libraries[ view.DocName ]
elseif Type == 2 then
view.Title:SetText( "Type - " .. view.DocName )
view.Doc = SF.Docs.classes[ view.DocName ]
elseif Type == 3 then
view.Title:SetText( "Hooks" )
view.Doc = {}
view.Doc.hooks = SF.Docs.hooks
view.Doc.description = "List of hooks available to SF scripts"
elseif Type == 4 then
view.Title:SetText( "Preprocessor directives" )
view.Doc = {}
view.Doc.directives = SF.Docs.directives
view.Doc.description = "List of preprocessor directives"
end
local doc = view.Doc
view.Title:SizeToContents()
view.Description:SetText( string.Replace( doc.description, "\n", "" ) )
view.Description:SizeToContents()
view.Description:SetWrap( true )
view.Description:SetAutoStretchVertical( true )
if doc.deprecated then
view.Deprecated:SetVisible( true )
view.Deprecated.Enabled = true
else
view.Deprecated:SetVisible( false )
view.Deprecated.Enabled = false
end
for _, labellist in pairs( helper.LabelLists ) do
if doc[ labellist.name ] and #doc[ labellist.name ] > 0 then
labellist.label:SetVisible( true )
labellist.label.Enabled = true
labellist.label:SizeToContents()
labellist.list:SetVisible( true )
labellist.list:Clear()
local height = labellist.func( view, doc )
labellist.list:SetTall( height )
else
labellist.label:SetVisible( false )
labellist.label.Enabled = false
labellist.list:SetVisible( false )
end
end
timer.Create( "update", 0.1, 1, helper.resize )
end
helper.DocView = vgui.Create( "DScrollPanel", helper.Frame )
helper.DocView:SetPos( 166, 30 )
helper.DocView:SetVisible( false )
helper.Views.Doc = helper.DocView
helper.DocView.Panel = vgui.Create( "StarfallPanel", helper.DocView )
helper.DocView.Title = Label( "", helper.DocView.Panel )
helper.DocView.Title:SetPos( 10, 5 )
helper.DocView.Title:SetFont( "HelperTitle" )
helper.DocView.Title.m_colText = Color( 60, 60, 60 )
helper.DocView.Description = Label( "", helper.DocView.Panel )
helper.DocView.Description:SetPos( 25, 40 )
helper.DocView.Description:SetFont( "HelperText" )
helper.DocView.Description.m_colText = Color( 60, 60, 60 )
helper.DocView.Deprecated = Label( "", helper.DocView.Panel )
helper.DocView.Deprecated:SetText( "This library/type has been deprecated and will be removed in the future for the following reason: Pure Lua implementation. This can be done with a user library." )
helper.DocView.Deprecated:SetPos( 25, 40 )
helper.DocView.Deprecated:SetFont( "HelperTextBold" )
helper.DocView.Deprecated:SizeToContents()
helper.DocView.Deprecated:SetWrap( true )
helper.DocView.Deprecated:SetAutoStretchVertical( true )
helper.DocView.Deprecated.m_colText = Color( 210, 0, 0 )
helper.LabelLists = {}
local function createDocList ( name, func, update )
local label = Label( name, helper.DocView.Panel )
label:SetPos( 10, 40 )
label:SetFont( "HelperTitle" )
label.m_colText = Color( 60, 60, 60 )
helper.DocView[ name .. "Label" ] = label
local list = vgui.Create( "DListView", helper.DocView.Panel )
list:SetPos( 25, 40 )
list:SetMultiSelect( false )
list:AddColumn( name ):SetFixedWidth( 150 )
list:AddColumn( "Description" )
helper.DocView[ name .. "List" ] = list
helper.LabelLists[ #helper.LabelLists + 1 ] = { label = label, list = list, func = func, name = string.lower( name ) }
function list:OnRowSelected ( LineID, Line )
for _, labellist in pairs( helper.LabelLists ) do
if labellist.list ~= list then
labellist.list:ClearSelection()
end
end
update( LineID, Line )
end
end
local function formatText( text, dontRemoveNewLines )
text = text:Trim()
if not dontRemoveNewLines then text = string.Replace( text, "\n", "" ) end
text = string.gsub( text, "<[^>]*>", "" )
return text
end
createDocList( "Functions", function ( view, doc )
local height = 16
for _, func in ipairs( doc.functions ) do
local func_data = doc.functions[ func ]
local line = view.FunctionsList:AddLine( func .. "( " .. table.concat( func_data.param, ", " ) .. " )", formatText( func_data.summary ) )
line.func = func
height = height + 17
end
return height
end, function ( LineID, Line )
helper.updateInfoPanel( helper.DocView.Doc.functions[ Line.func ] )
end )
createDocList( "Tables", function ( view, doc )
local height = 16
for _, table in ipairs( doc.tables ) do
local table_data = doc.tables[ table ]
local line = view.TablesList:AddLine( table, formatText( table_data.summary ) )
line.table = table
height = height + 17
end
return height
end, function ( LineID, Line )
helper.updateInfoPanel( helper.DocView.Doc.tables[ Line.table ] )
end )
createDocList( "Fields", function ( view, doc )
local height = 16
for _, field in ipairs( doc.fields ) do
local field_data = doc.fields[ field ]
view.FieldsList:AddLine( field, formatText( field_data.summary ) )
height = height + 17
end
return height
end, function ( LineID, Line) end )
createDocList( "Methods", function ( view, doc )
local height = 16
for _, func in ipairs( doc.methods ) do
local func_data = doc.methods[ func ]
local line = view.MethodsList:AddLine( func .. "( " .. table.concat( func_data.param, ", " ) .. " )", formatText( func_data.summary ) )
line.func = func
height = height + 17
end
return height
end, function ( LineID, Line )
helper.updateInfoPanel( helper.DocView.Doc.methods[ Line.func ] )
end )
createDocList( "Hooks", function ( view, doc )
local height = 16
for _, hook in ipairs( doc.hooks ) do
local hook_data = doc.hooks[ hook ]
local line = view.HooksList:AddLine( hook, formatText( hook_data.summary ) )
line.hook = hook
height = height + 17
end
return height
end, function ( LineID, Line )
helper.updateInfoPanel( helper.DocView.Doc.hooks[ Line.hook ] )
end )
createDocList( "Directives", function ( view, doc )
local height = 16
for _, directive in ipairs( doc.directives ) do
local directive_data = doc.directives[ directive ]
local line = view.DirectivesList:AddLine( directive, formatText( directive_data.summary ) )
line.directive = directive
height = height + 17
end
return height
end, function ( LineID, Line )
helper.updateInfoPanel( helper.DocView.Doc.directives[ Line.directive ], true )
end )
---- InfoPanel ----
-------------------
function helper.updateInfoPanel ( func, directive )
local infopanel = helper.DocView.InfoPanel
helper.DocView.Info:GetVBar():SetScroll( 0 )
directive = nil or directive
if not directive then
infopanel.funcName:SetText( formatText( func.name .. "( " .. table.concat( func.param, ", " ) .. " )" ) )
else
infopanel.funcName:SetText( formatText( "--@" .. func.name .. " " .. table.concat( func.param, ", " ) ) )
end
infopanel.funcName.Enabled = true
infopanel.description:SetText( formatText( func.description or "", true ) )
infopanel.description.Enabled = true
if func.deprecated then
infopanel.deprecated:SetText( "Deprecated: " .. formatText( func.deprecated ) )
infopanel.deprecated.Enabled = true
else
infopanel.deprecated.Enabled = false
end
if type( func.param ) == "table" and #func.param > 0 then
local params = ""
for p = 1, #func.param do
params = params .. "» " .. func.param[ p ] .. ": " .. ( func.param[ func.param[ p ] ] or "" ) .. ( p ~= #func.param and "\n" or "" )
end
infopanel.parameters:SetText( "Parameters: " )
infopanel.parameterList:SetText( formatText( params, true ) )
infopanel.parameters.Enabled = true
infopanel.parameterList.Enabled = true
elseif #func.param == 0 then
infopanel.parameters.Enabled = false
infopanel.parameterList.Enabled = false
end
if type( func.ret ) == "string" then
infopanel.returnvalue:SetText( "Return value: " )
infopanel.returnvalueList:SetText( formatText( func.ret, true ) )
infopanel.returnvalue.Enabled = true
infopanel.returnvalueList.Enabled = true
elseif type( func.ret ) == "table" then
infopanel.returnvalue:SetText( "Return values: " )
local rets = ""
local count = 1
for _, ret in ipairs( func.ret ) do
rets = rets .. count .. ". " .. ret .. "\n"
count = count + 1
end
infopanel.returnvalueList:SetText( formatText( rets, true ) )
infopanel.returnvalue.Enabled = true
infopanel.returnvalueList.Enabled = true
else
infopanel.returnvalue.Enabled = false
infopanel.returnvalueList.Enabled = false
end
if type( func.usage ) == "string" then
infopanel.usage:SetText( "Usage:" )
infopanel.usage.Enabled = true
infopanel.usageBlock:SetText( string.gsub( string.Replace( func.usage , string.char( 9 ), " " ), "\n", "", 1 ) )
infopanel.usageBlock.Enabled = true
elseif not func.usage then
infopanel.usage.Enabled = false
infopanel.usageBlock.Enabled = false
end
for _, label in pairs( infopanel.labels ) do
label:SizeToContents()
label:SetWrap( true )
label:SetAutoStretchVertical( true )
end
timer.Create( "update", 0.1, 1, helper.resize )
end
helper.DocView.Info = vgui.Create( "DScrollPanel", helper.Frame )
helper.DocView.Info:SetTall( 150 )
helper.DocView.Info:SetVisible( false )
helper.DocView.InfoPanel = vgui.Create( "StarfallPanel", helper.DocView.Info )
helper.DocView.InfoPanel:SetSize( 200, 100 )
local infopanel = helper.DocView.InfoPanel
helper.DocView.Div = vgui.Create( "DVerticalDivider", helper.Frame )
helper.DocView.Div:SetPos( 166, 30 )
helper.DocView.Div:SetTop( helper.DocView )
helper.DocView.Div:SetBottom( helper.DocView.Info )
helper.DocView.Div:SetTopMin( 100 )
helper.DocView.Div:SetBottomMin( 100 )
helper.DocView.Div:SetDividerHeight( 5 )
helper.DocView.Div:SetVisible( false )
helper.DocView.Div._PerformLayout = helper.DocView.Div.PerformLayout
function helper.DocView.Div:PerformLayout ()
helper.DocView.Div:_PerformLayout()
helper.resize()
end
infopanel.labels = {}
infopanel.funcName = Label( "Nothing selected", infopanel )
infopanel.funcName:SetFont( "HelperTextBold" )
infopanel.funcName:SizeToContents()
infopanel.funcName.m_colText = Color( 60, 60, 60 )
infopanel.funcName.indent = 0
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.funcName
infopanel.description = Label( "", infopanel )
infopanel.description:SetFont( "HelperText" )
infopanel.description.m_colText = Color( 60, 60, 60 )
infopanel.description.indent = 1
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.description
infopanel.deprecated = Label( "", infopanel )
infopanel.deprecated:SetText( "" )
infopanel.deprecated:SetFont( "HelperTextBold" )
infopanel.deprecated:SizeToContents()
infopanel.deprecated:SetWrap( true )
infopanel.deprecated:SetAutoStretchVertical( true )
infopanel.deprecated.m_colText = Color( 210, 0, 0 )
infopanel.deprecated.indent = 1
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.deprecated
infopanel.parameters = Label( "Parameters:", infopanel )
infopanel.parameters:SetFont( "HelperTextBold" )
infopanel.parameters.m_colText = Color( 60, 60, 60 )
infopanel.parameters.indent = 1
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.parameters
infopanel.parameterList = Label( "", infopanel )
infopanel.parameterList:SetFont( "HelperText" )
infopanel.parameterList.m_colText = Color( 60, 60, 60 )
infopanel.parameterList.indent = 2
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.parameterList
infopanel.returnvalue = Label( "Return Value:", infopanel )
infopanel.returnvalue:SetFont( "HelperTextBold" )
infopanel.returnvalue.m_colText = Color( 60, 60, 60 )
infopanel.returnvalue.indent = 1
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.returnvalue
infopanel.returnvalueList = Label( "", infopanel )
infopanel.returnvalueList:SetFont( "HelperText" )
infopanel.returnvalueList.m_colText = Color( 60, 60, 60 )
infopanel.returnvalueList.indent = 2
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.returnvalueList
infopanel.usage = Label( "Usage:", infopanel )
infopanel.usage:SetFont( "HelperTextBold" )
infopanel.usage.m_colText = Color( 60, 60, 60 )
infopanel.usage.indent = 1
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.usage
infopanel.usageBlock = Label( "", infopanel )
infopanel.usageBlock:SetFont( "CodeBlock" )
infopanel.usageBlock.m_colText = Color( 60, 60, 60 )
infopanel.usageBlock.indent = 3
infopanel.labels[ #infopanel.labels + 1 ] = infopanel.usageBlock
---- About View ----
--------------------
helper.AboutView = vgui.Create( "DScrollPanel", helper.Frame )
helper.AboutView:SetPos( 166, 30 )
helper.AboutView:SetVisible( false )
helper.Views.About = helper.AboutView
helper.AboutView.Panel = vgui.Create( "StarfallPanel", helper.AboutView )
helper.AboutView.About = Label( "Starfall is a Lua sandbox for Garry's mod. It allows players to write Lua scripts for the server without exposing server functionality that could be used maliciously. Since it works with Lua code directly, it's much faster than similar projects like E2 or Lemongate.\n\nStarfall by default includes a 'processor' entity, which is a purely server-side environment with an entity representation, and can have Wiremod inputs/outputs. It also includes a 'screen' entity, which runs code both on the server and each client to allow for fast, lag-free drawing that was previously only possible with GPU.\n\nThis Starfall Helper was originally made by Jazzelhawk.", helper.AboutView.Panel )
helper.AboutView.About:SetPos( 10, 10 )
helper.AboutView.About:SetFont( "HelperText" )
helper.AboutView.About:SizeToContents()
helper.AboutView.About:SetWrap( true )
helper.AboutView.About:SetAutoStretchVertical( true )
helper.AboutView.About.m_colText = Color( 60, 60, 60 )
end
function helper.show ()
if not docs_set then
helper.getDocs()
return
end
if not helper.Frame then helper.create() end
helper.Frame:open()
end
local lastw, lasth = 0, 0
function helper.resize ()
local w, h = helper.Frame:GetSize()
local changew, changeh = w - lastw, h - lasth
helper.CatList:SetSize( 155, 375 + h - 410)
helper.ScrollPanel:SetSize( 155, 375 + h - 410)
helper.IndexView:SetSize( w - 173, h - 37 )
helper.IndexLibs:SetSize( w - 183, h / 2 - 26 )
helper.IndexHooks:SetPos( 5, 10 + helper.IndexLibs:GetTall() )
helper.IndexHooks:SetSize( w - 183, h / 2 - 27 )
helper.DocView:SetSize( w - 173, h - 37 - helper.DocView.Info:GetTall() - 5 )
local w2 = helper.DocView:GetCanvas():GetWide()
helper.DocView.Description:SetWide( w2 - 50 )
helper.DocView.Deprecated:SetWide( w2 - 50 )
--helper.DocView.Info:SetPos( 166, 30 + helper.DocView:GetTall() + 6 )
helper.DocView.Info:SetWide( w - 173 )
helper.DocView.InfoPanel:SetWide( w - 173 )
helper.DocView.Div:SetSize( w - 173, h - 37 )
helper.DocView.Div:SetTopHeight( helper.DocView.Div:GetTopHeight() + changeh )
helper.AboutView:SetSize( w - 173, h - 37 )
helper.AboutView.About:SetWide( helper.AboutView:GetWide() - 20 )
helper.AboutView.Panel:SetSize( helper.AboutView:GetWide(), math.max( helper.AboutView.About:GetTall() + 10, helper.AboutView:GetTall() ) )
local runningHeight = 40
runningHeight = runningHeight + helper.DocView.Description:GetTall() + 10
if helper.DocView.Deprecated.Enabled then
helper.DocView.Deprecated:SetPos( 25, runningHeight )
runningHeight = runningHeight + helper.DocView.Deprecated:GetTall() + 10
end
for _, labellist in pairs( helper.LabelLists ) do
labellist.list:SetWide( w2 - 50 )
if labellist.label.Enabled then
labellist.label:SetPos( 10, runningHeight )
runningHeight = runningHeight + labellist.label:GetTall() + 10
labellist.list:SetPos( 25, runningHeight )
runningHeight = runningHeight + labellist.list:GetTall() + 10
end
end
helper.DocView.Panel:SetSize( helper.DocView:GetWide(), math.max( runningHeight, helper.DocView:GetTall() ) )
local infopanel = helper.DocView.InfoPanel
local runningHeight = 10
for _, label in pairs( infopanel.labels ) do
label:SetWide( w2 - 50 )
if label.Enabled then
label:SetVisible( true )
label:SetPos( 10 + label.indent*20, runningHeight )
runningHeight = runningHeight + label:GetTall() + 10
else
label:SetVisible( false )
end
end
infopanel:SetSize( infopanel:GetWide(), math.max( runningHeight, helper.DocView.Info:GetTall() ) )
helper.DocView:GetVBar():SetScroll( helper.DocView:GetVBar():GetScroll() )
helper.CatList:GetVBar():SetScroll( helper.CatList:GetVBar():GetScroll() )
helper.IndexLibs.VBar:SetScroll( helper.IndexLibs.VBar:GetScroll() )
helper.IndexHooks.VBar:SetScroll( helper.IndexHooks.VBar:GetScroll() )
helper.DocView.Info.VBar:SetScroll( helper.DocView.Info.VBar:GetScroll() )
helper.AboutView.VBar:SetScroll( helper.AboutView.VBar:GetScroll() )
if not settings_set then
helper.Frame:SetSize( GetConVarNumber( "sf_helper_width" ), GetConVarNumber( "sf_helper_height" ) )
helper.Frame:SetPos( GetConVarNumber( "sf_helper_posx" ), GetConVarNumber( "sf_helper_posy" ) )
timer.Simple( 0.5, function () helper.DocView.Div:SetTopHeight( GetConVarNumber( "sf_helper_divheight" ) ) end )
settings_set = true
end
lastw, lasth = w, h
end
|
--[[
Copyright 2014-2015 The Luvit Authors. All Rights Reserved.
Copyright 2016-2020 The Node.lua Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS-IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--]]
local uv = require('luv')
local core = require('core')
local fs = {}
local noop = function() end
function fs.close(fd, callback)
return uv.fs_close(fd, callback or noop)
end
function fs.closeSync(fd)
return uv.fs_close(fd)
end
function fs.open(path, flags, mode, callback)
local ft = type(flags)
local mt = type(mode)
-- (path, callback)
if (ft == 'function' or ft == 'thread') and (mode == nil and callback == nil) then
callback, flags = flags, nil
-- (path, flags, callback)
elseif (mt == 'function' or mt == 'thread') and (callback == nil) then
callback, mode = mode, nil
end
-- Default flags to 'r'
if flags == nil then
flags = 'r'
end
-- Default mode to 0666
if mode == nil then
mode = 438 -- 0666
-- Assume strings are octal numbers
elseif mt == 'string' then
mode = tonumber(mode, 8)
end
return uv.fs_open(path, flags, mode, callback or noop)
end
function fs.openSync(path, flags, mode)
if flags == nil then
flags = "r"
end
if mode == nil then
mode = 438 -- 0666
elseif type(mode) == "string" then
mode = tonumber(mode, 8)
end
return uv.fs_open(path, flags, mode)
end
function fs.read(fd, size, offset, callback)
local st = type(size)
local ot = type(offset)
if (st == 'function' or st == 'thread') and (offset == nil and callback == nil) then
callback, size = size, nil
elseif (ot == 'function' or ot == 'thread') and (callback == nil) then
callback, offset = offset, nil
end
if size == nil then
size = 4096
end
if offset == nil then
offset = -1
end
return uv.fs_read(fd, size, offset, callback or noop)
end
function fs.readSync(fd, size, offset)
if size == nil then
size = 4096
end
if offset == nil then
offset = -1
end
return uv.fs_read(fd, size, offset)
end
function fs.fdatasync(fd, callback)
return uv.fs_fdatasync(fd, callback or noop)
end
function fs.fdatasyncSync(fd)
return uv.fs_fdatasync(fd)
end
function fs.fsync(fd, callback)
return uv.fs_fsync(fd, callback or noop)
end
function fs.fsyncSync(fd)
return uv.fs_fsync(fd)
end
function fs.write(fd, offset, data, callback)
local ot = type(offset)
-- (fd, callback, data)
if (ot == 'function' or ot == 'thread') and (callback == nil) then
callback, offset = offset, nil
end
if (offset == nil) then
offset = -1 -- -1 means append
end
return uv.fs_write(fd, data, offset, callback or noop)
end
function fs.writeSync(fd, offset, data)
if (offset == nil) then
offset = -1 -- -1 means append
end
return uv.fs_write(fd, data, offset)
end
-- ----------------------------------------------------------------------------
---@class FileHandle
local FileHandle = core.Object:extend()
function FileHandle:initialize(fd)
self.fd = fd
end
function FileHandle:close(callback)
return fs.close(self.fd, callback)
end
---@param size number
---@param offset number
function FileHandle:read(size, offset, callback)
return fs.read(self.fd, size, offset, callback)
end
function FileHandle:fdatasync(callback)
return fs.fdatasync(self.fd, callback)
end
function FileHandle:fsync(callback)
return fs.fsync(self.fd, callback)
end
---@param offset number
---@param data string
function FileHandle:write(offset, data, callback)
return fs.write(self.fd, offset, data, callback)
end
function FileHandle:fchown(uid, gid, callback)
return fs.fchown(self.fd, uid, gid, callback)
end
---@param offset number
function FileHandle:ftruncate(offset, callback)
return fs.ftruncate(self.fd, offset, callback)
end
function FileHandle:fstat(callback)
return fs.fstat(self.fd, callback)
end
function FileHandle:futime(atime, mtime, callback)
return fs.futime(self.fd, atime, mtime, callback)
end
---@param path string
---@param flags number
---@param mode number
---@return Promise
function fs.openFile(path, flags, mode)
local Promise = require('promise')
---@type Promise
local promise = Promise.new()
fs.open(path, flags, mode, function(err, fd)
if (err ~= nil) then
promise:reject(err)
else
local file = FileHandle:new(fd)
promise:resolve(file)
end
end)
return promise
end
fs.FileHandle = FileHandle
-- ----------------------------------------------------------------------------
--
function fs.appendFile(filename, data, callback)
callback = callback or function() end
local function _write(fd, offset, buffer, callback)
local function _onWrite(err, written)
if err then return fs.close(fd, function() callback(err) end) end
if written == #buffer then
fs.close(fd, callback)
else
offset = offset + written
buffer = buffer:sub(offset)
_write(fd, offset, buffer, callback)
end
end
fs.write(fd, -1, data, _onWrite)
end
--[[ 0666 ]]
fs.open(filename, "a", 438, function(err, fd)
if err then return callback(err) end
_write(fd, -1, data, callback)
end)
end
function fs.appendFileSync(path, data)
local written
local fd, err = fs.openSync(path, 'a')
if not fd then return err end
written, err = fs.writeSync(fd, -1, data)
if not written then fs.close(fd); return err end
fs.close(fd)
end
local function _readFile(path, callback)
local fd, _onStat, _onRead, _onChunk, pos, chunks
--[[ 0666 ]]
uv.fs_open(path, "r", 438, function(err, result)
if err then return
callback(err)
end
fd = result
uv.fs_fstat(fd, _onStat)
end )
_onStat = function(err, stat)
if err then return _onRead(err) end
if stat.size > 0 then
uv.fs_read(fd, stat.size, 0, _onRead)
else
-- the kernel lies about many files.
-- Go ahead and try to read some bytes.
pos = 0
chunks = { }
uv.fs_read(fd, 8192, 0, _onChunk)
end
end
_onRead = function(err, chunk)
uv.fs_close(fd, noop)
return callback(err, chunk)
end
_onChunk = function(err, chunk)
if err then
uv.fs_close(fd, noop)
return callback(err)
end
if chunk and #chunk > 0 then
chunks[#chunks + 1] = chunk
pos = pos + #chunk
return uv.fs_read(fd, 8192, pos, _onChunk)
end
uv.fs_close(fd, noop)
return callback(nil, table.concat(chunks))
end
end
function fs.readFile(path, callback)
return _readFile(path, callback or noop)
end
function fs.readFileSync(path, options)
local fd, stat, chunk, err
fd, err = uv.fs_open(path, "r", 438) --[[ 0666 ]]
if err then
return false, err
end
stat, err = uv.fs_fstat(fd)
if stat then
if stat.size > 0 then
chunk, err = uv.fs_read(fd, stat.size, 0)
else
local chunks = { }
local pos = 0
while true do
chunk, err = uv.fs_read(fd, 8192, pos)
if not chunk or #chunk == 0 then
break
end
pos = pos + #chunk
chunks[#chunks + 1] = chunk
end
if not err then
chunk = table.concat(chunks)
end
end
end
uv.fs_close(fd, noop)
return chunk, err
end
local function _writeFile(path, data, callback)
local fd, _onWrite
--[[ 0666 ]]
uv.fs_open(path, "w", 438, function(err, result)
if err then
return callback(err)
end
fd = result
uv.fs_write(fd, data, 0, _onWrite)
end)
_onWrite = function(err)
uv.fs_close(fd, noop)
return callback(err)
end
end
function fs.writeFile(path, data, callback)
_writeFile(path, data, callback or noop)
end
function fs.writeFileSync(path, data)
local _, fd, err
fd, err = uv.fs_open(path, "w", 438) --[[ 0666 ]]
if err then
return false, err
end
--console.trace()
_, err = uv.fs_write(fd, data, 0)
uv.fs_close(fd, noop)
return not err, err
end
-- ----------------------------------------------------------------------------
--
function fs.sendfile(outFd, inFd, offset, length, callback)
return uv.fs_sendfile(outFd, inFd, offset, length, callback or noop)
end
function fs.sendfileSync(outFd, inFd, offset, length)
return uv.fs_sendfile(outFd, inFd, offset, length)
end
return fs
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.