ETH Price: $2,424.71 (+0.13%)

Contract

0x849889D3Bc9763f56013FC21F86b8139D97fF793
 

Overview

ETH Balance

0.003 ETH

Eth Value

$7.27 (@ $2,424.71/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve196922522024-04-19 21:46:59148 days ago1713563219IN
0x849889D3...9D97fF793
0 ETH0.00020738.55997369
Approve148615872022-05-28 17:24:38840 days ago1653758678IN
0x849889D3...9D97fF793
0 ETH0.0006380826.34756835
Transfer134455642021-10-19 2:39:571062 days ago1634611197IN
0x849889D3...9D97fF793
0 ETH0.0041369270.68533284
Approve133172652021-09-28 23:42:081082 days ago1632872528IN
0x849889D3...9D97fF793
0 ETH0.0032241269.72879995
Transfer133150962021-09-28 15:41:531082 days ago1632843713IN
0x849889D3...9D97fF793
0 ETH0.0046235579.00000145
Transfer132873942021-09-24 8:25:021086 days ago1632471902IN
0x849889D3...9D97fF793
0 ETH0.0019780848.00000145
Transfer132873602021-09-24 8:16:451086 days ago1632471405IN
0x849889D3...9D97fF793
0 ETH0.0017398942.00000145
Transfer132873502021-09-24 8:15:411086 days ago1632471341IN
0x849889D3...9D97fF793
0 ETH0.0019061446.00000145
Approve132116082021-09-12 14:55:311098 days ago1631458531IN
0x849889D3...9D97fF793
0 ETH0.0040846387.83782762
Transfer132115852021-09-12 14:48:321098 days ago1631458112IN
0x849889D3...9D97fF793
0 ETH0.0029842151.00000145
Transfer131437062021-09-02 2:53:441109 days ago1630551224IN
0x849889D3...9D97fF793
0 ETH0.0052673490.00000145
Transfer131437022021-09-02 2:53:141109 days ago1630551194IN
0x849889D3...9D97fF793
0 ETH0.003355581.00000145
Transfer131437022021-09-02 2:53:141109 days ago1630551194IN
0x849889D3...9D97fF793
0 ETH0.0031492876.00000145
Transfer131058912021-08-27 6:26:131115 days ago1630045573IN
0x849889D3...9D97fF793
0 ETH0.0026366764.00000145
Transfer130352482021-08-16 8:38:181125 days ago1629103098IN
0x849889D3...9D97fF793
0 ETH0.0022825139.00000145
Transfer130352442021-08-16 8:36:321125 days ago1629102992IN
0x849889D3...9D97fF793
0 ETH0.0014917636.00000145
Transfer129497242021-08-03 2:37:511139 days ago1627958271IN
0x849889D3...9D97fF793
0 ETH0.0018222144.00000145
Transfer129497242021-08-03 2:37:511139 days ago1627958271IN
0x849889D3...9D97fF793
0 ETH0.0017403942.00000145
Transfer129253472021-07-30 6:16:581143 days ago1627625818IN
0x849889D3...9D97fF793
0 ETH0.001236330.00000145
Transfer129253312021-07-30 6:11:391143 days ago1627625499IN
0x849889D3...9D97fF793
0 ETH0.0006293224.00000145
Transfer128362652021-07-16 6:16:201157 days ago1626416180IN
0x849889D3...9D97fF793
0 ETH0.0009113722.00000145
Transfer128362552021-07-16 6:14:091157 days ago1626416049IN
0x849889D3...9D97fF793
0 ETH0.0009945124.00000145
Transfer127647532021-07-05 2:18:191168 days ago1625451499IN
0x849889D3...9D97fF793
0 ETH0.00016574.00000145
Transfer127647352021-07-05 2:13:081168 days ago1625451188IN
0x849889D3...9D97fF793
0 ETH0.0004558111.00000145
Transfer127016482021-06-25 6:16:481178 days ago1624601808IN
0x849889D3...9D97fF793
0 ETH0.0006181515.00000156
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
119196532021-02-24 11:48:141298 days ago1614167294
0x849889D3...9D97fF793
0.1 ETH
119194652021-02-24 11:11:471298 days ago1614165107
0x849889D3...9D97fF793
0.1 ETH
115801452021-01-03 7:36:501350 days ago1609659410
0x849889D3...9D97fF793
0.1 ETH
115801232021-01-03 7:31:021351 days ago1609659062
0x849889D3...9D97fF793
0.1 ETH
115478142020-12-29 8:24:591355 days ago1609230299
0x849889D3...9D97fF793
0.44 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xbe634550...aC88F28b6
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
DirectTokenV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-28
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.5.16 <0.7.0;

library TokenFlags {
    uint32 internal constant BIT_PAUSABLE = 0;
    uint32 internal constant BIT_MINTABLE = 1;
    uint32 internal constant BIT_BURNABLE = 2;
    uint32 internal constant BIT_ETH_REFUNDABLE = 3;
    uint32 internal constant BIT_ERC20_REFUNDABLE = 4;
    uint32 internal constant BIT_BLACKLISTABLE = 5;
    uint32 internal constant BIT_DIRECT_MODE = 6;

    function isPausable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_PAUSABLE) & 1) > 0;
    }

    function isMintable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_MINTABLE) & 1) > 0;
    }

    function isBurnable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_BURNABLE) & 1) > 0;
    }

    function isETHRefundable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_ETH_REFUNDABLE) & 1) > 0;
    }

    function isERC20Refundable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_ERC20_REFUNDABLE) & 1) > 0;
    }

    function isBlacklistable(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_BLACKLISTABLE) & 1) > 0;
    }

    function isDirectMode(uint32 flags) internal pure returns (bool) {
        return ((flags >> BIT_DIRECT_MODE) & 1) > 0;
    }
}


interface ICashier {
    function getPayee() external view returns (address payable);
    function calcFee(address addr, uint256 kind, bytes4 func) external view returns (uint256);
}



contract Chargeable {

    function sendFee(uint256 kind) internal {
        sendFee(msg.sig, kind);
    }

    function sendFee(bytes4 func, uint256 kind) internal {
        address cashier = _getCashier();
        if (address(cashier) == address(0x0)) {
            return;
        }
        address payable payee = ICashier(cashier).getPayee();
        if (payee == address(0x0)) {
            return;
        }
        uint256 fee = ICashier(cashier).calcFee(address(this), kind, func);
        if (fee > 0) {
            require(address(this).balance >= fee, "Function fee is not enough.");
            payee.transfer(fee);
        }
    }

    /**
     * @dev Storage slot with the address of the cashier contract.
     * This is the keccak-256 hash of "x.cashier.contract" and is validated in the constructor.
     */
    bytes32
        internal constant _CASHIER_SLOT = 0xe4daccb11a797004e79d649410b00658e14f3296aae1b244a00c23be3d595cd4;

    function _getCashier() internal view returns (address cashier) {
        bytes32 slot = _CASHIER_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            cashier := sload(slot)
        }
    }

    /**
     * @dev Stores a new address in the cashier slot.
     */
    function _setCashier(address addr) internal {
        bytes32 slot = _CASHIER_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, addr)
        }
    }
}


