ETH Price: $2,674.64 (+1.35%)
Gas: 5 Gwei

Token

ZOMBIE.FINANCE (ZOMBIE)
 

Overview

Max Total Supply

154,234.90776782959349018 ZOMBIE

Holders

300 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: DAI-ZOMBIE
Balance
1,088.328276709555821898 ZOMBIE

Value
$0.00
0xc83e9d6bc93625863ffe8082c37ba6da81399c47
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The ZOMBIE token combines a simplified version of Ampleforth’s economic policy with YFI’s distribution mechanism, and PUBG’s poison circle mechanism.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZOMBIEDelegator

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-21
*/

/**
 *Submitted for verification at Etherscan.io on 2020-08-13
*/

/**
 *Submitted for verification at Etherscan.io on 2020-08-11
*/

pragma solidity 0.5.17;


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;
    }
}


contract YAMTokenStorage {

    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    /**
     * @notice Governor for this contract
     */
    address public gov;

    /**
     * @notice Pending governance for this contract
     */
    address public pendingGov;

    /**
     * @notice Approved rebaser for this contract
     */
    address public rebaser;

    /**
     * @notice Reserve address of YAM protocol
     */
    address public incentivizer;

    /**
     * @notice Total supply of YAMs
     */
    uint256 public totalSupply;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public yamsScalingFactor;
    /**
     * @notice Last rebase time
     */
    uint256 public lastScalingTime;
    /**
     * @notice game start
     */
    bool public gameStart;

    mapping (address => uint256) internal _yamBalances;

    mapping (address => mapping (address => uint256)) internal _allowedFragments;

    uint256 public initSupply;
    
    address[] public addressWhiteList;
}


contract YAMGovernanceStorage {
    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

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

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

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

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

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

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


contract YAMTokenInterface is YAMTokenStorage, YAMGovernanceStorage {

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

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

    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(uint256 epoch, uint256 prevYamsScalingFactor, uint256 newYamsScalingFactor);

    /*** Gov Events ***/

    /**
     * @notice Event emitted when pendingGov is changed
     */
    event NewPendingGov(address oldPendingGov, address newPendingGov);

    /**
     * @notice Event emitted when gov is changed
     */
    event NewGov(address oldGov, address newGov);

    /**
     * @notice Sets the rebaser contract
     */
    event NewRebaser(address oldRebaser, address newRebaser);

    /**
     * @notice Sets the incentivizer contract
     */
    event NewIncentivizer(address oldIncentivizer, address newIncentivizer);

    /* - ERC20 Events - */

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);

    // Public functions
    function transfer(address to, uint256 value) external returns(bool);
    function transferFrom(address from, address to, uint256 value) external returns(bool);
    function balanceOf(address who) external view returns(uint256);
    function balanceOfUnderlying(address who) external view returns(uint256);
    function allowance(address owner_, address spender) external view returns(uint256);
    function approve(address spender, uint256 value) external returns (bool);
    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
    function maxScalingFactor() external view returns (uint256);

    /* - Governance Functions - */
    function getPriorVotes(address account, uint blockNumber) external view returns (uint256);
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) external;
    function delegate(address delegatee) external;
    function delegates(address delegator) external view returns (address);
    function getCurrentVotes(address account) external view returns (uint256);

    /* - Permissioned/Governance functions - */
    function mint(address to, uint256 amount) external returns (bool);
    function rebase(uint256 epoch, uint256 indexDelta, bool positive) external returns (uint256);
    function _setRebaser(address rebaser_) external;
    function _setIncentivizer(address incentivizer_) external;
    function _setPendingGov(address pendingGov_) external;
    function _acceptGov() external;
}


