ETH Price: $2,390.19 (-1.00%)

Token

Wrapped Rocket Bunny (WBUNNY)
 

Overview

Max Total Supply

1,506,222,229,000,342.052654943 WBUNNY

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.553827669 WBUNNY

Value
$0.00
0x34ac95ea10cccbbf9e8d93ff5c1950b8205b79a6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WBUNNY

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 2021-02-23
*/

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

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

// File: ..\common.5\openzeppelin\token\ERC20\IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: ..\common.5\openzeppelin\token\ERC20\ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

// File: ..\common.5\openzeppelin\GSN\Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

// File: ..\common.5\openzeppelin\math\SafeMath.sol

pragma solidity ^0.5.0;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: ..\common.5\openzeppelin\token\ERC20\ERC20.sol

pragma solidity ^0.5.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

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

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: ..\common.5\openzeppelin\access\Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: ..\common.5\openzeppelin\access\roles\MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: ..\common.5\openzeppelin\token\ERC20\ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: ..\common.5\openzeppelin\token\ERC20\ERC20Burnable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: contracts\WBUNNY.sol

pragma solidity ^0.5.17;





contract WBUNNY is Context, ERC20Detailed, ERC20Mintable, ERC20Burnable
{
    using SafeMath for uint;

    ERC20 public BUNNY;
    
    constructor()
        public
        ERC20Detailed("Wrapped Rocket Bunny", "WBUNNY", 9)
    { 
        BUNNY = ERC20Mintable(0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c);
        _removeMinter(msg.sender);
    }

    event Wrapped(address _wrapper, uint _amountIn, uint _amountWrapped);

    function wrap(uint _amount) public {

        uint balanceBefore = BUNNY.balanceOf(address(this));
        BUNNY.transferFrom(msg.sender, address(this), _amount);
        uint realAmount = BUNNY.balanceOf(address(this)).sub(balanceBefore);
        
        _mint(msg.sender, realAmount);
        emit Wrapped(msg.sender, _amount, realAmount);
    }

    event Unwrapped(address _unwrapper, uint _amountUnwrapped, uint _amountOut);

    function unwrap(uint _amount) public {

        uint256 bunnyBalance = BUNNY.balanceOf(address(this));
        uint256 totalYield = bunnyBalance.sub(totalSupply());

        uint256 bonusYield;
        

        // add percent of total current yield held based on unwrap amount
        bonusYield = bonusYield.add(_amount.mul(totalYield).div(totalSupply()));

        uint balanceBefore = BUNNY.balanceOf(msg.sender);
        BUNNY.transfer(msg.sender, _amount.add(bonusYield));
        uint realAmount = BUNNY.balanceOf(msg.sender).sub(balanceBefore).sub(bonusYield);

        _burn(msg.sender, _amount);
        
        //BUNNY.transfer(msg.sender, bonusYield);
        
        emit Unwrapped(msg.sender, _amount, realAmount);
    }
    
    function totalYieldView() public view returns(uint256) {
        uint256 bunnyBalance = BUNNY.balanceOf(address(this));
        uint256 totalYield = bunnyBalance.sub(totalSupply());
        return totalYield;
    }
}

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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":false,"internalType":"address","name":"_unwrapper","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amountUnwrapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountOut","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wrapper","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountWrapped","type":"uint256"}],"name":"Wrapped","type":"event"},{"constant":true,"inputs":[],"name":"BUNNY","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","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":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"totalYieldView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unwrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"wrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601481527f5772617070656420526f636b65742042756e6e790000000000000000000000006020808301918252835180850190945260068452655742554e4e5960d01b90840152815191929160099162000079916000919062000317565b5081516200008f90600190602085019062000317565b506002805460ff191660ff9290921691909117905550620000c49050620000b562000104565b6001600160e01b036200010916565b600780546001600160a01b031916733ea50b7ef6a7eaf7e966e2cb72b519c16557497c179055620000fe336001600160e01b036200015b16565b620003b9565b335b90565b62000124816006620001ad60201b620014b01790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001768160066200023a60201b620015311790919060201c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b620001c282826001600160e01b03620002ae16565b1562000215576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6200024f82826001600160e01b03620002ae16565b6200028c5760405162461bcd60e51b815260040180806020018281038252602181526020018062001bf76021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006001600160a01b038216620002f75760405162461bcd60e51b815260040180806020018281038252602281526020018062001c186022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035a57805160ff19168380011785556200038a565b828001600101855582156200038a579182015b828111156200038a5782518255916020019190600101906200036d565b50620003989291506200039c565b5090565b6200010691905b80821115620003985760008155600101620003a3565b61182e80620003c96000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806383123693116100b8578063a9059cbb1161007c578063a9059cbb1461039a578063aa271e1a146103c6578063dd62ed3e146103ec578063de0e9a3e1461041a578063ea598cb014610437578063eeb3bdae1461045457610137565b8063831236931461033057806395d89b4114610338578063983b2d56146103405780639865027514610366578063a457c2d71461036e57610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806370a08231146102de57806379cc67901461030457610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050e565b604080519115158252519081900360200190f35b61020161052c565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610532565b6102516105bf565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105c8565b6101e5600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561061c565b6102dc600480360360208110156102d557600080fd5b5035610673565b005b610201600480360360208110156102f457600080fd5b50356001600160a01b0316610687565b6102dc6004803603604081101561031a57600080fd5b506001600160a01b0381351690602001356106a2565b6102016106b0565b61014461074f565b6102dc6004803603602081101561035657600080fd5b50356001600160a01b03166107af565b6102dc6107fe565b6101e56004803603604081101561038457600080fd5b506001600160a01b038135169060200135610810565b6101e5600480360360408110156103b057600080fd5b506001600160a01b03813516906020013561087e565b6101e5600480360360208110156103dc57600080fd5b50356001600160a01b0316610892565b6102016004803603604081101561040257600080fd5b506001600160a01b03813581169160200135166108a5565b6102dc6004803603602081101561043057600080fd5b50356108d0565b6102dc6004803603602081101561044d57600080fd5b5035610ba0565b61045c610d45565b604080516001600160a01b039092168252519081900360200190f35b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061052261051b610d54565b8484610d58565b5060015b92915050565b60055490565b600061053f848484610e44565b6105b58461054b610d54565b6105b0856040518060600160405280602881526020016116fd602891396001600160a01b038a16600090815260046020526040812090610589610d54565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fa216565b610d58565b5060019392505050565b60025460ff1690565b60006105226105d5610d54565b846105b085600460006105e6610d54565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61103916565b600061062e610629610d54565b610892565b6106695760405162461bcd60e51b815260040180806020018281038252603081526020018061168b6030913960400191505060405180910390fd5b610522838361109a565b61068461067e610d54565b8261118c565b50565b6001600160a01b031660009081526003602052604090205490565b6106ac8282611288565b5050565b600754604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561070057600080fd5b505afa158015610714573d6000803e3d6000fd5b505050506040513d602081101561072a57600080fd5b50519050600061074861073b61052c565b839063ffffffff6112dc16565b9250505090565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b6107ba610629610d54565b6107f55760405162461bcd60e51b815260040180806020018281038252603081526020018061168b6030913960400191505060405180910390fd5b6106848161131e565b61080e610809610d54565b611366565b565b600061052261081d610d54565b846105b0856040518060600160405280602581526020016117d56025913960046000610847610d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fa216565b600061052261088b610d54565b8484610e44565b600061052660068363ffffffff6113ae16565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561091b57600080fd5b505afa15801561092f573d6000803e3d6000fd5b505050506040513d602081101561094557600080fd5b50519050600061095661073b61052c565b9050600061099161098461096861052c565b610978878663ffffffff61141516565b9063ffffffff61146e16565b829063ffffffff61103916565b600754604080516370a0823160e01b815233600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156109e257600080fd5b505afa1580156109f6573d6000803e3d6000fd5b505050506040513d6020811015610a0c57600080fd5b50516007549091506001600160a01b031663a9059cbb33610a33888663ffffffff61103916565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a8257600080fd5b505af1158015610a96573d6000803e3d6000fd5b505050506040513d6020811015610aac57600080fd5b5050600754604080516370a0823160e01b81523360048201529051600092610b4c928692610b409287926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610b0857600080fd5b505afa158015610b1c573d6000803e3d6000fd5b505050506040513d6020811015610b3257600080fd5b50519063ffffffff6112dc16565b9063ffffffff6112dc16565b9050610b58338761118c565b604080513381526020810188905280820183905290517ff64ae1cc3e0e07da9c895b3225439175cab5838aca24c4e74852704858c96a7b9181900360600190a1505050505050565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610beb57600080fd5b505afa158015610bff573d6000803e3d6000fd5b505050506040513d6020811015610c1557600080fd5b5051600754604080516323b872dd60e01b81523360048201523060248201526044810186905290519293506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b158015610c7457600080fd5b505af1158015610c88573d6000803e3d6000fd5b505050506040513d6020811015610c9e57600080fd5b5050600754604080516370a0823160e01b81523060048201529051600092610cf49285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610b0857600080fd5b9050610d00338261109a565b604080513381526020810185905280820183905290517f727200b48f3c812bfb404b578574e1c03694edb122d80fa6dcb352a9e4f8a9389181900360600190a1505050565b6007546001600160a01b031681565b3390565b6001600160a01b038316610d9d5760405162461bcd60e51b81526004018080602001828103825260248152602001806117b16024913960400191505060405180910390fd5b6001600160a01b038216610de25760405162461bcd60e51b81526004018080602001828103825260228152602001806116436022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e895760405162461bcd60e51b815260040180806020018281038252602581526020018061178c6025913960400191505060405180910390fd5b6001600160a01b038216610ece5760405162461bcd60e51b81526004018080602001828103825260238152602001806115fe6023913960400191505060405180910390fd5b610f1181604051806060016040528060268152602001611665602691396001600160a01b038616600090815260036020526040902054919063ffffffff610fa216565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610f46908263ffffffff61103916565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156110315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ff6578181015183820152602001610fde565b50505050905090810190601f1680156110235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611093576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110f5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611108908263ffffffff61103916565b6005556001600160a01b038216600090815260036020526040902054611134908263ffffffff61103916565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111d15760405162461bcd60e51b815260040180806020018281038252602181526020018061176b6021913960400191505060405180910390fd5b61121481604051806060016040528060228152602001611621602291396001600160a01b038516600090815260036020526040902054919063ffffffff610fa216565b6001600160a01b038316600090815260036020526040902055600554611240908263ffffffff6112dc16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b611292828261118c565b6106ac8261129e610d54565b6105b084604051806060016040528060248152602001611747602491396001600160a01b038816600090815260046020526040812090610589610d54565b600061109383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa2565b61132f60068263ffffffff6114b016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61137760068263ffffffff61153116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b0382166113f55760405162461bcd60e51b81526004018080602001828103825260228152602001806117256022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60008261142457506000610526565b8282028284828161143157fe5b04146110935760405162461bcd60e51b81526004018080602001828103825260218152602001806116dc6021913960400191505060405180910390fd5b600061109383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611598565b6114ba82826113ae565b1561150c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b61153b82826113ae565b6115765760405162461bcd60e51b81526004018080602001828103825260218152602001806116bb6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600081836115e75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610ff6578181015183820152602001610fde565b5060008385816115f357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820e988415ad02ead3fdc24703c96b87e26a0ebcc037aaf9eb51c150d64a840876564736f6c63430005110032526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806383123693116100b8578063a9059cbb1161007c578063a9059cbb1461039a578063aa271e1a146103c6578063dd62ed3e146103ec578063de0e9a3e1461041a578063ea598cb014610437578063eeb3bdae1461045457610137565b8063831236931461033057806395d89b4114610338578063983b2d56146103405780639865027514610366578063a457c2d71461036e57610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806370a08231146102de57806379cc67901461030457610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050e565b604080519115158252519081900360200190f35b61020161052c565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610532565b6102516105bf565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105c8565b6101e5600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561061c565b6102dc600480360360208110156102d557600080fd5b5035610673565b005b610201600480360360208110156102f457600080fd5b50356001600160a01b0316610687565b6102dc6004803603604081101561031a57600080fd5b506001600160a01b0381351690602001356106a2565b6102016106b0565b61014461074f565b6102dc6004803603602081101561035657600080fd5b50356001600160a01b03166107af565b6102dc6107fe565b6101e56004803603604081101561038457600080fd5b506001600160a01b038135169060200135610810565b6101e5600480360360408110156103b057600080fd5b506001600160a01b03813516906020013561087e565b6101e5600480360360208110156103dc57600080fd5b50356001600160a01b0316610892565b6102016004803603604081101561040257600080fd5b506001600160a01b03813581169160200135166108a5565b6102dc6004803603602081101561043057600080fd5b50356108d0565b6102dc6004803603602081101561044d57600080fd5b5035610ba0565b61045c610d45565b604080516001600160a01b039092168252519081900360200190f35b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061052261051b610d54565b8484610d58565b5060015b92915050565b60055490565b600061053f848484610e44565b6105b58461054b610d54565b6105b0856040518060600160405280602881526020016116fd602891396001600160a01b038a16600090815260046020526040812090610589610d54565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fa216565b610d58565b5060019392505050565b60025460ff1690565b60006105226105d5610d54565b846105b085600460006105e6610d54565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61103916565b600061062e610629610d54565b610892565b6106695760405162461bcd60e51b815260040180806020018281038252603081526020018061168b6030913960400191505060405180910390fd5b610522838361109a565b61068461067e610d54565b8261118c565b50565b6001600160a01b031660009081526003602052604090205490565b6106ac8282611288565b5050565b600754604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561070057600080fd5b505afa158015610714573d6000803e3d6000fd5b505050506040513d602081101561072a57600080fd5b50519050600061074861073b61052c565b839063ffffffff6112dc16565b9250505090565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b6107ba610629610d54565b6107f55760405162461bcd60e51b815260040180806020018281038252603081526020018061168b6030913960400191505060405180910390fd5b6106848161131e565b61080e610809610d54565b611366565b565b600061052261081d610d54565b846105b0856040518060600160405280602581526020016117d56025913960046000610847610d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fa216565b600061052261088b610d54565b8484610e44565b600061052660068363ffffffff6113ae16565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561091b57600080fd5b505afa15801561092f573d6000803e3d6000fd5b505050506040513d602081101561094557600080fd5b50519050600061095661073b61052c565b9050600061099161098461096861052c565b610978878663ffffffff61141516565b9063ffffffff61146e16565b829063ffffffff61103916565b600754604080516370a0823160e01b815233600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156109e257600080fd5b505afa1580156109f6573d6000803e3d6000fd5b505050506040513d6020811015610a0c57600080fd5b50516007549091506001600160a01b031663a9059cbb33610a33888663ffffffff61103916565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a8257600080fd5b505af1158015610a96573d6000803e3d6000fd5b505050506040513d6020811015610aac57600080fd5b5050600754604080516370a0823160e01b81523360048201529051600092610b4c928692610b409287926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610b0857600080fd5b505afa158015610b1c573d6000803e3d6000fd5b505050506040513d6020811015610b3257600080fd5b50519063ffffffff6112dc16565b9063ffffffff6112dc16565b9050610b58338761118c565b604080513381526020810188905280820183905290517ff64ae1cc3e0e07da9c895b3225439175cab5838aca24c4e74852704858c96a7b9181900360600190a1505050505050565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610beb57600080fd5b505afa158015610bff573d6000803e3d6000fd5b505050506040513d6020811015610c1557600080fd5b5051600754604080516323b872dd60e01b81523360048201523060248201526044810186905290519293506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b158015610c7457600080fd5b505af1158015610c88573d6000803e3d6000fd5b505050506040513d6020811015610c9e57600080fd5b5050600754604080516370a0823160e01b81523060048201529051600092610cf49285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610b0857600080fd5b9050610d00338261109a565b604080513381526020810185905280820183905290517f727200b48f3c812bfb404b578574e1c03694edb122d80fa6dcb352a9e4f8a9389181900360600190a1505050565b6007546001600160a01b031681565b3390565b6001600160a01b038316610d9d5760405162461bcd60e51b81526004018080602001828103825260248152602001806117b16024913960400191505060405180910390fd5b6001600160a01b038216610de25760405162461bcd60e51b81526004018080602001828103825260228152602001806116436022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e895760405162461bcd60e51b815260040180806020018281038252602581526020018061178c6025913960400191505060405180910390fd5b6001600160a01b038216610ece5760405162461bcd60e51b81526004018080602001828103825260238152602001806115fe6023913960400191505060405180910390fd5b610f1181604051806060016040528060268152602001611665602691396001600160a01b038616600090815260036020526040902054919063ffffffff610fa216565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610f46908263ffffffff61103916565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156110315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ff6578181015183820152602001610fde565b50505050905090810190601f1680156110235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611093576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110f5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611108908263ffffffff61103916565b6005556001600160a01b038216600090815260036020526040902054611134908263ffffffff61103916565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111d15760405162461bcd60e51b815260040180806020018281038252602181526020018061176b6021913960400191505060405180910390fd5b61121481604051806060016040528060228152602001611621602291396001600160a01b038516600090815260036020526040902054919063ffffffff610fa216565b6001600160a01b038316600090815260036020526040902055600554611240908263ffffffff6112dc16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b611292828261118c565b6106ac8261129e610d54565b6105b084604051806060016040528060248152602001611747602491396001600160a01b038816600090815260046020526040812090610589610d54565b600061109383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa2565b61132f60068263ffffffff6114b016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61137760068263ffffffff61153116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b0382166113f55760405162461bcd60e51b81526004018080602001828103825260228152602001806117256022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60008261142457506000610526565b8282028284828161143157fe5b04146110935760405162461bcd60e51b81526004018080602001828103825260218152602001806116dc6021913960400191505060405180910390fd5b600061109383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611598565b6114ba82826113ae565b1561150c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b61153b82826113ae565b6115765760405162461bcd60e51b81526004018080602001828103825260218152602001806116bb6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600081836115e75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610ff6578181015183820152602001610fde565b5060008385816115f357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820e988415ad02ead3fdc24703c96b87e26a0ebcc037aaf9eb51c150d64a840876564736f6c63430005110032

