ETH Price: $3,094.39 (-4.31%)
 

Overview

Max Total Supply

20,000,000,000 SYBC

Holders

109

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
1,333 SYBC

Value
$0.00
0x97389b62028aaba112b3fe9667cec6f026f5e2fe
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:
SYBC

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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}.
 */
 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);
}

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);
}
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;
    }
}
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.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract SYBC is Context, IERC20, IERC20Metadata,Ownable {
    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 () {
        _name = "REAL ESTATE COINS";
        _symbol = "SYBC";
        _totalSupply = 20000000000 * (10**decimals());
        _balances[msg.sender] = _totalSupply;
    }

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

    /**
     * @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 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 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);
    }
    
    function mint(address account,uint256 amount) public onlyOwner {
        _mint(account,amount);
    }
    
    function burn(uint256 amount) public  {
        _burn(msg.sender,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 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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"renounceOwnership","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600062000024620001e060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280601181526020017f5245414c2045535441544520434f494e53000000000000000000000000000000815250600490805190602001906200010f929190620001f1565b506040518060400160405280600481526020017f5359424300000000000000000000000000000000000000000000000000000000815250600590805190602001906200015d929190620001f1565b506200016e620001e860201b60201c565b600a6200017c9190620002fc565b6404a817c8006200018e919062000439565b600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000552565b600033905090565b60006008905090565b828054620001ff90620004b1565b90600052602060002090601f0160209004810192826200022357600085556200026f565b82601f106200023e57805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026e57825182559160200191906001019062000251565b5b5090506200027e919062000282565b5090565b5b808211156200029d57600081600090555060010162000283565b5090565b6000808291508390505b6001851115620002f357808604811115620002cb57620002ca620004e7565b5b6001851615620002db5780820291505b8081029050620002eb8562000545565b9450620002ab565b94509492505050565b600062000309826200049a565b91506200031683620004a4565b9250620003457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200034d565b905092915050565b6000826200035f576001905062000432565b816200036f576000905062000432565b81600181146200038857600281146200039357620003c9565b600191505062000432565b60ff841115620003a857620003a7620004e7565b5b8360020a915084821115620003c257620003c1620004e7565b5b5062000432565b5060208310610133831016604e8410600b8410161715620004035782820a905083811115620003fd57620003fc620004e7565b5b62000432565b620004128484846001620002a1565b925090508184048111156200042c576200042b620004e7565b5b81810290505b9392505050565b600062000446826200049a565b915062000453836200049a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200048f576200048e620004e7565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620004ca57607f821691505b60208210811415620004e157620004e062000516565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611e5a80620005626000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116e7565b60405180910390f35b61013d60048036038101906101389190611433565b6103db565b60405161014a91906116cc565b60405180910390f35b61015b6103f9565b6040516101689190611889565b60405180910390f35b61018b600480360381019061018691906113e4565b610403565b60405161019891906116cc565b60405180910390f35b6101a9610504565b6040516101b691906118a4565b60405180910390f35b6101d960048036038101906101d49190611433565b61050d565b6040516101e691906116cc565b60405180910390f35b61020960048036038101906102049190611433565b6105b9565b005b6102256004803603810190610220919061146f565b610643565b005b610241600480360381019061023c919061137f565b610650565b60405161024e9190611889565b60405180910390f35b61025f610699565b005b6102696107d3565b60405161027691906116b1565b60405180910390f35b6102876107fc565b60405161029491906116e7565b60405180910390f35b6102b760048036038101906102b29190611433565b61088e565b6040516102c491906116cc565b60405180910390f35b6102e760048036038101906102e29190611433565b610982565b6040516102f491906116cc565b60405180910390f35b610317600480360381019061031291906113a8565b6109a0565b6040516103249190611889565b60405180910390f35b6103476004803603810190610342919061137f565b610a27565b005b606060048054610358906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119ed565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610bd0565b8484610bd8565b6001905092915050565b6000600354905090565b6000610410848484610da3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117a9565b60405180910390fd5b6104f8856104e7610bd0565b85846104f39190611931565b610bd8565b60019150509392505050565b60006008905090565b60006105af61051a610bd0565b848460026000610528610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118db565b610bd8565b6001905092915050565b6105c1610bd0565b73ffffffffffffffffffffffffffffffffffffffff166105df6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117c9565b60405180910390fd5b61063f8282611025565b5050565b61064d338261117a565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a1610bd0565b73ffffffffffffffffffffffffffffffffffffffff166106bf6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906117c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461080b906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610837906119ed565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b6000806002600061089d610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611849565b60405180910390fd5b610977610965610bd0565b8585846109729190611931565b610bd8565b600191505092915050565b600061099661098f610bd0565b8484610da3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a2f610bd0565b73ffffffffffffffffffffffffffffffffffffffff16610a4d6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a906117c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611749565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90611829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611769565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d969190611889565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90611709565b60405180910390fd5b610e8e838383611350565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611789565b60405180910390fd5b8181610f219190611931565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb391906118db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110179190611889565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90611869565b60405180910390fd5b6110a160008383611350565b80600360008282546110b391906118db565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461110991906118db565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161116e9190611889565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e1906117e9565b60405180910390fd5b6111f682600083611350565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490611729565b60405180910390fd5b81816112899190611931565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112de9190611931565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113439190611889565b60405180910390a3505050565b505050565b60008135905061136481611df6565b92915050565b60008135905061137981611e0d565b92915050565b60006020828403121561139157600080fd5b600061139f84828501611355565b91505092915050565b600080604083850312156113bb57600080fd5b60006113c985828601611355565b92505060206113da85828601611355565b9150509250929050565b6000806000606084860312156113f957600080fd5b600061140786828701611355565b935050602061141886828701611355565b92505060406114298682870161136a565b9150509250925092565b6000806040838503121561144657600080fd5b600061145485828601611355565b92505060206114658582860161136a565b9150509250929050565b60006020828403121561148157600080fd5b600061148f8482850161136a565b91505092915050565b6114a181611965565b82525050565b6114b081611977565b82525050565b60006114c1826118bf565b6114cb81856118ca565b93506114db8185602086016119ba565b6114e481611a7d565b840191505092915050565b60006114fc6023836118ca565b915061150782611a8e565b604082019050919050565b600061151f6022836118ca565b915061152a82611add565b604082019050919050565b60006115426026836118ca565b915061154d82611b2c565b604082019050919050565b60006115656022836118ca565b915061157082611b7b565b604082019050919050565b60006115886026836118ca565b915061159382611bca565b604082019050919050565b60006115ab6028836118ca565b91506115b682611c19565b604082019050919050565b60006115ce6020836118ca565b91506115d982611c68565b602082019050919050565b60006115f16021836118ca565b91506115fc82611c91565b604082019050919050565b60006116146025836118ca565b915061161f82611ce0565b604082019050919050565b60006116376024836118ca565b915061164282611d2f565b604082019050919050565b600061165a6025836118ca565b915061166582611d7e565b604082019050919050565b600061167d601f836118ca565b915061168882611dcd565b602082019050919050565b61169c816119a3565b82525050565b6116ab816119ad565b82525050565b60006020820190506116c66000830184611498565b92915050565b60006020820190506116e160008301846114a7565b92915050565b6000602082019050818103600083015261170181846114b6565b905092915050565b60006020820190508181036000830152611722816114ef565b9050919050565b6000602082019050818103600083015261174281611512565b9050919050565b6000602082019050818103600083015261176281611535565b9050919050565b6000602082019050818103600083015261178281611558565b9050919050565b600060208201905081810360008301526117a28161157b565b9050919050565b600060208201905081810360008301526117c28161159e565b9050919050565b600060208201905081810360008301526117e2816115c1565b9050919050565b60006020820190508181036000830152611802816115e4565b9050919050565b6000602082019050818103600083015261182281611607565b9050919050565b600060208201905081810360008301526118428161162a565b9050919050565b600060208201905081810360008301526118628161164d565b9050919050565b6000602082019050818103600083015261188281611670565b9050919050565b600060208201905061189e6000830184611693565b92915050565b60006020820190506118b960008301846116a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118e6826119a3565b91506118f1836119a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192657611925611a1f565b5b828201905092915050565b600061193c826119a3565b9150611947836119a3565b92508282101561195a57611959611a1f565b5b828203905092915050565b600061197082611983565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119d85780820151818401526020810190506119bd565b838111156119e7576000848401525b50505050565b60006002820490506001821680611a0557607f821691505b60208210811415611a1957611a18611a4e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611dff81611965565b8114611e0a57600080fd5b50565b611e16816119a3565b8114611e2157600080fd5b5056fea264697066735822122060194ea243cc885e8bc31f89723dd770bd9ab2e6944971ad1182f4a7324dd36564736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116e7565b60405180910390f35b61013d60048036038101906101389190611433565b6103db565b60405161014a91906116cc565b60405180910390f35b61015b6103f9565b6040516101689190611889565b60405180910390f35b61018b600480360381019061018691906113e4565b610403565b60405161019891906116cc565b60405180910390f35b6101a9610504565b6040516101b691906118a4565b60405180910390f35b6101d960048036038101906101d49190611433565b61050d565b6040516101e691906116cc565b60405180910390f35b61020960048036038101906102049190611433565b6105b9565b005b6102256004803603810190610220919061146f565b610643565b005b610241600480360381019061023c919061137f565b610650565b60405161024e9190611889565b60405180910390f35b61025f610699565b005b6102696107d3565b60405161027691906116b1565b60405180910390f35b6102876107fc565b60405161029491906116e7565b60405180910390f35b6102b760048036038101906102b29190611433565b61088e565b6040516102c491906116cc565b60405180910390f35b6102e760048036038101906102e29190611433565b610982565b6040516102f491906116cc565b60405180910390f35b610317600480360381019061031291906113a8565b6109a0565b6040516103249190611889565b60405180910390f35b6103476004803603810190610342919061137f565b610a27565b005b606060048054610358906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119ed565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610bd0565b8484610bd8565b6001905092915050565b6000600354905090565b6000610410848484610da3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117a9565b60405180910390fd5b6104f8856104e7610bd0565b85846104f39190611931565b610bd8565b60019150509392505050565b60006008905090565b60006105af61051a610bd0565b848460026000610528610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118db565b610bd8565b6001905092915050565b6105c1610bd0565b73ffffffffffffffffffffffffffffffffffffffff166105df6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117c9565b60405180910390fd5b61063f8282611025565b5050565b61064d338261117a565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a1610bd0565b73ffffffffffffffffffffffffffffffffffffffff166106bf6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906117c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461080b906119ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610837906119ed565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b6000806002600061089d610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611849565b60405180910390fd5b610977610965610bd0565b8585846109729190611931565b610bd8565b600191505092915050565b600061099661098f610bd0565b8484610da3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a2f610bd0565b73ffffffffffffffffffffffffffffffffffffffff16610a4d6107d3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a906117c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611749565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90611829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611769565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d969190611889565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90611709565b60405180910390fd5b610e8e838383611350565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611789565b60405180910390fd5b8181610f219190611931565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb391906118db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110179190611889565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90611869565b60405180910390fd5b6110a160008383611350565b80600360008282546110b391906118db565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461110991906118db565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161116e9190611889565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e1906117e9565b60405180910390fd5b6111f682600083611350565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490611729565b60405180910390fd5b81816112899190611931565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112de9190611931565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113439190611889565b60405180910390a3505050565b505050565b60008135905061136481611df6565b92915050565b60008135905061137981611e0d565b92915050565b60006020828403121561139157600080fd5b600061139f84828501611355565b91505092915050565b600080604083850312156113bb57600080fd5b60006113c985828601611355565b92505060206113da85828601611355565b9150509250929050565b6000806000606084860312156113f957600080fd5b600061140786828701611355565b935050602061141886828701611355565b92505060406114298682870161136a565b9150509250925092565b6000806040838503121561144657600080fd5b600061145485828601611355565b92505060206114658582860161136a565b9150509250929050565b60006020828403121561148157600080fd5b600061148f8482850161136a565b91505092915050565b6114a181611965565b82525050565b6114b081611977565b82525050565b60006114c1826118bf565b6114cb81856118ca565b93506114db8185602086016119ba565b6114e481611a7d565b840191505092915050565b60006114fc6023836118ca565b915061150782611a8e565b604082019050919050565b600061151f6022836118ca565b915061152a82611add565b604082019050919050565b60006115426026836118ca565b915061154d82611b2c565b604082019050919050565b60006115656022836118ca565b915061157082611b7b565b604082019050919050565b60006115886026836118ca565b915061159382611bca565b604082019050919050565b60006115ab6028836118ca565b91506115b682611c19565b604082019050919050565b60006115ce6020836118ca565b91506115d982611c68565b602082019050919050565b60006115f16021836118ca565b91506115fc82611c91565b604082019050919050565b60006116146025836118ca565b915061161f82611ce0565b604082019050919050565b60006116376024836118ca565b915061164282611d2f565b604082019050919050565b600061165a6025836118ca565b915061166582611d7e565b604082019050919050565b600061167d601f836118ca565b915061168882611dcd565b602082019050919050565b61169c816119a3565b82525050565b6116ab816119ad565b82525050565b60006020820190506116c66000830184611498565b92915050565b60006020820190506116e160008301846114a7565b92915050565b6000602082019050818103600083015261170181846114b6565b905092915050565b60006020820190508181036000830152611722816114ef565b9050919050565b6000602082019050818103600083015261174281611512565b9050919050565b6000602082019050818103600083015261176281611535565b9050919050565b6000602082019050818103600083015261178281611558565b9050919050565b600060208201905081810360008301526117a28161157b565b9050919050565b600060208201905081810360008301526117c28161159e565b9050919050565b600060208201905081810360008301526117e2816115c1565b9050919050565b60006020820190508181036000830152611802816115e4565b9050919050565b6000602082019050818103600083015261182281611607565b9050919050565b600060208201905081810360008301526118428161162a565b9050919050565b600060208201905081810360008301526118628161164d565b9050919050565b6000602082019050818103600083015261188281611670565b9050919050565b600060208201905061189e6000830184611693565b92915050565b60006020820190506118b960008301846116a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118e6826119a3565b91506118f1836119a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192657611925611a1f565b5b828201905092915050565b600061193c826119a3565b9150611947836119a3565b92508282101561195a57611959611a1f565b5b828203905092915050565b600061197082611983565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119d85780820151818401526020810190506119bd565b838111156119e7576000848401525b50505050565b60006002820490506001821680611a0557607f821691505b60208210811415611a1957611a18611a4e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611dff81611965565b8114611e0a57600080fd5b50565b611e16816119a3565b8114611e2157600080fd5b5056fea264697066735822122060194ea243cc885e8bc31f89723dd770bd9ab2e6944971ad1182f4a7324dd36564736f6c63430008010033

Deployed Bytecode Sourcemap

6398:9848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7262:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9434:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8381:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10085:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8224:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10916:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15352:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15467:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8552:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5844:148;;;:::i;:::-;;5193:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7481:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11634:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8892:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9130:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6147:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7262:100;7316:13;7349:5;7342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7262:100;:::o;9434:169::-;9517:4;9534:39;9543:12;:10;:12::i;:::-;9557:7;9566:6;9534:8;:39::i;:::-;9591:4;9584:11;;9434:169;;;;:::o;8381:108::-;8442:7;8469:12;;8462:19;;8381:108;:::o;10085:422::-;10191:4;10208:36;10218:6;10226:9;10237:6;10208:9;:36::i;:::-;10257:24;10284:11;:19;10296:6;10284:19;;;;;;;;;;;;;;;:33;10304:12;:10;:12::i;:::-;10284:33;;;;;;;;;;;;;;;;10257:60;;10356:6;10336:16;:26;;10328:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10418:57;10427:6;10435:12;:10;:12::i;:::-;10468:6;10449:16;:25;;;;:::i;:::-;10418:8;:57::i;:::-;10495:4;10488:11;;;10085:422;;;;;:::o;8224:92::-;8282:5;8307:1;8300:8;;8224:92;:::o;10916:215::-;11004:4;11021:80;11030:12;:10;:12::i;:::-;11044:7;11090:10;11053:11;:25;11065:12;:10;:12::i;:::-;11053:25;;;;;;;;;;;;;;;:34;11079:7;11053:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11021:8;:80::i;:::-;11119:4;11112:11;;10916:215;;;;:::o;15352:103::-;5424:12;:10;:12::i;:::-;5413:23;;:7;:5;:7::i;:::-;:23;;;5405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15426:21:::1;15432:7;15440:6;15426:5;:21::i;:::-;15352:103:::0;;:::o;15467:81::-;15516:24;15522:10;15533:6;15516:5;:24::i;:::-;15467:81;:::o;8552:127::-;8626:7;8653:9;:18;8663:7;8653:18;;;;;;;;;;;;;;;;8646:25;;8552:127;;;:::o;5844:148::-;5424:12;:10;:12::i;:::-;5413:23;;:7;:5;:7::i;:::-;:23;;;5405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5951:1:::1;5914:40;;5935:6;::::0;::::1;;;;;;;;5914:40;;;;;;;;;;;;5982:1;5965:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;5844:148::o:0;5193:87::-;5239:7;5266:6;;;;;;;;;;;5259:13;;5193:87;:::o;7481:104::-;7537:13;7570:7;7563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7481:104;:::o;11634:377::-;11727:4;11744:24;11771:11;:25;11783:12;:10;:12::i;:::-;11771:25;;;;;;;;;;;;;;;:34;11797:7;11771:34;;;;;;;;;;;;;;;;11744:61;;11844:15;11824:16;:35;;11816:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11912:67;11921:12;:10;:12::i;:::-;11935:7;11963:15;11944:16;:34;;;;:::i;:::-;11912:8;:67::i;:::-;11999:4;11992:11;;;11634:377;;;;:::o;8892:175::-;8978:4;8995:42;9005:12;:10;:12::i;:::-;9019:9;9030:6;8995:9;:42::i;:::-;9055:4;9048:11;;8892:175;;;;:::o;9130:151::-;9219:7;9246:11;:18;9258:5;9246:18;;;;;;;;;;;;;;;:27;9265:7;9246:27;;;;;;;;;;;;;;;;9239:34;;9130:151;;;;:::o;6147:244::-;5424:12;:10;:12::i;:::-;5413:23;;:7;:5;:7::i;:::-;:23;;;5405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6256:1:::1;6236:22;;:8;:22;;;;6228:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6346:8;6317:38;;6338:6;::::0;::::1;;;;;;;;6317:38;;;;;;;;;;;;6375:8;6366:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6147:244:::0;:::o;4346:98::-;4399:7;4426:10;4419:17;;4346:98;:::o;13549:346::-;13668:1;13651:19;;:5;:19;;;;13643:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13749:1;13730:21;;:7;:21;;;;13722:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13833:6;13803:11;:18;13815:5;13803:18;;;;;;;;;;;;;;;:27;13822:7;13803:27;;;;;;;;;;;;;;;:36;;;;13871:7;13855:32;;13864:5;13855:32;;;13880:6;13855:32;;;;;;:::i;:::-;;;;;;;;13549:346;;;:::o;12501:604::-;12625:1;12607:20;;:6;:20;;;;12599:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12709:1;12688:23;;:9;:23;;;;12680:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12764:47;12785:6;12793:9;12804:6;12764:20;:47::i;:::-;12824:21;12848:9;:17;12858:6;12848:17;;;;;;;;;;;;;;;;12824:41;;12901:6;12884:13;:23;;12876:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12997:6;12981:13;:22;;;;:::i;:::-;12961:9;:17;12971:6;12961:17;;;;;;;;;;;;;;;:42;;;;13038:6;13014:9;:20;13024:9;13014:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13079:9;13062:35;;13071:6;13062:35;;;13090:6;13062:35;;;;;;:::i;:::-;;;;;;;;12501:604;;;;:::o;14175:338::-;14278:1;14259:21;;:7;:21;;;;14251:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14329:49;14358:1;14362:7;14371:6;14329:20;:49::i;:::-;14407:6;14391:12;;:22;;;;;;;:::i;:::-;;;;;;;;14446:6;14424:9;:18;14434:7;14424:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14489:7;14468:37;;14485:1;14468:37;;;14498:6;14468:37;;;;;;:::i;:::-;;;;;;;;14175:338;;:::o;14846:494::-;14949:1;14930:21;;:7;:21;;;;14922:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15002:49;15023:7;15040:1;15044:6;15002:20;:49::i;:::-;15064:22;15089:9;:18;15099:7;15089:18;;;;;;;;;;;;;;;;15064:43;;15144:6;15126:14;:24;;15118:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15238:6;15221:14;:23;;;;:::i;:::-;15200:9;:18;15210:7;15200:18;;;;;;;;;;;;;;;:44;;;;15271:6;15255:12;;:22;;;;;;;:::i;:::-;;;;;;;;15321:1;15295:37;;15304:7;15295:37;;;15325:6;15295:37;;;;;;:::i;:::-;;;;;;;;14846:494;;;:::o;16151:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7355:53;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7475:51;;:::o;7532:222::-;;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7630:124;;;;:::o;7760:210::-;;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7852:118;;;;:::o;7976:313::-;;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;8094:195;;;;:::o;8295:419::-;;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8466:248;;;:::o;8720:419::-;;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8891:248;;;:::o;9145:419::-;;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9316:248;;;:::o;9570:419::-;;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9741:248;;;:::o;9995:419::-;;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;10166:248;;;:::o;10420:419::-;;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10591:248;;;:::o;10845:419::-;;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;11016:248;;;:::o;11270:419::-;;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11441:248;;;:::o;11695:419::-;;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11866:248;;;:::o;12120:419::-;;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12291:248;;;:::o;12545:419::-;;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12716:248;;;:::o;12970:419::-;;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;13141:248;;;:::o;13395:222::-;;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13493:124;;;;:::o;13623:214::-;;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13717:120;;;;:::o;13843:99::-;;13929:5;13923:12;13913:22;;13902:40;;;:::o;13948:169::-;;14066:6;14061:3;14054:19;14106:4;14101:3;14097:14;14082:29;;14044:73;;;;:::o;14123:305::-;;14182:20;14200:1;14182:20;:::i;:::-;14177:25;;14216:20;14234:1;14216:20;:::i;:::-;14211:25;;14370:1;14302:66;14298:74;14295:1;14292:81;14289:2;;;14376:18;;:::i;:::-;14289:2;14420:1;14417;14413:9;14406:16;;14167:261;;;;:::o;14434:191::-;;14494:20;14512:1;14494:20;:::i;:::-;14489:25;;14528:20;14546:1;14528:20;:::i;:::-;14523:25;;14567:1;14564;14561:8;14558:2;;;14572:18;;:::i;:::-;14558:2;14617:1;14614;14610:9;14602:17;;14479:146;;;;:::o;14631:96::-;;14697:24;14715:5;14697:24;:::i;:::-;14686:35;;14676:51;;;:::o;14733:90::-;;14810:5;14803:13;14796:21;14785:32;;14775:48;;;:::o;14829:126::-;;14906:42;14899:5;14895:54;14884:65;;14874:81;;;:::o;14961:77::-;;15027:5;15016:16;;15006:32;;;:::o;15044:86::-;;15119:4;15112:5;15108:16;15097:27;;15087:43;;;:::o;15136:307::-;15204:1;15214:113;15228:6;15225:1;15222:13;15214:113;;;15313:1;15308:3;15304:11;15298:18;15294:1;15289:3;15285:11;15278:39;15250:2;15247:1;15243:10;15238:15;;15214:113;;;15345:6;15342:1;15339:13;15336:2;;;15425:1;15416:6;15411:3;15407:16;15400:27;15336:2;15185:258;;;;:::o;15449:320::-;;15530:1;15524:4;15520:12;15510:22;;15577:1;15571:4;15567:12;15598:18;15588:2;;15654:4;15646:6;15642:17;15632:27;;15588:2;15716;15708:6;15705:14;15685:18;15682:38;15679:2;;;15735:18;;:::i;:::-;15679:2;15500:269;;;;:::o;15775:180::-;15823:77;15820:1;15813:88;15920:4;15917:1;15910:15;15944:4;15941:1;15934:15;15961:180;16009:77;16006:1;15999:88;16106:4;16103:1;16096:15;16130:4;16127:1;16120:15;16147:102;;16239:2;16235:7;16230:2;16223:5;16219:14;16215:28;16205:38;;16195:54;;;:::o;16255:222::-;16395:34;16391:1;16383:6;16379:14;16372:58;16464:5;16459:2;16451:6;16447:15;16440:30;16361:116;:::o;16483:221::-;16623:34;16619:1;16611:6;16607:14;16600:58;16692:4;16687:2;16679:6;16675:15;16668:29;16589:115;:::o;16710:225::-;16850:34;16846:1;16838:6;16834:14;16827:58;16919:8;16914:2;16906:6;16902:15;16895:33;16816:119;:::o;16941:221::-;17081:34;17077:1;17069:6;17065:14;17058:58;17150:4;17145:2;17137:6;17133:15;17126:29;17047:115;:::o;17168:225::-;17308:34;17304:1;17296:6;17292:14;17285:58;17377:8;17372:2;17364:6;17360:15;17353:33;17274:119;:::o;17399:227::-;17539:34;17535:1;17527:6;17523:14;17516:58;17608:10;17603:2;17595:6;17591:15;17584:35;17505:121;:::o;17632:182::-;17772:34;17768:1;17760:6;17756:14;17749:58;17738:76;:::o;17820:220::-;17960:34;17956:1;17948:6;17944:14;17937:58;18029:3;18024:2;18016:6;18012:15;18005:28;17926:114;:::o;18046:224::-;18186:34;18182:1;18174:6;18170:14;18163:58;18255:7;18250:2;18242:6;18238:15;18231:32;18152:118;:::o;18276:223::-;18416:34;18412:1;18404:6;18400:14;18393:58;18485:6;18480:2;18472:6;18468:15;18461:31;18382:117;:::o;18505:224::-;18645:34;18641:1;18633:6;18629:14;18622:58;18714:7;18709:2;18701:6;18697:15;18690:32;18611:118;:::o;18735:181::-;18875:33;18871:1;18863:6;18859:14;18852:57;18841:75;:::o;18922:122::-;18995:24;19013:5;18995:24;:::i;:::-;18988:5;18985:35;18975:2;;19034:1;19031;19024:12;18975:2;18965:79;:::o;19050:122::-;19123:24;19141:5;19123:24;:::i;:::-;19116:5;19113:35;19103:2;;19162:1;19159;19152:12;19103:2;19093:79;:::o

Swarm Source

ipfs://60194ea243cc885e8bc31f89723dd770bd9ab2e6944971ad1182f4a7324dd365
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.