/**
 * @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;
    }
}


/**
 * @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);
}


/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param addr address to check
     * @return whether the target address is a contract
     */
    function isContract(address addr) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            size := extcodesize(addr)
        }
        return size > 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 AddressUtils 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 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.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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");
        }
    }
}



contract BaseTokenChild is IERC20, Chargeable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 internal constant CONTRACT_KIND = 1;

    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;
    string internal _name;
    string internal _symbol;
    uint256 internal _totalSupply;
    uint8 internal _decimals;

    uint8 internal _version;
    address internal _owner;
    uint32 internal _flags;
    bool internal _paused;

    mapping(address => bool) internal _blacklist;

    constructor() public {}

    function init(
        uint8 version,
        address cashier,
        address theOwner,
        string memory name,
        string memory symbol,
        uint8 decimals,
        uint256 initSupply,
        uint32 flags
    ) public {
        require(_version == 0, "Already initialized");
        require(cashier != address(0x0), "Cashier not be zero");

        _version = version;
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        _flags = flags;

        _setOwner(theOwner);
        _setCashier(cashier);
        _mint(theOwner, initSupply);
    }

    function getCashier() public view returns (address) {
        return _getCashier();
    }

    function version() public virtual view returns (uint8) {
        return _version;
    }

    function flags() public view returns (uint256) {
        return _flags;
    }

    function _setFlag(uint32 flagBit, bool b) internal {
        if (b) {
            _flags = _flags | (uint32(1) << flagBit);
        } else {
            _flags = _flags & (0xFFFFFFFF - (uint32(1) << flagBit));
        }
    }

    function isPausable() public view returns (bool) {
        return TokenFlags.isPausable(_flags);
    }

    function isMintable() public view returns (bool) {
        return TokenFlags.isMintable(_flags);
    }

    function isBurnable() public view returns (bool) {
        return TokenFlags.isBurnable(_flags);
    }

    function isETHRefundable() public view returns (bool) {
        return TokenFlags.isETHRefundable(_flags);
    }

    function isERC20Refundable() public view returns (bool) {
        return TokenFlags.isERC20Refundable(_flags);
    }

    function isBlacklistable() public view returns (bool) {
        return TokenFlags.isBlacklistable(_flags);
    }

    function isDirectMode() public view returns (bool) {
        return TokenFlags.isDirectMode(_flags);
    }

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

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "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 payable onlyOwner {
        sendFee(CONTRACT_KIND);
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) internal {
        require(newOwner != address(0), "Can not set owner to zero");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    event Paused(address account);
    event Unpaused(address account);

    function paused() public view returns (bool) {
        return _paused;
    }

    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused state");
        _;
    }

    modifier whenPaused() {
        require(_paused, "Pausable: unpaused state");
        _;
    }

    function pause() public payable whenNotPaused onlyOwner {
        require(isPausable(), "Contract is not pausable");
        sendFee(CONTRACT_KIND);
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() public payable whenPaused onlyOwner {
        require(isPausable(), "Contract is not pausable");
        sendFee(CONTRACT_KIND);
        _paused = false;
        emit Unpaused(msg.sender);
    }

    function stopPausable() public payable whenNotPaused onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_MINTABLE, false);
    }

    function mint(address to, uint256 value) public payable whenNotPaused onlyOwner returns (bool) {
        require(isMintable(), "Contract is not mintable");
        sendFee(CONTRACT_KIND);
        _mint(to, value);
        return true;
    }

    function stopMintable() public payable onlyOwner {
        require(isMintable(), "Contract is not mintable");
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_MINTABLE, false);
    }

    function burn(uint256 value) public whenNotPaused {
        require(isBurnable(), "Contract is not burnable");
        _burn(msg.sender, value);
    }

    function setBurnable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_BURNABLE, true);
    }

    function unsetBurnable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_BURNABLE, false);
    }

    event RefundETH(address indexed payee, uint256 amount);
    event RefundERC20(address indexed payee, address indexed token, uint256 amount);

    function refundETH(address payee, uint256 amount) public payable onlyOwner {
        require(isETHRefundable(), "Not refundable for ETH");
        require(payee != address(0), "Refund to address 0x0");
        sendFee(CONTRACT_KIND);
        require(amount <= address(this).balance, "Balance not enough");
        payable(payee).transfer(amount);
        emit RefundETH(payee, amount);
    }

    function refundETHAll(address payee) public payable onlyOwner {
        require(isETHRefundable(), "Not refundable for ETH");
        require(payee != address(0), "Refund to address 0x0");
        sendFee(CONTRACT_KIND);
        uint256 amount = address(this).balance;
        payable(payee).transfer(amount);
        emit RefundETH(payee, amount);
    }

    function setETHRefundable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_ETH_REFUNDABLE, true);
    }

    function unsetETHRefundable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_ETH_REFUNDABLE, false);
    }

    function refundERC20(
        address tokenContract,
        address payee,
        uint256 amount
    ) public payable onlyOwner {
        require(isERC20Refundable(), "Not refundable for ERC20");
        require(payee != address(0), "Refund to address 0x0");
        sendFee(CONTRACT_KIND);

        IERC20(tokenContract).safeTransfer(payee, amount);
        emit RefundERC20(payee, tokenContract, amount);
    }

    function refundERC20All(address tokenContract, address payee) public payable onlyOwner {
        uint256 balance = IERC20(tokenContract).balanceOf(address(this));
        refundERC20(tokenContract, payee, balance);
    }

    function setERC20Refundable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_ERC20_REFUNDABLE, true);
    }

    function unsetERC20Refundable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_ERC20_REFUNDABLE, false);
    }

    event Blacklisted(address indexed account);
    event UnBlacklisted(address indexed account);

    function isInBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

    function blacklist(address account) public payable onlyOwner {
        require(isBlacklistable(), "Contract is not blacklistable");
        sendFee(CONTRACT_KIND);
        _blacklist[account] = true;
        emit Blacklisted(account);
    }

    function unBlacklist(address account) public payable onlyOwner {
        require(isBlacklistable(), "Contract is not blacklistable");
        sendFee(CONTRACT_KIND);
        _blacklist[account] = false;
        emit UnBlacklisted(account);
    }

    function setBlacklistable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_BLACKLISTABLE, true);
    }

    function unsetBlacklistable() public payable onlyOwner {
        sendFee(CONTRACT_KIND);
        _setFlag(TokenFlags.BIT_BLACKLISTABLE, false);
    }

    /**
     * @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 override view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, 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, msg.sender, _allowances[sender][msg.sender].sub(amount, "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(msg.sender, spender, _allowances[msg.sender][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(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(subtractedValue, "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), "Transfer from the zero address");
        require(recipient != address(0), "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), "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), "Burn from the zero address");

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `from` 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:
     *
     * - `from` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address from,
        address spender,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "Approve from the zero address");
        require(spender != address(0), "Approve to the zero address");

        _allowances[from][spender] = amount;
        emit Approval(from, 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 view whenNotPaused {
        if (isBlacklistable()) {
            require(!isInBlacklist(from), "From is blacklisted");
            require(!isInBlacklist(to), "To is blacklisted");
        }
    }
}


interface ITokenRegistry {
    function register(
        address token,
        address creator,
        address inviter
    ) external payable;
}


contract DirectTokenV2 is BaseTokenChild {
    constructor(
        ITokenRegistry registry,
        uint256 fee,
        address cashier,
        string memory name,
        string memory symbol,
        uint8 decimals,
        uint256 initSupply,
        uint32 flags,
        address inviter,
        bytes32 h
    ) public payable {
        require(fee > 0 && msg.value >= fee, "Function fee is not enough");
        require(TokenFlags.isDirectMode(flags), "Invalid flags");
        bytes32 vh = keccak256(abi.encode(address(registry), fee, cashier, name, flags));
        require(h == vh, "Invalid h");
        registry.register{value: msg.value}(address(this), msg.sender, inviter);
        init(2, cashier, msg.sender, name, symbol, decimals, initSupply, flags);
    }

    receive() external payable {}

    fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ITokenRegistry","name":"registry","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"address","name":"cashier","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"initSupply","type":"uint256"},{"internalType":"uint32","name":"flags","type":"uint32"},{"internalType":"address","name":"inviter","type":"address"},{"internalType":"bytes32","name":"h","type":"bytes32"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RefundERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RefundETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flags","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCashier","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"address","name":"cashier","type":"address"},{"internalType":"address","name":"theOwner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"initSupply","type":"uint256"},{"internalType":"uint32","name":"flags","type":"uint32"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isBlacklistable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDirectMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isERC20Refundable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isETHRefundable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPausable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"refundERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"address","name":"payee","type":"address"}],"name":"refundERC20All","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"refundETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"refundETHAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"setBlacklistable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"setBurnable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"setERC20Refundable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"setETHRefundable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"stopMintable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"stopPausable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unsetBlacklistable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unsetBurnable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unsetERC20Refundable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unsetETHRefundable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80635c975abb1161015a578063a457c2d7116100c1578063d4feea1b1161007a578063d4feea1b14610919578063d7cfa9ca1461092e578063dd62ed3e14610943578063f2fde38b1461097e578063f9f92be4146109a4578063fe7c5cf8146109ca57610293565b8063a457c2d71461086d578063a9059cbb146108a6578063b319031c146108df578063c9ac0d32146108f4578063cbd411b6146108fc578063cd0d0ce71461090457610293565b8063883356d911610113578063883356d9146107c25780638da5cb5b146107d757806395d89b4114610808578063979271ca1461081d5780639caf9b0014610825578063a09a16011461085857610293565b80635c975abb1461074d57806364cc4aa51461076257806370a0823114610777578063715018a6146107aa5780638456cb59146107b257806387207de3146107ba57610293565b8063348a5209116101fe57806348c44712116101b757806348c44712146105545780634bd227661461058a5780634fd88bbd146105b65780635298409d146105be57806354fd4d50146105c65780635a2bef74146105db57610293565b8063348a52091461049357806339509351146104a85780633f4ba83a146104e157806340c10f19146104e957806342966c681461051557806346b45af71461053f57610293565b80631a895266116102505780631a895266146103c15780631d55c749146103e757806323b872dd146103ef578063241321fe146104325780633008e59c1461043a578063313ce5671461046857610293565b806306fdde0314610295578063095ea7b31461031f578063097798381461036c578063117e1f151461039257806318160ddd1461039a57610293565b3661029357005b005b3480156102a157600080fd5b506102aa6109d2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e45781810151838201526020016102cc565b50505050905090810190601f1680156103115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032b57600080fd5b506103586004803603604081101561034257600080fd5b506001600160a01b038135169060200135610a65565b604080519115158252519081900360200190f35b6102936004803603602081101561038257600080fd5b50356001600160a01b0316610a7b565b610293610bf9565b3480156103a657600080fd5b506103af610cb8565b60408051918252519081900360200190f35b610293600480360360208110156103d757600080fd5b50356001600160a01b0316610cbe565b610293610dbd565b3480156103fb57600080fd5b506103586004803603606081101561041257600080fd5b506001600160a01b03813581169160208101359091169060400135610e26565b610293610e8f565b6102936004803603604081101561045057600080fd5b506001600160a01b0381358116916020013516610f3a565b34801561047457600080fd5b5061047d61101a565b6040805160ff9092168252519081900360200190f35b34801561049f57600080fd5b50610358611023565b3480156104b457600080fd5b50610358600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135611044565b61029361107a565b610358600480360360408110156104ff57600080fd5b506001600160a01b0381351690602001356111cb565b34801561052157600080fd5b506102936004803603602081101561053857600080fd5b50356112e1565b34801561054b57600080fd5b5061035861139f565b6102936004803603606081101561056a57600080fd5b506001600160a01b038135811691602081013590911690604001356113bb565b610293600480360360408110156105a057600080fd5b506001600160a01b038135169060200135611528565b6102936116aa565b610293611713565b3480156105d257600080fd5b5061047d61177c565b3480156105e757600080fd5b5061029360048036036101008110156105ff57600080fd5b60ff823516916001600160a01b0360208201358116926040830135909116919081019060808101606082013564010000000081111561063d57600080fd5b82018360208201111561064f57600080fd5b8035906020019184600183028401116401000000008311171561067157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156106c457600080fd5b8201836020820111156106d657600080fd5b803590602001918460018302840111640100000000831117156106f857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff169250506020810135906040013563ffffffff1661178a565b34801561075957600080fd5b506103586118b7565b34801561076e57600080fd5b506103af6118c7565b34801561078357600080fd5b506103af6004803603602081101561079a57600080fd5b50356001600160a01b03166118da565b6102936118f5565b6102936119a4565b610293611af5565b3480156107ce57600080fd5b50610358611b5e565b3480156107e357600080fd5b506107ec611b7a565b604080516001600160a01b039092168252519081900360200190f35b34801561081457600080fd5b506102aa611b8f565b610293611bf0565b34801561083157600080fd5b506103586004803603602081101561084857600080fd5b50356001600160a01b0316611c59565b34801561086457600080fd5b50610358611c77565b34801561087957600080fd5b506103586004803603604081101561089057600080fd5b506001600160a01b038135169060200135611c93565b3480156108b257600080fd5b50610358600480360360408110156108c957600080fd5b506001600160a01b038135169060200135611d00565b3480156108eb57600080fd5b50610358611d0d565b610293611d29565b610293611d92565b34801561091057600080fd5b506107ec611dfb565b34801561092557600080fd5b50610358611e05565b34801561093a57600080fd5b50610358611e21565b34801561094f57600080fd5b506103af6004803603604081101561096657600080fd5b506001600160a01b0381358116916020013516611e3d565b6102936004803603602081101561099457600080fd5b50356001600160a01b0316611e68565b610293600480360360208110156109ba57600080fd5b50356001600160a01b0316611ece565b610293611fd0565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b5050505050905090565b6000610a723384846120b0565b50600192915050565b6005546201000090046001600160a01b03163314610ace576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b610ad6611e21565b610b20576040805162461bcd60e51b815260206004820152601660248201527509cdee840e4cacceadcc8c2c4d8ca40ccdee4408aa8960531b604482015290519081900360640190fd5b6001600160a01b038116610b73576040805162461bcd60e51b81526020600482015260156024820152740526566756e6420746f20616464726573732030783605c1b604482015290519081900360640190fd5b610b7d60016121c8565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610bb5573d6000803e3d6000fd5b506040805182815290516001600160a01b038416917f289360176646a5f99cb4b6300628426dca46b723f40db3c04449d6ed1745a0e7919081900360200190a25050565b6005546201000090046001600160a01b03163314610c4c576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b610c5461139f565b610ca0576040805162461bcd60e51b8152602060048201526018602482015277436f6e7472616374206973206e6f74206d696e7461626c6560401b604482015290519081900360640190fd5b610caa60016121c8565b610cb6600160006121de565b565b60045490565b6005546201000090046001600160a01b03163314610d11576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b610d19611d0d565b610d6a576040805162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206973206e6f7420626c61636b6c69737461626c65000000604482015290519081900360640190fd5b610d7460016121c8565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6005546201000090046001600160a01b03163314610e10576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b610e1a60016121c8565b610cb6600560006121de565b6000610e3384848461224a565b610e858433610e8085604051806060016040528060218152602001612da1602191396001600160a01b038a16600090815260016020908152604080832033845290915290205491906123d1565b6120b0565b5060019392505050565b600554600160d01b900460ff1615610ee7576040805162461bcd60e51b81526020600482015260166024820152755061757361626c653a2070617573656420737461746560501b604482015290519081900360640190fd5b6005546201000090046001600160a01b03163314610ca0576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b6005546201000090046001600160a01b03163314610f8d576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d602081101561100657600080fd5b505190506110158383836113bb565b505050565b60055460ff1690565b60055460009061103f90600160b01b900463ffffffff16612468565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a72918590610e809086612044565b600554600160d01b900460ff166110d8576040805162461bcd60e51b815260206004820152601860248201527f5061757361626c653a20756e7061757365642073746174650000000000000000604482015290519081900360640190fd5b6005546201000090046001600160a01b0316331461112b576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611133611c77565b61117f576040805162461bcd60e51b8152602060048201526018602482015277436f6e7472616374206973206e6f74207061757361626c6560401b604482015290519081900360640190fd5b61118960016121c8565b6005805460ff60d01b191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600554600090600160d01b900460ff1615611226576040805162461bcd60e51b81526020600482015260166024820152755061757361626c653a2070617573656420737461746560501b604482015290519081900360640190fd5b6005546201000090046001600160a01b03163314611279576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b61128161139f565b6112cd576040805162461bcd60e51b8152602060048201526018602482015277436f6e7472616374206973206e6f74206d696e7461626c6560401b604482015290519081900360640190fd5b6112d760016121c8565b610a728383612473565b600554600160d01b900460ff1615611339576040805162461bcd60e51b81526020600482015260166024820152755061757361626c653a2070617573656420737461746560501b604482015290519081900360640190fd5b611341611b5e565b611392576040805162461bcd60e51b815260206004820152601860248201527f436f6e7472616374206973206e6f74206275726e61626c650000000000000000604482015290519081900360640190fd5b61139c3382612563565b50565b60055460009061103f90600160b01b900463ffffffff16612692565b6005546201000090046001600160a01b0316331461140e576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611416611023565b611467576040805162461bcd60e51b815260206004820152601860248201527f4e6f7420726566756e6461626c6520666f722045524332300000000000000000604482015290519081900360640190fd5b6001600160a01b0382166114ba576040805162461bcd60e51b81526020600482015260156024820152740526566756e6420746f20616464726573732030783605c1b604482015290519081900360640190fd5b6114c460016121c8565b6114d86001600160a01b038416838361269d565b826001600160a01b0316826001600160a01b03167fdbdf8eb487847e4c0f22847f5dac07f2d3690f96f581a6ae4b102769917645a8836040518082815260200191505060405180910390a3505050565b6005546201000090046001600160a01b0316331461157b576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611583611e21565b6115cd576040805162461bcd60e51b815260206004820152601660248201527509cdee840e4cacceadcc8c2c4d8ca40ccdee4408aa8960531b604482015290519081900360640190fd5b6001600160a01b038216611620576040805162461bcd60e51b81526020600482015260156024820152740526566756e6420746f20616464726573732030783605c1b604482015290519081900360640190fd5b61162a60016121c8565b47811115611674576040805162461bcd60e51b8152602060048201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610bb5573d6000803e3d6000fd5b6005546201000090046001600160a01b031633146116fd576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b61170760016121c8565b610cb6600460006121de565b6005546201000090046001600160a01b03163314611766576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b61177060016121c8565b610cb6600260006121de565b600554610100900460ff1690565b600554610100900460ff16156117dd576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b6001600160a01b03871661182e576040805162461bcd60e51b815260206004820152601360248201527243617368696572206e6f74206265207a65726f60681b604482015290519081900360640190fd5b6005805461ff00191661010060ff8b16021790558451611855906002906020880190612ced565b508351611869906003906020870190612ced565b506005805460ff191660ff85161763ffffffff60b01b1916600160b01b63ffffffff84160217905561189a866126ef565b6118a3876127b4565b6118ad8683612473565b5050505050505050565b600554600160d01b900460ff1690565b600554600160b01b900463ffffffff1690565b6001600160a01b031660009081526020819052604090205490565b6005546201000090046001600160a01b03163314611948576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b61195260016121c8565b6005546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805462010000600160b01b0319169055565b600554600160d01b900460ff16156119fc576040805162461bcd60e51b81526020600482015260166024820152755061757361626c653a2070617573656420737461746560501b604482015290519081900360640190fd5b6005546201000090046001600160a01b03163314611a4f576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611a57611c77565b611aa3576040805162461bcd60e51b8152602060048201526018602482015277436f6e7472616374206973206e6f74207061757361626c6560401b604482015290519081900360640190fd5b611aad60016121c8565b6005805460ff60d01b1916600160d01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6005546201000090046001600160a01b03163314611b48576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611b5260016121c8565b610cb6600560016121de565b60055460009061103f90600160b01b900463ffffffff166127d8565b6005546201000090046001600160a01b031690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b6005546201000090046001600160a01b03163314611c43576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611c4d60016121c8565b610cb6600460016121de565b6001600160a01b031660009081526006602052604090205460ff1690565b60055460009061103f90600160b01b900463ffffffff166127e3565b604080518082018252601e81527f44656372656173656420616c6c6f77616e63652062656c6f77207a65726f0000602080830191909152336000818152600183528481206001600160a01b0388168252909252928120549092610a729290918691610e80919087906123d1565b6000610a7233848461224a565b60055460009061103f90600160b01b900463ffffffff166120a5565b6005546201000090046001600160a01b03163314611d7c576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611d8660016121c8565b610cb6600360006121de565b6005546201000090046001600160a01b03163314611de5576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611def60016121c8565b610cb6600360016121de565b600061103f6127eb565b60055460009061103f90600160b01b900463ffffffff16612039565b60055460009061103f90600160b01b900463ffffffff16612810565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546201000090046001600160a01b03163314611ebb576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611ec560016121c8565b61139c816126ef565b6005546201000090046001600160a01b03163314611f21576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b611f29611d0d565b611f7a576040805162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206973206e6f7420626c61636b6c69737461626c65000000604482015290519081900360640190fd5b611f8460016121c8565b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6005546201000090046001600160a01b03163314612023576040805162461bcd60e51b81526020600482015260176024820152600080516020612d81833981519152604482015290519081900360640190fd5b61202d60016121c8565b610cb6600260016121de565b60061c600116151590565b60008282018381101561209e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60051c600116151590565b6001600160a01b03831661210b576040805162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216612166576040805162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61139c6000356001600160e01b0319168261281b565b80156122155760058054600160b01b80820463ffffffff90811660018288161b17160263ffffffff60b01b19909116179055612246565b6005805463ffffffff60b01b198116600163ffffffff8681169190911b8103600160b01b9384900416169091021790555b5050565b6001600160a01b0383166122a5576040805162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216612300576040805162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b61230b8383836129e2565b61234881604051806060016040528060268152602001612dc2602691396001600160a01b03861660009081526020819052604090205491906123d1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546123779082612044565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156124605760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561242557818101518382015260200161240d565b50505050905090810190601f1680156124525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60041c600116151590565b6001600160a01b0382166124ce576040805162461bcd60e51b815260206004820152601860248201527f4d696e7420746f20746865207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b6124da600083836129e2565b6004546124e79082612044565b6004556001600160a01b03821660009081526020819052604090205461250d9082612044565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166125be576040805162461bcd60e51b815260206004820152601a60248201527f4275726e2066726f6d20746865207a65726f2061646472657373000000000000604482015290519081900360640190fd5b6125ca826000836129e2565b604080518082018252601b81527f4275726e20616d6f756e7420657863656564732062616c616e636500000000006020808301919091526001600160a01b03851660009081529081905291909120546126249183906123d1565b6001600160a01b03831660009081526020819052604090205560045461264a9082612ae7565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600190811c16151590565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611015908490612b29565b6001600160a01b03811661274a576040805162461bcd60e51b815260206004820152601960248201527f43616e206e6f7420736574206f776e657220746f207a65726f00000000000000604482015290519081900360640190fd5b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b7fe4daccb11a797004e79d649410b00658e14f3296aae1b244a00c23be3d595cd455565b60021c600116151590565b600116151590565b7fe4daccb11a797004e79d649410b00658e14f3296aae1b244a00c23be3d595cd45490565b60031c600116151590565b60006128256127eb565b90506001600160a01b03811661283b5750612246565b6000816001600160a01b031663cd4467356040518163ffffffff1660e01b815260040160206040518083038186803b15801561287657600080fd5b505afa15801561288a573d6000803e3d6000fd5b505050506040513d60208110156128a057600080fd5b505190506001600160a01b0381166128b9575050612246565b6040805163010ec02960e41b8152306004820152602481018590526001600160e01b03198616604482015290516000916001600160a01b038516916310ec029091606480820192602092909190829003018186803b15801561291a57600080fd5b505afa15801561292e573d6000803e3d6000fd5b505050506040513d602081101561294457600080fd5b5051905080156129db57804710156129a3576040805162461bcd60e51b815260206004820152601b60248201527f46756e6374696f6e20666565206973206e6f7420656e6f7567682e0000000000604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156129d9573d6000803e3d6000fd5b505b5050505050565b600554600160d01b900460ff1615612a3a576040805162461bcd60e51b81526020600482015260166024820152755061757361626c653a2070617573656420737461746560501b604482015290519081900360640190fd5b612a42611d0d565b1561101557612a5083611c59565b15612a98576040805162461bcd60e51b8152602060048201526013602482015272119c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b612aa182611c59565b15611015576040805162461bcd60e51b8152602060048201526011602482015270151bc81a5cc8189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b600061209e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123d1565b612b3b826001600160a01b0316612ce7565b612b8c576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310612bca5780518252601f199092019160209182019101612bab565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612c2c576040519150601f19603f3d011682016040523d82523d6000602084013e612c31565b606091505b509150915081612c88576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115612ce157808060200190516020811015612ca457600080fd5b5051612ce15760405162461bcd60e51b815260040180806020018281038252602a815260200180612de8602a913960400191505060405180910390fd5b50505050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d2e57805160ff1916838001178555612d5b565b82800160010185558215612d5b579182015b82811115612d5b578251825591602001919060010190612d40565b50612d67929150612d6b565b5090565b5b80821115612d675760008155600101612d6c56fe43616c6c6572206973206e6f7420746865206f776e65720000000000000000005472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212209b94fdb85acb638140dc483fcfdbbf0aeabfa189d6d23fb4f8894ab4e11572cf64736f6c634300060c0033

Deployed Bytecode Sourcemap

33250:872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23980:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26082:167;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26082:167:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21189:361;;;;;;;;;;;;;;;;-1:-1:-1;21189:361:0;-1:-1:-1;;;;;21189:361:0;;:::i;19967:201::-;;;:::i;25055:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23343:250;;;;;;;;;;;;;;;;-1:-1:-1;23343:250:0;-1:-1:-1;;;;;23343:250:0;;:::i;23758:152::-;;;:::i;26723:344::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26723:344:0;;;;;;;;;;;;;;;;;:::i;19551:155::-;;;:::i;22310:223::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22310:223:0;;;;;;;;;;:::i;24907:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17023:118;;;;;;;;;;;;;:::i;27476:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27476:214:0;;;;;;;;:::i;19325:218::-;;;:::i;19714:245::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19714:245:0;;;;;;;;:::i;20176:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20176:153:0;;:::i;16677:104::-;;;;;;;;;;;;;:::i;21877:425::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21877:425:0;;;;;;;;;;;;;;;;;:::i;20783:398::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20783:398:0;;;;;;;;:::i;22703:157::-;;;:::i;20484:142::-;;;:::i;16142:89::-;;;;;;;;;;;;;:::i;15425:610::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15425:610:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15425:610:0;;;;;;;;-1:-1:-1;15425:610:0;;-1:-1:-1;;15425:610:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15425:610:0;;-1:-1:-1;;;15425:610:0;;;;;-1:-1:-1;;15425:610:0;;;;;;;;;;;:::i;18670:78::-;;;;;;;;;;;;;:::i;16239:79::-;;;;;;;;;;;;;:::i;25218:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25218:119:0;-1:-1:-1;;;;;25218:119:0;;:::i;18025:189::-;;;:::i;18968:216::-;;;:::i;23601:149::-;;;:::i;16789:104::-;;;;;;;;;;;;;:::i;17479:79::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;17479:79:0;;;;;;;;;;;;;;24182:87;;;;;;;;;;;;;:::i;22541:154::-;;;:::i;22970:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22970:112:0;-1:-1:-1;;;;;22970:112:0;;:::i;16565:104::-;;;;;;;;;;;;;:::i;28193:308::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28193:308:0;;;;;;;;:::i;25550:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25550:173:0;;;;;;;;:::i;17149:114::-;;;;;;;;;;;;;:::i;21716:153::-;;;:::i;21558:150::-;;;:::i;16043:91::-;;;;;;;;;;;;;:::i;17271:108::-;;;;;;;;;;;;;:::i;16901:114::-;;;;;;;;;;;;;:::i;25786:149::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25786:149:0;;;;;;;;;;:::i;18222:::-;;;;;;;;;;;;;;;;-1:-1:-1;18222:149:0;-1:-1:-1;;;;;18222:149:0;;:::i;23090:245::-;;;;;;;;;;;;;;;;-1:-1:-1;23090:245:0;-1:-1:-1;;;;;23090:245:0;;:::i;20337:139::-;;;:::i;23980:83::-;24050:5;24043:12;;;;;;;-1:-1:-1;;24043:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24017:13;;24043:12;;24050:5;;24043:12;;24050:5;24043:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23980:83;:::o;26082:167::-;26165:4;26182:37;26191:10;26203:7;26212:6;26182:8;:37::i;:::-;-1:-1:-1;26237:4:0;26082:167;;;;:::o;21189:361::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;21270:17:::1;:15;:17::i;:::-;21262:52;;;::::0;;-1:-1:-1;;;21262:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21262:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21333:19:0;::::1;21325:53;;;::::0;;-1:-1:-1;;;21325:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21325:53:0;;;;;;;;;;;;;::::1;;21389:22;14957:1;21389:7;:22::i;:::-;21471:31;::::0;21439:21:::1;::::0;-1:-1:-1;;;;;21471:23:0;::::1;::::0;:31;::::1;;;::::0;21439:21;;21422:14:::1;21471:31:::0;21422:14;21471:31;21439:21;21471:23;:31;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;21518:24:0::1;::::0;;;;;;;-1:-1:-1;;;;;21518:24:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;17665:1;21189:361:::0;:::o;19967:201::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;20035:12:::1;:10;:12::i;:::-;20027:49;;;::::0;;-1:-1:-1;;;20027:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20027:49:0;;;;;;;;;;;;;::::1;;20087:22;14957:1;20087:7;:22::i;:::-;20120:40;185:1;20154:5;20120:8;:40::i;:::-;19967:201::o:0;25055:100::-;25135:12;;25055:100;:::o;23343:250::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;23425:17:::1;:15;:17::i;:::-;23417:59;;;::::0;;-1:-1:-1;;;23417:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23487:22;14957:1;23487:7;:22::i;:::-;-1:-1:-1::0;;;;;23520:19:0;::::1;23542:5;23520:19:::0;;;:10:::1;:19;::::0;;;;;:27;;-1:-1:-1;;23520:27:0::1;::::0;;23563:22;::::1;::::0;23542:5;23563:22:::1;23343:250:::0;:::o;23758:152::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;23824:22:::1;14957:1;23824:7;:22::i;:::-;23857:45;396:1;23896:5;23857:8;:45::i;26723:344::-:0;26863:4;26880:36;26890:6;26898:9;26909:6;26880:9;:36::i;:::-;26927:110;26936:6;26944:10;26956:80;26992:6;26956:80;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26956:19:0;;;;;;:11;:19;;;;;;;;26976:10;26956:31;;;;;;;;;:80;:35;:80::i;:::-;26927:8;:110::i;:::-;-1:-1:-1;27055:4:0;26723:344;;;;;:::o;19551:155::-;18801:7;;-1:-1:-1;;;18801:7:0;;;;18800:8;18792:43;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;;;;17606:6:::1;::::0;;;::::1;-1:-1:-1::0;;;;;17606:6:0::1;17616:10;17606:20;17598:56;;;::::0;;-1:-1:-1;;;17598:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;::::1;22310:223:::0;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;22408:15:::1;22433:13;-1:-1:-1::0;;;;;22426:31:0::1;;22466:4;22426:46;;;;;;;;;;;;;-1:-1:-1::0;;;;;22426:46:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;22426:46:0;;-1:-1:-1;22483:42:0::1;22495:13:::0;22510:5;22426:46;22483:11:::1;:42::i;:::-;17665:1;22310:223:::0;;:::o;24907:83::-;24973:9;;;;24907:83;:::o;17023:118::-;17126:6;;17073:4;;17097:36;;-1:-1:-1;;;17126:6:0;;;;17097:28;:36::i;:::-;17090:43;;17023:118;:::o;27476:214::-;27590:10;27564:4;27611:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;27611:32:0;;;;;;;;;;27564:4;;27581:79;;27602:7;;27611:48;;27648:10;27611:36;:48::i;19325:218::-;18904:7;;-1:-1:-1;;;18904:7:0;;;;18896:44;;;;;-1:-1:-1;;;18896:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17606:6:::1;::::0;;;::::1;-1:-1:-1::0;;;;;17606:6:0::1;17616:10;17606:20;17598:56;;;::::0;;-1:-1:-1;;;17598:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;::::1;;19399:12:::2;:10;:12::i;:::-;19391:49;;;::::0;;-1:-1:-1;;;19391:49:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19391:49:0;;;;;;;;;;;;;::::2;;19451:22;14957:1;19451:7;:22::i;:::-;19484:7;:15:::0;;-1:-1:-1;;;;19484:15:0::2;::::0;;19515:20:::2;::::0;;19524:10:::2;19515:20:::0;;;;::::2;::::0;;;;::::2;::::0;;::::2;19325:218::o:0;19714:245::-;18801:7;;19803:4;;-1:-1:-1;;;18801:7:0;;;;18800:8;18792:43;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;;;;17606:6:::1;::::0;;;::::1;-1:-1:-1::0;;;;;17606:6:0::1;17616:10;17606:20;17598:56;;;::::0;;-1:-1:-1;;;17598:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;::::1;;19828:12:::2;:10;:12::i;:::-;19820:49;;;::::0;;-1:-1:-1;;;19820:49:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19820:49:0;;;;;;;;;;;;;::::2;;19880:22;14957:1;19880:7;:22::i;:::-;19913:16;19919:2;19923:5;19913;:16::i;20176:153::-:0;18801:7;;-1:-1:-1;;;18801:7:0;;;;18800:8;18792:43;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;;;;20245:12:::1;:10;:12::i;:::-;20237:49;;;::::0;;-1:-1:-1;;;20237:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20297:24;20303:10;20315:5;20297;:24::i;:::-;20176:153:::0;:::o;16677:104::-;16766:6;;16720:4;;16744:29;;-1:-1:-1;;;16766:6:0;;;;16744:21;:29::i;21877:425::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;22030:19:::1;:17;:19::i;:::-;22022:56;;;::::0;;-1:-1:-1;;;22022:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;22097:19:0;::::1;22089:53;;;::::0;;-1:-1:-1;;;22089:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22089:53:0;;;;;;;;;;;;;::::1;;22153:22;14957:1;22153:7;:22::i;:::-;22188:49;-1:-1:-1::0;;;;;22188:34:0;::::1;22223:5:::0;22230:6;22188:34:::1;:49::i;:::-;22272:13;-1:-1:-1::0;;;;;22253:41:0::1;22265:5;-1:-1:-1::0;;;;;22253:41:0::1;;22287:6;22253:41;;;;;;;;;;;;;;;;;;21877:425:::0;;;:::o;20783:398::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;20877:17:::1;:15;:17::i;:::-;20869:52;;;::::0;;-1:-1:-1;;;20869:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20869:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;20940:19:0;::::1;20932:53;;;::::0;;-1:-1:-1;;;20932:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20932:53:0;;;;;;;;;;;;;::::1;;20996:22;14957:1;20996:7;:22::i;:::-;21047:21;21037:6;:31;;21029:62;;;::::0;;-1:-1:-1;;;21029:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21029:62:0;;;;;;;;;;;;;::::1;;21102:31;::::0;-1:-1:-1;;;;;21102:23:0;::::1;::::0;:31;::::1;;;::::0;21126:6;;21102:31:::1;::::0;;;21126:6;21102:23;:31;::::1;;;;;;;;;;;;;::::0;::::1;;;;22703:157:::0;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;22771:22:::1;14957:1;22771:7;:22::i;:::-;22804:48;343:1;22846:5;22804:8;:48::i;20484:142::-:0;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;20545:22:::1;14957:1;20545:7;:22::i;:::-;20578:40;233:1;20612:5;20578:8;:40::i;16142:89::-:0;16215:8;;;;;;;;16142:89::o;15425:610::-;15686:8;;;;;;;:13;15678:45;;;;;-1:-1:-1;;;15678:45:0;;;;;;;;;;;;-1:-1:-1;;;15678:45:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15742:23:0;;15734:55;;;;;-1:-1:-1;;;15734:55:0;;;;;;;;;;;;-1:-1:-1;;;15734:55:0;;;;;;;;;;;;;;;15802:8;:18;;-1:-1:-1;;15802:18:0;;;;;;;;;15831:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;15854:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;15881:9:0;:20;;-1:-1:-1;;15881:20:0;;;;;-1:-1:-1;;;;15912:14:0;-1:-1:-1;;;15912:14:0;;;;;;;15939:19;15949:8;15939:9;:19::i;:::-;15969:20;15981:7;15969:11;:20::i;:::-;16000:27;16006:8;16016:10;16000:5;:27::i;:::-;15425:610;;;;;;;;:::o;18670:78::-;18733:7;;-1:-1:-1;;;18733:7:0;;;;;18670:78::o;16239:79::-;16304:6;;-1:-1:-1;;;16304:6:0;;;;;16239:79::o;25218:119::-;-1:-1:-1;;;;;25311:18:0;25284:7;25311:18;;;;;;;;;;;;25218:119::o;18025:189::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;18098:22:::1;14957:1;18098:7;:22::i;:::-;18157:6;::::0;18136:40:::1;::::0;18173:1:::1;::::0;18157:6;;::::1;-1:-1:-1::0;;;;;18157:6:0::1;::::0;18136:40:::1;::::0;18173:1;;18136:40:::1;18187:6;:19:::0;;-1:-1:-1;;;;;;18187:19:0::1;::::0;;18025:189::o;18968:216::-;18801:7;;-1:-1:-1;;;18801:7:0;;;;18800:8;18792:43;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;;;;17606:6:::1;::::0;;;::::1;-1:-1:-1::0;;;;;17606:6:0::1;17616:10;17606:20;17598:56;;;::::0;;-1:-1:-1;;;17598:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;::::1;;19043:12:::2;:10;:12::i;:::-;19035:49;;;::::0;;-1:-1:-1;;;19035:49:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19035:49:0;;;;;;;;;;;;;::::2;;19095:22;14957:1;19095:7;:22::i;:::-;19128:7;:14:::0;;-1:-1:-1;;;;19128:14:0::2;-1:-1:-1::0;;;19128:14:0::2;::::0;;19158:18:::2;::::0;;19165:10:::2;19158:18:::0;;;;::::2;::::0;;;;::::2;::::0;;::::2;18968:216::o:0;23601:149::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;23665:22:::1;14957:1;23665:7;:22::i;:::-;23698:44;396:1;23737:4;23698:8;:44::i;16789:104::-:0;16878:6;;16832:4;;16856:29;;-1:-1:-1;;;16878:6:0;;;;16856:21;:29::i;17479:79::-;17544:6;;;;;-1:-1:-1;;;;;17544:6:0;;17479:79::o;24182:87::-;24254:7;24247:14;;;;;;;;-1:-1:-1;;24247:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24221:13;;24247:14;;24254:7;;24247:14;;24254:7;24247:14;;;;;;;;;;;;;;;;;;;;;;;;22541:154;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;22607:22:::1;14957:1;22607:7;:22::i;:::-;22640:47;343:1;22682:4;22640:8;:47::i;22970:112::-:0;-1:-1:-1;;;;;23055:19:0;23031:4;23055:19;;;:10;:19;;;;;;;;;22970:112::o;16565:104::-;16654:6;;16608:4;;16632:29;;-1:-1:-1;;;16654:6:0;;;;16632:21;:29::i;28193:308::-;28373:87;;;;;;;;;;;;;;;;;;;;28326:10;28286:4;28373:23;;;:11;:23;;;;;-1:-1:-1;;;;;28373:32:0;;;;;;;;;;;28286:4;;28303:168;;28326:10;;28351:7;;28373:87;;:32;28410:15;;28373:36;:87::i;25550:173::-;25636:4;25653:40;25663:10;25675:9;25686:6;25653:9;:40::i;17149:114::-;17248:6;;17197:4;;17221:34;;-1:-1:-1;;;17248:6:0;;;;17221:26;:34::i;21716:153::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;21782:22:::1;14957:1;21782:7;:22::i;:::-;21815:46;287:1;21855:5;21815:8;:46::i;21558:150::-:0;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;21622:22:::1;14957:1;21622:7;:22::i;:::-;21655:45;287:1;21695:4;21655:8;:45::i;16043:91::-:0;16086:7;16113:13;:11;:13::i;17271:108::-;17364:6;;17316:4;;17340:31;;-1:-1:-1;;;17364:6:0;;;;17340:23;:31::i;16901:114::-;17000:6;;16949:4;;16973:34;;-1:-1:-1;;;17000:6:0;;;;16973:26;:34::i;25786:149::-;-1:-1:-1;;;;;25901:17:0;;;25874:7;25901:17;;;:11;:17;;;;;;;;:26;;;;;;;;;;;;;25786:149::o;18222:::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;18311:22:::1;14957:1;18311:7;:22::i;:::-;18344:19;18354:8;18344:9;:19::i;23090:245::-:0;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;23170:17:::1;:15;:17::i;:::-;23162:59;;;::::0;;-1:-1:-1;;;23162:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23232:22;14957:1;23232:7;:22::i;:::-;-1:-1:-1::0;;;;;23265:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;:26;;-1:-1:-1;;23265:26:0::1;23287:4;23265:26;::::0;;23307:20;::::1;::::0;23265:19;23307:20:::1;23090:245:::0;:::o;20337:139::-;17606:6;;;;;-1:-1:-1;;;;;17606:6:0;17616:10;17606:20;17598:56;;;;;-1:-1:-1;;;17598:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17598:56:0;;;;;;;;;;;;;;;20396:22:::1;14957:1;20396:7;:22::i;:::-;20429:39;233:1;20463:4;20429:8;:39::i;1273:127::-:0;447:1;1358:24;1386:1;1357:30;1356:36;;;1273:127::o;3958:181::-;4016:7;4048:5;;;4072:6;;;;4064:46;;;;;-1:-1:-1;;;4064:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4130:1;3958:181;-1:-1:-1;;;3958:181:0:o;1133:132::-;396:1;1221:26;1251:1;1220:32;1219:38;;;1133:132::o;31374:362::-;-1:-1:-1;;;;;31509:18:0;;31501:60;;;;;-1:-1:-1;;;31501:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31580:21:0;;31572:61;;;;;-1:-1:-1;;;31572:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31646:17:0;;;;;;;:11;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;31697:31;;;;;;;;;;;;;;;;;31374:362;;;:::o;1631:81::-;1682:22;1690:7;;-1:-1:-1;;;;;;1690:7:0;1699:4;1682:7;:22::i;16326:231::-;16392:1;16388:162;;;16419:6;;;-1:-1:-1;;;16419:6:0;;;16429:20;16419:6;;;16436:1;16429:20;;;;16419:31;16410:40;;-1:-1:-1;;;;16410:40:0;;;;;;16388:162;;;16492:6;;;-1:-1:-1;;;;16483:55:0;;16523:1;16516:20;;;;;;;;16502:35;;-1:-1:-1;;;16492:6:0;;;;:46;;16483:55;;;;;;16388:162;16326:231;;:::o;28991:559::-;-1:-1:-1;;;;;29131:20:0;;29123:63;;;;;-1:-1:-1;;;29123:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29205:23:0;;29197:64;;;;;-1:-1:-1;;;29197:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29274:47;29295:6;29303:9;29314:6;29274:20;:47::i;:::-;29354:71;29376:6;29354:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29354:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29334:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29459:20;;;;;;;:32;;29484:6;29459:24;:32::i;:::-;-1:-1:-1;;;;;29436:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29507:35;;;;;;;29436:20;;29507:35;;;;;;;;;;;;;28991:559;;;:::o;4861:192::-;4947:7;4983:12;4975:6;;;;4967:29;;;;-1:-1:-1;;;4967:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5019:5:0;;;4861:192::o;988:137::-;343:1;1078:29;1111:1;1077:35;1076:41;;;988:137::o;29831:371::-;-1:-1:-1;;;;;29915:21:0;;29907:58;;;;;-1:-1:-1;;;29907:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29978:49;30007:1;30011:7;30020:6;29978:20;:49::i;:::-;30055:12;;:24;;30072:6;30055:16;:24::i;:::-;30040:12;:39;-1:-1:-1;;;;;30111:18:0;;:9;:18;;;;;;;;;;;:30;;30134:6;30111:22;:30::i;:::-;-1:-1:-1;;;;;30090:18:0;;:9;:18;;;;;;;;;;;:51;;;;30157:37;;;;;;;30090:18;;:9;;30157:37;;;;;;;;;;29831:371;;:::o;30534:404::-;-1:-1:-1;;;;;30618:21:0;;30610:60;;;;;-1:-1:-1;;;30610:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30683:49;30704:7;30721:1;30725:6;30683:20;:49::i;:::-;30766:61;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30766:18:0;;-1:-1:-1;30766:18:0;;;;;;;;;;;;:61;;30789:6;;30766:22;:61::i;:::-;-1:-1:-1;;;;;30745:18:0;;:9;:18;;;;;;;;;;:82;30853:12;;:24;;30870:6;30853:16;:24::i;:::-;30838:12;:39;30893:37;;;;;;;;30919:1;;-1:-1:-1;;;;;30893:37:0;;;;;;;;;;;;30534:404;;:::o;587:122::-;185:1;670:21;;;669:27;668:33;;;587:122::o;12797:211::-;12941:58;;;-1:-1:-1;;;;;12941:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12941:58:0;-1:-1:-1;;;12941:58:0;;;12914:86;;12934:5;;12914:19;:86::i;18379:207::-;-1:-1:-1;;;;;18444:22:0;;18436:60;;;;;-1:-1:-1;;;18436:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18533:6;;18512:38;;-1:-1:-1;;;;;18512:38:0;;;;18533:6;;;;;18512:38;;;;;18561:6;:17;;-1:-1:-1;;;;;18561:17:0;;;;;-1:-1:-1;;;;;;18561:17:0;;;;;;;;;18379:207::o;2898:211::-;2508:66;3073:18;3058:44::o;717:122::-;233:1;800:21;825:1;799:27;798:33;;;717:122::o;457:::-;565:1;539:27;538:33;;;457:122::o;2583:234::-;2508:66;2788:11;;2762:48::o;847:133::-;287:1;935:27;966:1;934:33;933:39;;;847:133::o;1720:546::-;1784:15;1802:13;:11;:13::i;:::-;1784:31;-1:-1:-1;;;;;;1830:32:0;;1826:71;;1879:7;;;1826:71;1907:21;1940:7;-1:-1:-1;;;;;1931:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1931:28:0;;-1:-1:-1;;;;;;1974:21:0;;1970:60;;2012:7;;;;1970:60;2054:52;;;-1:-1:-1;;;2054:52:0;;2088:4;2054:52;;;;;;;;;;-1:-1:-1;;;;;;2054:52:0;;;;;;;;2040:11;;-1:-1:-1;;;;;2054:25:0;;;;;:52;;;;;;;;;;;;;;;:25;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2054:52:0;;-1:-1:-1;2121:7:0;;2117:142;;2178:3;2153:21;:28;;2145:68;;;;;-1:-1:-1;;;2145:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2228:19;;-1:-1:-1;;;;;2228:14:0;;;:19;;;;;2243:3;;2228:19;;;;2243:3;2228:14;:19;;;;;;;;;;;;;;;;;;;;;2117:142;1720:546;;;;;:::o;32761:321::-;18801:7;;-1:-1:-1;;;18801:7:0;;;;18800:8;18792:43;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;-1:-1:-1;;;18792:43:0;;;;;;;;;;;;;;;32914:17:::1;:15;:17::i;:::-;32910:165;;;32957:19;32971:4;32957:13;:19::i;:::-;32956:20;32948:52;;;::::0;;-1:-1:-1;;;32948:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32948:52:0;;;;;;;;;;;;;::::1;;33024:17;33038:2;33024:13;:17::i;:::-;33023:18;33015:48;;;::::0;;-1:-1:-1;;;33015:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33015:48:0;;;;;;;;;;;;;::::1;4422:136:::0;4480:7;4507:43;4511:1;4514;4507:43;;;;;;;;;;;;;;;;;:3;:43::i;13655:1128::-;14260:27;14268:5;-1:-1:-1;;;;;14260:25:0;;:27::i;:::-;14252:71;;;;;-1:-1:-1;;;14252:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14397:12;14411:23;14446:5;-1:-1:-1;;;;;14438:19:0;14458:4;14438:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14438:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14396:67;;;;14482:7;14474:52;;;;;-1:-1:-1;;;14474:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14543:17;;:21;14539:237;;14698:10;14687:30;;;;;;;;;;;;;;;-1:-1:-1;14687:30:0;14679:85;;;;-1:-1:-1;;;14679:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13655:1128;;;;:::o;11571:651::-;12161:17;12206:8;;;11571:651::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://9b94fdb85acb638140dc483fcfdbbf0aeabfa189d6d23fb4f8894ab4e11572cf

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  ]
[ 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.