ETH Price: $3,376.24 (+0.26%)

Token

Rocket Token (RKTN)
 

Overview

Max Total Supply

54,080,840,414.786347471979714066 RKTN

Holders

244 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
SushiSwap: RKTN
Balance
105,780,166.564145112756536589 RKTN

Value
$0.00
0x100f11817cea2e065d6dc9a034ae32c5556802d9
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:
RocketToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

//pragma solidity ^0.8.0;

//import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)


//import "./IERC20.sol";
//import "./extensions/IERC20Metadata.sol";
//import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

contract RocketToken is ERC20
{
    address DevWallet = 0x30469c313972662f7E7Ac1fa49b0e4AD88786F15;
    // Constructor
    constructor() ERC20('Rocket Token', 'RKTN')  {
        _mint(msg.sender, 56400000000 * 10 **18);
    }

      function transfer(address recipient, uint256 amount) public virtual override returns (bool) 
    {
        uint256 singleFee = (amount / 100);     //Calculate 1% fee
        uint256 totalFee = singleFee * 5;       //Calculate total fee (5%)
        uint256 devFee = singleFee * 4;      //Calculate Dev Fee
        uint256 newAmmount = amount - totalFee; //Calc new amount
        if(_msgSender() == DevWallet)
        {
            _transfer(_msgSender(), recipient, amount);
        }
        else {
           _transfer(_msgSender(), DevWallet, devFee);
           _burn(_msgSender(), singleFee);
           _transfer(_msgSender(), recipient, newAmmount);
        }
        return true;
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool)
    {
        uint256 singleFee = (amount / 100);     //Calculate 1% fee
        uint256 totalFee = singleFee * 5;       //Calculate total fee (5%)
        uint256 devFee = singleFee * 4;      //Calculate Dev Fee
        uint256 newAmmount = amount - totalFee; //Calc new amount
        
        uint256 currentAllowance = allowance(sender,_msgSender());
        
        if (currentAllowance != type(uint256).max) 
        {
            require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
            
            unchecked
            {
                _approve(sender, _msgSender(), currentAllowance - amount);
            }
        }

        if(sender == DevWallet)
        {
            _transfer(sender, recipient, amount);
        }
        else 
        {           
            _transfer(sender, DevWallet, devFee);
            _burn(sender, singleFee);
            _transfer(sender, recipient, newAmmount);
        }     
        
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040527330469c313972662f7e7ac1fa49b0e4ad88786f15600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600c81526020017f526f636b657420546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600481526020017f524b544e000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000eb929190620002ae565b50806004908051906020019062000104929190620002ae565b50505062000125336bb63cfc8e68bc409e500000006200012b60201b60201c565b6200050a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200019e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019590620003bf565b60405180910390fd5b620001b260008383620002a460201b60201c565b8060026000828254620001c691906200041a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021d91906200041a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000284919062000488565b60405180910390a3620002a060008383620002a960201b60201c565b5050565b505050565b505050565b828054620002bc90620004d4565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620003a7601f836200035e565b9150620003b4826200036f565b602082019050919050565b60006020820190508181036000830152620003da8162000398565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200042782620003e1565b91506200043483620003e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200046c576200046b620003eb565b5b828201905092915050565b6200048281620003e1565b82525050565b60006020820190506200049f600083018462000477565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ed57607f821691505b60208210811415620005045762000503620004a5565b5b50919050565b61192e806200051a6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610fb0565b60405180910390f35b6100e660048036038101906100e1919061106b565b610308565b6040516100f391906110c6565b60405180910390f35b61010461032b565b60405161011191906110f0565b60405180910390f35b610134600480360381019061012f919061110b565b610335565b60405161014191906110c6565b60405180910390f35b6101526104c6565b60405161015f919061117a565b60405180910390f35b610182600480360381019061017d919061106b565b6104cf565b60405161018f91906110c6565b60405180910390f35b6101b260048036038101906101ad9190611195565b610579565b6040516101bf91906110f0565b60405180910390f35b6101d06105c1565b6040516101dd9190610fb0565b60405180910390f35b61020060048036038101906101fb919061106b565b610653565b60405161020d91906110c6565b60405180910390f35b610230600480360381019061022b919061106b565b61073d565b60405161023d91906110c6565b60405180910390f35b610260600480360381019061025b91906111c2565b61085b565b60405161026d91906110f0565b60405180910390f35b60606003805461028590611231565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611231565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000806103136108e2565b90506103208185856108ea565b600191505092915050565b6000600254905090565b60008060648361034591906112c1565b9050600060058261035691906112f2565b9050600060048361036791906112f2565b905060008286610377919061134c565b9050600061038c896103876108e2565b61085b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461040d57868110156103f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ef906113f2565b60405180910390fd5b61040c896104046108e2565b8984036108ea565b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614156104735761046e898989610ab5565b6104b6565b6104a089600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610ab5565b6104aa8986610d36565b6104b5898984610ab5565b5b6001955050505050509392505050565b60006012905090565b6000806104da6108e2565b905061056e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105699190611412565b6108ea565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105d090611231565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90611231565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b60008061065e6108e2565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b906114da565b60405180910390fd5b61073182868684036108ea565b60019250505092915050565b60008060648361074d91906112c1565b9050600060058261075e91906112f2565b9050600060048361076f91906112f2565b90506000828661077f919061134c565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107c26108e2565b73ffffffffffffffffffffffffffffffffffffffff1614156107f5576107f06107e96108e2565b8888610ab5565b61084d565b6108296108006108e2565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ab5565b61083a6108346108e2565b85610d36565b61084c6108456108e2565b8883610ab5565b5b600194505050505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109519061156c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906115fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa891906110f0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611722565b60405180910390fd5b610ba0838383610f0d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906117b4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb99190611412565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d1d91906110f0565b60405180910390a3610d30848484610f12565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90611846565b60405180910390fd5b610db282600083610f0d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f906118d8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e8f919061134c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ef491906110f0565b60405180910390a3610f0883600084610f12565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f51578082015181840152602081019050610f36565b83811115610f60576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f8282610f17565b610f8c8185610f22565b9350610f9c818560208601610f33565b610fa581610f66565b840191505092915050565b60006020820190508181036000830152610fca8184610f77565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100282610fd7565b9050919050565b61101281610ff7565b811461101d57600080fd5b50565b60008135905061102f81611009565b92915050565b6000819050919050565b61104881611035565b811461105357600080fd5b50565b6000813590506110658161103f565b92915050565b6000806040838503121561108257611081610fd2565b5b600061109085828601611020565b92505060206110a185828601611056565b9150509250929050565b60008115159050919050565b6110c0816110ab565b82525050565b60006020820190506110db60008301846110b7565b92915050565b6110ea81611035565b82525050565b600060208201905061110560008301846110e1565b92915050565b60008060006060848603121561112457611123610fd2565b5b600061113286828701611020565b935050602061114386828701611020565b925050604061115486828701611056565b9150509250925092565b600060ff82169050919050565b6111748161115e565b82525050565b600060208201905061118f600083018461116b565b92915050565b6000602082840312156111ab576111aa610fd2565b5b60006111b984828501611020565b91505092915050565b600080604083850312156111d9576111d8610fd2565b5b60006111e785828601611020565b92505060206111f885828601611020565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061124957607f821691505b6020821081141561125d5761125c611202565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112cc82611035565b91506112d783611035565b9250826112e7576112e6611263565b5b828204905092915050565b60006112fd82611035565b915061130883611035565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561134157611340611292565b5b828202905092915050565b600061135782611035565b915061136283611035565b92508282101561137557611374611292565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006113dc602883610f22565b91506113e782611380565b604082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b600061141d82611035565b915061142883611035565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561145d5761145c611292565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114c4602583610f22565b91506114cf82611468565b604082019050919050565b600060208201905081810360008301526114f3816114b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611556602483610f22565b9150611561826114fa565b604082019050919050565b6000602082019050818103600083015261158581611549565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e8602283610f22565b91506115f38261158c565b604082019050919050565b60006020820190508181036000830152611617816115db565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061167a602583610f22565b91506116858261161e565b604082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061170c602383610f22565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061179e602683610f22565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611830602183610f22565b915061183b826117d4565b604082019050919050565b6000602082019050818103600083015261185f81611823565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118c2602283610f22565b91506118cd82611866565b604082019050919050565b600060208201905081810360008301526118f1816118b5565b905091905056fea26469706673582212200f226b5aabf9194cde46e0b546c65fb634981ad8a8aa6ff37eb1625d88aee36964736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610fb0565b60405180910390f35b6100e660048036038101906100e1919061106b565b610308565b6040516100f391906110c6565b60405180910390f35b61010461032b565b60405161011191906110f0565b60405180910390f35b610134600480360381019061012f919061110b565b610335565b60405161014191906110c6565b60405180910390f35b6101526104c6565b60405161015f919061117a565b60405180910390f35b610182600480360381019061017d919061106b565b6104cf565b60405161018f91906110c6565b60405180910390f35b6101b260048036038101906101ad9190611195565b610579565b6040516101bf91906110f0565b60405180910390f35b6101d06105c1565b6040516101dd9190610fb0565b60405180910390f35b61020060048036038101906101fb919061106b565b610653565b60405161020d91906110c6565b60405180910390f35b610230600480360381019061022b919061106b565b61073d565b60405161023d91906110c6565b60405180910390f35b610260600480360381019061025b91906111c2565b61085b565b60405161026d91906110f0565b60405180910390f35b60606003805461028590611231565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611231565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000806103136108e2565b90506103208185856108ea565b600191505092915050565b6000600254905090565b60008060648361034591906112c1565b9050600060058261035691906112f2565b9050600060048361036791906112f2565b905060008286610377919061134c565b9050600061038c896103876108e2565b61085b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461040d57868110156103f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ef906113f2565b60405180910390fd5b61040c896104046108e2565b8984036108ea565b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614156104735761046e898989610ab5565b6104b6565b6104a089600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610ab5565b6104aa8986610d36565b6104b5898984610ab5565b5b6001955050505050509392505050565b60006012905090565b6000806104da6108e2565b905061056e818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105699190611412565b6108ea565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105d090611231565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90611231565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b60008061065e6108e2565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b906114da565b60405180910390fd5b61073182868684036108ea565b60019250505092915050565b60008060648361074d91906112c1565b9050600060058261075e91906112f2565b9050600060048361076f91906112f2565b90506000828661077f919061134c565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107c26108e2565b73ffffffffffffffffffffffffffffffffffffffff1614156107f5576107f06107e96108e2565b8888610ab5565b61084d565b6108296108006108e2565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ab5565b61083a6108346108e2565b85610d36565b61084c6108456108e2565b8883610ab5565b5b600194505050505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109519061156c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906115fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa891906110f0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611722565b60405180910390fd5b610ba0838383610f0d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906117b4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb99190611412565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d1d91906110f0565b60405180910390a3610d30848484610f12565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90611846565b60405180910390fd5b610db282600083610f0d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f906118d8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e8f919061134c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ef491906110f0565b60405180910390a3610f0883600084610f12565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f51578082015181840152602081019050610f36565b83811115610f60576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f8282610f17565b610f8c8185610f22565b9350610f9c818560208601610f33565b610fa581610f66565b840191505092915050565b60006020820190508181036000830152610fca8184610f77565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100282610fd7565b9050919050565b61101281610ff7565b811461101d57600080fd5b50565b60008135905061102f81611009565b92915050565b6000819050919050565b61104881611035565b811461105357600080fd5b50565b6000813590506110658161103f565b92915050565b6000806040838503121561108257611081610fd2565b5b600061109085828601611020565b92505060206110a185828601611056565b9150509250929050565b60008115159050919050565b6110c0816110ab565b82525050565b60006020820190506110db60008301846110b7565b92915050565b6110ea81611035565b82525050565b600060208201905061110560008301846110e1565b92915050565b60008060006060848603121561112457611123610fd2565b5b600061113286828701611020565b935050602061114386828701611020565b925050604061115486828701611056565b9150509250925092565b600060ff82169050919050565b6111748161115e565b82525050565b600060208201905061118f600083018461116b565b92915050565b6000602082840312156111ab576111aa610fd2565b5b60006111b984828501611020565b91505092915050565b600080604083850312156111d9576111d8610fd2565b5b60006111e785828601611020565b92505060206111f885828601611020565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061124957607f821691505b6020821081141561125d5761125c611202565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112cc82611035565b91506112d783611035565b9250826112e7576112e6611263565b5b828204905092915050565b60006112fd82611035565b915061130883611035565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561134157611340611292565b5b828202905092915050565b600061135782611035565b915061136283611035565b92508282101561137557611374611292565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006113dc602883610f22565b91506113e782611380565b604082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b600061141d82611035565b915061142883611035565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561145d5761145c611292565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114c4602583610f22565b91506114cf82611468565b604082019050919050565b600060208201905081810360008301526114f3816114b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611556602483610f22565b9150611561826114fa565b604082019050919050565b6000602082019050818103600083015261158581611549565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e8602283610f22565b91506115f38261158c565b604082019050919050565b60006020820190508181036000830152611617816115db565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061167a602583610f22565b91506116858261161e565b604082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061170c602383610f22565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061179e602683610f22565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611830602183610f22565b915061183b826117d4565b604082019050919050565b6000602082019050818103600083015261185f81611823565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118c2602283610f22565b91506118cd82611866565b604082019050919050565b600060208201905081810360008301526118f1816118b5565b905091905056fea26469706673582212200f226b5aabf9194cde46e0b546c65fb634981ad8a8aa6ff37eb1625d88aee36964736f6c634300080b0033

Deployed Bytecode Sourcemap

17317:2106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8869:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7638:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18280:1140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7480:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10354:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7809:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6737:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11097:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17558:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8398:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6518:100;6572:13;6605:5;6598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:100;:::o;8869:201::-;8952:4;8969:13;8985:12;:10;:12::i;:::-;8969:28;;9008:32;9017:5;9024:7;9033:6;9008:8;:32::i;:::-;9058:4;9051:11;;;8869:201;;;;:::o;7638:108::-;7699:7;7726:12;;7719:19;;7638:108;:::o;18280:1140::-;18386:4;18408:17;18438:3;18429:6;:12;;;;:::i;:::-;18408:34;;18476:16;18507:1;18495:9;:13;;;;:::i;:::-;18476:32;;18552:14;18581:1;18569:9;:13;;;;:::i;:::-;18552:30;;18618:18;18648:8;18639:6;:17;;;;:::i;:::-;18618:38;;18695:24;18722:30;18732:6;18739:12;:10;:12::i;:::-;18722:9;:30::i;:::-;18695:57;;18797:17;18777:16;:37;18773:302;;18869:6;18849:16;:26;;18841:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18991:57;19000:6;19008:12;:10;:12::i;:::-;19041:6;19022:16;:25;18991:8;:57::i;:::-;18773:302;19100:9;;;;;;;;;;;19090:19;;:6;:19;;;19087:289;;;19135:36;19145:6;19153:9;19164:6;19135:9;:36::i;:::-;19087:289;;;19234:36;19244:6;19252:9;;;;;;;;;;;19263:6;19234:9;:36::i;:::-;19285:24;19291:6;19299:9;19285:5;:24::i;:::-;19324:40;19334:6;19342:9;19353:10;19324:9;:40::i;:::-;19087:289;19408:4;19401:11;;;;;;;18280:1140;;;;;:::o;7480:93::-;7538:5;7563:2;7556:9;;7480:93;:::o;10354:240::-;10442:4;10459:13;10475:12;:10;:12::i;:::-;10459:28;;10498:66;10507:5;10514:7;10553:10;10523:11;:18;10535:5;10523:18;;;;;;;;;;;;;;;:27;10542:7;10523:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10498:8;:66::i;:::-;10582:4;10575:11;;;10354:240;;;;:::o;7809:127::-;7883:7;7910:9;:18;7920:7;7910:18;;;;;;;;;;;;;;;;7903:25;;7809:127;;;:::o;6737:104::-;6793:13;6826:7;6819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:104;:::o;11097:438::-;11190:4;11207:13;11223:12;:10;:12::i;:::-;11207:28;;11246:24;11273:11;:18;11285:5;11273:18;;;;;;;;;;;;;;;:27;11292:7;11273:27;;;;;;;;;;;;;;;;11246:54;;11339:15;11319:16;:35;;11311:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11432:60;11441:5;11448:7;11476:15;11457:16;:34;11432:8;:60::i;:::-;11523:4;11516:11;;;;11097:438;;;;:::o;17558:710::-;17644:4;17667:17;17697:3;17688:6;:12;;;;:::i;:::-;17667:34;;17735:16;17766:1;17754:9;:13;;;;:::i;:::-;17735:32;;17811:14;17840:1;17828:9;:13;;;;:::i;:::-;17811:30;;17877:18;17907:8;17898:6;:17;;;;:::i;:::-;17877:38;;17963:9;;;;;;;;;;;17947:25;;:12;:10;:12::i;:::-;:25;;;17944:295;;;17998:42;18008:12;:10;:12::i;:::-;18022:9;18033:6;17998:9;:42::i;:::-;17944:295;;;18081:42;18091:12;:10;:12::i;:::-;18105:9;;;;;;;;;;;18116:6;18081:9;:42::i;:::-;18137:30;18143:12;:10;:12::i;:::-;18157:9;18137:5;:30::i;:::-;18181:46;18191:12;:10;:12::i;:::-;18205:9;18216:10;18181:9;:46::i;:::-;17944:295;18256:4;18249:11;;;;;;17558:710;;;;:::o;8398:151::-;8487:7;8514:11;:18;8526:5;8514:18;;;;;;;;;;;;;;;:27;8533:7;8514:27;;;;;;;;;;;;;;;;8507:34;;8398:151;;;;:::o;660:98::-;713:7;740:10;733:17;;660:98;:::o;14733:380::-;14886:1;14869:19;;:5;:19;;;;14861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14967:1;14948:21;;:7;:21;;;;14940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15051:6;15021:11;:18;15033:5;15021:18;;;;;;;;;;;;;;;:27;15040:7;15021:27;;;;;;;;;;;;;;;:36;;;;15089:7;15073:32;;15082:5;15073:32;;;15098:6;15073:32;;;;;;:::i;:::-;;;;;;;;14733:380;;;:::o;12014:671::-;12161:1;12145:18;;:4;:18;;;;12137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12238:1;12224:16;;:2;:16;;;;12216:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12293:38;12314:4;12320:2;12324:6;12293:20;:38::i;:::-;12344:19;12366:9;:15;12376:4;12366:15;;;;;;;;;;;;;;;;12344:37;;12415:6;12400:11;:21;;12392:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12532:6;12518:11;:20;12500:9;:15;12510:4;12500:15;;;;;;;;;;;;;;;:38;;;;12577:6;12560:9;:13;12570:2;12560:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12616:2;12601:26;;12610:4;12601:26;;;12620:6;12601:26;;;;;;:::i;:::-;;;;;;;;12640:37;12660:4;12666:2;12670:6;12640:19;:37::i;:::-;12126:559;12014:671;;;:::o;13704:591::-;13807:1;13788:21;;:7;:21;;;;13780:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13860:49;13881:7;13898:1;13902:6;13860:20;:49::i;:::-;13922:22;13947:9;:18;13957:7;13947:18;;;;;;;;;;;;;;;;13922:43;;14002:6;13984:14;:24;;13976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14121:6;14104:14;:23;14083:9;:18;14093:7;14083:18;;;;;;;;;;;;;;;:44;;;;14165:6;14149:12;;:22;;;;;;;:::i;:::-;;;;;;;;14215:1;14189:37;;14198:7;14189:37;;;14219:6;14189:37;;;;;;:::i;:::-;;;;;;;;14239:48;14259:7;14276:1;14280:6;14239:19;:48::i;:::-;13769:526;13704:591;;:::o;16457:125::-;;;;:::o;17186:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:474::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5236:474;;;;;:::o;5716:180::-;5764:77;5761:1;5754:88;5861:4;5858:1;5851:15;5885:4;5882:1;5875:15;5902:320;5946:6;5983:1;5977:4;5973:12;5963:22;;6030:1;6024:4;6020:12;6051:18;6041:81;;6107:4;6099:6;6095:17;6085:27;;6041:81;6169:2;6161:6;6158:14;6138:18;6135:38;6132:84;;;6188:18;;:::i;:::-;6132:84;5953:269;5902:320;;;:::o;6228:180::-;6276:77;6273:1;6266:88;6373:4;6370:1;6363:15;6397:4;6394:1;6387:15;6414:180;6462:77;6459:1;6452:88;6559:4;6556:1;6549:15;6583:4;6580:1;6573:15;6600:185;6640:1;6657:20;6675:1;6657:20;:::i;:::-;6652:25;;6691:20;6709:1;6691:20;:::i;:::-;6686:25;;6730:1;6720:35;;6735:18;;:::i;:::-;6720:35;6777:1;6774;6770:9;6765:14;;6600:185;;;;:::o;6791:348::-;6831:7;6854:20;6872:1;6854:20;:::i;:::-;6849:25;;6888:20;6906:1;6888:20;:::i;:::-;6883:25;;7076:1;7008:66;7004:74;7001:1;6998:81;6993:1;6986:9;6979:17;6975:105;6972:131;;;7083:18;;:::i;:::-;6972:131;7131:1;7128;7124:9;7113:20;;6791:348;;;;:::o;7145:191::-;7185:4;7205:20;7223:1;7205:20;:::i;:::-;7200:25;;7239:20;7257:1;7239:20;:::i;:::-;7234:25;;7278:1;7275;7272:8;7269:34;;;7283:18;;:::i;:::-;7269:34;7328:1;7325;7321:9;7313:17;;7145:191;;;;:::o;7342:227::-;7482:34;7478:1;7470:6;7466:14;7459:58;7551:10;7546:2;7538:6;7534:15;7527:35;7342:227;:::o;7575:366::-;7717:3;7738:67;7802:2;7797:3;7738:67;:::i;:::-;7731:74;;7814:93;7903:3;7814:93;:::i;:::-;7932:2;7927:3;7923:12;7916:19;;7575:366;;;:::o;7947:419::-;8113:4;8151:2;8140:9;8136:18;8128:26;;8200:9;8194:4;8190:20;8186:1;8175:9;8171:17;8164:47;8228:131;8354:4;8228:131;:::i;:::-;8220:139;;7947:419;;;:::o;8372:305::-;8412:3;8431:20;8449:1;8431:20;:::i;:::-;8426:25;;8465:20;8483:1;8465:20;:::i;:::-;8460:25;;8619:1;8551:66;8547:74;8544:1;8541:81;8538:107;;;8625:18;;:::i;:::-;8538:107;8669:1;8666;8662:9;8655:16;;8372:305;;;;:::o;8683:224::-;8823:34;8819:1;8811:6;8807:14;8800:58;8892:7;8887:2;8879:6;8875:15;8868:32;8683:224;:::o;8913:366::-;9055:3;9076:67;9140:2;9135:3;9076:67;:::i;:::-;9069:74;;9152:93;9241:3;9152:93;:::i;:::-;9270:2;9265:3;9261:12;9254:19;;8913:366;;;:::o;9285:419::-;9451:4;9489:2;9478:9;9474:18;9466:26;;9538:9;9532:4;9528:20;9524:1;9513:9;9509:17;9502:47;9566:131;9692:4;9566:131;:::i;:::-;9558:139;;9285:419;;;:::o;9710:223::-;9850:34;9846:1;9838:6;9834:14;9827:58;9919:6;9914:2;9906:6;9902:15;9895:31;9710:223;:::o;9939:366::-;10081:3;10102:67;10166:2;10161:3;10102:67;:::i;:::-;10095:74;;10178:93;10267:3;10178:93;:::i;:::-;10296:2;10291:3;10287:12;10280:19;;9939:366;;;:::o;10311:419::-;10477:4;10515:2;10504:9;10500:18;10492:26;;10564:9;10558:4;10554:20;10550:1;10539:9;10535:17;10528:47;10592:131;10718:4;10592:131;:::i;:::-;10584:139;;10311:419;;;:::o;10736:221::-;10876:34;10872:1;10864:6;10860:14;10853:58;10945:4;10940:2;10932:6;10928:15;10921:29;10736:221;:::o;10963:366::-;11105:3;11126:67;11190:2;11185:3;11126:67;:::i;:::-;11119:74;;11202:93;11291:3;11202:93;:::i;:::-;11320:2;11315:3;11311:12;11304:19;;10963:366;;;:::o;11335:419::-;11501:4;11539:2;11528:9;11524:18;11516:26;;11588:9;11582:4;11578:20;11574:1;11563:9;11559:17;11552:47;11616:131;11742:4;11616:131;:::i;:::-;11608:139;;11335:419;;;:::o;11760:224::-;11900:34;11896:1;11888:6;11884:14;11877:58;11969:7;11964:2;11956:6;11952:15;11945:32;11760:224;:::o;11990:366::-;12132:3;12153:67;12217:2;12212:3;12153:67;:::i;:::-;12146:74;;12229:93;12318:3;12229:93;:::i;:::-;12347:2;12342:3;12338:12;12331:19;;11990:366;;;:::o;12362:419::-;12528:4;12566:2;12555:9;12551:18;12543:26;;12615:9;12609:4;12605:20;12601:1;12590:9;12586:17;12579:47;12643:131;12769:4;12643:131;:::i;:::-;12635:139;;12362:419;;;:::o;12787:222::-;12927:34;12923:1;12915:6;12911:14;12904:58;12996:5;12991:2;12983:6;12979:15;12972:30;12787:222;:::o;13015:366::-;13157:3;13178:67;13242:2;13237:3;13178:67;:::i;:::-;13171:74;;13254:93;13343:3;13254:93;:::i;:::-;13372:2;13367:3;13363:12;13356:19;;13015:366;;;:::o;13387:419::-;13553:4;13591:2;13580:9;13576:18;13568:26;;13640:9;13634:4;13630:20;13626:1;13615:9;13611:17;13604:47;13668:131;13794:4;13668:131;:::i;:::-;13660:139;;13387:419;;;:::o;13812:225::-;13952:34;13948:1;13940:6;13936:14;13929:58;14021:8;14016:2;14008:6;14004:15;13997:33;13812:225;:::o;14043:366::-;14185:3;14206:67;14270:2;14265:3;14206:67;:::i;:::-;14199:74;;14282:93;14371:3;14282:93;:::i;:::-;14400:2;14395:3;14391:12;14384:19;;14043:366;;;:::o;14415:419::-;14581:4;14619:2;14608:9;14604:18;14596:26;;14668:9;14662:4;14658:20;14654:1;14643:9;14639:17;14632:47;14696:131;14822:4;14696:131;:::i;:::-;14688:139;;14415:419;;;:::o;14840:220::-;14980:34;14976:1;14968:6;14964:14;14957:58;15049:3;15044:2;15036:6;15032:15;15025:28;14840:220;:::o;15066:366::-;15208:3;15229:67;15293:2;15288:3;15229:67;:::i;:::-;15222:74;;15305:93;15394:3;15305:93;:::i;:::-;15423:2;15418:3;15414:12;15407:19;;15066:366;;;:::o;15438:419::-;15604:4;15642:2;15631:9;15627:18;15619:26;;15691:9;15685:4;15681:20;15677:1;15666:9;15662:17;15655:47;15719:131;15845:4;15719:131;:::i;:::-;15711:139;;15438:419;;;:::o;15863:221::-;16003:34;15999:1;15991:6;15987:14;15980:58;16072:4;16067:2;16059:6;16055:15;16048:29;15863:221;:::o;16090:366::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:419::-;16628:4;16666:2;16655:9;16651:18;16643:26;;16715:9;16709:4;16705:20;16701:1;16690:9;16686:17;16679:47;16743:131;16869:4;16743:131;:::i;:::-;16735:139;;16462:419;;;:::o

Swarm Source

ipfs://0f226b5aabf9194cde46e0b546c65fb634981ad8a8aa6ff37eb1625d88aee369
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.