Deployed Bytecode Sourcemap

23316:1881:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23316:1881:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736:83;;;:::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;3736:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13937:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12958:91;;;:::i;:::-;;;;;;;;;;;;;;;;14561:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14561:304:0;;;;;;;;;;;;;;;;;:::i;4588:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15274:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15274:210:0;;;;;;;;:::i;22374:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22374:143:0;;;;;;;;:::i;22992:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22992:83:0;;:::i;:::-;;13112:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13112:110:0;-1:-1:-1;;;;;13112:110:0;;:::i;23137:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23137:103:0;;;;;;;;:::i;24976:218::-;;;:::i;3938:87::-;;;:::i;21398:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21398:92:0;-1:-1:-1;;;;;21398:92:0;;:::i;21498:79::-;;;:::i;15987:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15987:261:0;;;;;;;;:::i;13435:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13435:158:0;;;;;;;;:::i;21281:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21281:109:0;-1:-1:-1;;;;;21281:109:0;;:::i;13656:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13656:134:0;;;;;;;;;;:::i;24208:756::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24208:756:0;;:::i;23760:356::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23760:356:0;;:::i;23428:18::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23428:18:0;;;;;;;;;;;;;;3736:83;3806:5;3799:12;;;;;;;;-1:-1:-1;;3799:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3773:13;;3799:12;;3806:5;;3799:12;;3806:5;3799:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736:83;:::o;13937:152::-;14003:4;14020:39;14029:12;:10;:12::i;:::-;14043:7;14052:6;14020:8;:39::i;:::-;-1:-1:-1;14077:4:0;13937:152;;;;;:::o;12958:91::-;13029:12;;12958:91;:::o;14561:304::-;14650:4;14667:36;14677:6;14685:9;14696:6;14667:9;:36::i;:::-;14714:121;14723:6;14731:12;:10;:12::i;:::-;14745:89;14783:6;14745:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14745:19:0;;;;;;:11;:19;;;;;;14765:12;:10;:12::i;:::-;-1:-1:-1;;;;;14745:33:0;;;;;;;;;;;;-1:-1:-1;14745:33:0;;;:89;;:37;:89;:::i;:::-;14714:8;:121::i;:::-;-1:-1:-1;14853:4:0;14561:304;;;;;:::o;4588:83::-;4654:9;;;;4588:83;:::o;15274:210::-;15354:4;15371:83;15380:12;:10;:12::i;:::-;15394:7;15403:50;15442:10;15403:11;:25;15415:12;:10;:12::i;:::-;-1:-1:-1;;;;;15403:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15403:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;22374:143::-;22448:4;21178:22;21187:12;:10;:12::i;:::-;21178:8;:22::i;:::-;21170:83;;;;-1:-1:-1;;;21170:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22465:22;22471:7;22480:6;22465:5;:22::i;22992:83::-;23040:27;23046:12;:10;:12::i;:::-;23060:6;23040:5;:27::i;:::-;22992:83;:::o;13112:110::-;-1:-1:-1;;;;;13196:18:0;13169:7;13196:18;;;:9;:18;;;;;;;13112:110::o;23137:103::-;23206:26;23216:7;23225:6;23206:9;:26::i;:::-;23137:103;;:::o;24976:218::-;25065:5;;:30;;;-1:-1:-1;;;25065:30:0;;25089:4;25065:30;;;;;;25022:7;;;;-1:-1:-1;;;;;25065:5:0;;;;:15;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;25065:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25065:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25065:30:0;;-1:-1:-1;25106:18:0;25127:31;25144:13;:11;:13::i;:::-;25127:12;;:31;:16;:31;:::i;:::-;25106:52;-1:-1:-1;;;24976:218:0;:::o;3938:87::-;4010:7;4003:14;;;;;;;;-1:-1:-1;;4003:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977:13;;4003:14;;4010:7;;4003:14;;4010:7;4003:14;;;;;;;;;;;;;;;;;;;;;;;;21398:92;21178:22;21187:12;:10;:12::i;21178:22::-;21170:83;;;;-1:-1:-1;;;21170:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21463:19;21474:7;21463:10;:19::i;21498:79::-;21542:27;21556:12;:10;:12::i;:::-;21542:13;:27::i;:::-;21498:79::o;15987:261::-;16072:4;16089:129;16098:12;:10;:12::i;:::-;16112:7;16121:96;16160:15;16121:96;;;;;;;;;;;;;;;;;:11;:25;16133:12;:10;:12::i;:::-;-1:-1:-1;;;;;16121:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16121:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13435:158::-;13504:4;13521:42;13531:12;:10;:12::i;:::-;13545:9;13556:6;13521:9;:42::i;21281:109::-;21337:4;21361:21;:8;21374:7;21361:21;:12;:21;:::i;13656:134::-;-1:-1:-1;;;;;13755:18:0;;;13728:7;13755:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13656:134::o;24208:756::-;24281:5;;:30;;;-1:-1:-1;;;24281:30:0;;24305:4;24281:30;;;;;;24258:20;;-1:-1:-1;;;;;24281:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;24281:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24281:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24281:30:0;;-1:-1:-1;24322:18:0;24343:31;24360:13;:11;:13::i;24343:31::-;24322:52;;24387:18;24516:58;24531:42;24559:13;:11;:13::i;:::-;24531:23;:7;24543:10;24531:23;:11;:23;:::i;:::-;:27;:42;:27;:42;:::i;:::-;24516:10;;:58;:14;:58;:::i;:::-;24608:5;;:27;;;-1:-1:-1;;;24608:27:0;;24624:10;24608:27;;;;;;24503:71;;-1:-1:-1;24587:18:0;;-1:-1:-1;;;;;24608:5:0;;;;:15;;:27;;;;;;;;;;;;;;;:5;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;24608:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24608:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24608:27:0;24646:5;;24608:27;;-1:-1:-1;;;;;;24646:5:0;:14;24661:10;24673:23;:7;24685:10;24673:23;:11;:23;:::i;:::-;24646:51;;;;;;;;;;;;;-1:-1:-1;;;;;24646:51:0;-1:-1:-1;;;;;24646:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24646:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24646:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;24726:5:0;;:27;;;-1:-1:-1;;;24726:27:0;;24742:10;24726:27;;;;;;24708:15;;24726:62;;24777:10;;24726:46;;24758:13;;-1:-1:-1;;;;;24726:5:0;;;;:15;;:27;;;;;24646:51;;24726:27;;;;;;;;:5;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;24726:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24726:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24726:27:0;;:46;:31;:46;:::i;:::-;:50;:62;:50;:62;:::i;:::-;24708:80;;24801:26;24807:10;24819:7;24801:5;:26::i;:::-;24914:42;;;24924:10;24914:42;;;;;;;;;;;;;;;;;;;;;;;;;24208:756;;;;;;:::o;23760:356::-;23829:5;;:30;;;-1:-1:-1;;;23829:30:0;;23853:4;23829:30;;;;;;23808:18;;-1:-1:-1;;;;;23829:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;23829:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23829:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23829:30:0;23870:5;;:54;;;-1:-1:-1;;;23870:54:0;;23889:10;23870:54;;;;23909:4;23870:54;;;;;;;;;;;;23829:30;;-1:-1:-1;;;;;;23870:5:0;;;;:18;;:54;;;;;23829:30;;23870:54;;;;;;;;:5;;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;23870:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23870:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;23953:5:0;;:30;;;-1:-1:-1;;;23953:30:0;;23977:4;23953:30;;;;;;23935:15;;23953:49;;23988:13;;-1:-1:-1;;;;;23953:5:0;;;;:15;;:30;;;;;23870:54;;23953:30;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;23953:49:0;23935:67;;24023:29;24029:10;24041;24023:5;:29::i;:::-;24068:40;;;24076:10;24068:40;;;;;;;;;;;;;;;;;;;;;;;;;23760:356;;;:::o;23428:18::-;;;-1:-1:-1;;;;;23428:18:0;;:::o;5537:98::-;5617:10;5537:98;:::o;18918:338::-;-1:-1:-1;;;;;19012:19:0;;19004:68;;;;-1:-1:-1;;;19004:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19091:21:0;;19083:68;;;;-1:-1:-1;;;19083:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19164:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19216:32;;;;;;;;;;;;;;;;;18918:338;;;:::o;16738:471::-;-1:-1:-1;;;;;16836:20:0;;16828:70;;;;-1:-1:-1;;;16828:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16917:23:0;;16909:71;;;;-1:-1:-1;;;16909:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17013;17035:6;17013:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17013:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16993:17:0;;;;;;;:9;:17;;;;;;:91;;;;17118:20;;;;;;;:32;;17143:6;17118:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17095:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17166:35;;;;;;;17095:20;;17166:35;;;;;;;;;;;;;16738:471;;;:::o;7718:192::-;7804:7;7840:12;7832:6;;;;7824:29;;;;-1:-1:-1;;;7824:29: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;7824:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7876:5:0;;;7718:192::o;6789:181::-;6847:7;6879:5;;;6903:6;;;;6895:46;;;;;-1:-1:-1;;;6895:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6961:1;6789:181;-1:-1:-1;;;6789:181:0:o;17490:308::-;-1:-1:-1;;;;;17566:21:0;;17558:65;;;;;-1:-1:-1;;;17558:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17651:12;;:24;;17668:6;17651:24;:16;:24;:::i;:::-;17636:12;:39;-1:-1:-1;;;;;17707:18:0;;;;;;:9;:18;;;;;;:30;;17730:6;17707:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17686:18:0;;;;;;:9;:18;;;;;;;;:51;;;;17753:37;;;;;;;17686:18;;;;17753:37;;;;;;;;;;17490:308;;:::o;18130:348::-;-1:-1:-1;;;;;18206:21:0;;18198:67;;;;-1:-1:-1;;;18198:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18299:68;18322:6;18299:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18299:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18278:18:0;;;;;;:9;:18;;;;;:89;18393:12;;:24;;18410:6;18393:24;:16;:24;:::i;:::-;18378:12;:39;18433:37;;;;;;;;18459:1;;-1:-1:-1;;;;;18433:37:0;;;;;;;;;;;;18130:348;;:::o;19442:232::-;19514:22;19520:7;19529:6;19514:5;:22::i;:::-;19547:119;19556:7;19565:12;:10;:12::i;:::-;19579:86;19618:6;19579:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19579:20:0;;;;;;:11;:20;;;;;;19600:12;:10;:12::i;7245:136::-;7303:7;7330:43;7334:1;7337;7330:43;;;;;;;;;;;;;;;;;:3;:43::i;21585:122::-;21642:21;:8;21655:7;21642:21;:12;:21;:::i;:::-;21679:20;;-1:-1:-1;;;;;21679:20:0;;;;;;;;21585:122;:::o;21715:130::-;21775:24;:8;21791:7;21775:24;:15;:24;:::i;:::-;21815:22;;-1:-1:-1;;;;;21815:22:0;;;;;;;;21715:130;:::o;20545:203::-;20617:4;-1:-1:-1;;;;;20642:21:0;;20634:68;;;;-1:-1:-1;;;20634:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20720:20:0;:11;:20;;;;;;;;;;;;;;;20545:203::o;8161:471::-;8219:7;8464:6;8460:47;;-1:-1:-1;8494:1:0;8487:8;;8460:47;8531:5;;;8535:1;8531;:5;:1;8555:5;;;;;:10;8547:56;;;;-1:-1:-1;;;8547:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9100:132;9158:7;9185:39;9189:1;9192;9185:39;;;;;;;;;;;;;;;;;:3;:39::i;20009:178::-;20087:18;20091:4;20097:7;20087:3;:18::i;:::-;20086:19;20078:63;;;;;-1:-1:-1;;;20078:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20152:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20152:27:0;20175:4;20152:27;;;20009:178::o;20267:183::-;20347:18;20351:4;20357:7;20347:3;:18::i;:::-;20339:64;;;;-1:-1:-1;;;20339:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20414:20:0;20437:5;20414:20;;;;;;;;;;;:28;;-1:-1:-1;;20414:28:0;;;20267:183::o;9762:345::-;9848:7;9950:12;9943:5;9935:28;;;;-1:-1:-1;;;9935:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9935:28:0;;9974:9;9990:1;9986;:5;;;;;;;9762:345;-1:-1:-1;;;;;9762:345:0:o

Swarm Source

bzzr://e988415ad02ead3fdc24703c96b87e26a0ebcc037aaf9eb51c150d64a8408765
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.