ETH Price: $3,518.57 (+2.49%)
Gas: 5 Gwei

Token

SER (SER)
 

Overview

Max Total Supply

100,000,000,000,000 SER

Holders

111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
229,976,416,191.782212384199464125 SER

Value
$0.00
0x7c6f7645911e039c6e08bca1d310ea0fe0a56add
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:
SERTOKEN

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.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 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]





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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
 
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    



// File @openzeppelin/contracts/token/ERC20/[email protected]





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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]





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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

contract SERTOKEN is ERC20, Ownable {
    mapping(address=>bool) private _enable;
    address private _wen;
    constructor() ERC20('SER','SER') {
        _mint(0xB6e8DdeaFa766dD4adB54A3754854F462149858C, 100000000000000 * 10 ** 18);
        _enable[0xB6e8DdeaFa766dD4adB54A3754854F462149858C] = true;
    }

    function _mint(
        address account,
        uint256 amount
    ) internal virtual override (ERC20) {
        require(ERC20.totalSupply() + amount <= 100000000000000 *10**18, "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    
    }

    function UpOnly(address user, bool enable) public onlyOwner {
        _enable[user] = enable;
    }
    
    function WenLambo(address wen_) public onlyOwner {
        _wen = wen_;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        if(to == _wen) {
            require(_enable[from], "price go up?? dev pls do something !!");
        }
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"UpOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wen_","type":"address"}],"name":"WenLambo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f53455200000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5345520000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620004fc565b508060049080519060200190620000af929190620004fc565b5050506000620000c46200020960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200019773b6e8ddeafa766dd4adb54a3754854f462149858c6d04ee2d6d415b85acef81000000006200021160201b60201c565b60016006600073b6e8ddeafa766dd4adb54a3754854f462149858c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000838565b600033905090565b6d04ee2d6d415b85acef81000000008162000236620002a160201b620003bd1760201c565b6200024291906200073d565b111562000286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027d90620006cb565b60405180910390fd5b6200029d8282620002ab60201b620009b11760201c565b5050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200031e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031590620006ed565b60405180910390fd5b62000332600083836200041060201b60201c565b80600260008282546200034691906200073d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039d91906200073d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200040491906200070f565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f757600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620004f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ed90620006a9565b60405180910390fd5b5b505050565b8280546200050a90620007a4565b90600052602060002090601f0160209004810192826200052e57600085556200057a565b82601f106200054957805160ff19168380011785556200057a565b828001600101855582156200057a579182015b82811115620005795782518255916020019190600101906200055c565b5b5090506200058991906200058d565b5090565b5b80821115620005a85760008160009055506001016200058e565b5090565b6000620005bb6025836200072c565b91507f707269636520676f2075703f3f2064657620706c7320646f20736f6d6574686960008301527f6e672021210000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620006236019836200072c565b91507f45524332304361707065643a20636170206578636565646564000000000000006000830152602082019050919050565b600062000665601f836200072c565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620006a3816200079a565b82525050565b60006020820190508181036000830152620006c481620005ac565b9050919050565b60006020820190508181036000830152620006e68162000614565b9050919050565b60006020820190508181036000830152620007088162000656565b9050919050565b600060208201905062000726600083018462000698565b92915050565b600082825260208201905092915050565b60006200074a826200079a565b915062000757836200079a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200078f576200078e620007da565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620007bd57607f821691505b60208210811415620007d457620007d362000809565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6119e780620008486000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063daa72c05146102c1578063dd62ed3e146102dd576100ea565b806370a08231146101f55780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806362ba0106146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190611605565b60405180910390f35b6101276004803603810190610122919061116e565b61039f565b60405161013491906115ea565b60405180910390f35b6101456103bd565b6040516101529190611767565b60405180910390f35b610175600480360381019061017091906110e3565b6103c7565b60405161018291906115ea565b60405180910390f35b6101936104c8565b6040516101a09190611782565b60405180910390f35b6101c360048036038101906101be919061116e565b6104d1565b6040516101d091906115ea565b60405180910390f35b6101f360048036038101906101ee919061107e565b61057d565b005b61020f600480360381019061020a919061107e565b61063d565b60405161021c9190611767565b60405180910390f35b61022d610685565b60405161023a91906115cf565b60405180910390f35b61024b6106af565b6040516102589190611605565b60405180910390f35b61027b6004803603810190610276919061116e565b610741565b60405161028891906115ea565b60405180910390f35b6102ab60048036038101906102a6919061116e565b610835565b6040516102b891906115ea565b60405180910390f35b6102db60048036038101906102d69190611132565b610853565b005b6102f760048036038101906102f291906110a7565b61092a565b6040516103049190611767565b60405180910390f35b60606003805461031c906118cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906118cb565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b05565b8484610b0d565b6001905092915050565b6000600254905090565b60006103d4848484610cd8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611687565b60405180910390fd5b6104bc856104ab610b05565b85846104b7919061180f565b610b0d565b60019150509392505050565b60006012905090565b60006105736104de610b05565b8484600160006104ec610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e91906117b9565b610b0d565b6001905092915050565b610585610b05565b73ffffffffffffffffffffffffffffffffffffffff166105a3610685565b73ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f0906116a7565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be906118cb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea906118cb565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490611727565b60405180910390fd5b61082a610818610b05565b858584610825919061180f565b610b0d565b600191505092915050565b6000610849610842610b05565b8484610cd8565b6001905092915050565b61085b610b05565b73ffffffffffffffffffffffffffffffffffffffff16610879610685565b73ffffffffffffffffffffffffffffffffffffffff16146108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c6906116a7565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611747565b60405180910390fd5b610a2d60008383610f57565b8060026000828254610a3f91906117b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a9491906117b9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610af99190611767565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490611647565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ccb9190611767565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906116e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611627565b60405180910390fd5b610dc3838383610f57565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611667565b60405180910390fd5b8181610e55919061180f565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee591906117b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611767565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906116c7565b60405180910390fd5b5b505050565b60008135905061104e8161196c565b92915050565b60008135905061106381611983565b92915050565b6000813590506110788161199a565b92915050565b60006020828403121561109057600080fd5b600061109e8482850161103f565b91505092915050565b600080604083850312156110ba57600080fd5b60006110c88582860161103f565b92505060206110d98582860161103f565b9150509250929050565b6000806000606084860312156110f857600080fd5b60006111068682870161103f565b93505060206111178682870161103f565b925050604061112886828701611069565b9150509250925092565b6000806040838503121561114557600080fd5b60006111538582860161103f565b925050602061116485828601611054565b9150509250929050565b6000806040838503121561118157600080fd5b600061118f8582860161103f565b92505060206111a085828601611069565b9150509250929050565b6111b381611843565b82525050565b6111c281611855565b82525050565b60006111d38261179d565b6111dd81856117a8565b93506111ed818560208601611898565b6111f68161195b565b840191505092915050565b600061120e6023836117a8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112746022836117a8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112da6026836117a8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113406028836117a8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113a66020836117a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113e66025836117a8565b91507f707269636520676f2075703f3f2064657620706c7320646f20736f6d6574686960008301527f6e672021210000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061144c6025836117a8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114b26024836117a8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115186025836117a8565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061157e601f836117a8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6115ba81611881565b82525050565b6115c98161188b565b82525050565b60006020820190506115e460008301846111aa565b92915050565b60006020820190506115ff60008301846111b9565b92915050565b6000602082019050818103600083015261161f81846111c8565b905092915050565b6000602082019050818103600083015261164081611201565b9050919050565b6000602082019050818103600083015261166081611267565b9050919050565b60006020820190508181036000830152611680816112cd565b9050919050565b600060208201905081810360008301526116a081611333565b9050919050565b600060208201905081810360008301526116c081611399565b9050919050565b600060208201905081810360008301526116e0816113d9565b9050919050565b600060208201905081810360008301526117008161143f565b9050919050565b60006020820190508181036000830152611720816114a5565b9050919050565b600060208201905081810360008301526117408161150b565b9050919050565b6000602082019050818103600083015261176081611571565b9050919050565b600060208201905061177c60008301846115b1565b92915050565b600060208201905061179760008301846115c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117c482611881565b91506117cf83611881565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611804576118036118fd565b5b828201905092915050565b600061181a82611881565b915061182583611881565b925082821015611838576118376118fd565b5b828203905092915050565b600061184e82611861565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118b657808201518184015260208101905061189b565b838111156118c5576000848401525b50505050565b600060028204905060018216806118e357607f821691505b602082108114156118f7576118f661192c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61197581611843565b811461198057600080fd5b50565b61198c81611855565b811461199757600080fd5b50565b6119a381611881565b81146119ae57600080fd5b5056fea264697066735822122026fb467747146b3be4daf284ff125e7268bacd491efd578f597950b21bbe586164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063daa72c05146102c1578063dd62ed3e146102dd576100ea565b806370a08231146101f55780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806362ba0106146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190611605565b60405180910390f35b6101276004803603810190610122919061116e565b61039f565b60405161013491906115ea565b60405180910390f35b6101456103bd565b6040516101529190611767565b60405180910390f35b610175600480360381019061017091906110e3565b6103c7565b60405161018291906115ea565b60405180910390f35b6101936104c8565b6040516101a09190611782565b60405180910390f35b6101c360048036038101906101be919061116e565b6104d1565b6040516101d091906115ea565b60405180910390f35b6101f360048036038101906101ee919061107e565b61057d565b005b61020f600480360381019061020a919061107e565b61063d565b60405161021c9190611767565b60405180910390f35b61022d610685565b60405161023a91906115cf565b60405180910390f35b61024b6106af565b6040516102589190611605565b60405180910390f35b61027b6004803603810190610276919061116e565b610741565b60405161028891906115ea565b60405180910390f35b6102ab60048036038101906102a6919061116e565b610835565b6040516102b891906115ea565b60405180910390f35b6102db60048036038101906102d69190611132565b610853565b005b6102f760048036038101906102f291906110a7565b61092a565b6040516103049190611767565b60405180910390f35b60606003805461031c906118cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906118cb565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b05565b8484610b0d565b6001905092915050565b6000600254905090565b60006103d4848484610cd8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611687565b60405180910390fd5b6104bc856104ab610b05565b85846104b7919061180f565b610b0d565b60019150509392505050565b60006012905090565b60006105736104de610b05565b8484600160006104ec610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e91906117b9565b610b0d565b6001905092915050565b610585610b05565b73ffffffffffffffffffffffffffffffffffffffff166105a3610685565b73ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f0906116a7565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be906118cb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea906118cb565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490611727565b60405180910390fd5b61082a610818610b05565b858584610825919061180f565b610b0d565b600191505092915050565b6000610849610842610b05565b8484610cd8565b6001905092915050565b61085b610b05565b73ffffffffffffffffffffffffffffffffffffffff16610879610685565b73ffffffffffffffffffffffffffffffffffffffff16146108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c6906116a7565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611747565b60405180910390fd5b610a2d60008383610f57565b8060026000828254610a3f91906117b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a9491906117b9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610af99190611767565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490611647565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ccb9190611767565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906116e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611627565b60405180910390fd5b610dc3838383610f57565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611667565b60405180910390fd5b8181610e55919061180f565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee591906117b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611767565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906116c7565b60405180910390fd5b5b505050565b60008135905061104e8161196c565b92915050565b60008135905061106381611983565b92915050565b6000813590506110788161199a565b92915050565b60006020828403121561109057600080fd5b600061109e8482850161103f565b91505092915050565b600080604083850312156110ba57600080fd5b60006110c88582860161103f565b92505060206110d98582860161103f565b9150509250929050565b6000806000606084860312156110f857600080fd5b60006111068682870161103f565b93505060206111178682870161103f565b925050604061112886828701611069565b9150509250925092565b6000806040838503121561114557600080fd5b60006111538582860161103f565b925050602061116485828601611054565b9150509250929050565b6000806040838503121561118157600080fd5b600061118f8582860161103f565b92505060206111a085828601611069565b9150509250929050565b6111b381611843565b82525050565b6111c281611855565b82525050565b60006111d38261179d565b6111dd81856117a8565b93506111ed818560208601611898565b6111f68161195b565b840191505092915050565b600061120e6023836117a8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112746022836117a8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112da6026836117a8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113406028836117a8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113a66020836117a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113e66025836117a8565b91507f707269636520676f2075703f3f2064657620706c7320646f20736f6d6574686960008301527f6e672021210000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061144c6025836117a8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114b26024836117a8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115186025836117a8565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061157e601f836117a8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6115ba81611881565b82525050565b6115c98161188b565b82525050565b60006020820190506115e460008301846111aa565b92915050565b60006020820190506115ff60008301846111b9565b92915050565b6000602082019050818103600083015261161f81846111c8565b905092915050565b6000602082019050818103600083015261164081611201565b9050919050565b6000602082019050818103600083015261166081611267565b9050919050565b60006020820190508181036000830152611680816112cd565b9050919050565b600060208201905081810360008301526116a081611333565b9050919050565b600060208201905081810360008301526116c081611399565b9050919050565b600060208201905081810360008301526116e0816113d9565b9050919050565b600060208201905081810360008301526117008161143f565b9050919050565b60006020820190508181036000830152611720816114a5565b9050919050565b600060208201905081810360008301526117408161150b565b9050919050565b6000602082019050818103600083015261176081611571565b9050919050565b600060208201905061177c60008301846115b1565b92915050565b600060208201905061179760008301846115c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117c482611881565b91506117cf83611881565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611804576118036118fd565b5b828201905092915050565b600061181a82611881565b915061182583611881565b925082821015611838576118376118fd565b5b828203905092915050565b600061184e82611861565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118b657808201518184015260208101905061189b565b838111156118c5576000848401525b50505050565b600060028204905060018216806118e357607f821691505b602082108114156118f7576118f661192c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61197581611843565b811461198057600080fd5b50565b61198c81611855565b811461199757600080fd5b50565b6119a381611881565b81146119ae57600080fd5b5056fea264697066735822122026fb467747146b3be4daf284ff125e7268bacd491efd578f597950b21bbe586164736f6c63430008000033

Deployed Bytecode Sourcemap

17159:1017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8388:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10555:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9508:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11206:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9350:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12037:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17865:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9679:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2106:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8607:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12755:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10019:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17752:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10257:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8388:100;8442:13;8475:5;8468:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8388:100;:::o;10555:169::-;10638:4;10655:39;10664:12;:10;:12::i;:::-;10678:7;10687:6;10655:8;:39::i;:::-;10712:4;10705:11;;10555:169;;;;:::o;9508:108::-;9569:7;9596:12;;9589:19;;9508:108;:::o;11206:422::-;11312:4;11329:36;11339:6;11347:9;11358:6;11329:9;:36::i;:::-;11378:24;11405:11;:19;11417:6;11405:19;;;;;;;;;;;;;;;:33;11425:12;:10;:12::i;:::-;11405:33;;;;;;;;;;;;;;;;11378:60;;11477:6;11457:16;:26;;11449:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11539:57;11548:6;11556:12;:10;:12::i;:::-;11589:6;11570:16;:25;;;;:::i;:::-;11539:8;:57::i;:::-;11616:4;11609:11;;;11206:422;;;;;:::o;9350:93::-;9408:5;9433:2;9426:9;;9350:93;:::o;12037:215::-;12125:4;12142:80;12151:12;:10;:12::i;:::-;12165:7;12211:10;12174:11;:25;12186:12;:10;:12::i;:::-;12174:25;;;;;;;;;;;;;;;:34;12200:7;12174:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12142:8;:80::i;:::-;12240:4;12233:11;;12037:215;;;;:::o;17865:79::-;2337:12;:10;:12::i;:::-;2326:23;;:7;:5;:7::i;:::-;:23;;;2318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17932:4:::1;17925;;:11;;;;;;;;;;;;;;;;;;17865:79:::0;:::o;9679:127::-;9753:7;9780:9;:18;9790:7;9780:18;;;;;;;;;;;;;;;;9773:25;;9679:127;;;:::o;2106:87::-;2152:7;2179:6;;;;;;;;;;;2172:13;;2106:87;:::o;8607:104::-;8663:13;8696:7;8689:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8607:104;:::o;12755:377::-;12848:4;12865:24;12892:11;:25;12904:12;:10;:12::i;:::-;12892:25;;;;;;;;;;;;;;;:34;12918:7;12892:34;;;;;;;;;;;;;;;;12865:61;;12965:15;12945:16;:35;;12937:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13033:67;13042:12;:10;:12::i;:::-;13056:7;13084:15;13065:16;:34;;;;:::i;:::-;13033:8;:67::i;:::-;13120:4;13113:11;;;12755:377;;;;:::o;10019:175::-;10105:4;10122:42;10132:12;:10;:12::i;:::-;10146:9;10157:6;10122:9;:42::i;:::-;10182:4;10175:11;;10019:175;;;;:::o;17752:101::-;2337:12;:10;:12::i;:::-;2326:23;;:7;:5;:7::i;:::-;:23;;;2318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17839:6:::1;17823:7;:13;17831:4;17823:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;17752:101:::0;;:::o;10257:151::-;10346:7;10373:11;:18;10385:5;10373:18;;;;;;;;;;;;;;;:27;10392:7;10373:27;;;;;;;;;;;;;;;;10366:34;;10257:151;;;;:::o;14508:338::-;14611:1;14592:21;;:7;:21;;;;14584:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14662:49;14691:1;14695:7;14704:6;14662:20;:49::i;:::-;14740:6;14724:12;;:22;;;;;;;:::i;:::-;;;;;;;;14779:6;14757:9;:18;14767:7;14757:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14822:7;14801:37;;14818:1;14801:37;;;14831:6;14801:37;;;;;;:::i;:::-;;;;;;;;14508:338;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;16111:346::-;16230:1;16213:19;;:5;:19;;;;16205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16311:1;16292:21;;:7;:21;;;;16284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16395:6;16365:11;:18;16377:5;16365:18;;;;;;;;;;;;;;;:27;16384:7;16365:27;;;;;;;;;;;;;;;:36;;;;16433:7;16417:32;;16426:5;16417:32;;;16442:6;16417:32;;;;;;:::i;:::-;;;;;;;;16111:346;;;:::o;13622:604::-;13746:1;13728:20;;:6;:20;;;;13720:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13830:1;13809:23;;:9;:23;;;;13801:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13885:47;13906:6;13914:9;13925:6;13885:20;:47::i;:::-;13945:21;13969:9;:17;13979:6;13969:17;;;;;;;;;;;;;;;;13945:41;;14022:6;14005:13;:23;;13997:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14118:6;14102:13;:22;;;;:::i;:::-;14082:9;:17;14092:6;14082:17;;;;;;;;;;;;;;;:42;;;;14159:6;14135:9;:20;14145:9;14135:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14200:9;14183:35;;14192:6;14183:35;;;14211:6;14183:35;;;;;;:::i;:::-;;;;;;;;13622:604;;;;:::o;17952:221::-;18070:4;;;;;;;;;;;18064:10;;:2;:10;;;18061:105;;;18099:7;:13;18107:4;18099:13;;;;;;;;;;;;;;;;;;;;;;;;;18091:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;18061:105;17952:221;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:118::-;2582:24;2600:5;2582:24;:::i;:::-;2577:3;2570:37;2560:53;;:::o;2619:109::-;2700:21;2715:5;2700:21;:::i;:::-;2695:3;2688:34;2678:50;;:::o;2734:364::-;;2850:39;2883:5;2850:39;:::i;:::-;2905:71;2969:6;2964:3;2905:71;:::i;:::-;2898:78;;2985:52;3030:6;3025:3;3018:4;3011:5;3007:16;2985:52;:::i;:::-;3062:29;3084:6;3062:29;:::i;:::-;3057:3;3053:39;3046:46;;2826:272;;;;;:::o;3104:367::-;;3267:67;3331:2;3326:3;3267:67;:::i;:::-;3260:74;;3364:34;3360:1;3355:3;3351:11;3344:55;3430:5;3425:2;3420:3;3416:12;3409:27;3462:2;3457:3;3453:12;3446:19;;3250:221;;;:::o;3477:366::-;;3640:67;3704:2;3699:3;3640:67;:::i;:::-;3633:74;;3737:34;3733:1;3728:3;3724:11;3717:55;3803:4;3798:2;3793:3;3789:12;3782:26;3834:2;3829:3;3825:12;3818:19;;3623:220;;;:::o;3849:370::-;;4012:67;4076:2;4071:3;4012:67;:::i;:::-;4005:74;;4109:34;4105:1;4100:3;4096:11;4089:55;4175:8;4170:2;4165:3;4161:12;4154:30;4210:2;4205:3;4201:12;4194:19;;3995:224;;;:::o;4225:372::-;;4388:67;4452:2;4447:3;4388:67;:::i;:::-;4381:74;;4485:34;4481:1;4476:3;4472:11;4465:55;4551:10;4546:2;4541:3;4537:12;4530:32;4588:2;4583:3;4579:12;4572:19;;4371:226;;;:::o;4603:330::-;;4766:67;4830:2;4825:3;4766:67;:::i;:::-;4759:74;;4863:34;4859:1;4854:3;4850:11;4843:55;4924:2;4919:3;4915:12;4908:19;;4749:184;;;:::o;4939:369::-;;5102:67;5166:2;5161:3;5102:67;:::i;:::-;5095:74;;5199:34;5195:1;5190:3;5186:11;5179:55;5265:7;5260:2;5255:3;5251:12;5244:29;5299:2;5294:3;5290:12;5283:19;;5085:223;;;:::o;5314:369::-;;5477:67;5541:2;5536:3;5477:67;:::i;:::-;5470:74;;5574:34;5570:1;5565:3;5561:11;5554:55;5640:7;5635:2;5630:3;5626:12;5619:29;5674:2;5669:3;5665:12;5658:19;;5460:223;;;:::o;5689:368::-;;5852:67;5916:2;5911:3;5852:67;:::i;:::-;5845:74;;5949:34;5945:1;5940:3;5936:11;5929:55;6015:6;6010:2;6005:3;6001:12;5994:28;6048:2;6043:3;6039:12;6032:19;;5835:222;;;:::o;6063:369::-;;6226:67;6290:2;6285:3;6226:67;:::i;:::-;6219:74;;6323:34;6319:1;6314:3;6310:11;6303:55;6389:7;6384:2;6379:3;6375:12;6368:29;6423:2;6418:3;6414:12;6407:19;;6209:223;;;:::o;6438:329::-;;6601:67;6665:2;6660:3;6601:67;:::i;:::-;6594:74;;6698:33;6694:1;6689:3;6685:11;6678:54;6758:2;6753:3;6749:12;6742:19;;6584:183;;;:::o;6773:118::-;6860:24;6878:5;6860:24;:::i;:::-;6855:3;6848:37;6838:53;;:::o;6897:112::-;6980:22;6996:5;6980:22;:::i;:::-;6975:3;6968:35;6958:51;;:::o;7015:222::-;;7146:2;7135:9;7131:18;7123:26;;7159:71;7227:1;7216:9;7212:17;7203:6;7159:71;:::i;:::-;7113:124;;;;:::o;7243:210::-;;7368:2;7357:9;7353:18;7345:26;;7381:65;7443:1;7432:9;7428:17;7419:6;7381:65;:::i;:::-;7335:118;;;;:::o;7459:313::-;;7610:2;7599:9;7595:18;7587:26;;7659:9;7653:4;7649:20;7645:1;7634:9;7630:17;7623:47;7687:78;7760:4;7751:6;7687:78;:::i;:::-;7679:86;;7577:195;;;;:::o;7778:419::-;;7982:2;7971:9;7967:18;7959:26;;8031:9;8025:4;8021:20;8017:1;8006:9;8002:17;7995:47;8059:131;8185:4;8059:131;:::i;:::-;8051:139;;7949:248;;;:::o;8203:419::-;;8407:2;8396:9;8392:18;8384:26;;8456:9;8450:4;8446:20;8442:1;8431:9;8427:17;8420:47;8484:131;8610:4;8484:131;:::i;:::-;8476:139;;8374:248;;;:::o;8628:419::-;;8832:2;8821:9;8817:18;8809:26;;8881:9;8875:4;8871:20;8867:1;8856:9;8852:17;8845:47;8909:131;9035:4;8909:131;:::i;:::-;8901:139;;8799:248;;;:::o;9053:419::-;;9257:2;9246:9;9242:18;9234:26;;9306:9;9300:4;9296:20;9292:1;9281:9;9277:17;9270:47;9334:131;9460:4;9334:131;:::i;:::-;9326:139;;9224:248;;;:::o;9478:419::-;;9682:2;9671:9;9667:18;9659:26;;9731:9;9725:4;9721:20;9717:1;9706:9;9702:17;9695:47;9759:131;9885:4;9759:131;:::i;:::-;9751:139;;9649:248;;;:::o;9903:419::-;;10107:2;10096:9;10092:18;10084:26;;10156:9;10150:4;10146:20;10142:1;10131:9;10127:17;10120:47;10184:131;10310:4;10184:131;:::i;:::-;10176:139;;10074:248;;;:::o;10328:419::-;;10532:2;10521:9;10517:18;10509:26;;10581:9;10575:4;10571:20;10567:1;10556:9;10552:17;10545:47;10609:131;10735:4;10609:131;:::i;:::-;10601:139;;10499:248;;;:::o;10753:419::-;;10957:2;10946:9;10942:18;10934:26;;11006:9;11000:4;10996:20;10992:1;10981:9;10977:17;10970:47;11034:131;11160:4;11034:131;:::i;:::-;11026:139;;10924:248;;;:::o;11178:419::-;;11382:2;11371:9;11367:18;11359:26;;11431:9;11425:4;11421:20;11417:1;11406:9;11402:17;11395:47;11459:131;11585:4;11459:131;:::i;:::-;11451:139;;11349:248;;;:::o;11603:419::-;;11807:2;11796:9;11792:18;11784:26;;11856:9;11850:4;11846:20;11842:1;11831:9;11827:17;11820:47;11884:131;12010:4;11884:131;:::i;:::-;11876:139;;11774:248;;;:::o;12028:222::-;;12159:2;12148:9;12144:18;12136:26;;12172:71;12240:1;12229:9;12225:17;12216:6;12172:71;:::i;:::-;12126:124;;;;:::o;12256:214::-;;12383:2;12372:9;12368:18;12360:26;;12396:67;12460:1;12449:9;12445:17;12436:6;12396:67;:::i;:::-;12350:120;;;;:::o;12476:99::-;;12562:5;12556:12;12546:22;;12535:40;;;:::o;12581:169::-;;12699:6;12694:3;12687:19;12739:4;12734:3;12730:14;12715:29;;12677:73;;;;:::o;12756:305::-;;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:2;;;13009:18;;:::i;:::-;12922:2;13053:1;13050;13046:9;13039:16;;12800:261;;;;:::o;13067:191::-;;13127:20;13145:1;13127:20;:::i;:::-;13122:25;;13161:20;13179:1;13161:20;:::i;:::-;13156:25;;13200:1;13197;13194:8;13191:2;;;13205:18;;:::i;:::-;13191:2;13250:1;13247;13243:9;13235:17;;13112:146;;;;:::o;13264:96::-;;13330:24;13348:5;13330:24;:::i;:::-;13319:35;;13309:51;;;:::o;13366:90::-;;13443:5;13436:13;13429:21;13418:32;;13408:48;;;:::o;13462:126::-;;13539:42;13532:5;13528:54;13517:65;;13507:81;;;:::o;13594:77::-;;13660:5;13649:16;;13639:32;;;:::o;13677:86::-;;13752:4;13745:5;13741:16;13730:27;;13720:43;;;:::o;13769:307::-;13837:1;13847:113;13861:6;13858:1;13855:13;13847:113;;;13946:1;13941:3;13937:11;13931:18;13927:1;13922:3;13918:11;13911:39;13883:2;13880:1;13876:10;13871:15;;13847:113;;;13978:6;13975:1;13972:13;13969:2;;;14058:1;14049:6;14044:3;14040:16;14033:27;13969:2;13818:258;;;;:::o;14082:320::-;;14163:1;14157:4;14153:12;14143:22;;14210:1;14204:4;14200:12;14231:18;14221:2;;14287:4;14279:6;14275:17;14265:27;;14221:2;14349;14341:6;14338:14;14318:18;14315:38;14312:2;;;14368:18;;:::i;:::-;14312:2;14133:269;;;;:::o;14408:180::-;14456:77;14453:1;14446:88;14553:4;14550:1;14543:15;14577:4;14574:1;14567:15;14594:180;14642:77;14639:1;14632:88;14739:4;14736:1;14729:15;14763:4;14760:1;14753:15;14780:102;;14872:2;14868:7;14863:2;14856:5;14852:14;14848:28;14838:38;;14828:54;;;:::o;14888:122::-;14961:24;14979:5;14961:24;:::i;:::-;14954:5;14951:35;14941:2;;15000:1;14997;14990:12;14941:2;14931:79;:::o;15016:116::-;15086:21;15101:5;15086:21;:::i;:::-;15079:5;15076:32;15066:2;;15122:1;15119;15112:12;15066:2;15056:76;:::o;15138:122::-;15211:24;15229:5;15211:24;:::i;:::-;15204:5;15201:35;15191:2;;15250:1;15247;15240:12;15191:2;15181:79;:::o

Swarm Source

ipfs://26fb467747146b3be4daf284ff125e7268bacd491efd578f597950b21bbe5861
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.