contract YAMDelegationStorage {
    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

contract YAMDelegatorInterface is YAMDelegationStorage {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(address oldImplementation, address newImplementation);

    /**
     * @notice Called by the gov to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public;
}

contract ZOMBIEDelegator is YAMTokenInterface, YAMDelegatorInterface {
    // /**
    //  * @notice Construct a new YAM
    //  * @param name_ ERC-20 name of this token
    //  * @param symbol_ ERC-20 symbol of this token
    //  * @param decimals_ ERC-20 decimal precision of this token
    //  * @param initSupply_ Initial token amount
    //  * @param implementation_ The address of the implementation the contract delegates to
    //  * @param becomeImplementationData The encoded args for becomeImplementation
    //  */
    constructor(
        // string memory name_,
        // string memory symbol_,
        // uint8 decimals_,
        // uint256 initSupply_,
        // address implementation_,
        // bytes memory becomeImplementationData
    )
        public
    {


        // Creator of the contract is gov during initialization
        gov = msg.sender;

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(
            0xAEeC749ef06BDc879594F6d77D22eadB84E5d827,
            abi.encodeWithSignature(
                "initialize(string,string,uint8,address,uint256)",
                // name_,
                // symbol_,
                // decimals_,
                // msg.sender,
                // initSupply_
                "ZOMBIE.FINANCE",
                "ZOMBIE",
                18,
                msg.sender,
                306780000000000000000000
            )
        );

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(0xAEeC749ef06BDc879594F6d77D22eadB84E5d827, false, "");

    }

    /**
     * @notice Called by the gov to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public {
        require(msg.sender == gov, "YAMDelegator::_setImplementation: Caller must be gov");

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mint(address to, uint256 mintAmount)
        external
        returns (bool)
    {
        to; mintAmount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 amount)
        external
        returns (bool)
    {
        dst; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 amount
    )
        external
        returns (bool)
    {
        src; dst; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(
        address spender,
        uint256 amount
    )
        external
        returns (bool)
    {
        spender; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    )
        external
        returns (bool)
    {
        spender; addedValue; // Shh
        delegateAndReturn();
    }

    function maxScalingFactor()
        external
        view
        returns (uint256)
    {
        delegateToViewAndReturn();
    }

    function rebase(
        uint256 epoch,
        uint256 indexDelta,
        bool positive
    )
        external
        returns (uint256)
    {
        epoch; indexDelta; positive;
        delegateAndReturn();
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    )
        external
        returns (bool)
    {
        spender; subtractedValue; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(
        address owner,
        address spender
    )
        external
        view
        returns (uint256)
    {
        owner; spender; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param delegator The address of the account which has designated a delegate
     * @return Address of delegatee
     */
    function delegates(
        address delegator
    )
        external
        view
        returns (address)
    {
        delegator; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner)
        external
        view
        returns (uint256)
    {
        owner; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Currently unused. For future compatability
     * @param owner The address of the account to query
     * @return The number of underlying tokens owned by `owner`
     */
    function balanceOfUnderlying(address owner)
        external
        view
        returns (uint256)
    {
        owner; // Shh
        delegateToViewAndReturn();
    }

    /*** Gov Functions ***/

    /**
      * @notice Begins transfer of gov rights. The newPendingGov must call `_acceptGov` to finalize the transfer.
      * @dev Gov function to begin change of gov. The newPendingGov must call `_acceptGov` to finalize the transfer.
      * @param newPendingGov New pending gov.
      */
    function _setPendingGov(address newPendingGov)
        external
    {
        newPendingGov; // Shh
        delegateAndReturn();
    }

    function _setRebaser(address rebaser_)
        external
    {
        rebaser_; // Shh
        delegateAndReturn();
    }

    function _setIncentivizer(address incentivizer_)
        external
    {
        incentivizer_; // Shh
        delegateAndReturn();
    }

    /**
      * @notice Accepts transfer of gov rights. msg.sender must be pendingGov
      * @dev Gov function for pending gov to accept role and update gov
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _acceptGov()
        external
    {
        delegateAndReturn();
    }


    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        account; blockNumber;
        delegateToViewAndReturn();
    }

    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        delegatee; nonce; expiry; v; r; s;
        delegateAndReturn();
    }

    function delegate(address delegatee)
        external
    {
        delegatee;
        delegateAndReturn();
    }

    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        account;
        delegateToViewAndReturn();
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data));
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return abi.decode(returnData, (bytes));
    }

    function delegateToViewAndReturn() private view returns (bytes memory) {
        (bool success, ) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", msg.data));

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(add(free_mem_ptr, 0x40), returndatasize) }
        }
    }

    function delegateAndReturn() private returns (bytes memory) {
        (bool success, ) = implementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(free_mem_ptr, returndatasize) }
        }
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    function () external payable {
        require(msg.value == 0,"YAMDelegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        delegateAndReturn();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldIncentivizer","type":"address"},{"indexed":false,"internalType":"address","name":"newIncentivizer","type":"address"}],"name":"NewIncentivizer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRebaser","type":"address"},{"indexed":false,"internalType":"address","name":"newRebaser","type":"address"}],"name":"NewRebaser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevYamsScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newYamsScalingFactor","type":"uint256"}],"name":"Rebase","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"_acceptGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"incentivizer_","type":"address"}],"name":"_setIncentivizer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingGov","type":"address"}],"name":"_setPendingGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rebaser_","type":"address"}],"name":"_setRebaser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressWhiteList","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gameStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"incentivizer","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastScalingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaser","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"yamsScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060038054610100600160a81b03191633610100810291909117909155604080516012606482015260848101929092526940f693be61e61ff0000060a483015260a06024830152600e60c48301526d5a4f4d4249452e46494e414e434560901b60e483015260e060448301526006610104830152655a4f4d42494560d01b61012480840191909152815180840390910181526101449092019052602081018051636c94522160e01b6001600160e01b0391821617909152620000ea9173aeec749ef06bdc879594f6d77d22eadb84e5d827916200012816565b506200012273aeec749ef06bdc879594f6d77d22eadb84e5d827600060405180602001604052806000815250620001ef60201b60201c565b620003d0565b606060006060846001600160a01b0316846040518082805190602001908083835b602083106200016a5780518252601f19909201916020918201910162000149565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114620001cc576040519150601f19603f3d011682016040523d82523d6000602084013e620001d1565b606091505b50915091506000821415620001e7573d60208201fd5b949350505050565b60035461010090046001600160a01b031633146200023f5760405162461bcd60e51b8152600401808060200182810382526034815260200180620018296034913960400191505060405180910390fd5b811562000281576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b179091526200027f9190620003a616565b505b601380546001600160a01b038581166001600160a01b0319831617909255604051602060248201818152855160448401528551949093169362000357938693909283926064909201919085019080838360005b83811015620002ee578181015183820152602001620002d4565b50505050905090810190601f1680156200031c5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b17909152909350620003a616915050565b50601354604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b601354606090620003ca906001600160a01b0316836001600160e01b036200012816565b92915050565b61144980620003e06000396000f3fe6080604052600436106102675760003560e01c80635c60da1b1161014457806398dca210116100b6578063c3cda5201161007a578063c3cda5201461092c578063dd62ed3e14610980578063e7a324dc146109bb578063ec342ad0146109d0578063f1127ed8146109e5578063fa8f34551461078b57610267565b806398dca2101461078b578063a457c2d7146103ea578063a9059cbb146103ea578063b4b5ea5714610590578063b6fa85761461091757610267565b806373f03dff1161010857806373f03dff1461078b578063782d6fe1146108495780637af548c1146108825780637ecebe00146108ba57806395d89b41146108ed57806397d63f931461090257610267565b80635c60da1b146107be57806364dd48f5146107d35780636fc6407c146107e85780636fcfff45146107fd57806370a082311461059057610267565b8063313ce567116101dd5780634487152f116101a15780634487152f146105c35780634bda2e2014610674578063555bcc401461068b57806356a9fb8814610753578063587cde1e146107685780635c19a95c1461078b57610267565b8063313ce567146105505780633218b99d1461057b57806339509351146103ea5780633af9e6691461059057806340c10f19146103ea57610267565b806312d43a511161022f57806312d43a511461048f57806318160ddd146104a45780631e7f9f36146104b957806320606b70146104e357806323b872dd146104f8578063252408101461053b57610267565b806306fdde03146102af5780630933c1ed14610339578063095ea7b3146103ea57806311d3e6c41461043757806311fd8a831461045e575b34156102a45760405162461bcd60e51b81526004018080602001828103825260348152602001806113646034913960400191505060405180910390fd5b6102ac610a44565b50005b3480156102bb57600080fd5b506102c4610acc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b506102c46004803603602081101561035c57600080fd5b810190602081018135600160201b81111561037657600080fd5b82018360208201111561038857600080fd5b803590602001918460018302840111600160201b831117156103a957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b59945050505050565b3480156103f657600080fd5b506104236004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610b78565b604080519115158252519081900360200190f35b34801561044357600080fd5b5061044c610b89565b60408051918252519081900360200190f35b34801561046a57600080fd5b50610473610b97565b604080516001600160a01b039092168252519081900360200190f35b34801561049b57600080fd5b50610473610ba6565b3480156104b057600080fd5b5061044c610bba565b3480156104c557600080fd5b50610473600480360360208110156104dc57600080fd5b5035610bc0565b3480156104ef57600080fd5b5061044c610be7565b34801561050457600080fd5b506104236004803603606081101561051b57600080fd5b506001600160a01b03813581169160208101359091169060400135610c02565b34801561054757600080fd5b50610473610c14565b34801561055c57600080fd5b50610565610c23565b6040805160ff9092168252519081900360200190f35b34801561058757600080fd5b50610423610c2c565b34801561059c57600080fd5b5061044c600480360360208110156105b357600080fd5b50356001600160a01b0316610c35565b3480156105cf57600080fd5b506102c4600480360360208110156105e657600080fd5b810190602081018135600160201b81111561060057600080fd5b82018360208201111561061257600080fd5b803590602001918460018302840111600160201b8311171561063357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c45945050505050565b34801561068057600080fd5b50610689610e64565b005b34801561069757600080fd5b50610689600480360360608110156106ae57600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156106df57600080fd5b8201836020820111156106f157600080fd5b803590602001918460018302840111600160201b8311171561071257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e6f945050505050565b34801561075f57600080fd5b5061044c611012565b34801561077457600080fd5b50610473600480360360208110156105b357600080fd5b34801561079757600080fd5b50610689600480360360208110156107ae57600080fd5b50356001600160a01b0316611018565b3480156107ca57600080fd5b50610473611024565b3480156107df57600080fd5b5061044c611033565b3480156107f457600080fd5b50610473611041565b34801561080957600080fd5b506108306004803603602081101561082057600080fd5b50356001600160a01b0316611050565b6040805163ffffffff9092168252519081900360200190f35b34801561085557600080fd5b5061044c6004803603604081101561086c57600080fd5b506001600160a01b038135169060200135611068565b34801561088e57600080fd5b5061044c600480360360608110156108a557600080fd5b50803590602081013590604001351515610c02565b3480156108c657600080fd5b5061044c600480360360208110156108dd57600080fd5b50356001600160a01b0316611072565b3480156108f957600080fd5b506102c4611084565b34801561090e57600080fd5b5061044c6110dc565b34801561092357600080fd5b5061044c6110e2565b34801561093857600080fd5b50610689600480360360c081101561094f57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356110e8565b34801561098c57600080fd5b5061044c600480360360408110156109a357600080fd5b506001600160a01b0381358116916020013516611068565b3480156109c757600080fd5b5061044c6110f9565b3480156109dc57600080fd5b5061044c611114565b3480156109f157600080fd5b50610a2460048036036040811015610a0857600080fd5b5080356001600160a01b0316906020013563ffffffff16611120565b6040805163ffffffff909316835260208301919091528051918290030190f35b6013546040516060916000916001600160a01b0390911690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b505090506040513d6000823e818015610ac8573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b505050505081565b601354606090610b72906001600160a01b03168361114d565b92915050565b6000610b82610a44565b5092915050565b6000610b9361120f565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60075481565b600e8181548110610bcd57fe5b6000918252602090912001546001600160a01b0316905081565b60405180604361139882396043019050604051809103902081565b6000610c0c610a44565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b600a5460ff1681565b6000610c3f61120f565b50919050565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b83811015610c96578181015183820152602001610c7e565b50505050905090810190601f168015610cc35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b60208310610d1e5780518252601f199092019160209182019101610cff565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114610d7e576040519150601f19603f3d011682016040523d82523d6000602084013e610d83565b606091505b50915091506000821415610d98573d60208201fd5b808060200190516020811015610dad57600080fd5b8101908080516040519392919084600160201b821115610dcc57600080fd5b908301906020820185811115610de157600080fd5b8251600160201b811182820188101715610dfa57600080fd5b82525081516020918201929091019080838360005b83811015610e27578181015183820152602001610e0f565b50505050905090810190601f168015610e545780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b610e6c610a44565b50565b60035461010090046001600160a01b03163314610ebd5760405162461bcd60e51b81526004018080602001828103825260348152602001806113306034913960400191505060405180910390fd5b8115610ef7576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b179052610ef590610b59565b505b601380546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693610fc3938693909283926064909201919085019080838360005b83811015610f61578181015183820152602001610f49565b50505050905090810190601f168015610f8e5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610b59915050565b50601354604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b60095481565b611020610a44565b5050565b6013546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b60116020526000908152604090205463ffffffff1681565b6000610b8261120f565b60126020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b600d5481565b60085481565b6110f0610a44565b50505050505050565b60405180603a6113db8239603a019050604051809103902081565b670de0b6b3a764000081565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b0316846040518082805190602001908083835b6020831061118d5780518252601f19909201916020918201910161116e565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146111ed576040519150601f19603f3d011682016040523d82523d6000602084013e6111f2565b606091505b50915091506000821415611207573d60208201fd5b949350505050565b60606000306001600160a01b03166000366040516024018080602001828103825284848281815260200192508082843760008382015260408051601f909201601f1990811690940182810390940182529283526020810180516001600160e01b0316630933c1ed60e01b17815292518151919750955085945091925081905083835b602083106112b05780518252601f199092019160209182019101611291565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114611310576040519150601f19603f3d011682016040523d82523d6000602084013e611315565b606091505b505090506040513d6000823e818015610ac8573d60408301f3fe59414d44656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d75737420626520676f7659414d44656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742944656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929a265627a7a7231582098b8180d71104f4da1443f5b69e83099f6941e6cab91b03f353a85b2659be61464736f6c6343000511003259414d44656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d75737420626520676f76

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635c60da1b1161014457806398dca210116100b6578063c3cda5201161007a578063c3cda5201461092c578063dd62ed3e14610980578063e7a324dc146109bb578063ec342ad0146109d0578063f1127ed8146109e5578063fa8f34551461078b57610267565b806398dca2101461078b578063a457c2d7146103ea578063a9059cbb146103ea578063b4b5ea5714610590578063b6fa85761461091757610267565b806373f03dff1161010857806373f03dff1461078b578063782d6fe1146108495780637af548c1146108825780637ecebe00146108ba57806395d89b41146108ed57806397d63f931461090257610267565b80635c60da1b146107be57806364dd48f5146107d35780636fc6407c146107e85780636fcfff45146107fd57806370a082311461059057610267565b8063313ce567116101dd5780634487152f116101a15780634487152f146105c35780634bda2e2014610674578063555bcc401461068b57806356a9fb8814610753578063587cde1e146107685780635c19a95c1461078b57610267565b8063313ce567146105505780633218b99d1461057b57806339509351146103ea5780633af9e6691461059057806340c10f19146103ea57610267565b806312d43a511161022f57806312d43a511461048f57806318160ddd146104a45780631e7f9f36146104b957806320606b70146104e357806323b872dd146104f8578063252408101461053b57610267565b806306fdde03146102af5780630933c1ed14610339578063095ea7b3146103ea57806311d3e6c41461043757806311fd8a831461045e575b34156102a45760405162461bcd60e51b81526004018080602001828103825260348152602001806113646034913960400191505060405180910390fd5b6102ac610a44565b50005b3480156102bb57600080fd5b506102c4610acc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b506102c46004803603602081101561035c57600080fd5b810190602081018135600160201b81111561037657600080fd5b82018360208201111561038857600080fd5b803590602001918460018302840111600160201b831117156103a957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b59945050505050565b3480156103f657600080fd5b506104236004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610b78565b604080519115158252519081900360200190f35b34801561044357600080fd5b5061044c610b89565b60408051918252519081900360200190f35b34801561046a57600080fd5b50610473610b97565b604080516001600160a01b039092168252519081900360200190f35b34801561049b57600080fd5b50610473610ba6565b3480156104b057600080fd5b5061044c610bba565b3480156104c557600080fd5b50610473600480360360208110156104dc57600080fd5b5035610bc0565b3480156104ef57600080fd5b5061044c610be7565b34801561050457600080fd5b506104236004803603606081101561051b57600080fd5b506001600160a01b03813581169160208101359091169060400135610c02565b34801561054757600080fd5b50610473610c14565b34801561055c57600080fd5b50610565610c23565b6040805160ff9092168252519081900360200190f35b34801561058757600080fd5b50610423610c2c565b34801561059c57600080fd5b5061044c600480360360208110156105b357600080fd5b50356001600160a01b0316610c35565b3480156105cf57600080fd5b506102c4600480360360208110156105e657600080fd5b810190602081018135600160201b81111561060057600080fd5b82018360208201111561061257600080fd5b803590602001918460018302840111600160201b8311171561063357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c45945050505050565b34801561068057600080fd5b50610689610e64565b005b34801561069757600080fd5b50610689600480360360608110156106ae57600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156106df57600080fd5b8201836020820111156106f157600080fd5b803590602001918460018302840111600160201b8311171561071257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e6f945050505050565b34801561075f57600080fd5b5061044c611012565b34801561077457600080fd5b50610473600480360360208110156105b357600080fd5b34801561079757600080fd5b50610689600480360360208110156107ae57600080fd5b50356001600160a01b0316611018565b3480156107ca57600080fd5b50610473611024565b3480156107df57600080fd5b5061044c611033565b3480156107f457600080fd5b50610473611041565b34801561080957600080fd5b506108306004803603602081101561082057600080fd5b50356001600160a01b0316611050565b6040805163ffffffff9092168252519081900360200190f35b34801561085557600080fd5b5061044c6004803603604081101561086c57600080fd5b506001600160a01b038135169060200135611068565b34801561088e57600080fd5b5061044c600480360360608110156108a557600080fd5b50803590602081013590604001351515610c02565b3480156108c657600080fd5b5061044c600480360360208110156108dd57600080fd5b50356001600160a01b0316611072565b3480156108f957600080fd5b506102c4611084565b34801561090e57600080fd5b5061044c6110dc565b34801561092357600080fd5b5061044c6110e2565b34801561093857600080fd5b50610689600480360360c081101561094f57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356110e8565b34801561098c57600080fd5b5061044c600480360360408110156109a357600080fd5b506001600160a01b0381358116916020013516611068565b3480156109c757600080fd5b5061044c6110f9565b3480156109dc57600080fd5b5061044c611114565b3480156109f157600080fd5b50610a2460048036036040811015610a0857600080fd5b5080356001600160a01b0316906020013563ffffffff16611120565b6040805163ffffffff909316835260208301919091528051918290030190f35b6013546040516060916000916001600160a01b0390911690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b505090506040513d6000823e818015610ac8573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b505050505081565b601354606090610b72906001600160a01b03168361114d565b92915050565b6000610b82610a44565b5092915050565b6000610b9361120f565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60075481565b600e8181548110610bcd57fe5b6000918252602090912001546001600160a01b0316905081565b60405180604361139882396043019050604051809103902081565b6000610c0c610a44565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b600a5460ff1681565b6000610c3f61120f565b50919050565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b83811015610c96578181015183820152602001610c7e565b50505050905090810190601f168015610cc35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b60208310610d1e5780518252601f199092019160209182019101610cff565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114610d7e576040519150601f19603f3d011682016040523d82523d6000602084013e610d83565b606091505b50915091506000821415610d98573d60208201fd5b808060200190516020811015610dad57600080fd5b8101908080516040519392919084600160201b821115610dcc57600080fd5b908301906020820185811115610de157600080fd5b8251600160201b811182820188101715610dfa57600080fd5b82525081516020918201929091019080838360005b83811015610e27578181015183820152602001610e0f565b50505050905090810190601f168015610e545780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b610e6c610a44565b50565b60035461010090046001600160a01b03163314610ebd5760405162461bcd60e51b81526004018080602001828103825260348152602001806113306034913960400191505060405180910390fd5b8115610ef7576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b179052610ef590610b59565b505b601380546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693610fc3938693909283926064909201919085019080838360005b83811015610f61578181015183820152602001610f49565b50505050905090810190601f168015610f8e5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610b59915050565b50601354604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b60095481565b611020610a44565b5050565b6013546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b60116020526000908152604090205463ffffffff1681565b6000610b8261120f565b60126020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b600d5481565b60085481565b6110f0610a44565b50505050505050565b60405180603a6113db8239603a019050604051809103902081565b670de0b6b3a764000081565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b0316846040518082805190602001908083835b6020831061118d5780518252601f19909201916020918201910161116e565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146111ed576040519150601f19603f3d011682016040523d82523d6000602084013e6111f2565b606091505b50915091506000821415611207573d60208201fd5b949350505050565b60606000306001600160a01b03166000366040516024018080602001828103825284848281815260200192508082843760008382015260408051601f909201601f1990811690940182810390940182529283526020810180516001600160e01b0316630933c1ed60e01b17815292518151919750955085945091925081905083835b602083106112b05780518252601f199092019160209182019101611291565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114611310576040519150601f19603f3d011682016040523d82523d6000602084013e611315565b606091505b505090506040513d6000823e818015610ac8573d60408301f3fe59414d44656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d75737420626520676f7659414d44656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742944656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929a265627a7a7231582098b8180d71104f4da1443f5b69e83099f6941e6cab91b03f353a85b2659be61464736f6c63430005110032

Deployed Bytecode Sourcemap

11897:13238:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24955:9;:14;24947:78;;;;-1:-1:-1;;;24947:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25105:19;:17;:19::i;:::-;;11897:13238;5155:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5155:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5155:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22766:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22766:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22766:141:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;22766:141:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22766:141:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22766:141:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22766:141:0;;-1:-1:-1;22766:141:0;;-1:-1:-1;;;;;22766:141:0:i;16543:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16543:193:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16543:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;17328:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17328:136:0;;;:::i;:::-;;;;;;;;;;;;;;;;5643:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5643:22:0;;;:::i;:::-;;;;-1:-1:-1;;;;;5643:22:0;;;;;;;;;;;;;;5442:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5442:18:0;;;:::i;5831:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5831:26:0;;;:::i;6578:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6578:33:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6578:33:0;;:::i;7264:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7264:122:0;;;:::i;15856:217::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15856:217:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15856:217:0;;;;;;;;;;;;;;;;;:::i;5540:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5540:25:0;;;:::i;5351:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5351:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6366;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6366:21:0;;;:::i;19694:175::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19694:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19694:175:0;-1:-1:-1;;;;;19694:175:0;;:::i;23329:434::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23329:434:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23329:434:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;23329:434:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23329:434:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;23329:434:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23329:434:0;;-1:-1:-1;23329:434:0;;-1:-1:-1;;;;;23329:434:0:i;20897:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20897:83:0;;;:::i;:::-;;13968:638;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13968:638:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;13968:638:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;13968:638:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13968:638:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13968:638:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;13968:638:0;;-1:-1:-1;13968:638:0;;-1:-1:-1;;;;;13968:638:0:i;6284:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6284:30:0;;;:::i;18943:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18943:189:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;21467:118:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21467:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21467:118:0;-1:-1:-1;;;;;21467:118:0;;:::i;11124:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11124:29:0;;;:::i;5948:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5948:49:0;;;:::i;5740:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5740:27:0;;;:::i;7142:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7142:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7142:49:0;-1:-1:-1;;;;;7142:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;20990:197;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20990:197:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20990:197:0;;;;;;;;:::i;17472:226::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17472:226:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17472:226:0;;;;;;;;;;;;;;:::i;7678:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7678:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7678:39:0;-1:-1:-1;;;;;7678:39:0;;:::i;5251:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5251:20:0;;;:::i;6540:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6540:25:0;;;:::i;6194:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6194:32:0;;;:::i;21195:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21195:264:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;21195:264:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18511:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18511:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18511:216:0;;;;;;;;;;:::i;7480:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7480:117:0;;;:::i;6066:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6066:37:0;;;:::i;7003:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7003:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7003:70:0;;-1:-1:-1;;;;;7003:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;24285:427;24375:14;;:37;;24331:12;;24357;;-1:-1:-1;;;;;24375:14:0;;;;24357:12;;24403:8;;24375:37;24357:12;24403:8;;24357:12;24375:37;1:33:-1;24375:37:0;;45:16:-1;;;-1:-1;24375:37:0;;-1:-1:-1;24375:37:0;;-1:-1:-1;;24375:37:0;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;24356:56:0;;;24475:4;24469:11;24526:14;24523:1;24509:12;24494:47;24564:7;24585:47;;;;24677:14;24663:12;24656:36;24585:47;24615:14;24601:12;24594:36;5155:18;;;;;;;;;;;;;;;-1:-1:-1;;5155:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22766:141::-;22878:14;;22835:12;;22867:32;;-1:-1:-1;;;;;22878:14:0;22894:4;22867:10;:32::i;:::-;22860:39;22766:141;-1:-1:-1;;22766:141:0:o;16543:193::-;16654:4;16709:19;:17;:19::i;:::-;;16543:193;;;;:::o;17328:136::-;17406:7;17431:25;:23;:25::i;:::-;;17328:136;:::o;5643:22::-;;;-1:-1:-1;;;;;5643:22:0;;:::o;5442:18::-;;;;;;-1:-1:-1;;;;;5442:18:0;;:::o;5831:26::-;;;;:::o;6578:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6578:33:0;;-1:-1:-1;6578:33:0;:::o;7264:122::-;7306:80;;;;;;;;;;;;;;;;;;7264:122;:::o;15856:217::-;15990:4;16046:19;:17;:19::i;:::-;;15856:217;;;;;:::o;5540:25::-;;;-1:-1:-1;;;;;5540:25:0;;:::o;5351:21::-;;;;;;:::o;6366:::-;;;;;;:::o;19694:175::-;19788:7;19836:25;:23;:25::i;:::-;;19694:175;;;:::o;23329:434::-;23407:12;23433;23447:23;23482:4;-1:-1:-1;;;;;23474:24:0;23558:4;23499:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23499:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23499:64:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;23499:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;23474:90:0;;;;23499:64;;-1:-1:-1;23474:90:0;-1:-1:-1;23474:90:0;;-1:-1:-1;25:18;23474:90:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;23474:90:0;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;23432:132:0;;;;23614:1;23605:7;23602:14;23599:2;;;23666:14;23659:4;23647:10;23643:21;23636:45;23599:2;23735:10;23724:31;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23724:31:0;;;;;;;;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;23724:31:0;;420:4:-1;411:14;;;;23724:31:0;;;;;411:14:-1;23724:31:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23724:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23717:38;;;;23329:434;;;:::o;20897:83::-;20953:19;:17;:19::i;:::-;;20897:83::o;13968:638::-;14118:3;;;;;-1:-1:-1;;;;;14118:3:0;14104:10;:17;14096:82;;;;-1:-1:-1;;;14096:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14195:11;14191:120;;;14248:50;;;22:32:-1;6:49;;14248:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14223:76:0;;:24;:76::i;:::-;;14191:120;14351:14;;;-1:-1:-1;;;;;14376:32:0;;;-1:-1:-1;;;;;;14376:32:0;;;;;;14446:81;;;;;;;;;;;;;;;;;14351:14;;;;;14421:107;;14502:24;;14446:81;;;;;;;;;;;;;;;;14323:25;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14446:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14446:81:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;14446:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14446:81:0;-1:-1:-1;14421:24:0;;-1:-1:-1;;14421:107:0:i;:::-;-1:-1:-1;14583:14:0;;14546:52;;;-1:-1:-1;;;;;14546:52:0;;;;;14583:14;;;14546:52;;;;;;;;;;;;;;;;13968:638;;;;:::o;6284:30::-;;;;:::o;21467:118::-;21558:19;:17;:19::i;:::-;;21467:118;:::o;11124:29::-;;;-1:-1:-1;;;;;11124:29:0;;:::o;5948:49::-;5991:6;5948:49;:::o;5740:27::-;;;-1:-1:-1;;;;;5740:27:0;;:::o;7142:49::-;;;;;;;;;;;;;;;:::o;20990:197::-;21098:7;21154:25;:23;:25::i;7678:39::-;;;;;;;;;;;;;:::o;5251:20::-;;;;;;;;;;;;;;-1:-1:-1;;5251:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6540:25;;;;:::o;6194:32::-;;;;:::o;21195:264::-;21432:19;:17;:19::i;:::-;;21195:264;;;;;;:::o;7480:117::-;7526:71;;;;;;;;;;;;;;;;;;7480:117;:::o;6066:37::-;6097:6;6066:37;:::o;7003:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22121:343::-;22194:12;22220;22234:23;22261:6;-1:-1:-1;;;;;22261:19:0;22281:4;22261:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;22261:25:0;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;22219:67:0;;;;22336:1;22327:7;22324:14;22321:2;;;22388:14;22381:4;22369:10;22365:21;22358:45;22321:2;22446:10;22121:343;-1:-1:-1;;;;22121:343:0:o;23771:506::-;23828:12;23854;23880:4;-1:-1:-1;;;;;23872:24:0;23956:8;;23897:68;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;23897:68:0;;;137:4:-1;117:14;;;-1:-1;;113:30;;;157:16;;;26:21;;;22:32;;;6:49;;23897:68:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;23872:94:0;;;;23897:68;;-1:-1:-1;23872:94:0;-1:-1:-1;23872:94:0;;-1:-1:-1;25:18;;-1:-1;23872:94:0;;-1:-1:-1;23872:94:0;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;23872:94:0;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;23853:113:0;;;24029:4;24023:11;24080:14;24077:1;24063:12;24048:47;24118:7;24139:47;;;;24242:14;24235:4;24221:12;24217:23;24210:47

Swarm Source

bzzr://98b8180d71104f4da1443f5b69e83099f6941e6cab91b03f353a85b2659be614
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.