ETH Price: $3,359.96 (+0.36%)

Contract

0xD12d68Fd52b54908547ebC2Cd77Ec6EbbEfd3099
 
Transaction Hash
Method
Block
From
To
Emergency Withdr...194158452024-03-12 1:53:23256 days ago1710208403IN
0xD12d68Fd...bbEfd3099
0 ETH0.0097106755.49844923
Emergency Withdr...169801732023-04-05 4:15:35598 days ago1680668135IN
0xD12d68Fd...bbEfd3099
0 ETH0.0048613934.40163756
Withdraw155535492022-09-17 13:18:23797 days ago1663420703IN
0xD12d68Fd...bbEfd3099
0 ETH0.00105414.85239925
Withdraw155532332022-09-17 12:14:47797 days ago1663416887IN
0xD12d68Fd...bbEfd3099
0 ETH0.00119415.49595471
Deposit146358272022-04-22 16:47:50945 days ago1650646070IN
0xD12d68Fd...bbEfd3099
0 ETH0.01295496105.63579582
Deposit143522892022-03-09 11:29:31990 days ago1646825371IN
0xD12d68Fd...bbEfd3099
0 ETH0.0033347127.19155691
Deposit141644622022-02-08 8:46:581019 days ago1644310018IN
0xD12d68Fd...bbEfd3099
0 ETH0.0085846670
Withdraw136744082021-11-24 1:53:371095 days ago1637718817IN
0xD12d68Fd...bbEfd3099
0 ETH0.03151875131.42125518
Withdraw133905002021-10-10 10:56:501140 days ago1633863410IN
0xD12d68Fd...bbEfd3099
0 ETH0.0088892840
Deposit133713672021-10-07 10:53:151143 days ago1633603995IN
0xD12d68Fd...bbEfd3099
0 ETH0.0119655797.56826375
Withdraw132537082021-09-19 3:19:501161 days ago1632021590IN
0xD12d68Fd...bbEfd3099
0 ETH0.0115788551.98606099
Withdraw132525292021-09-18 22:52:071161 days ago1632005527IN
0xD12d68Fd...bbEfd3099
0 ETH0.0039559532.00119651
Deposit130661562021-08-21 3:06:021190 days ago1629515162IN
0xD12d68Fd...bbEfd3099
0 ETH0.0031143325.39456705
Withdraw130658882021-08-21 2:02:151190 days ago1629511335IN
0xD12d68Fd...bbEfd3099
0 ETH0.0054314225
Withdraw129700902021-08-06 7:26:301205 days ago1628234790IN
0xD12d68Fd...bbEfd3099
0 ETH0.0065147328
Deposit129207492021-07-29 12:34:091212 days ago1627562049IN
0xD12d68Fd...bbEfd3099
0 ETH0.0047591620
Withdraw129148912021-07-28 14:14:381213 days ago1627481678IN
0xD12d68Fd...bbEfd3099
0 ETH0.0081237733
Withdraw128756302021-07-22 10:31:101220 days ago1626949870IN
0xD12d68Fd...bbEfd3099
0 ETH0.0014977117
Deposit127561032021-07-03 17:58:501238 days ago1625335130IN
0xD12d68Fd...bbEfd3099
0 ETH0.001103749
Deposit127537872021-07-03 9:24:071239 days ago1625304247IN
0xD12d68Fd...bbEfd3099
0 ETH0.0028420912
Withdraw127422252021-07-01 14:05:021240 days ago1625148302IN
0xD12d68Fd...bbEfd3099
0 ETH0.0035404815
Withdraw127138522021-06-27 4:04:411245 days ago1624766681IN
0xD12d68Fd...bbEfd3099
0 ETH0.000601595
Deposit126927602021-06-23 21:10:581248 days ago1624482658IN
0xD12d68Fd...bbEfd3099
0 ETH0.0013490111
Withdraw126796302021-06-21 19:53:531250 days ago1624305233IN
0xD12d68Fd...bbEfd3099
0 ETH0.0022906226
Deposit126796162021-06-21 19:49:591250 days ago1624304999IN
0xD12d68Fd...bbEfd3099
0 ETH0.0030598126
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MasterVampire

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-06
*/

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: node_modules\@openzeppelin\contracts\utils\Address.sol


pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin\contracts\token\ERC20\SafeERC20.sol


pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin\contracts\math\SafeMath.sol


pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol


pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin\contracts\access\Ownable.sol


pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\interfaces\IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: contracts\interfaces\IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
    function migrator() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
    function setMigrator(address) external;
}

// File: contracts\libraries\SafeMath.sol

pragma solidity =0.6.12;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMathUniswap {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

// File: contracts\libraries\UniswapV2Library.sol

pragma solidity >=0.5.0;



library UniswapV2Library {
    using SafeMathUniswap for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'e18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
        }
    }
}

// File: contracts\Timelock.sol


pragma solidity 0.6.12;


contract Timelock {
    using SafeMath for uint;

    event NewAdmin(address indexed newAdmin);
    event NewPendingAdmin(address indexed newPendingAdmin);
    event NewDelay(uint indexed newDelay);
    event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta);

    uint public constant GRACE_PERIOD = 14 days;
    uint public constant MINIMUM_DELAY = 24 hours;
    uint public constant MAXIMUM_DELAY = 30 days;

    address public admin;
    address public pendingAdmin;
    uint public delay;
    bool public admin_initialized;

    mapping (bytes32 => bool) public queuedTransactions;


    constructor(address admin_, uint delay_) public {
        require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay.");
        require(delay_ <= MAXIMUM_DELAY, "Timelock::constructor: Delay must not exceed maximum delay.");

        admin = admin_;
        delay = delay_;
        admin_initialized = false;
    }

    receive() external payable { }

    function setDelay(uint delay_) public {
        require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock.");
        require(delay_ >= MINIMUM_DELAY, "Timelock::setDelay: Delay must exceed minimum delay.");
        require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay.");
        delay = delay_;

        emit NewDelay(delay);
    }

    function acceptAdmin() public {
        require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin.");
        admin = msg.sender;
        pendingAdmin = address(0);

        emit NewAdmin(admin);
    }

    function setPendingAdmin(address pendingAdmin_) public {
        // allows one time setting of admin for deployment purposes
        if (admin_initialized) {
            require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock.");
        } else {
            require(msg.sender == admin, "Timelock::setPendingAdmin: First call must come from admin.");
            admin_initialized = true;
        }
        pendingAdmin = pendingAdmin_;

        emit NewPendingAdmin(pendingAdmin);
    }

    function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) {
        require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin.");
        require(eta >= getBlockTimestamp().add(delay), "Timelock::queueTransaction: Estimated execution block must satisfy delay.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = true;

        emit QueueTransaction(txHash, target, value, signature, data, eta);
        return txHash;
    }

    function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public {
        require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = false;

        emit CancelTransaction(txHash, target, value, signature, data, eta);
    }

    function executeTransaction(address target, uint _value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) {
        require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin.");

        bytes32 txHash = keccak256(abi.encode(target, _value, signature, data, eta));
        require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued.");
        require(getBlockTimestamp() >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock.");
        require(getBlockTimestamp() <= eta.add(GRACE_PERIOD), "Timelock::executeTransaction: Transaction is stale.");

        queuedTransactions[txHash] = false;

        bytes memory callData;

        if (bytes(signature).length == 0) {
            callData = data;
        } else {
            callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data);
        }

        // solium-disable-next-line security/no-call-value
        (bool success, bytes memory returnData) = target.call{value:_value}(callData);
        require(success, "Timelock::executeTransaction: Transaction execution reverted.");

        emit ExecuteTransaction(txHash, target, _value, signature, data, eta);

        return returnData;
    }

    function getBlockTimestamp() internal view returns (uint) {
        // solium-disable-next-line security/no-block-members
        return block.timestamp;
    }
}

// File: contracts\VampireAdapter.sol


pragma solidity 0.6.12;


contract Victim{}

library VampireAdapter {
    // Victim info
    function rewardToken(Victim victim) external view returns (IERC20) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("rewardToken()"));
        require(success, "rewardToken() staticcall failed.");
        return abi.decode(result, (IERC20));
    }

    function poolCount(Victim victim) external view returns (uint256) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("poolCount()"));
        require(success, "poolCount() staticcall failed.");
        return abi.decode(result, (uint256));
    }

    function sellableRewardAmount(Victim victim) external view returns (uint256) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("sellableRewardAmount()"));
        require(success, "sellableRewardAmount() staticcall failed.");
        return abi.decode(result, (uint256));
    }

    // Victim actions
    function sellRewardForWeth(Victim victim, uint256 rewardAmount, address to) external returns(uint256) {
        (bool success, bytes memory result) = address(victim).delegatecall(abi.encodeWithSignature("sellRewardForWeth(address,uint256,address)", address(victim), rewardAmount, to));
        require(success, "sellRewardForWeth(uint256 rewardAmount, address to) delegatecall failed.");
        return abi.decode(result, (uint256));
    }

    // Pool info
    function lockableToken(Victim victim, uint256 poolId) external view returns (IERC20) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("lockableToken(uint256)", poolId));
        require(success, "lockableToken(uint256 poolId) staticcall failed.");
        return abi.decode(result, (IERC20));
    }

    function lockedAmount(Victim victim, uint256 poolId) external view returns (uint256) {
        // note the impersonation
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("lockedAmount(address,uint256)", address(this), poolId));
        require(success, "lockedAmount(uint256 poolId) staticcall failed.");
        return abi.decode(result, (uint256));
    }

    // Pool actions
    function deposit(Victim victim, uint256 poolId, uint256 amount) external {
        (bool success,) = address(victim).delegatecall(abi.encodeWithSignature("deposit(address,uint256,uint256)", address(victim), poolId, amount));
        require(success, "deposit(uint256 poolId, uint256 amount) delegatecall failed.");
    }

    function withdraw(Victim victim, uint256 poolId, uint256 amount) external {
        (bool success,) = address(victim).delegatecall(abi.encodeWithSignature("withdraw(address,uint256,uint256)", address(victim), poolId, amount));
        require(success, "withdraw(uint256 poolId, uint256 amount) delegatecall failed.");
    }
    
    function claimReward(Victim victim, uint256 poolId) external {
        (bool success,) = address(victim).delegatecall(abi.encodeWithSignature("claimReward(address,uint256)", address(victim), poolId));
        require(success, "claimReward(uint256 poolId) delegatecall failed.");
    }
    
    function emergencyWithdraw(Victim victim, uint256 poolId) external {
        (bool success,) = address(victim).delegatecall(abi.encodeWithSignature("emergencyWithdraw(address,uint256)", address(victim), poolId));
        require(success, "emergencyWithdraw(uint256 poolId) delegatecall failed.");
    }
    
    // Service methods
    function poolAddress(Victim victim, uint256 poolId) external view returns (address) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("poolAddress(uint256)", poolId));
        require(success, "poolAddress(uint256 poolId) staticcall failed.");
        return abi.decode(result, (address));
    }

    function rewardToWethPool(Victim victim) external view returns (address) {
        (bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("rewardToWethPool()"));
        require(success, "rewardToWethPool() staticcall failed.");
        return abi.decode(result, (address));
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol


pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: contracts\DraculaToken.sol


pragma solidity 0.6.12;




contract DraculaToken is ERC20("Dracula Token", "DRC"), Ownable {
    using SafeMath for uint256;

    event Minted(address indexed minter, address indexed receiver, uint mintAmount);
    event Burned(address indexed burner, uint burnAmount);

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
        emit Minted(owner(), _to, _amount);
    }

    function burn(uint256 _amount) public {
        _burn(msg.sender, _amount);
        emit Burned(msg.sender, _amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override virtual { 
        _moveDelegates(_delegates[from], _delegates[to], amount);
    }

    /// @dev A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "DRC::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "DRC::delegateBySig: invalid nonce");
        require(now <= expiry, "DRC::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "DRC::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying DRCs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "DRC::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

// File: contracts\MasterVampire.sol


pragma solidity 0.6.12;











contract MasterVampire is Ownable, Timelock {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    using VampireAdapter for Victim;

    struct UserInfo {
        uint256 amount;
        uint256 rewardDebt;
    }

    struct PoolInfo {
        Victim victim;
        uint256 victimPoolId;
        uint256 rewardPerBlock;
        uint256 lastRewardBlock;
        uint256 accDrcPerShare;
        uint256 rewardDrainModifier;
        uint256 wethDrainModifier;
    }

//     (_                   _)
//      /\                 /\
//     / \'._   (\_/)   _.'/ \
//    /_.''._'--('.')--'_.''._\
//    | \_ / `;=/ " \=;` \ _/ |
//     \/ `\__|`\___/`|__/`  \/
//   jgs`      \(/|\)/       `
//              " ` "
    DraculaToken public dracula;
    IERC20 weth;
    IUniswapV2Pair drcWethPair;

    address public drainAddress;
    address public poolRewardUpdater;
    address public devAddress;
    uint256 public constant DEV_FEE = 8;
    uint256 public constant REWARD_START_BLOCK = 11008888; // Wed Oct 07 2020 13:28:00 UTC

    uint256 poolRewardLimiter;

    PoolInfo[] public poolInfo;

    mapping (uint256 => mapping (address => UserInfo)) public userInfo;

    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);

    modifier onlyDev() {
        require(devAddress == _msgSender(), "not dev");
        _;
    }

    modifier onlyRewardUpdater() {
        require(poolRewardUpdater == _msgSender(), "not reward updater");
        _;
    }

    constructor(
        DraculaToken _dracula,
        address _drainAddress
    ) public Timelock(msg.sender, 24 hours) {
        poolRewardLimiter = 300 ether;
        dracula = _dracula;
        drainAddress = _drainAddress;
        devAddress = msg.sender;
        weth = IERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
        IUniswapV2Factory uniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
        drcWethPair = IUniswapV2Pair(uniswapFactory.getPair(address(weth), address(dracula)));
    }

    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }

    function add(Victim _victim, uint256 _victimPoolId, uint256 _rewardPerBlock, uint256 _rewardDrainModifier, uint256 _wethDrainModifier) public onlyOwner {
        require(_rewardPerBlock <= poolRewardLimiter, "Pool reward per block is too high");
        poolInfo.push(PoolInfo({
            victim: _victim,
            victimPoolId: _victimPoolId,
            rewardPerBlock: _rewardPerBlock,
            rewardDrainModifier: _rewardDrainModifier,
            wethDrainModifier: _wethDrainModifier,
            lastRewardBlock: block.number < REWARD_START_BLOCK ? REWARD_START_BLOCK : block.number,
            accDrcPerShare: 0
        }));
    }

    function updatePoolRewardLimiter(uint256 _poolRewardLimiter) public onlyOwner {
        poolRewardLimiter = _poolRewardLimiter;
    }

    function updateRewardPerBlock(uint256 _pid, uint256 _rewardPerBlock) public onlyRewardUpdater {
        require(_rewardPerBlock <= poolRewardLimiter, "Pool reward per block is too high");
        updatePool(_pid);
        poolInfo[_pid].rewardPerBlock = _rewardPerBlock;
    }

    function updateRewardPerBlockMassive(uint256[] memory pids, uint256[] memory rewards) public onlyRewardUpdater {
        require(pids.length == rewards.length, "-__-");
        for (uint i = 0; i < pids.length; i++) {
            uint256 pid = pids[i];
            uint256 rewardPerBlock = rewards[i];
            require(rewardPerBlock <= poolRewardLimiter, "Pool reward per block is too high");
            updatePool(pid);
            poolInfo[pid].rewardPerBlock = rewardPerBlock;
        }
    }

    function updateVictimInfo(uint256 _pid, address _victim, uint256 _victimPoolId) public onlyOwner {
        poolInfo[_pid].victim = Victim(_victim);
        poolInfo[_pid].victimPoolId = _victimPoolId;
    }

    function updatePoolDrain(uint256 _pid, uint256 _rewardDrainModifier, uint256 _wethDrainModifier) public onlyOwner {
        PoolInfo storage pool = poolInfo[_pid];
        pool.rewardDrainModifier = _rewardDrainModifier;
        pool.wethDrainModifier = _wethDrainModifier;
    }

    function updateDevAddress(address _devAddress) public onlyDev {
        devAddress = _devAddress;
    }

    function updateDrainAddress(address _drainAddress) public onlyOwner {
        drainAddress = _drainAddress;
    }

    function updateRewardUpdaterAddress(address _poolRewardUpdater) public onlyOwner {
        poolRewardUpdater = _poolRewardUpdater;
    }

    function pendingDrc(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accDrcPerShare = pool.accDrcPerShare;
        uint256 lpSupply = _pid == 0 ? drcWethPair.balanceOf(address(this)) : pool.victim.lockedAmount(pool.victimPoolId);
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 blocksToReward = block.number.sub(pool.lastRewardBlock);
            uint256 drcReward = blocksToReward.mul(pool.rewardPerBlock);
            accDrcPerShare = accDrcPerShare.add(drcReward.mul(1e12).div(lpSupply));
        }

        return user.amount.mul(accDrcPerShare).div(1e12).sub(user.rewardDebt);
    }

    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    function updatePool(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.number <= pool.lastRewardBlock) {
            return;
        }

        uint256 lpSupply = _pid == 0 ? drcWethPair.balanceOf(address(this)) : pool.victim.lockedAmount(pool.victimPoolId);
        if (lpSupply == 0) {
            pool.lastRewardBlock = block.number;
            return;
        }

        uint256 blocksToReward = block.number.sub(pool.lastRewardBlock);
        uint256 drcReward = blocksToReward.mul(pool.rewardPerBlock);
        dracula.mint(devAddress, drcReward.mul(DEV_FEE).div(100));
        dracula.mint(address(this), drcReward);
        pool.accDrcPerShare = pool.accDrcPerShare.add(drcReward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
    }

    function deposit(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accDrcPerShare).div(1e12).sub(user.rewardDebt);
            if(pending > 0) {
                safeDraculaTransfer(msg.sender, pending);
            }
        }

        if(_amount > 0) {
            if(_pid == 0) {
                IERC20(address(drcWethPair)).safeTransferFrom(address(msg.sender), address(this), _amount);
            } else {
                pool.victim.lockableToken(pool.victimPoolId).safeTransferFrom(address(msg.sender), address(this), _amount);
                pool.victim.deposit(pool.victimPoolId, _amount);
            }

            user.amount = user.amount.add(_amount);
        }

        user.rewardDebt = user.amount.mul(pool.accDrcPerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }
    
    function withdraw(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "withdraw: not good");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accDrcPerShare).div(1e12).sub(user.rewardDebt);
        if(pending > 0) {
            safeDraculaTransfer(msg.sender, pending);
        }

        if(_amount > 0) {
            user.amount = user.amount.sub(_amount);
            if(_pid == 0) {
                IERC20(address(drcWethPair)).safeTransfer(address(msg.sender), _amount);
            } else {
                pool.victim.withdraw(pool.victimPoolId, _amount);
                pool.victim.lockableToken(pool.victimPoolId).safeTransfer(address(msg.sender), _amount);
            }
        }

        user.rewardDebt = user.amount.mul(pool.accDrcPerShare).div(1e12);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    function emergencyWithdraw(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        if(_pid == 0) {
            IERC20(address(drcWethPair)).safeTransfer(address(msg.sender), user.amount);
        } else {
            pool.victim.withdraw(pool.victimPoolId, user.amount);
            pool.victim.lockableToken(pool.victimPoolId).safeTransfer(address(msg.sender), user.amount);
        }
        emit EmergencyWithdraw(msg.sender, _pid, user.amount);
        user.amount = 0;
        user.rewardDebt = 0;
    }

    function safeDraculaTransfer(address _to, uint256 _amount) internal {
        uint256 balance = dracula.balanceOf(address(this));
        if (_amount > balance) {
            dracula.transfer(_to, balance);
        } else {
            dracula.transfer(_to, _amount);
        }
    }
    
    function drain(uint256 _pid) public {
        require(_pid != 0, "Can't drain from myself");
        PoolInfo storage pool = poolInfo[_pid];
        Victim victim = pool.victim;
        uint256 victimPoolId = pool.victimPoolId;
        uint256 rewardDrainModifier = pool.rewardDrainModifier;
        victim.claimReward(victimPoolId);
        IERC20 rewardToken = victim.rewardToken();
        uint256 claimedReward = rewardToken.balanceOf(address(this));
        uint256 rewardDrainAmount = claimedReward.mul(rewardDrainModifier).div(1000);
        if(rewardDrainAmount > 0) {
            rewardToken.transfer(drainAddress, rewardDrainAmount);
            claimedReward = claimedReward.sub(rewardDrainAmount);
        }

        uint256 sellableAmount = victim.sellableRewardAmount();
        if(sellableAmount < claimedReward) { // victim is drained empty
            claimedReward = sellableAmount;
        }

        if(claimedReward == 0) {
            return;
        }

        uint256 wethDrainModifier = pool.wethDrainModifier;
        uint256 wethReward = victim.sellRewardForWeth(claimedReward, address(this));
        uint256 wethDrainAmount = wethReward.mul(wethDrainModifier).div(1000);
        if(wethDrainAmount > 0) {
            weth.transfer(drainAddress, wethDrainAmount);
            wethReward = wethReward.sub(wethDrainAmount);
        }

        address token0 = drcWethPair.token0();
        (uint reserve0, uint reserve1,) = drcWethPair.getReserves();
        (uint reserveInput, uint reserveOutput) = address(weth) == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
        uint amountOutput = UniswapV2Library.getAmountOut(wethReward, reserveInput, reserveOutput);
        (uint amount0Out, uint amount1Out) = address(weth) == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0));

        weth.transfer(address(drcWethPair), wethReward);
        drcWethPair.swap(amount0Out, amount1Out, address(this), new bytes(0));

        dracula.burn(amountOutput);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract DraculaToken","name":"_dracula","type":"address"},{"internalType":"address","name":"_drainAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"CancelTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"NewDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"QueueTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DEV_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GRACE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_START_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Victim","name":"_victim","type":"address"},{"internalType":"uint256","name":"_victimPoolId","type":"uint256"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_rewardDrainModifier","type":"uint256"},{"internalType":"uint256","name":"_wethDrainModifier","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin_initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"cancelTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dracula","outputs":[{"internalType":"contract DraculaToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"drain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingDrc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract Victim","name":"victim","type":"address"},{"internalType":"uint256","name":"victimPoolId","type":"uint256"},{"internalType":"uint256","name":"rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accDrcPerShare","type":"uint256"},{"internalType":"uint256","name":"rewardDrainModifier","type":"uint256"},{"internalType":"uint256","name":"wethDrainModifier","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolRewardUpdater","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"queueTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"queuedTransactions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delay_","type":"uint256"}],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingAdmin_","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"updateDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_drainAddress","type":"address"}],"name":"updateDrainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_rewardDrainModifier","type":"uint256"},{"internalType":"uint256","name":"_wethDrainModifier","type":"uint256"}],"name":"updatePoolDrain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolRewardLimiter","type":"uint256"}],"name":"updatePoolRewardLimiter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"}],"name":"updateRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pids","type":"uint256[]"},{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"name":"updateRewardPerBlockMassive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_poolRewardUpdater","type":"address"}],"name":"updateRewardUpdaterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_victim","type":"address"},{"internalType":"uint256","name":"_victimPoolId","type":"uint256"}],"name":"updateVictimInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162004a3138038062004a31833981810160405260408110156200003757600080fd5b50805160209091015133620151806000620000516200025e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062015180811015620000df5760405162461bcd60e51b8152600401808060200182810382526037815260200180620049fa6037913960400191505060405180910390fd5b62278d00811115620001235760405162461bcd60e51b815260040180806020018281038252603b815260200180620049bf603b913960400191505060405180910390fd5b600180546001600160a01b039384166001600160a01b0319918216179091556003919091556004805460ff19168155681043561a8829300000600c5560068054868516908416179081905560098054868616908516179055600b80548416331790556007805490931673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc217928390556040805163e6a4390560e01b81529385169284019290925290921660248201529051735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f91829163e6a4390591604480820192602092909190829003018186803b1580156200020757600080fd5b505afa1580156200021c573d6000803e3d6000fd5b505050506040513d60208110156200023357600080fd5b5051600880546001600160a01b0319166001600160a01b039092169190911790555062000262915050565b3390565b61474d80620002726000396000f3fe6080604052600436106102d55760003560e01c80636a42b8f811610179578063b72b007d116100d6578063e2bbb1581161008a578063f2fde38b11610064578063f2fde38b14610dfe578063f6b19c7414610e31578063f851a44014610e5b576102dc565b8063e2bbb15814610d65578063ede2302e14610d95578063f2b0653714610dd4576102dc565b8063d3815bda116100bb578063d3815bda14610cf3578063e177246e14610d08578063e22fae0614610d32576102dc565b8063b72b007d14610cb4578063c1a287e214610cde576102dc565b8063850337621161012d57806392f2cff01161011257806392f2cff014610c3857806393f1a40b14610c4d578063b1b43ae514610c9f576102dc565b80638503376214610bf05780638da5cb5b14610c23576102dc565b8063715018a61161015e578063715018a614610bb15780637884d98e14610bc65780637d645fab14610bdb576102dc565b80636a42b8f814610b735780636fc1f57e14610b88576102dc565b8063431de007116102325780635312ea8e116101e65780635da8cbf2116101c05780635da8cbf214610b10578063630b5ba114610b4957806368cdd86e14610b5e576102dc565b80635312ea8e1461094a578063576356a414610974578063591fcdfe146109bf576102dc565b8063441a3e7011610217578063441a3e70146108bd5780634dd18bf5146108ed57806351eb05a614610920576102dc565b8063431de00714610875578063436a88c1146108a8576102dc565b80631526fe2711610289578063272c643e1161026e578063272c643e146105db5780633a66f9011461070f5780633ad10ef614610860576102dc565b80631526fe271461053e57806326782247146105aa576102dc565b80630a8d1be2116102ba5780630a8d1be2146104c15780630c3b80e9146104f35780630e18b68114610529576102dc565b8063081e3eda146102e15780630825f38f14610308576102dc565b366102dc57005b600080fd5b3480156102ed57600080fd5b506102f6610e70565b60408051918252519081900360200190f35b61044c600480360360a081101561031e57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561034e57600080fd5b82018360208201111561036057600080fd5b8035906020019184600183028401116401000000008311171561038257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103d557600080fd5b8201836020820111156103e757600080fd5b8035906020019184600183028401116401000000008311171561040957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610e76915050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048657818101518382015260200161046e565b50505050905090810190601f1680156104b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104cd57600080fd5b506104f1600480360360408110156104e457600080fd5b5080359060200135611376565b005b3480156104ff57600080fd5b506104f16004803603606081101561051657600080fd5b5080359060208101359060400135611451565b34801561053557600080fd5b506104f16114ec565b34801561054a57600080fd5b506105686004803603602081101561056157600080fd5b503561158b565b604080516001600160a01b0390981688526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b3480156105b657600080fd5b506105bf6115e1565b604080516001600160a01b039092168252519081900360200190f35b3480156105e757600080fd5b506104f1600480360360408110156105fe57600080fd5b81019060208101813564010000000081111561061957600080fd5b82018360208201111561062b57600080fd5b8035906020019184602083028401116401000000008311171561064d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561069d57600080fd5b8201836020820111156106af57600080fd5b803590602001918460208302840111640100000000831117156106d157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506115f0945050505050565b34801561071b57600080fd5b506102f6600480360360a081101561073257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561076257600080fd5b82018360208201111561077457600080fd5b8035906020019184600183028401116401000000008311171561079657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156107e957600080fd5b8201836020820111156107fb57600080fd5b8035906020019184600183028401116401000000008311171561081d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250611769915050565b34801561086c57600080fd5b506105bf611a6d565b34801561088157600080fd5b506104f16004803603602081101561089857600080fd5b50356001600160a01b0316611a7c565b3480156108b457600080fd5b506102f6611b08565b3480156108c957600080fd5b506104f1600480360360408110156108e057600080fd5b5080359060200135611b0d565b3480156108f957600080fd5b506104f16004803603602081101561091057600080fd5b50356001600160a01b0316611db8565b34801561092c57600080fd5b506104f16004803603602081101561094357600080fd5b5035611ead565b34801561095657600080fd5b506104f16004803603602081101561096d57600080fd5b503561218d565b34801561098057600080fd5b506104f1600480360360a081101561099757600080fd5b506001600160a01b03813516906020810135906040810135906060810135906080013561232a565b3480156109cb57600080fd5b506104f1600480360360a08110156109e257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135640100000000811115610a1257600080fd5b820183602082011115610a2457600080fd5b80359060200191846001830284011164010000000083111715610a4657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050640100000000811115610a9957600080fd5b820183602082011115610aab57600080fd5b80359060200191846001830284011164010000000083111715610acd57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506124a6915050565b348015610b1c57600080fd5b506102f660048036036040811015610b3357600080fd5b50803590602001356001600160a01b0316612753565b348015610b5557600080fd5b506104f161295a565b348015610b6a57600080fd5b506105bf61297d565b348015610b7f57600080fd5b506102f661298c565b348015610b9457600080fd5b50610b9d612992565b604080519115158252519081900360200190f35b348015610bbd57600080fd5b506104f161299b565b348015610bd257600080fd5b506102f6612a4f565b348015610be757600080fd5b506102f6612a56565b348015610bfc57600080fd5b506104f160048036036020811015610c1357600080fd5b50356001600160a01b0316612a5d565b348015610c2f57600080fd5b506105bf612ae9565b348015610c4457600080fd5b506105bf612af8565b348015610c5957600080fd5b50610c8660048036036040811015610c7057600080fd5b50803590602001356001600160a01b0316612b07565b6040805192835260208301919091528051918290030190f35b348015610cab57600080fd5b506102f6612b2b565b348015610cc057600080fd5b506104f160048036036020811015610cd757600080fd5b5035612b32565b348015610cea57600080fd5b506102f6612ba1565b348015610cff57600080fd5b506105bf612ba8565b348015610d1457600080fd5b506104f160048036036020811015610d2b57600080fd5b5035612bb7565b348015610d3e57600080fd5b506104f160048036036020811015610d5557600080fd5b50356001600160a01b0316612cac565b348015610d7157600080fd5b506104f160048036036040811015610d8857600080fd5b5080359060200135612d38565b348015610da157600080fd5b506104f160048036036060811015610db857600080fd5b508035906001600160a01b036020820135169060400135612fa7565b348015610de057600080fd5b50610b9d60048036036020811015610df757600080fd5b503561307c565b348015610e0a57600080fd5b506104f160048036036020811015610e2157600080fd5b50356001600160a01b0316613091565b348015610e3d57600080fd5b506104f160048036036020811015610e5457600080fd5b503561319b565b348015610e6757600080fd5b506105bf613a87565b600d5490565b6001546060906001600160a01b03163314610ec25760405162461bcd60e51b815260040180806020018281038252603881526020018061430b6038913960400191505060405180910390fd5b6000868686868660405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610f28578181015183820152602001610f10565b50505050905090810190601f168015610f555780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610f88578181015183820152602001610f70565b50505050905090810190601f168015610fb55780820380516001836020036101000a031916815260200191505b5060408051601f1981840301815291815281516020928301206000818152600590935291205490995060ff16975061102696505050505050505760405162461bcd60e51b815260040180806020018281038252603d8152602001806144e0603d913960400191505060405180910390fd5b8261102f613a96565b101561106c5760405162461bcd60e51b81526004018080602001828103825260458152602001806143d36045913960600191505060405180910390fd5b6110798362127500613a9a565b611081613a96565b11156110be5760405162461bcd60e51b81526004018080602001828103825260338152602001806143a06033913960400191505060405180910390fd5b6000818152600560205260409020805460ff1916905584516060906110e4575083611167565b85805190602001208560405160200180836001600160e01b031916815260040182805190602001908083835b6020831061112f5780518252601f199092019160209182019101611110565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060896001600160a01b031689846040518082805190602001908083835b602083106111a65780518252601f199092019160209182019101611187565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611208576040519150601f19603f3d011682016040523d82523d6000602084013e61120d565b606091505b50915091508161124e5760405162461bcd60e51b815260040180806020018281038252603d81526020018061460c603d913960400191505060405180910390fd5b896001600160a01b0316847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156112cb5781810151838201526020016112b3565b50505050905090810190601f1680156112f85780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561132b578181015183820152602001611313565b50505050905090810190601f1680156113585780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a39998505050505050505050565b61137e613afb565b600a546001600160a01b039081169116146113e0576040805162461bcd60e51b815260206004820152601260248201527f6e6f742072657761726420757064617465720000000000000000000000000000604482015290519081900360640190fd5b600c548111156114215760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b61142a82611ead565b80600d838154811061143857fe5b9060005260206000209060070201600201819055505050565b611459613afb565b6000546001600160a01b039081169116146114bb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000600d84815481106114ca57fe5b6000918252602090912060079091020160058101939093555060069091015550565b6002546001600160a01b031633146115355760405162461bcd60e51b81526004018080602001828103825260388152602001806145666038913960400191505060405180910390fd5b60018054336001600160a01b031991821617918290556002805490911690556040516001600160a01b03909116907f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c90600090a2565b600d818154811061159857fe5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b039095169650929491939092919087565b6002546001600160a01b031681565b6115f8613afb565b600a546001600160a01b0390811691161461165a576040805162461bcd60e51b815260206004820152601260248201527f6e6f742072657761726420757064617465720000000000000000000000000000604482015290519081900360640190fd5b80518251146116b2576040805162461bcd60e51b8152602060048083019190915260248201527f2d5f5f2d00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b82518110156117645760008382815181106116cc57fe5b6020026020010151905060008383815181106116e457fe5b60200260200101519050600c5481111561172f5760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b61173882611ead565b80600d838154811061174657fe5b600091825260209091206002600790920201015550506001016116b5565b505050565b6001546000906001600160a01b031633146117b55760405162461bcd60e51b81526004018080602001828103825260368152602001806145d66036913960400191505060405180910390fd5b6117c96003546117c3613a96565b90613a9a565b8210156118075760405162461bcd60e51b81526004018080602001828103825260498152602001806146496049913960600191505060405180910390fd5b6000868686868660405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b8381101561186d578181015183820152602001611855565b50505050905090810190601f16801561189a5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156118cd5781810151838201526020016118b5565b50505050905090810190601f1680156118fa5780820380516001836020036101000a031916815260200191505b5097505050505050505060405160208183030381529060405280519060200120905060016005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550866001600160a01b0316817f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f88888888604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156119c55781810151838201526020016119ad565b50505050905090810190601f1680156119f25780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015611a25578181015183820152602001611a0d565b50505050905090810190601f168015611a525780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a39695505050505050565b600b546001600160a01b031681565b611a84613afb565b6000546001600160a01b03908116911614611ae6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600881565b6000600d8381548110611b1c57fe5b60009182526020808320868452600e825260408085203386529092529220805460079092029092019250831115611b9a576040805162461bcd60e51b815260206004820152601260248201527f77697468647261773a206e6f7420676f6f640000000000000000000000000000604482015290519081900360640190fd5b611ba384611ead565b6000611bdd8260010154611bd764e8d4a51000611bd187600401548760000154613aff90919063ffffffff16565b90613b58565b90613b9a565b90508015611bef57611bef3382613bdc565b8315611d5a578154611c019085613b9a565b825584611c2457600854611c1f906001600160a01b03163386613d6c565b611d5a565b825460018401546040805163a2c16fe760e01b81526001600160a01b039093166004840152602483019190915260448201869052517322b2968814f514d53d5ca11c82ae345b33e823bf9163a2c16fe7916064808301926000929190829003018186803b158015611c9457600080fd5b505af4158015611ca8573d6000803e3d6000fd5b50508454600186015460408051639f74334160e01b81526001600160a01b039093166004840152602483019190915251611d5a935033925087917322b2968814f514d53d5ca11c82ae345b33e823bf91639f74334191604480820192602092909190829003018186803b158015611d1e57600080fd5b505af4158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b50516001600160a01b03169190613d6c565b60048301548254611d759164e8d4a5100091611bd191613aff565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60045460ff1615611e0657333014611e015760405162461bcd60e51b815260040180806020018281038252603881526020018061459e6038913960400191505060405180910390fd5b611e5d565b6001546001600160a01b03163314611e4f5760405162461bcd60e51b815260040180806020018281038252603b81526020018061446d603b913960400191505060405180910390fd5b6004805460ff191660011790555b600280546001600160a01b0319166001600160a01b0383811691909117918290556040519116907f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75690600090a250565b6000600d8281548110611ebc57fe5b9060005260206000209060070201905080600301544311611edd575061218a565b60008215611f7f5781546001830154604080516307a541a760e21b81526001600160a01b0390931660048401526024830191909152517322b2968814f514d53d5ca11c82ae345b33e823bf91631e95069c916044808301926020929190829003018186803b158015611f4e57600080fd5b505af4158015611f62573d6000803e3d6000fd5b505050506040513d6020811015611f7857600080fd5b5051611ff7565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611fca57600080fd5b505afa158015611fde573d6000803e3d6000fd5b505050506040513d6020811015611ff457600080fd5b50515b90508061200b57504360039091015561218a565b6000612024836003015443613b9a90919063ffffffff16565b9050600061203f846002015483613aff90919063ffffffff16565b600654600b549192506001600160a01b03908116916340c10f19911661206b6064611bd1866008613aff565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b5050600654604080517f40c10f190000000000000000000000000000000000000000000000000000000081523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b15801561213557600080fd5b505af1158015612149573d6000803e3d6000fd5b5050505061217761216c84611bd164e8d4a5100085613aff90919063ffffffff16565b600486015490613a9a565b6004850155505043600390920191909155505b50565b6000600d828154811061219c57fe5b60009182526020808320858452600e82526040808520338652909252922060079091029091019150826121ea5780546008546121e5916001600160a01b03909116903390613d6c565b6122e3565b8154600183015482546040805163a2c16fe760e01b81526001600160a01b03909416600485015260248401929092526044830152517322b2968814f514d53d5ca11c82ae345b33e823bf9163a2c16fe7916064808301926000929190829003018186803b15801561225a57600080fd5b505af415801561226e573d6000803e3d6000fd5b505082548454600186015460408051639f74334160e01b81526001600160a01b0390931660048401526024830191909152516122e394503393507322b2968814f514d53d5ca11c82ae345b33e823bf91639f743341916044808301926020929190829003018186803b158015611d1e57600080fd5b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b612332613afb565b6000546001600160a01b03908116911614612394576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c548311156123d55760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b600d6040518060e00160405280876001600160a01b0316815260200186815260200185815260200162a7fb78431061240d5743612412565b62a7fb785b81526000602080830182905260408084019790975260609283019590955283546001808201865594825290859020835160079092020180546001600160a01b0319166001600160a01b03909216919091178155938201519284019290925592830151600283015582015160038201556080820151600482015560a0820151600582015560c090910151600690910155505050565b6001546001600160a01b031633146124ef5760405162461bcd60e51b81526004018080602001828103825260378152602001806143436037913960400191505060405180910390fd5b6000858585858560405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b8381101561255557818101518382015260200161253d565b50505050905090810190601f1680156125825780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156125b557818101518382015260200161259d565b50505050905090810190601f1680156125e25780820380516001836020036101000a031916815260200191505b5097505050505050505060405160208183030381529060405280519060200120905060006005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550856001600160a01b0316817f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8787878787604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156126ad578181015183820152602001612695565b50505050905090810190601f1680156126da5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561270d5781810151838201526020016126f5565b50505050905090810190601f16801561273a5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a3505050505050565b600080600d848154811061276357fe5b60009182526020808320878452600e825260408085206001600160a01b03891686529092529083206007929092020160048101549093509091861561283c5783546001850154604080516307a541a760e21b81526001600160a01b0390931660048401526024830191909152517322b2968814f514d53d5ca11c82ae345b33e823bf91631e95069c916044808301926020929190829003018186803b15801561280b57600080fd5b505af415801561281f573d6000803e3d6000fd5b505050506040513d602081101561283557600080fd5b50516128b4565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561288757600080fd5b505afa15801561289b573d6000803e3d6000fd5b505050506040513d60208110156128b157600080fd5b50515b90508360030154431180156128c857508015155b156129255760006128e6856003015443613b9a90919063ffffffff16565b90506000612901866002015483613aff90919063ffffffff16565b905061292061291984611bd18464e8d4a51000613aff565b8590613a9a565b935050505b61294d8360010154611bd764e8d4a51000611bd1868860000154613aff90919063ffffffff16565b9450505050505b92915050565b600d5460005b818110156129795761297181611ead565b600101612960565b5050565b600a546001600160a01b031681565b60035481565b60045460ff1681565b6129a3613afb565b6000546001600160a01b03908116911614612a05576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b62a7fb7881565b62278d0081565b612a65613afb565b600b546001600160a01b03908116911614612ac7576040805162461bcd60e51b815260206004820152600760248201527f6e6f742064657600000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6009546001600160a01b031681565b600e6020908152600092835260408084209091529082529020805460019091015482565b6201518081565b612b3a613afb565b6000546001600160a01b03908116911614612b9c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c55565b6212750081565b6006546001600160a01b031681565b333014612bf55760405162461bcd60e51b81526004018080602001828103825260318152602001806146bc6031913960400191505060405180910390fd5b62015180811015612c375760405162461bcd60e51b81526004018080602001828103825260348152602001806144186034913960400191505060405180910390fd5b62278d00811115612c795760405162461bcd60e51b81526004018080602001828103825260388152602001806144a86038913960400191505060405180910390fd5b600381905560405181907f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c90600090a250565b612cb4613afb565b6000546001600160a01b03908116911614612d16576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000600d8381548110612d4757fe5b60009182526020808320868452600e82526040808520338652909252922060079091029091019150612d7884611ead565b805415612dc1576000612dad8260010154611bd764e8d4a51000611bd187600401548760000154613aff90919063ffffffff16565b90508015612dbf57612dbf3382613bdc565b505b8215612f4a5783612de957600854612de4906001600160a01b0316333086613dbe565b612f3b565b8154600183015460408051639f74334160e01b81526001600160a01b039093166004840152602483019190915251612e99913391309187917322b2968814f514d53d5ca11c82ae345b33e823bf91639f743341916044808301926020929190829003018186803b158015612e5c57600080fd5b505af4158015612e70573d6000803e3d6000fd5b505050506040513d6020811015612e8657600080fd5b50516001600160a01b0316929190613dbe565b81546001830154604080517ff8c35b370000000000000000000000000000000000000000000000000000000081526001600160a01b039093166004840152602483019190915260448201859052517322b2968814f514d53d5ca11c82ae345b33e823bf9163f8c35b37916064808301926000929190829003018186803b158015612f2257600080fd5b505af4158015612f36573d6000803e3d6000fd5b505050505b8054612f479084613a9a565b81555b60048201548154612f659164e8d4a5100091611bd191613aff565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b612faf613afb565b6000546001600160a01b03908116911614613011576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b81600d848154811061301f57fe5b906000526020600020906007020160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600d848154811061306257fe5b906000526020600020906007020160010181905550505050565b60056020526000908152604090205460ff1681565b613099613afb565b6000546001600160a01b039081169116146130fb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166131405760405162461bcd60e51b815260040180806020018281038252602681526020018061437a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b806131ed576040805162461bcd60e51b815260206004820152601760248201527f43616e277420647261696e2066726f6d206d7973656c66000000000000000000604482015290519081900360640190fd5b6000600d82815481106131fc57fe5b600091825260208220600790910201805460018201546005830154604080517f90666d0c0000000000000000000000000000000000000000000000000000000081526001600160a01b039094166004850181905260248501849052905194965094919390927322b2968814f514d53d5ca11c82ae345b33e823bf926390666d0c92604480840193829003018186803b15801561329757600080fd5b505af41580156132ab573d6000803e3d6000fd5b5050604080517f426f43460000000000000000000000000000000000000000000000000000000081526001600160a01b03871660048201529051600093507322b2968814f514d53d5ca11c82ae345b33e823bf925063426f434691602480820192602092909190829003018186803b15801561332657600080fd5b505af415801561333a573d6000803e3d6000fd5b505050506040513d602081101561335057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561339e57600080fd5b505afa1580156133b2573d6000803e3d6000fd5b505050506040513d60208110156133c857600080fd5b5051905060006133de6103e8611bd18487613aff565b90508015613476576009546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561343c57600080fd5b505af1158015613450573d6000803e3d6000fd5b505050506040513d602081101561346657600080fd5b5061347390508282613b9a565b91505b604080517fb5b893680000000000000000000000000000000000000000000000000000000081526001600160a01b038816600482015290516000917322b2968814f514d53d5ca11c82ae345b33e823bf9163b5b8936891602480820192602092909190829003018186803b1580156134ed57600080fd5b505af4158015613501573d6000803e3d6000fd5b505050506040513d602081101561351757600080fd5b5051905082811015613527578092505b8261353957505050505050505061218a565b6006880154604080517f711ad9720000000000000000000000000000000000000000000000000000000081526001600160a01b038a1660048201526024810186905230604482015290516000917322b2968814f514d53d5ca11c82ae345b33e823bf9163711ad97291606480820192602092909190829003018186803b1580156135c257600080fd5b505af41580156135d6573d6000803e3d6000fd5b505050506040513d60208110156135ec57600080fd5b5051905060006136026103e8611bd18486613aff565b9050801561369d576007546009546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b15801561366357600080fd5b505af1158015613677573d6000803e3d6000fd5b505050506040513d602081101561368d57600080fd5b5061369a90508282613b9a565b91505b600854604080517f0dfe168100000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691630dfe1681916004808301926020929190829003018186803b1580156136fb57600080fd5b505afa15801561370f573d6000803e3d6000fd5b505050506040513d602081101561372557600080fd5b5051600854604080517f0902f1ac000000000000000000000000000000000000000000000000000000008152905192935060009283926001600160a01b031691630902f1ac916004808301926060929190829003018186803b15801561378a57600080fd5b505afa15801561379e573d6000803e3d6000fd5b505050506040513d60608110156137b457600080fd5b5080516020909101516007546dffffffffffffffffffffffffffff92831694509116915060009081906001600160a01b038681169116146137f65782846137f9565b83835b91509150600061380a888484613e37565b60075490915060009081906001600160a01b0389811691161461382f57826000613833565b6000835b91509150600760009054906101000a90046001600160a01b03166001600160a01b031663a9059cbb600860009054906101000a90046001600160a01b03168c6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156138b857600080fd5b505af11580156138cc573d6000803e3d6000fd5b505050506040513d60208110156138e257600080fd5b50506008546001600160a01b031663022c0d9f83833060006040519080825280601f01601f191660200182016040528015613924576020820181803683370190505b506040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561398c578181015183820152602001613974565b50505050905090810190601f1680156139b95780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156139db57600080fd5b505af11580156139ef573d6000803e3d6000fd5b5050600654604080517f42966c680000000000000000000000000000000000000000000000000000000081526004810188905290516001600160a01b0390921693506342966c68925060248082019260009290919082900301818387803b158015613a5957600080fd5b505af1158015613a6d573d6000803e3d6000fd5b505050505050505050505050505050505050505050505050565b6001546001600160a01b031681565b4290565b600082820183811015613af4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b600082613b0e57506000612954565b82820282848281613b1b57fe5b0414613af45760405162461bcd60e51b81526004018080602001828103825260218152602001806145456021913960400191505060405180910390fd5b6000613af483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f0f565b6000613af483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fb1565b600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015613c2757600080fd5b505afa158015613c3b573d6000803e3d6000fd5b505050506040513d6020811015613c5157600080fd5b5051905080821115613ce5576006546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015613cb357600080fd5b505af1158015613cc7573d6000803e3d6000fd5b505050506040513d6020811015613cdd57600080fd5b506117649050565b6006546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015613d3b57600080fd5b505af1158015613d4f573d6000803e3d6000fd5b505050506040513d6020811015613d6557600080fd5b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261176490849061400b565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03167f23b872dd00000000000000000000000000000000000000000000000000000000179052613e3190859061400b565b50505050565b6000808411613e775760405162461bcd60e51b815260040180806020018281038252602b8152602001806146ed602b913960400191505060405180910390fd5b600083118015613e875750600082115b613ec25760405162461bcd60e51b815260040180806020018281038252602881526020018061451d6028913960400191505060405180910390fd5b6000613ed0856103e56140bc565b90506000613ede82856140bc565b90506000613ef883613ef2886103e86140bc565b90614128565b9050808281613f0357fe5b04979650505050505050565b60008183613f9b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f60578181015183820152602001613f48565b50505050905090810190601f168015613f8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613fa757fe5b0495945050505050565b600081848411156140035760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f60578181015183820152602001613f48565b505050900390565b6060614060826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166141809092919063ffffffff16565b8051909150156117645780806020019051602081101561407f57600080fd5b50516117645760405162461bcd60e51b815260040180806020018281038252602a815260200180614692602a913960400191505060405180910390fd5b60008115806140d7575050808202828282816140d457fe5b04145b612954576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820182811015612954576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b606061418f8484600085614197565b949350505050565b60606141a285614304565b6141f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106142325780518252601f199092019160209182019101614213565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614294576040519150601f19603f3d011682016040523d82523d6000602084013e614299565b606091505b509150915081156142ad57915061418f9050565b8051156142bd5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613f60578181015183820152602001613f48565b3b15159056fe54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737354696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206973207374616c652e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206861736e2774207375727061737365642074696d65206c6f636b2e54696d656c6f636b3a3a73657444656c61793a2044656c6179206d75737420657863656564206d696e696d756d2064656c61792e506f6f6c207265776172642070657220626c6f636b20697320746f6f206869676854696d656c6f636b3a3a73657450656e64696e6741646d696e3a2046697273742063616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e6f7420657863656564206d6178696d756d2064656c61792e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206861736e2774206265656e207175657565642e556e697377617056324c6962726172793a20494e53554646494349454e545f4c4951554944495459536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737420636f6d652066726f6d2070656e64696e6741646d696e2e54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c206d75737420636f6d652066726f6d2054696d656c6f636b2e54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e54696d656c6f636b3a3a71756575655472616e73616374696f6e3a20457374696d6174656420657865637574696f6e20626c6f636b206d75737420736174697366792064656c61792e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656454696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f6d652066726f6d2054696d656c6f636b2e556e697377617056324c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e54a2646970667358221220834ce3a927dd49a5b98b7f054d031253ab1223094dbcb47fe8172d7e61ad542b64736f6c634300060c003354696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d757374206e6f7420657863656564206d6178696d756d2064656c61792e54696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d75737420657863656564206d696e696d756d2064656c61792e000000000000000000000000b78b3320493a4efaa1028130c5ba26f0b6085ef800000000000000000000000094627695f66ab36ae00c1995a30bf5b30e139873

Deployed Bytecode

0x6080604052600436106102d55760003560e01c80636a42b8f811610179578063b72b007d116100d6578063e2bbb1581161008a578063f2fde38b11610064578063f2fde38b14610dfe578063f6b19c7414610e31578063f851a44014610e5b576102dc565b8063e2bbb15814610d65578063ede2302e14610d95578063f2b0653714610dd4576102dc565b8063d3815bda116100bb578063d3815bda14610cf3578063e177246e14610d08578063e22fae0614610d32576102dc565b8063b72b007d14610cb4578063c1a287e214610cde576102dc565b8063850337621161012d57806392f2cff01161011257806392f2cff014610c3857806393f1a40b14610c4d578063b1b43ae514610c9f576102dc565b80638503376214610bf05780638da5cb5b14610c23576102dc565b8063715018a61161015e578063715018a614610bb15780637884d98e14610bc65780637d645fab14610bdb576102dc565b80636a42b8f814610b735780636fc1f57e14610b88576102dc565b8063431de007116102325780635312ea8e116101e65780635da8cbf2116101c05780635da8cbf214610b10578063630b5ba114610b4957806368cdd86e14610b5e576102dc565b80635312ea8e1461094a578063576356a414610974578063591fcdfe146109bf576102dc565b8063441a3e7011610217578063441a3e70146108bd5780634dd18bf5146108ed57806351eb05a614610920576102dc565b8063431de00714610875578063436a88c1146108a8576102dc565b80631526fe2711610289578063272c643e1161026e578063272c643e146105db5780633a66f9011461070f5780633ad10ef614610860576102dc565b80631526fe271461053e57806326782247146105aa576102dc565b80630a8d1be2116102ba5780630a8d1be2146104c15780630c3b80e9146104f35780630e18b68114610529576102dc565b8063081e3eda146102e15780630825f38f14610308576102dc565b366102dc57005b600080fd5b3480156102ed57600080fd5b506102f6610e70565b60408051918252519081900360200190f35b61044c600480360360a081101561031e57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561034e57600080fd5b82018360208201111561036057600080fd5b8035906020019184600183028401116401000000008311171561038257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103d557600080fd5b8201836020820111156103e757600080fd5b8035906020019184600183028401116401000000008311171561040957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610e76915050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048657818101518382015260200161046e565b50505050905090810190601f1680156104b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104cd57600080fd5b506104f1600480360360408110156104e457600080fd5b5080359060200135611376565b005b3480156104ff57600080fd5b506104f16004803603606081101561051657600080fd5b5080359060208101359060400135611451565b34801561053557600080fd5b506104f16114ec565b34801561054a57600080fd5b506105686004803603602081101561056157600080fd5b503561158b565b604080516001600160a01b0390981688526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b3480156105b657600080fd5b506105bf6115e1565b604080516001600160a01b039092168252519081900360200190f35b3480156105e757600080fd5b506104f1600480360360408110156105fe57600080fd5b81019060208101813564010000000081111561061957600080fd5b82018360208201111561062b57600080fd5b8035906020019184602083028401116401000000008311171561064d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561069d57600080fd5b8201836020820111156106af57600080fd5b803590602001918460208302840111640100000000831117156106d157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506115f0945050505050565b34801561071b57600080fd5b506102f6600480360360a081101561073257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561076257600080fd5b82018360208201111561077457600080fd5b8035906020019184600183028401116401000000008311171561079657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156107e957600080fd5b8201836020820111156107fb57600080fd5b8035906020019184600183028401116401000000008311171561081d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250611769915050565b34801561086c57600080fd5b506105bf611a6d565b34801561088157600080fd5b506104f16004803603602081101561089857600080fd5b50356001600160a01b0316611a7c565b3480156108b457600080fd5b506102f6611b08565b3480156108c957600080fd5b506104f1600480360360408110156108e057600080fd5b5080359060200135611b0d565b3480156108f957600080fd5b506104f16004803603602081101561091057600080fd5b50356001600160a01b0316611db8565b34801561092c57600080fd5b506104f16004803603602081101561094357600080fd5b5035611ead565b34801561095657600080fd5b506104f16004803603602081101561096d57600080fd5b503561218d565b34801561098057600080fd5b506104f1600480360360a081101561099757600080fd5b506001600160a01b03813516906020810135906040810135906060810135906080013561232a565b3480156109cb57600080fd5b506104f1600480360360a08110156109e257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135640100000000811115610a1257600080fd5b820183602082011115610a2457600080fd5b80359060200191846001830284011164010000000083111715610a4657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050640100000000811115610a9957600080fd5b820183602082011115610aab57600080fd5b80359060200191846001830284011164010000000083111715610acd57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506124a6915050565b348015610b1c57600080fd5b506102f660048036036040811015610b3357600080fd5b50803590602001356001600160a01b0316612753565b348015610b5557600080fd5b506104f161295a565b348015610b6a57600080fd5b506105bf61297d565b348015610b7f57600080fd5b506102f661298c565b348015610b9457600080fd5b50610b9d612992565b604080519115158252519081900360200190f35b348015610bbd57600080fd5b506104f161299b565b348015610bd257600080fd5b506102f6612a4f565b348015610be757600080fd5b506102f6612a56565b348015610bfc57600080fd5b506104f160048036036020811015610c1357600080fd5b50356001600160a01b0316612a5d565b348015610c2f57600080fd5b506105bf612ae9565b348015610c4457600080fd5b506105bf612af8565b348015610c5957600080fd5b50610c8660048036036040811015610c7057600080fd5b50803590602001356001600160a01b0316612b07565b6040805192835260208301919091528051918290030190f35b348015610cab57600080fd5b506102f6612b2b565b348015610cc057600080fd5b506104f160048036036020811015610cd757600080fd5b5035612b32565b348015610cea57600080fd5b506102f6612ba1565b348015610cff57600080fd5b506105bf612ba8565b348015610d1457600080fd5b506104f160048036036020811015610d2b57600080fd5b5035612bb7565b348015610d3e57600080fd5b506104f160048036036020811015610d5557600080fd5b50356001600160a01b0316612cac565b348015610d7157600080fd5b506104f160048036036040811015610d8857600080fd5b5080359060200135612d38565b348015610da157600080fd5b506104f160048036036060811015610db857600080fd5b508035906001600160a01b036020820135169060400135612fa7565b348015610de057600080fd5b50610b9d60048036036020811015610df757600080fd5b503561307c565b348015610e0a57600080fd5b506104f160048036036020811015610e2157600080fd5b50356001600160a01b0316613091565b348015610e3d57600080fd5b506104f160048036036020811015610e5457600080fd5b503561319b565b348015610e6757600080fd5b506105bf613a87565b600d5490565b6001546060906001600160a01b03163314610ec25760405162461bcd60e51b815260040180806020018281038252603881526020018061430b6038913960400191505060405180910390fd5b6000868686868660405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610f28578181015183820152602001610f10565b50505050905090810190601f168015610f555780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610f88578181015183820152602001610f70565b50505050905090810190601f168015610fb55780820380516001836020036101000a031916815260200191505b5060408051601f1981840301815291815281516020928301206000818152600590935291205490995060ff16975061102696505050505050505760405162461bcd60e51b815260040180806020018281038252603d8152602001806144e0603d913960400191505060405180910390fd5b8261102f613a96565b101561106c5760405162461bcd60e51b81526004018080602001828103825260458152602001806143d36045913960600191505060405180910390fd5b6110798362127500613a9a565b611081613a96565b11156110be5760405162461bcd60e51b81526004018080602001828103825260338152602001806143a06033913960400191505060405180910390fd5b6000818152600560205260409020805460ff1916905584516060906110e4575083611167565b85805190602001208560405160200180836001600160e01b031916815260040182805190602001908083835b6020831061112f5780518252601f199092019160209182019101611110565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060896001600160a01b031689846040518082805190602001908083835b602083106111a65780518252601f199092019160209182019101611187565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611208576040519150601f19603f3d011682016040523d82523d6000602084013e61120d565b606091505b50915091508161124e5760405162461bcd60e51b815260040180806020018281038252603d81526020018061460c603d913960400191505060405180910390fd5b896001600160a01b0316847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156112cb5781810151838201526020016112b3565b50505050905090810190601f1680156112f85780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561132b578181015183820152602001611313565b50505050905090810190601f1680156113585780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a39998505050505050505050565b61137e613afb565b600a546001600160a01b039081169116146113e0576040805162461bcd60e51b815260206004820152601260248201527f6e6f742072657761726420757064617465720000000000000000000000000000604482015290519081900360640190fd5b600c548111156114215760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b61142a82611ead565b80600d838154811061143857fe5b9060005260206000209060070201600201819055505050565b611459613afb565b6000546001600160a01b039081169116146114bb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000600d84815481106114ca57fe5b6000918252602090912060079091020160058101939093555060069091015550565b6002546001600160a01b031633146115355760405162461bcd60e51b81526004018080602001828103825260388152602001806145666038913960400191505060405180910390fd5b60018054336001600160a01b031991821617918290556002805490911690556040516001600160a01b03909116907f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c90600090a2565b600d818154811061159857fe5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b039095169650929491939092919087565b6002546001600160a01b031681565b6115f8613afb565b600a546001600160a01b0390811691161461165a576040805162461bcd60e51b815260206004820152601260248201527f6e6f742072657761726420757064617465720000000000000000000000000000604482015290519081900360640190fd5b80518251146116b2576040805162461bcd60e51b8152602060048083019190915260248201527f2d5f5f2d00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b82518110156117645760008382815181106116cc57fe5b6020026020010151905060008383815181106116e457fe5b60200260200101519050600c5481111561172f5760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b61173882611ead565b80600d838154811061174657fe5b600091825260209091206002600790920201015550506001016116b5565b505050565b6001546000906001600160a01b031633146117b55760405162461bcd60e51b81526004018080602001828103825260368152602001806145d66036913960400191505060405180910390fd5b6117c96003546117c3613a96565b90613a9a565b8210156118075760405162461bcd60e51b81526004018080602001828103825260498152602001806146496049913960600191505060405180910390fd5b6000868686868660405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b8381101561186d578181015183820152602001611855565b50505050905090810190601f16801561189a5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156118cd5781810151838201526020016118b5565b50505050905090810190601f1680156118fa5780820380516001836020036101000a031916815260200191505b5097505050505050505060405160208183030381529060405280519060200120905060016005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550866001600160a01b0316817f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f88888888604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156119c55781810151838201526020016119ad565b50505050905090810190601f1680156119f25780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015611a25578181015183820152602001611a0d565b50505050905090810190601f168015611a525780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a39695505050505050565b600b546001600160a01b031681565b611a84613afb565b6000546001600160a01b03908116911614611ae6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600881565b6000600d8381548110611b1c57fe5b60009182526020808320868452600e825260408085203386529092529220805460079092029092019250831115611b9a576040805162461bcd60e51b815260206004820152601260248201527f77697468647261773a206e6f7420676f6f640000000000000000000000000000604482015290519081900360640190fd5b611ba384611ead565b6000611bdd8260010154611bd764e8d4a51000611bd187600401548760000154613aff90919063ffffffff16565b90613b58565b90613b9a565b90508015611bef57611bef3382613bdc565b8315611d5a578154611c019085613b9a565b825584611c2457600854611c1f906001600160a01b03163386613d6c565b611d5a565b825460018401546040805163a2c16fe760e01b81526001600160a01b039093166004840152602483019190915260448201869052517322b2968814f514d53d5ca11c82ae345b33e823bf9163a2c16fe7916064808301926000929190829003018186803b158015611c9457600080fd5b505af4158015611ca8573d6000803e3d6000fd5b50508454600186015460408051639f74334160e01b81526001600160a01b039093166004840152602483019190915251611d5a935033925087917322b2968814f514d53d5ca11c82ae345b33e823bf91639f74334191604480820192602092909190829003018186803b158015611d1e57600080fd5b505af4158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b50516001600160a01b03169190613d6c565b60048301548254611d759164e8d4a5100091611bd191613aff565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60045460ff1615611e0657333014611e015760405162461bcd60e51b815260040180806020018281038252603881526020018061459e6038913960400191505060405180910390fd5b611e5d565b6001546001600160a01b03163314611e4f5760405162461bcd60e51b815260040180806020018281038252603b81526020018061446d603b913960400191505060405180910390fd5b6004805460ff191660011790555b600280546001600160a01b0319166001600160a01b0383811691909117918290556040519116907f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75690600090a250565b6000600d8281548110611ebc57fe5b9060005260206000209060070201905080600301544311611edd575061218a565b60008215611f7f5781546001830154604080516307a541a760e21b81526001600160a01b0390931660048401526024830191909152517322b2968814f514d53d5ca11c82ae345b33e823bf91631e95069c916044808301926020929190829003018186803b158015611f4e57600080fd5b505af4158015611f62573d6000803e3d6000fd5b505050506040513d6020811015611f7857600080fd5b5051611ff7565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611fca57600080fd5b505afa158015611fde573d6000803e3d6000fd5b505050506040513d6020811015611ff457600080fd5b50515b90508061200b57504360039091015561218a565b6000612024836003015443613b9a90919063ffffffff16565b9050600061203f846002015483613aff90919063ffffffff16565b600654600b549192506001600160a01b03908116916340c10f19911661206b6064611bd1866008613aff565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b5050600654604080517f40c10f190000000000000000000000000000000000000000000000000000000081523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b15801561213557600080fd5b505af1158015612149573d6000803e3d6000fd5b5050505061217761216c84611bd164e8d4a5100085613aff90919063ffffffff16565b600486015490613a9a565b6004850155505043600390920191909155505b50565b6000600d828154811061219c57fe5b60009182526020808320858452600e82526040808520338652909252922060079091029091019150826121ea5780546008546121e5916001600160a01b03909116903390613d6c565b6122e3565b8154600183015482546040805163a2c16fe760e01b81526001600160a01b03909416600485015260248401929092526044830152517322b2968814f514d53d5ca11c82ae345b33e823bf9163a2c16fe7916064808301926000929190829003018186803b15801561225a57600080fd5b505af415801561226e573d6000803e3d6000fd5b505082548454600186015460408051639f74334160e01b81526001600160a01b0390931660048401526024830191909152516122e394503393507322b2968814f514d53d5ca11c82ae345b33e823bf91639f743341916044808301926020929190829003018186803b158015611d1e57600080fd5b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b612332613afb565b6000546001600160a01b03908116911614612394576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c548311156123d55760405162461bcd60e51b815260040180806020018281038252602181526020018061444c6021913960400191505060405180910390fd5b600d6040518060e00160405280876001600160a01b0316815260200186815260200185815260200162a7fb78431061240d5743612412565b62a7fb785b81526000602080830182905260408084019790975260609283019590955283546001808201865594825290859020835160079092020180546001600160a01b0319166001600160a01b03909216919091178155938201519284019290925592830151600283015582015160038201556080820151600482015560a0820151600582015560c090910151600690910155505050565b6001546001600160a01b031633146124ef5760405162461bcd60e51b81526004018080602001828103825260378152602001806143436037913960400191505060405180910390fd5b6000858585858560405160200180866001600160a01b031681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b8381101561255557818101518382015260200161253d565b50505050905090810190601f1680156125825780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156125b557818101518382015260200161259d565b50505050905090810190601f1680156125e25780820380516001836020036101000a031916815260200191505b5097505050505050505060405160208183030381529060405280519060200120905060006005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550856001600160a01b0316817f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8787878787604051808581526020018060200180602001848152602001838103835286818151815260200191508051906020019080838360005b838110156126ad578181015183820152602001612695565b50505050905090810190601f1680156126da5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561270d5781810151838201526020016126f5565b50505050905090810190601f16801561273a5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390a3505050505050565b600080600d848154811061276357fe5b60009182526020808320878452600e825260408085206001600160a01b03891686529092529083206007929092020160048101549093509091861561283c5783546001850154604080516307a541a760e21b81526001600160a01b0390931660048401526024830191909152517322b2968814f514d53d5ca11c82ae345b33e823bf91631e95069c916044808301926020929190829003018186803b15801561280b57600080fd5b505af415801561281f573d6000803e3d6000fd5b505050506040513d602081101561283557600080fd5b50516128b4565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561288757600080fd5b505afa15801561289b573d6000803e3d6000fd5b505050506040513d60208110156128b157600080fd5b50515b90508360030154431180156128c857508015155b156129255760006128e6856003015443613b9a90919063ffffffff16565b90506000612901866002015483613aff90919063ffffffff16565b905061292061291984611bd18464e8d4a51000613aff565b8590613a9a565b935050505b61294d8360010154611bd764e8d4a51000611bd1868860000154613aff90919063ffffffff16565b9450505050505b92915050565b600d5460005b818110156129795761297181611ead565b600101612960565b5050565b600a546001600160a01b031681565b60035481565b60045460ff1681565b6129a3613afb565b6000546001600160a01b03908116911614612a05576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b62a7fb7881565b62278d0081565b612a65613afb565b600b546001600160a01b03908116911614612ac7576040805162461bcd60e51b815260206004820152600760248201527f6e6f742064657600000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6009546001600160a01b031681565b600e6020908152600092835260408084209091529082529020805460019091015482565b6201518081565b612b3a613afb565b6000546001600160a01b03908116911614612b9c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c55565b6212750081565b6006546001600160a01b031681565b333014612bf55760405162461bcd60e51b81526004018080602001828103825260318152602001806146bc6031913960400191505060405180910390fd5b62015180811015612c375760405162461bcd60e51b81526004018080602001828103825260348152602001806144186034913960400191505060405180910390fd5b62278d00811115612c795760405162461bcd60e51b81526004018080602001828103825260388152602001806144a86038913960400191505060405180910390fd5b600381905560405181907f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c90600090a250565b612cb4613afb565b6000546001600160a01b03908116911614612d16576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000600d8381548110612d4757fe5b60009182526020808320868452600e82526040808520338652909252922060079091029091019150612d7884611ead565b805415612dc1576000612dad8260010154611bd764e8d4a51000611bd187600401548760000154613aff90919063ffffffff16565b90508015612dbf57612dbf3382613bdc565b505b8215612f4a5783612de957600854612de4906001600160a01b0316333086613dbe565b612f3b565b8154600183015460408051639f74334160e01b81526001600160a01b039093166004840152602483019190915251612e99913391309187917322b2968814f514d53d5ca11c82ae345b33e823bf91639f743341916044808301926020929190829003018186803b158015612e5c57600080fd5b505af4158015612e70573d6000803e3d6000fd5b505050506040513d6020811015612e8657600080fd5b50516001600160a01b0316929190613dbe565b81546001830154604080517ff8c35b370000000000000000000000000000000000000000000000000000000081526001600160a01b039093166004840152602483019190915260448201859052517322b2968814f514d53d5ca11c82ae345b33e823bf9163f8c35b37916064808301926000929190829003018186803b158015612f2257600080fd5b505af4158015612f36573d6000803e3d6000fd5b505050505b8054612f479084613a9a565b81555b60048201548154612f659164e8d4a5100091611bd191613aff565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b612faf613afb565b6000546001600160a01b03908116911614613011576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b81600d848154811061301f57fe5b906000526020600020906007020160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600d848154811061306257fe5b906000526020600020906007020160010181905550505050565b60056020526000908152604090205460ff1681565b613099613afb565b6000546001600160a01b039081169116146130fb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166131405760405162461bcd60e51b815260040180806020018281038252602681526020018061437a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b806131ed576040805162461bcd60e51b815260206004820152601760248201527f43616e277420647261696e2066726f6d206d7973656c66000000000000000000604482015290519081900360640190fd5b6000600d82815481106131fc57fe5b600091825260208220600790910201805460018201546005830154604080517f90666d0c0000000000000000000000000000000000000000000000000000000081526001600160a01b039094166004850181905260248501849052905194965094919390927322b2968814f514d53d5ca11c82ae345b33e823bf926390666d0c92604480840193829003018186803b15801561329757600080fd5b505af41580156132ab573d6000803e3d6000fd5b5050604080517f426f43460000000000000000000000000000000000000000000000000000000081526001600160a01b03871660048201529051600093507322b2968814f514d53d5ca11c82ae345b33e823bf925063426f434691602480820192602092909190829003018186803b15801561332657600080fd5b505af415801561333a573d6000803e3d6000fd5b505050506040513d602081101561335057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561339e57600080fd5b505afa1580156133b2573d6000803e3d6000fd5b505050506040513d60208110156133c857600080fd5b5051905060006133de6103e8611bd18487613aff565b90508015613476576009546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561343c57600080fd5b505af1158015613450573d6000803e3d6000fd5b505050506040513d602081101561346657600080fd5b5061347390508282613b9a565b91505b604080517fb5b893680000000000000000000000000000000000000000000000000000000081526001600160a01b038816600482015290516000917322b2968814f514d53d5ca11c82ae345b33e823bf9163b5b8936891602480820192602092909190829003018186803b1580156134ed57600080fd5b505af4158015613501573d6000803e3d6000fd5b505050506040513d602081101561351757600080fd5b5051905082811015613527578092505b8261353957505050505050505061218a565b6006880154604080517f711ad9720000000000000000000000000000000000000000000000000000000081526001600160a01b038a1660048201526024810186905230604482015290516000917322b2968814f514d53d5ca11c82ae345b33e823bf9163711ad97291606480820192602092909190829003018186803b1580156135c257600080fd5b505af41580156135d6573d6000803e3d6000fd5b505050506040513d60208110156135ec57600080fd5b5051905060006136026103e8611bd18486613aff565b9050801561369d576007546009546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b15801561366357600080fd5b505af1158015613677573d6000803e3d6000fd5b505050506040513d602081101561368d57600080fd5b5061369a90508282613b9a565b91505b600854604080517f0dfe168100000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691630dfe1681916004808301926020929190829003018186803b1580156136fb57600080fd5b505afa15801561370f573d6000803e3d6000fd5b505050506040513d602081101561372557600080fd5b5051600854604080517f0902f1ac000000000000000000000000000000000000000000000000000000008152905192935060009283926001600160a01b031691630902f1ac916004808301926060929190829003018186803b15801561378a57600080fd5b505afa15801561379e573d6000803e3d6000fd5b505050506040513d60608110156137b457600080fd5b5080516020909101516007546dffffffffffffffffffffffffffff92831694509116915060009081906001600160a01b038681169116146137f65782846137f9565b83835b91509150600061380a888484613e37565b60075490915060009081906001600160a01b0389811691161461382f57826000613833565b6000835b91509150600760009054906101000a90046001600160a01b03166001600160a01b031663a9059cbb600860009054906101000a90046001600160a01b03168c6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156138b857600080fd5b505af11580156138cc573d6000803e3d6000fd5b505050506040513d60208110156138e257600080fd5b50506008546001600160a01b031663022c0d9f83833060006040519080825280601f01601f191660200182016040528015613924576020820181803683370190505b506040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561398c578181015183820152602001613974565b50505050905090810190601f1680156139b95780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156139db57600080fd5b505af11580156139ef573d6000803e3d6000fd5b5050600654604080517f42966c680000000000000000000000000000000000000000000000000000000081526004810188905290516001600160a01b0390921693506342966c68925060248082019260009290919082900301818387803b158015613a5957600080fd5b505af1158015613a6d573d6000803e3d6000fd5b505050505050505050505050505050505050505050505050565b6001546001600160a01b031681565b4290565b600082820183811015613af4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b600082613b0e57506000612954565b82820282848281613b1b57fe5b0414613af45760405162461bcd60e51b81526004018080602001828103825260218152602001806145456021913960400191505060405180910390fd5b6000613af483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f0f565b6000613af483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fb1565b600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015613c2757600080fd5b505afa158015613c3b573d6000803e3d6000fd5b505050506040513d6020811015613c5157600080fd5b5051905080821115613ce5576006546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015613cb357600080fd5b505af1158015613cc7573d6000803e3d6000fd5b505050506040513d6020811015613cdd57600080fd5b506117649050565b6006546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015613d3b57600080fd5b505af1158015613d4f573d6000803e3d6000fd5b505050506040513d6020811015613d6557600080fd5b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261176490849061400b565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03167f23b872dd00000000000000000000000000000000000000000000000000000000179052613e3190859061400b565b50505050565b6000808411613e775760405162461bcd60e51b815260040180806020018281038252602b8152602001806146ed602b913960400191505060405180910390fd5b600083118015613e875750600082115b613ec25760405162461bcd60e51b815260040180806020018281038252602881526020018061451d6028913960400191505060405180910390fd5b6000613ed0856103e56140bc565b90506000613ede82856140bc565b90506000613ef883613ef2886103e86140bc565b90614128565b9050808281613f0357fe5b04979650505050505050565b60008183613f9b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f60578181015183820152602001613f48565b50505050905090810190601f168015613f8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613fa757fe5b0495945050505050565b600081848411156140035760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f60578181015183820152602001613f48565b505050900390565b6060614060826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166141809092919063ffffffff16565b8051909150156117645780806020019051602081101561407f57600080fd5b50516117645760405162461bcd60e51b815260040180806020018281038252602a815260200180614692602a913960400191505060405180910390fd5b60008115806140d7575050808202828282816140d457fe5b04145b612954576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820182811015612954576040805162461bcd60e51b815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b606061418f8484600085614197565b949350505050565b60606141a285614304565b6141f3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106142325780518252601f199092019160209182019101614213565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614294576040519150601f19603f3d011682016040523d82523d6000602084013e614299565b606091505b509150915081156142ad57915061418f9050565b8051156142bd5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613f60578181015183820152602001613f48565b3b15159056fe54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737354696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206973207374616c652e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206861736e2774207375727061737365642074696d65206c6f636b2e54696d656c6f636b3a3a73657444656c61793a2044656c6179206d75737420657863656564206d696e696d756d2064656c61792e506f6f6c207265776172642070657220626c6f636b20697320746f6f206869676854696d656c6f636b3a3a73657450656e64696e6741646d696e3a2046697273742063616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e6f7420657863656564206d6178696d756d2064656c61792e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e206861736e2774206265656e207175657565642e556e697377617056324c6962726172793a20494e53554646494349454e545f4c4951554944495459536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737420636f6d652066726f6d2070656e64696e6741646d696e2e54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c206d75737420636f6d652066726f6d2054696d656c6f636b2e54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c206d75737420636f6d652066726f6d2061646d696e2e54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e54696d656c6f636b3a3a71756575655472616e73616374696f6e3a20457374696d6174656420657865637574696f6e20626c6f636b206d75737420736174697366792064656c61792e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656454696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f6d652066726f6d2054696d656c6f636b2e556e697377617056324c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e54a2646970667358221220834ce3a927dd49a5b98b7f054d031253ab1223094dbcb47fe8172d7e61ad542b64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000b78b3320493a4efaa1028130c5ba26f0b6085ef800000000000000000000000094627695f66ab36ae00c1995a30bf5b30e139873

-----Decoded View---------------
Arg [0] : _dracula (address): 0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8
Arg [1] : _drainAddress (address): 0x94627695F66Ab36Ae00c1995a30Bf5B30E139873

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b78b3320493a4efaa1028130c5ba26f0b6085ef8
Arg [1] : 00000000000000000000000094627695f66ab36ae00c1995a30bf5b30e139873


Libraries Used


Deployed Bytecode Sourcemap

59402:11683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61663:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33463:1320;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33463:1320:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33463:1320:0;;;;;;;;-1:-1:-1;33463:1320:0;;-1:-1:-1;;33463:1320:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33463:1320:0;;-1:-1:-1;;33463:1320:0;;;-1:-1:-1;33463:1320:0;;-1:-1:-1;;33463:1320:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62576:280;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62576:280:0;;;;;;;:::i;:::-;;63598:283;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63598:283:0;;;;;;;;;;;;:::i;31610:242::-;;;;;;;;;;;;;:::i;60517:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60517:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;60517:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30640:27;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;30640:27:0;;;;;;;;;;;;;;62864:509;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62864:509:0;;;;;;;;-1:-1:-1;62864:509:0;;-1:-1:-1;;62864:509:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62864:509:0;;-1:-1:-1;62864:509:0;;-1:-1:-1;;;;;62864:509:0:i;32405:607::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32405:607:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32405:607:0;;;;;;;;-1:-1:-1;32405:607:0;;-1:-1:-1;;32405:607:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32405:607:0;;-1:-1:-1;;32405:607:0;;;-1:-1:-1;32405:607:0;;-1:-1:-1;;32405:607:0:i;60315:25::-;;;;;;;;;;;;;:::i;64002:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64002:115:0;-1:-1:-1;;;;;64002:115:0;;:::i;60347:35::-;;;;;;;;;;;;;:::i;67116:1004::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67116:1004:0;;;;;;;:::i;31860:537::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31860:537:0;-1:-1:-1;;;;;31860:537:0;;:::i;65239:821::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65239:821:0;;:::i;68128:603::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68128:603:0;;:::i;61766:659::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;61766:659:0;;;;;;;;;;;;;;;;;;;;;;;:::i;33020:435::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33020:435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33020:435:0;;;;;;;;-1:-1:-1;33020:435:0;;-1:-1:-1;;33020:435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33020:435:0;;-1:-1:-1;;33020:435:0;;;-1:-1:-1;33020:435:0;;-1:-1:-1;;33020:435:0:i;64271:772::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64271:772:0;;;;;;-1:-1:-1;;;;;64271:772:0;;:::i;65051:180::-;;;;;;;;;;;;;:::i;60276:32::-;;;;;;;;;;;;;:::i;30674:17::-;;;;;;;;;;;;;:::i;30698:29::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20729:148;;;;;;;;;;;;;:::i;60389:53::-;;;;;;;;;;;;;:::i;30560:44::-;;;;;;;;;;;;;:::i;63889:105::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63889:105:0;-1:-1:-1;;;;;63889:105:0;;:::i;20087:79::-;;;;;;;;;;;;;:::i;60242:27::-;;;;;;;;;;;;;:::i;60552:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60552:66:0;;;;;;-1:-1:-1;;;;;60552:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30508:45;;;;;;;;;;;;;:::i;62433:135::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62433:135:0;;:::i;30458:43::-;;;;;;;;;;;;;:::i;60155:27::-;;;;;;;;;;;;;:::i;31196:406::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31196:406:0;;:::i;64125:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64125:138:0;-1:-1:-1;;;;;64125:138:0;;:::i;66068:1036::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66068:1036:0;;;;;;;:::i;63381:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63381:209:0;;;-1:-1:-1;;;;;63381:209:0;;;;;;;;;;:::i;30736:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30736:51:0;;:::i;21032:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21032:244:0;-1:-1:-1;;;;;21032:244:0;;:::i;69041:2041::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69041:2041:0;;:::i;30613:20::-;;;;;;;;;;;;;:::i;61663:95::-;61735:8;:15;61663:95;:::o;33463:1320::-;33645:5;;33598:12;;-1:-1:-1;;;;;33645:5:0;33631:10;:19;33623:88;;;;-1:-1:-1;;;33623:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33724:14;33762:6;33770;33778:9;33789:4;33795:3;33751:48;;;;;;-1:-1:-1;;;;;33751:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33751:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33751:48:0;;;-1:-1:-1;;33751:48:0;;;;;;;;;33741:59;;33751:48;33741:59;;;;33819:26;;;;:18;:26;;;;;;33741:59;;-1:-1:-1;33819:26:0;;;-1:-1:-1;33811:100:0;;-1:-1:-1;;;;;;;33811:100:0;;;-1:-1:-1;;;33811:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33953:3;33930:19;:17;:19::i;:::-;:26;;33922:108;;;;-1:-1:-1;;;33922:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34072:21;:3;30494:7;34072;:21::i;:::-;34049:19;:17;:19::i;:::-;:44;;34041:108;;;;-1:-1:-1;;;34041:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34191:5;34162:26;;;:18;:26;;;;;:34;;-1:-1:-1;;34162:34:0;;;34247:23;;34209:21;;34243:179;;-1:-1:-1;34303:4:0;34243:179;;;34391:9;34375:27;;;;;;34405:4;34351:59;;;;;;-1:-1:-1;;;;;34351:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34351:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34340:70;;34243:179;34495:12;34509:23;34536:6;-1:-1:-1;;;;;34536:11:0;34554:6;34562:8;34536:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34536:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34494:77;;;;34590:7;34582:81;;;;-1:-1:-1;;;34582:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34708:6;-1:-1:-1;;;;;34681:64:0;34700:6;34681:64;34716:6;34724:9;34735:4;34741:3;34681:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34681:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34765:10;33463:1320;-1:-1:-1;;;;;;;;;33463:1320:0:o;62576:280::-;61050:12;:10;:12::i;:::-;61029:17;;-1:-1:-1;;;;;61029:17:0;;;:33;;;61021:64;;;;;-1:-1:-1;;;61021:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62708:17:::1;;62689:15;:36;;62681:82;;;;-1:-1:-1::0;;;62681:82:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62774:16;62785:4;62774:10;:16::i;:::-;62833:15;62801:8;62810:4;62801:14;;;;;;;;;;;;;;;;;;:29;;:47;;;;62576:280:::0;;:::o;63598:283::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63723:21:::1;63747:8;63756:4;63747:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;63772:24;::::0;::::1;:47:::0;;;;-1:-1:-1;63830:22:0::1;::::0;;::::1;:43:::0;-1:-1:-1;63598:283:0:o;31610:242::-;31673:12;;-1:-1:-1;;;;;31673:12:0;31659:10;:26;31651:95;;;;-1:-1:-1;;;31651:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31757:5;:18;;31765:10;-1:-1:-1;;;;;;31757:18:0;;;;;;;;31786:12;:25;;;;;;;31829:15;;-1:-1:-1;;;;;31838:5:0;;;;31829:15;;-1:-1:-1;;31829:15:0;31610:242::o;60517:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60517:26:0;;;;-1:-1:-1;60517:26:0;;;;;;;;;:::o;30640:27::-;;;-1:-1:-1;;;;;30640:27:0;;:::o;62864:509::-;61050:12;:10;:12::i;:::-;61029:17;;-1:-1:-1;;;;;61029:17:0;;;:33;;;61021:64;;;;;-1:-1:-1;;;61021:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;63009:7:::1;:14;62994:4;:11;:29;62986:46;;;::::0;;-1:-1:-1;;;62986:46:0;;::::1;;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;63048:6;63043:323;63064:4;:11;63060:1;:15;63043:323;;;63097:11;63111:4;63116:1;63111:7;;;;;;;;;;;;;;63097:21;;63133:22;63158:7;63166:1;63158:10;;;;;;;;;;;;;;63133:35;;63209:17;;63191:14;:35;;63183:81;;;;-1:-1:-1::0;;;63183:81:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63279:15;63290:3;63279:10;:15::i;:::-;63340:14;63309:8;63318:3;63309:13;;;;;;;;;::::0;;;::::1;::::0;;;:28:::1;:13;::::0;;::::1;;:28;:45:::0;-1:-1:-1;;63077:3:0::1;;63043:323;;;;62864:509:::0;;:::o;32405:607::-;32571:5;;32529:7;;-1:-1:-1;;;;;32571:5:0;32557:10;:19;32549:86;;;;-1:-1:-1;;;32549:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32661:30;32685:5;;32661:19;:17;:19::i;:::-;:23;;:30::i;:::-;32654:3;:37;;32646:123;;;;-1:-1:-1;;;32646:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32782:14;32820:6;32828:5;32835:9;32846:4;32852:3;32809:47;;;;;;-1:-1:-1;;;;;32809:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32809:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32799:58;;;;;;32782:75;;32897:4;32868:18;:26;32887:6;32868:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32944:6;-1:-1:-1;;;;;32919:61:0;32936:6;32919:61;32952:5;32959:9;32970:4;32976:3;32919:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32919:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32998:6;32405:607;-1:-1:-1;;;;;;32405:607:0:o;60315:25::-;;;-1:-1:-1;;;;;60315:25:0;;:::o;64002:115::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64081:12:::1;:28:::0;;-1:-1:-1;;;;;;64081:28:0::1;-1:-1:-1::0;;;;;64081:28:0;;;::::1;::::0;;;::::1;::::0;;64002:115::o;60347:35::-;60381:1;60347:35;:::o;67116:1004::-;67183:21;67207:8;67216:4;67207:14;;;;;;;;;;;;;;;;67256;;;:8;:14;;;;;;67271:10;67256:26;;;;;;;67301:11;;67207:14;;;;;;;;-1:-1:-1;67301:22:0;-1:-1:-1;67301:22:0;67293:53;;;;;-1:-1:-1;;;67293:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;67357:16;67368:4;67357:10;:16::i;:::-;67384:15;67402:67;67453:4;:15;;;67402:46;67443:4;67402:36;67418:4;:19;;;67402:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46::i;:::-;:50;;:67::i;:::-;67384:85;-1:-1:-1;67483:11:0;;67480:83;;67511:40;67531:10;67543:7;67511:19;:40::i;:::-;67578:11;;67575:410;;67620:11;;:24;;67636:7;67620:15;:24::i;:::-;67606:38;;67662:9;67659:315;;67707:11;;67692:71;;-1:-1:-1;;;;;67707:11:0;67742:10;67755:7;67692:41;:71::i;:::-;67659:315;;;67804:11;;;67825:17;;;67804:48;;;-1:-1:-1;;;67804:48:0;;-1:-1:-1;;;;;67804:11:0;;;:48;;;;;;;;;;;;;;;;;;:20;;;;:48;;;;;:11;;:48;;;;;;;:20;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67871:11:0;;;67897:17;;;67871:44;;;-1:-1:-1;;;67871:44:0;;-1:-1:-1;;;;;67871:11:0;;;:44;;;;;;;;;;;;:87;;-1:-1:-1;67937:10:0;;-1:-1:-1;67950:7:0;;67871:25;;;;:44;;;;;;;;;;;;;;;:25;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67871:44:0;-1:-1:-1;;;;;67871:57:0;;:87;:57;:87::i;:::-;68031:19;;;;68015:11;;:46;;68056:4;;68015:36;;:15;:36::i;:46::-;67997:15;;;:64;68077:35;;;;;;;;68098:4;;68086:10;;68077:35;;;;;;;;;67116:1004;;;;;:::o;31860:537::-;31999:17;;;;31995:309;;;32041:10;32063:4;32041:27;32033:96;;;;-1:-1:-1;;;32033:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31995:309;;;32184:5;;-1:-1:-1;;;;;32184:5:0;32170:10;:19;32162:91;;;;-1:-1:-1;;;32162:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32268:17;:24;;-1:-1:-1;;32268:24:0;32288:4;32268:24;;;31995:309;32314:12;:28;;-1:-1:-1;;;;;;32314:28:0;-1:-1:-1;;;;;32314:28:0;;;;;;;;;;;32360:29;;32376:12;;;32360:29;;-1:-1:-1;;32360:29:0;31860:537;:::o;65239:821::-;65291:21;65315:8;65324:4;65315:14;;;;;;;;;;;;;;;;;;65291:38;;65360:4;:20;;;65344:12;:36;65340:75;;65397:7;;;65340:75;65427:16;65446:9;;:94;;65497:11;;;65522:17;;;65497:43;;;-1:-1:-1;;;65497:43:0;;-1:-1:-1;;;;;65497:11:0;;;:43;;;;;;;;;;;;:24;;;;:43;;;;;;;;;;;;;;:24;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65497:43:0;65446:94;;;65458:11;;:36;;;-1:-1:-1;;;65458:36:0;;65488:4;65458:36;;;;;;-1:-1:-1;;;;;65458:11:0;;;;:21;;:36;;;;;;;;;;;;;;;:11;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65458:36:0;65446:94;65427:113;-1:-1:-1;65555:13:0;65551:102;;-1:-1:-1;65608:12:0;65585:20;;;;:35;65635:7;;65551:102;65665:22;65690:38;65707:4;:20;;;65690:12;:16;;:38;;;;:::i;:::-;65665:63;;65739:17;65759:39;65778:4;:19;;;65759:14;:18;;:39;;;;:::i;:::-;65809:7;;65822:10;;65739:59;;-1:-1:-1;;;;;;65809:7:0;;;;:12;;65822:10;65834:31;65861:3;65834:22;65739:59;60381:1;65834:13;:22::i;:31::-;65809:57;;;;;;;;;;;;;-1:-1:-1;;;;;65809:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65877:7:0;;:38;;;;;;65898:4;65877:38;;;;;;;;;;;;-1:-1:-1;;;;;65877:7:0;;;;-1:-1:-1;65877:12:0;;-1:-1:-1;65877:38:0;;;;;:7;;:38;;;;;;;;:7;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65948:58;65972:33;65996:8;65972:19;65986:4;65972:9;:13;;:19;;;;:::i;:33::-;65948:19;;;;;:23;:58::i;:::-;65926:19;;;:80;-1:-1:-1;;66040:12:0;66017:20;;;;:35;;;;-1:-1:-1;65239:821:0;;:::o;68128:603::-;68187:21;68211:8;68220:4;68211:14;;;;;;;;;;;;;;;;68260;;;:8;:14;;;;;;68275:10;68260:26;;;;;;;68211:14;;;;;;;;-1:-1:-1;68300:9:0;68297:307;;68389:11;;68341;;68326:75;;-1:-1:-1;;;;;68341:11:0;;;;68376:10;;68326:41;:75::i;:::-;68297:307;;;68434:11;;;68455:17;;;68474:11;;68434:52;;;-1:-1:-1;;;68434:52:0;;-1:-1:-1;;;;;68434:11:0;;;:52;;;;;;;;;;;;;;;;:20;;;;:52;;;;;:11;;:52;;;;;;;:20;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68580:11:0;;68501;;;68527:17;;;68501:44;;;-1:-1:-1;;;68501:44:0;;-1:-1:-1;;;;;68501:11:0;;;:44;;;;;;;;;;;;:91;;-1:-1:-1;68567:10:0;;-1:-1:-1;68501:25:0;;;;:44;;;;;;;;;;;;;;:25;:44;;;;;;;;;;:91;68655:11;;68619:48;;;;;;;68649:4;;68637:10;;68619:48;;;;;;;;;68692:1;68678:15;;;68704;;;;:19;-1:-1:-1;;68128:603:0:o;61766:659::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61956:17:::1;;61937:15;:36;;61929:82;;;;-1:-1:-1::0;;;61929:82:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62022:8;62036:380;;;;;;;;62068:7;-1:-1:-1::0;;;;;62036:380:0::1;;;;;62104:13;62036:380;;;;62148:15;62036:380;;;;60434:8;62303:12;:33;:69;;62360:12;62303:69;;;60434:8;62303:69;62036:380:::0;;62403:1:::1;62036:380;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;62022:395;;::::1;::::0;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;;;;;;62022:395:0::1;-1:-1:-1::0;;;;;62022:395:0;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;61766:659:0:o;33020:435::-;33169:5;;-1:-1:-1;;;;;33169:5:0;33155:10;:19;33147:87;;;;-1:-1:-1;;;33147:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33247:14;33285:6;33293:5;33300:9;33311:4;33317:3;33274:47;;;;;;-1:-1:-1;;;;;33274:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33274:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33264:58;;;;;;33247:75;;33362:5;33333:18;:26;33352:6;33333:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33411:6;-1:-1:-1;;;;;33385:62:0;33403:6;33385:62;33419:5;33426:9;33437:4;33443:3;33385:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33385:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33020:435;;;;;;:::o;64271:772::-;64343:7;64363:21;64387:8;64396:4;64387:14;;;;;;;;;;;;;;;;64436;;;:8;:14;;;;;;-1:-1:-1;;;;;64436:21:0;;;;;;;;;;64387:14;;;;;;64493:19;;;;64387:14;;-1:-1:-1;64436:21:0;;64542:9;;:94;;64593:11;;;64618:17;;;64593:43;;;-1:-1:-1;;;64593:43:0;;-1:-1:-1;;;;;64593:11:0;;;:43;;;;;;;;;;;;:24;;;;:43;;;;;;;;;;;;;;:24;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64593:43:0;64542:94;;;64554:11;;:36;;;-1:-1:-1;;;64554:36:0;;64584:4;64554:36;;;;;;-1:-1:-1;;;;;64554:11:0;;;;:21;;:36;;;;;;;;;;;;;;;:11;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64554:36:0;64542:94;64523:113;;64666:4;:20;;;64651:12;:35;:52;;;;-1:-1:-1;64690:13:0;;;64651:52;64647:307;;;64720:22;64745:38;64762:4;:20;;;64745:12;:16;;:38;;;;:::i;:::-;64720:63;;64798:17;64818:39;64837:4;:19;;;64818:14;:18;;:39;;;;:::i;:::-;64798:59;-1:-1:-1;64889:53:0;64908:33;64932:8;64908:19;64798:59;64922:4;64908:13;:19::i;:33::-;64889:14;;:18;:53::i;:::-;64872:70;;64647:307;;;64973:62;65019:4;:15;;;64973:41;65009:4;64973:31;64989:14;64973:4;:11;;;:15;;:31;;;;:::i;:62::-;64966:69;;;;;;64271:772;;;;;:::o;65051:180::-;65113:8;:15;65096:14;65139:85;65167:6;65161:3;:12;65139:85;;;65197:15;65208:3;65197:10;:15::i;:::-;65175:5;;65139:85;;;;65051:180;:::o;60276:32::-;;;-1:-1:-1;;;;;60276:32:0;;:::o;30674:17::-;;;;:::o;30698:29::-;;;;;;:::o;20729:148::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20836:1:::1;20820:6:::0;;20799:40:::1;::::0;-1:-1:-1;;;;;20820:6:0;;::::1;::::0;20799:40:::1;::::0;20836:1;;20799:40:::1;20867:1;20850:19:::0;;-1:-1:-1;;;;;;20850:19:0::1;::::0;;20729:148::o;60389:53::-;60434:8;60389:53;:::o;30560:44::-;30597:7;30560:44;:::o;63889:105::-;60929:12;:10;:12::i;:::-;60915:10;;-1:-1:-1;;;;;60915:10:0;;;:26;;;60907:46;;;;;-1:-1:-1;;;60907:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;63962:10:::1;:24:::0;;-1:-1:-1;;;;;;63962:24:0::1;-1:-1:-1::0;;;;;63962:24:0;;;::::1;::::0;;;::::1;::::0;;63889:105::o;20087:79::-;20125:7;20152:6;-1:-1:-1;;;;;20152:6:0;20087:79;:::o;60242:27::-;;;-1:-1:-1;;;;;60242:27:0;;:::o;60552:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30508:45::-;30545:8;30508:45;:::o;62433:135::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62522:17:::1;:38:::0;62433:135::o;30458:43::-;30494:7;30458:43;:::o;60155:27::-;;;-1:-1:-1;;;;;60155:27:0;;:::o;31196:406::-;31253:10;31275:4;31253:27;31245:89;;;;-1:-1:-1;;;31245:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30545:8;31353:6;:23;;31345:88;;;;-1:-1:-1;;;31345:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30597:7;31452:6;:23;;31444:92;;;;-1:-1:-1;;;31444:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31547:5;:14;;;31579:15;;31555:6;;31579:15;;;;;31196:406;:::o;64125:138::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64217:17:::1;:38:::0;;-1:-1:-1;;;;;;64217:38:0::1;-1:-1:-1::0;;;;;64217:38:0;;;::::1;::::0;;;::::1;::::0;;64125:138::o;66068:1036::-;66134:21;66158:8;66167:4;66158:14;;;;;;;;;;;;;;;;66207;;;:8;:14;;;;;;66222:10;66207:26;;;;;;;66158:14;;;;;;;;-1:-1:-1;66244:16:0;66216:4;66244:10;:16::i;:::-;66275:11;;:15;66271:238;;66307:15;66325:67;66376:4;:15;;;66325:46;66366:4;66325:36;66341:4;:19;;;66325:4;:11;;;:15;;:36;;;;:::i;:67::-;66307:85;-1:-1:-1;66410:11:0;;66407:91;;66442:40;66462:10;66474:7;66442:19;:40::i;:::-;66271:238;;66524:11;;66521:449;;66555:9;66552:352;;66600:11;;66585:90;;-1:-1:-1;;;;;66600:11:0;66639:10;66660:4;66667:7;66585:45;:90::i;:::-;66552:352;;;66716:11;;;66742:17;;;66716:44;;;-1:-1:-1;;;66716:44:0;;-1:-1:-1;;;;;66716:11:0;;;:44;;;;;;;;;;;;:106;;66786:10;;66807:4;;66814:7;;66716:25;;;;:44;;;;;;;;;;;;;;:25;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66716:44:0;-1:-1:-1;;;;;66716:61:0;;:106;;:61;:106::i;:::-;66841:11;;;66861:17;;;66841:47;;;;;;-1:-1:-1;;;;;66841:11:0;;;:47;;;;;;;;;;;;;;;;;;:19;;;;:47;;;;;:11;;:47;;;;;;;:19;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66552:352;66934:11;;:24;;66950:7;66934:15;:24::i;:::-;66920:38;;66521:449;67016:19;;;;67000:11;;:46;;67041:4;;67000:36;;:15;:36::i;:46::-;66982:15;;;:64;67062:34;;;;;;;;67082:4;;67070:10;;67062:34;;;;;;;;;66068:1036;;;;:::o;63381:209::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63520:7:::1;63489:8;63498:4;63489:14;;;;;;;;;;;;;;;;;;:21;;;:39;;;;;-1:-1:-1::0;;;;;63489:39:0::1;;;;;-1:-1:-1::0;;;;;63489:39:0::1;;;;;;63569:13;63539:8;63548:4;63539:14;;;;;;;;;;;;;;;;;;:27;;:43;;;;63381:209:::0;;;:::o;30736:51::-;;;;;;;;;;;;;;;:::o;21032:244::-;20309:12;:10;:12::i;:::-;20299:6;;-1:-1:-1;;;;;20299:6:0;;;:22;;;20291:67;;;;;-1:-1:-1;;;20291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21121:22:0;::::1;21113:73;;;;-1:-1:-1::0;;;21113:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21223:6;::::0;;21202:38:::1;::::0;-1:-1:-1;;;;;21202:38:0;;::::1;::::0;21223:6;::::1;::::0;21202:38:::1;::::0;::::1;21251:6;:17:::0;;-1:-1:-1;;;;;;21251:17:0::1;-1:-1:-1::0;;;;;21251:17:0;;;::::1;::::0;;;::::1;::::0;;21032:244::o;69041:2041::-;69096:9;69088:45;;;;;-1:-1:-1;;;69088:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;69144:21;69168:8;69177:4;69168:14;;;;;;;;;;;;;;;;;;;;69209:11;;;69254:17;;;69312:24;;;;69347:32;;;;;;-1:-1:-1;;;;;69209:11:0;;;69347:32;;;;;;;;;;;;;;69168:14;;-1:-1:-1;69209:11:0;69254:17;;69312:24;;69347:18;;;;:32;;;;;;;;;;:18;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69411:20:0;;;;;;-1:-1:-1;;;;;69411:18:0;;:20;;;;;;69390:18;;-1:-1:-1;69411:18:0;;-1:-1:-1;69411:18:0;;:20;;;;;;;;;;;;;;;:18;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69411:20:0;69466:36;;;-1:-1:-1;;;69466:36:0;;69496:4;69466:36;;;;;;69411:20;;-1:-1:-1;69442:21:0;;-1:-1:-1;;;;;69466:21:0;;;;;:36;;;;;69411:20;;69466:36;;;;;;;:21;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69466:36:0;;-1:-1:-1;69513:25:0;69541:48;69584:4;69541:38;69466:36;69559:19;69541:17;:38::i;:48::-;69513:76;-1:-1:-1;69603:21:0;;69600:173;;69662:12;;69641:53;;;-1:-1:-1;;;69641:53:0;;-1:-1:-1;;;;;69662:12:0;;;69641:53;;;;;;;;;;;;:20;;;;;;:53;;;;;;;;;;;;;;;69662:12;69641:20;:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69725:36:0;;-1:-1:-1;69725:13:0;69743:17;69725;:36::i;:::-;69709:52;;69600:173;69810:29;;;;;;-1:-1:-1;;;;;69810:27:0;;:29;;;;;;69785:22;;69810:27;;;;:29;;;;;;;;;;;;;;;:27;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69810:29:0;;-1:-1:-1;69853:30:0;;;69850:119;;;69943:14;69927:30;;69850:119;69984:18;69981:56;;70019:7;;;;;;;;;;69981:56;70077:22;;;;70131:54;;;;;;-1:-1:-1;;;;;70131:24:0;;:54;;;;;;;;;;70179:4;70131:54;;;;;;70049:25;;70131:24;;;;:54;;;;;;;;;;;;;;;:24;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70131:54:0;;-1:-1:-1;70196:23:0;70222:43;70260:4;70222:33;70131:54;70237:17;70222:14;:33::i;:43::-;70196:69;-1:-1:-1;70279:19:0;;70276:154;;70315:4;;70329:12;;70315:44;;;-1:-1:-1;;;70315:44:0;;-1:-1:-1;;;;;70329:12:0;;;70315:44;;;;;;;;;;;;:4;;;;;:13;;:44;;;;;;;;;;;;;;:4;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70387:31:0;;-1:-1:-1;70387:10:0;70402:15;70387:14;:31::i;:::-;70374:44;;70276:154;70459:11;;:20;;;;;;;;70442:14;;-1:-1:-1;;;;;70459:11:0;;:18;;:20;;;;;;;;;;;;;;:11;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70459:20:0;70524:11;;:25;;;;;;;;70459:20;;-1:-1:-1;70491:13:0;;;;-1:-1:-1;;;;;70524:11:0;;:23;;:25;;;;;;;;;;;;;;:11;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70524:25:0;;;;;;;70610:4;;70490:59;;;;;-1:-1:-1;70490:59:0;;;-1:-1:-1;70561:17:0;;;;-1:-1:-1;;;;;70602:23:0;;;70610:4;;70602:23;:69;;70652:8;70662;70602:69;;;70629:8;70639;70602:69;70560:111;;;;70682:17;70702:70;70732:10;70744:12;70758:13;70702:29;:70::i;:::-;70828:4;;70682:90;;-1:-1:-1;70784:15:0;;;;-1:-1:-1;;;;;70820:23:0;;;70828:4;;70820:23;:75;;70873:12;70892:1;70820:75;;;70852:1;70856:12;70820:75;70783:112;;;;70908:4;;;;;;;;;-1:-1:-1;;;;;70908:4:0;-1:-1:-1;;;;;70908:13:0;;70930:11;;;;;;;;;-1:-1:-1;;;;;70930:11:0;70944:10;70908:47;;;;;;;;;;;;;-1:-1:-1;;;;;70908:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70966:11:0;;-1:-1:-1;;;;;70966:11:0;:16;70983:10;70995;71015:4;70966:11;71022:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71022:12:0;;70966:69;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70966:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;71048:7:0;;:26;;;;;;;;;;;;;;-1:-1:-1;;;;;71048:7:0;;;;-1:-1:-1;71048:12:0;;-1:-1:-1;71048:26:0;;;;;:7;;:26;;;;;;;;:7;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69041:2041;;;;;;;;;;;;;;;;;;;;:::o;30613:20::-;;;-1:-1:-1;;;;;30613:20:0;;:::o;34791:162::-;34930:15;34791:162;:::o;13544:181::-;13602:7;13634:5;;;13658:6;;;;13650:46;;;;;-1:-1:-1;;;13650:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13716:1;13544:181;-1:-1:-1;;;13544:181:0:o;18641:106::-;18729:10;18641:106;:::o;14898:471::-;14956:7;15201:6;15197:47;;-1:-1:-1;15231:1:0;15224:8;;15197:47;15268:5;;;15272:1;15268;:5;:1;15292:5;;;;;:10;15284:56;;;;-1:-1:-1;;;15284:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15845:132;15903:7;15930:39;15934:1;15937;15930:39;;;;;;;;;;;;;;;;;:3;:39::i;14008:136::-;14066:7;14093:43;14097:1;14100;14093:43;;;;;;;;;;;;;;;;;:3;:43::i;68739:290::-;68836:7;;:32;;;-1:-1:-1;;;68836:32:0;;68862:4;68836:32;;;;;;68818:15;;-1:-1:-1;;;;;68836:7:0;;:17;;:32;;;;;;;;;;;;;;:7;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68836:32:0;;-1:-1:-1;68883:17:0;;;68879:143;;;68917:7;;:30;;;-1:-1:-1;;;68917:30:0;;-1:-1:-1;;;;;68917:30:0;;;;;;;;;;;;;;;:7;;;;;:16;;:30;;;;;;;;;;;;;;:7;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68879:143:0;;-1:-1:-1;68879:143:0;;68980:7;;:30;;;-1:-1:-1;;;68980:30:0;;-1:-1:-1;;;;;68980:30:0;;;;;;;;;;;;;;;:7;;;;;:16;;:30;;;;;;;;;;;;;;:7;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68739:290:0;;;:::o;9548:177::-;9658:58;;;-1:-1:-1;;;;;9658:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9658:58:0;-1:-1:-1;;;9658:58:0;;;9631:86;;9651:5;;9631:19;:86::i;9733:205::-;9861:68;;;-1:-1:-1;;;;;9861:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9861:68:0;9884:27;9861:68;;;9834:96;;9854:5;;9834:19;:96::i;:::-;9733:205;;;;:::o;27466:517::-;27559:14;27605:1;27594:8;:12;27586:68;;;;-1:-1:-1;;;27586:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27685:1;27673:9;:13;:31;;;;;27703:1;27690:10;:14;27673:31;27665:84;;;;-1:-1:-1;;;27665:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27760:20;27783:17;:8;27796:3;27783:12;:17::i;:::-;27760:40;-1:-1:-1;27811:14:0;27828:31;27760:40;27848:10;27828:19;:31::i;:::-;27811:48;-1:-1:-1;27870:16:0;27889:40;27913:15;27889:19;:9;27903:4;27889:13;:19::i;:::-;:23;;:40::i;:::-;27870:59;;27964:11;27952:9;:23;;;;;;;27466:517;-1:-1:-1;;;;;;;27466:517:0:o;16473:278::-;16559:7;16594:12;16587:5;16579:28;;;;-1:-1:-1;;;16579:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16618:9;16634:1;16630;:5;;;;;;;16473:278;-1:-1:-1;;;;;16473:278:0:o;14447:192::-;14533:7;14569:12;14561:6;;;;14553:29;;;;-1:-1:-1;;;14553:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14605:5:0;;;14447:192::o;11853:761::-;12277:23;12303:69;12331:4;12303:69;;;;;;;;;;;;;;;;;12311:5;-1:-1:-1;;;;;12303:27:0;;;:69;;;;;:::i;:::-;12387:17;;12277:95;;-1:-1:-1;12387:21:0;12383:224;;12529:10;12518:30;;;;;;;;;;;;;;;-1:-1:-1;12518:30:0;12510:85;;;;-1:-1:-1;;;12510:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25136:142;25188:6;25215;;;:30;;-1:-1:-1;;25230:5:0;;;25244:1;25239;25230:5;25239:1;25225:15;;;;;:20;25215:30;25207:63;;;;;-1:-1:-1;;;25207:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;24863:128;24947:5;;;24942:16;;;;24934:49;;;;;-1:-1:-1;;;24934:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6529:196;6632:12;6664:53;6687:6;6695:4;6701:1;6704:12;6664:22;:53::i;:::-;6657:60;6529:196;-1:-1:-1;;;;6529:196:0:o;7906:979::-;8036:12;8069:18;8080:6;8069:10;:18::i;:::-;8061:60;;;;;-1:-1:-1;;;8061:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8195:12;8209:23;8236:6;-1:-1:-1;;;;;8236:11:0;8256:8;8267:4;8236:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8236:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8194:78;;;;8287:7;8283:595;;;8318:10;-1:-1:-1;8311:17:0;;-1:-1:-1;8311:17:0;8283:595;8432:17;;:21;8428:439;;8695:10;8689:17;8756:15;8743:10;8739:2;8735:19;8728:44;8643:148;8831:20;;-1:-1:-1;;;8831:20:0;;;;;;;;;;;;;;;;;8838:12;;8831:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3611:422;3978:20;4017:8;;;3611:422::o

Swarm Source

ipfs://834ce3a927dd49a5b98b7f054d031253ab1223094dbcb47fe8172d7e61ad542b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.