ETH Price: $3,316.14 (-3.43%)
Gas: 18 Gwei

Token

Snow (Snow)
 

Overview

Max Total Supply

420,690,000,000,000 Snow

Holders

206

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000001877670817 Snow

Value
$0.00
0x57af799daa7f8de55e3f12dfef14bbcb446a5811
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:
SnowToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

/**

    Website: https://www.snow-coin.com/
    

*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/SnowToken.sol



pragma solidity ^0.8.0;


contract SnowToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    uint256 _totalSupply = 420_690_000_000_000  * 10 **18;

    constructor() ERC20("Snow", "Snow") {
        _mint(msg.sender, _totalSupply);
    }


    function SetRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"SetRule","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":[{"internalType":"uint256","name":"value","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526d14bddab3e51a57cff87a50000000600a553480156200002357600080fd5b506040518060400160405280600481526020017f536e6f77000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f536e6f7700000000000000000000000000000000000000000000000000000000815250620000b0620000a4620000f060201b60201c565b620000f860201b60201c565b8160049081620000c191906200085b565b508060059081620000d391906200085b565b505050620000ea33600a54620001bc60201b60201c565b62000b41565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200022e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022590620009a3565b60405180910390fd5b62000242600083836200033560201b60201c565b8060036000828254620002569190620009f4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ae9190620009f4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000315919062000a40565b60405180910390a362000331600083836200056a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000458576200039c6200056f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004105750620003e16200056f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000452576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004499062000aad565b60405180910390fd5b62000565565b600660009054906101000a900460ff168015620004c25750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005645760075481620004e2846200059860201b6200068d1760201c565b620004ee9190620009f4565b111580156200052157506008548162000512846200059860201b6200068d1760201c565b6200051e9190620009f4565b10155b62000563576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055a9062000b1f565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066357607f821691505b6020821081036200067957620006786200061b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a4565b620006ef8683620006a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200073c62000736620007308462000707565b62000711565b62000707565b9050919050565b6000819050919050565b62000758836200071b565b62000770620007678262000743565b848454620006b1565b825550505050565b600090565b6200078762000778565b620007948184846200074d565b505050565b5b81811015620007bc57620007b06000826200077d565b6001810190506200079a565b5050565b601f8211156200080b57620007d5816200067f565b620007e08462000694565b81016020851015620007f0578190505b62000808620007ff8562000694565b83018262000799565b50505b505050565b600082821c905092915050565b6000620008306000198460080262000810565b1980831691505092915050565b60006200084b83836200081d565b9150826002028217905092915050565b6200086682620005e1565b67ffffffffffffffff811115620008825762000881620005ec565b5b6200088e82546200064a565b6200089b828285620007c0565b600060209050601f831160018114620008d35760008415620008be578287015190505b620008ca85826200083d565b8655506200093a565b601f198416620008e3866200067f565b60005b828110156200090d57848901518255600182019150602085019450602081019050620008e6565b868310156200092d578489015162000929601f8916826200081d565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200098b601f8362000942565b9150620009988262000953565b602082019050919050565b60006020820190508181036000830152620009be816200097c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a018262000707565b915062000a0e8362000707565b925082820190508082111562000a295762000a28620009c5565b5b92915050565b62000a3a8162000707565b82525050565b600060208201905062000a57600083018462000a2f565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000a9560168362000942565b915062000aa28262000a5d565b602082019050919050565b6000602082019050818103600083015262000ac88162000a86565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000b0760068362000942565b915062000b148262000acf565b602082019050919050565b6000602082019050818103600083015262000b3a8162000af8565b9050919050565b6120848062000b516000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b8063715018a6146102a3578063860a32ec146102ad57806389f9a1d3146102cb5780638a5035f4146102e95780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c681461023957806349bd5a5e1461025557806370a08231146102735761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611708565b61065a565b005b61025d610667565b60405161026a9190611744565b60405180910390f35b61028d6004803603810190610288919061175f565b61068d565b60405161029a9190611663565b60405180910390f35b6102ab6106d6565b005b6102b561075e565b6040516102c29190611639565b60405180910390f35b6102d3610771565b6040516102e09190611663565b60405180910390f35b61030360048036038101906102fe91906117b8565b610777565b005b61030d610862565b60405161031a9190611744565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e6919061175f565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b6106643382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106de610ba4565b73ffffffffffffffffffffffffffffffffffffffff166106fc610862565b73ffffffffffffffffffffffffffffffffffffffff1614610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990611a00565b60405180910390fd5b61075c60006111cf565b565b600660009054906101000a900460ff1681565b60075481565b61077f610ba4565b73ffffffffffffffffffffffffffffffffffffffff1661079d610862565b73ffffffffffffffffffffffffffffffffffffffff16146107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b8461068d565b6114259190611980565b1115801561144857506008548161143b8461068d565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b60006020828403121561171e5761171d611545565b5b600061172c848285016115c9565b91505092915050565b61173e8161156a565b82525050565b60006020820190506117596000830184611735565b92915050565b60006020828403121561177557611774611545565b5b600061178384828501611593565b91505092915050565b6117958161161e565b81146117a057600080fd5b50565b6000813590506117b28161178c565b92915050565b600080600080608085870312156117d2576117d1611545565b5b60006117e0878288016117a3565b94505060206117f187828801611593565b9350506040611802878288016115c9565b9250506060611813878288016115c9565b91505092959194509250565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220b7e2f24b2add6822acc3a0f85efd19cd6004a307eb580b9a749767938aaf880c64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b8063715018a6146102a3578063860a32ec146102ad57806389f9a1d3146102cb5780638a5035f4146102e95780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c681461023957806349bd5a5e1461025557806370a08231146102735761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611708565b61065a565b005b61025d610667565b60405161026a9190611744565b60405180910390f35b61028d6004803603810190610288919061175f565b61068d565b60405161029a9190611663565b60405180910390f35b6102ab6106d6565b005b6102b561075e565b6040516102c29190611639565b60405180910390f35b6102d3610771565b6040516102e09190611663565b60405180910390f35b61030360048036038101906102fe91906117b8565b610777565b005b61030d610862565b60405161031a9190611744565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e6919061175f565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b6106643382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106de610ba4565b73ffffffffffffffffffffffffffffffffffffffff166106fc610862565b73ffffffffffffffffffffffffffffffffffffffff1614610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990611a00565b60405180910390fd5b61075c60006111cf565b565b600660009054906101000a900460ff1681565b60075481565b61077f610ba4565b73ffffffffffffffffffffffffffffffffffffffff1661079d610862565b73ffffffffffffffffffffffffffffffffffffffff16146107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b8461068d565b6114259190611980565b1115801561144857506008548161143b8461068d565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b60006020828403121561171e5761171d611545565b5b600061172c848285016115c9565b91505092915050565b61173e8161156a565b82525050565b60006020820190506117596000830184611735565b92915050565b60006020828403121561177557611774611545565b5b600061178384828501611593565b91505092915050565b6117958161161e565b81146117a057600080fd5b50565b6000813590506117b28161178c565b92915050565b600080600080608085870312156117d2576117d1611545565b5b60006117e0878288016117a3565b94505060206117f187828801611593565b9350506040611802878288016115c9565b9250506060611813878288016115c9565b91505092959194509250565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220b7e2f24b2add6822acc3a0f85efd19cd6004a307eb580b9a749767938aaf880c64736f6c63430008120033

Deployed Bytecode Sourcemap

19223:1236:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9192:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11359:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10312:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19331:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12010:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10154:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12911:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20375:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19369:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10483:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2593:103;;;:::i;:::-;;19267:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19293:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19562:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1942:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9411:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13629:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10823:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11061:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2851:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9192:100;9246:13;9279:5;9272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9192:100;:::o;11359:169::-;11442:4;11459:39;11468:12;:10;:12::i;:::-;11482:7;11491:6;11459:8;:39::i;:::-;11516:4;11509:11;;11359:169;;;;:::o;10312:108::-;10373:7;10400:12;;10393:19;;10312:108;:::o;19331:31::-;;;;:::o;12010:492::-;12150:4;12167:36;12177:6;12185:9;12196:6;12167:9;:36::i;:::-;12216:24;12243:11;:19;12255:6;12243:19;;;;;;;;;;;;;;;:33;12263:12;:10;:12::i;:::-;12243:33;;;;;;;;;;;;;;;;12216:60;;12315:6;12295:16;:26;;12287:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12402:57;12411:6;12419:12;:10;:12::i;:::-;12452:6;12433:16;:25;12402:8;:57::i;:::-;12490:4;12483:11;;;12010:492;;;;;:::o;10154:93::-;10212:5;10237:2;10230:9;;10154:93;:::o;12911:215::-;12999:4;13016:80;13025:12;:10;:12::i;:::-;13039:7;13085:10;13048:11;:25;13060:12;:10;:12::i;:::-;13048:25;;;;;;;;;;;;;;;:34;13074:7;13048:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13016:8;:80::i;:::-;13114:4;13107:11;;12911:215;;;;:::o;20375:81::-;20424:24;20430:10;20442:5;20424;:24::i;:::-;20375:81;:::o;19369:28::-;;;;;;;;;;;;;:::o;10483:127::-;10557:7;10584:9;:18;10594:7;10584:18;;;;;;;;;;;;;;;;10577:25;;10483:127;;;:::o;2593:103::-;2173:12;:10;:12::i;:::-;2162:23;;:7;:5;:7::i;:::-;:23;;;2154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2658:30:::1;2685:1;2658:18;:30::i;:::-;2593:103::o:0;19267:19::-;;;;;;;;;;;;;:::o;19293:31::-;;;;:::o;19562:301::-;2173:12;:10;:12::i;:::-;2162:23;;:7;:5;:7::i;:::-;:23;;;2154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19712:8:::1;19702:7;;:18;;;;;;;;;;;;;;;;;;19747:14;19731:13;;:30;;;;;;;;;;;;;;;;;;19791:17;19772:16;:36;;;;19838:17;19819:16;:36;;;;19562:301:::0;;;;:::o;1942:87::-;1988:7;2015:6;;;;;;;;;;;2008:13;;1942:87;:::o;9411:104::-;9467:13;9500:7;9493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9411:104;:::o;13629:413::-;13722:4;13739:24;13766:11;:25;13778:12;:10;:12::i;:::-;13766:25;;;;;;;;;;;;;;;:34;13792:7;13766:34;;;;;;;;;;;;;;;;13739:61;;13839:15;13819:16;:35;;13811:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13932:67;13941:12;:10;:12::i;:::-;13955:7;13983:15;13964:16;:34;13932:8;:67::i;:::-;14030:4;14023:11;;;13629:413;;;;:::o;10823:175::-;10909:4;10926:42;10936:12;:10;:12::i;:::-;10950:9;10961:6;10926:9;:42::i;:::-;10986:4;10979:11;;10823:175;;;;:::o;11061:151::-;11150:7;11177:11;:18;11189:5;11177:18;;;;;;;;;;;;;;;:27;11196:7;11177:27;;;;;;;;;;;;;;;;11170:34;;11061:151;;;;:::o;2851:201::-;2173:12;:10;:12::i;:::-;2162:23;;:7;:5;:7::i;:::-;:23;;;2154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2960:1:::1;2940:22;;:8;:22;;::::0;2932:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3016:28;3035:8;3016:18;:28::i;:::-;2851:201:::0;:::o;660:98::-;713:7;740:10;733:17;;660:98;:::o;17313:380::-;17466:1;17449:19;;:5;:19;;;17441:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17547:1;17528:21;;:7;:21;;;17520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17631:6;17601:11;:18;17613:5;17601:18;;;;;;;;;;;;;;;:27;17620:7;17601:27;;;;;;;;;;;;;;;:36;;;;17669:7;17653:32;;17662:5;17653:32;;;17678:6;17653:32;;;;;;:::i;:::-;;;;;;;;17313:380;;;:::o;14532:733::-;14690:1;14672:20;;:6;:20;;;14664:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14774:1;14753:23;;:9;:23;;;14745:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14829:47;14850:6;14858:9;14869:6;14829:20;:47::i;:::-;14889:21;14913:9;:17;14923:6;14913:17;;;;;;;;;;;;;;;;14889:41;;14966:6;14949:13;:23;;14941:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15087:6;15071:13;:22;15051:9;:17;15061:6;15051:17;;;;;;;;;;;;;;;:42;;;;15139:6;15115:9;:20;15125:9;15115:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15180:9;15163:35;;15172:6;15163:35;;;15191:6;15163:35;;;;;;:::i;:::-;;;;;;;;15211:46;15231:6;15239:9;15250:6;15211:19;:46::i;:::-;14653:612;14532:733;;;:::o;16284:591::-;16387:1;16368:21;;:7;:21;;;16360:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16440:49;16461:7;16478:1;16482:6;16440:20;:49::i;:::-;16502:22;16527:9;:18;16537:7;16527:18;;;;;;;;;;;;;;;;16502:43;;16582:6;16564:14;:24;;16556:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16701:6;16684:14;:23;16663:9;:18;16673:7;16663:18;;;;;;;;;;;;;;;:44;;;;16745:6;16729:12;;:22;;;;;;;:::i;:::-;;;;;;;;16795:1;16769:37;;16778:7;16769:37;;;16799:6;16769:37;;;;;;:::i;:::-;;;;;;;;16819:48;16839:7;16856:1;16860:6;16819:19;:48::i;:::-;16349:526;16284:591;;:::o;3212:191::-;3286:16;3305:6;;;;;;;;;;;3286:25;;3331:8;3322:6;;:17;;;;;;;;;;;;;;;;;;3386:8;3355:40;;3376:8;3355:40;;;;;;;;;;;;3275:128;3212:191;:::o;19871:496::-;20045:1;20020:27;;:13;;;;;;;;;;;:27;;;20016:148;;20080:7;:5;:7::i;:::-;20072:15;;:4;:15;;;:32;;;;20097:7;:5;:7::i;:::-;20091:13;;:2;:13;;;20072:32;20064:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20146:7;;20016:148;20180:7;;;;;;;;;;;:32;;;;;20199:13;;;;;;;;;;;20191:21;;:4;:21;;;20180:32;20176:184;;;20269:16;;20259:6;20237:19;20253:2;20237:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20321:16;;20311:6;20289:19;20305:2;20289:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20237:100;20229:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20176:184;19871:496;;;;:::o;19022:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:759::-;6219:6;6227;6235;6243;6292:3;6280:9;6271:7;6267:23;6263:33;6260:120;;;6299:79;;:::i;:::-;6260:120;6419:1;6444:50;6486:7;6477:6;6466:9;6462:22;6444:50;:::i;:::-;6434:60;;6390:114;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6671:2;6697:53;6742:7;6733:6;6722:9;6718:22;6697:53;:::i;:::-;6687:63;;6642:118;6799:2;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6770:118;6136:759;;;;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:227::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:10;8097:2;8089:6;8085:15;8078:35;7893:227;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8126:366;;;:::o;8498:419::-;8664:4;8702:2;8691:9;8687:18;8679:26;;8751:9;8745:4;8741:20;8737:1;8726:9;8722:17;8715:47;8779:131;8905:4;8779:131;:::i;:::-;8771:139;;8498:419;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:191;9149:3;9168:20;9186:1;9168:20;:::i;:::-;9163:25;;9202:20;9220:1;9202:20;:::i;:::-;9197:25;;9245:1;9242;9238:9;9231:16;;9266:3;9263:1;9260:10;9257:36;;;9273:18;;:::i;:::-;9257:36;9109:191;;;;:::o;9306:182::-;9446:34;9442:1;9434:6;9430:14;9423:58;9306:182;:::o;9494:366::-;9636:3;9657:67;9721:2;9716:3;9657:67;:::i;:::-;9650:74;;9733:93;9822:3;9733:93;:::i;:::-;9851:2;9846:3;9842:12;9835:19;;9494:366;;;:::o;9866:419::-;10032:4;10070:2;10059:9;10055:18;10047:26;;10119:9;10113:4;10109:20;10105:1;10094:9;10090:17;10083:47;10147:131;10273:4;10147:131;:::i;:::-;10139:139;;9866:419;;;:::o;10291:224::-;10431:34;10427:1;10419:6;10415:14;10408:58;10500:7;10495:2;10487:6;10483:15;10476:32;10291:224;:::o;10521:366::-;10663:3;10684:67;10748:2;10743:3;10684:67;:::i;:::-;10677:74;;10760:93;10849:3;10760:93;:::i;:::-;10878:2;10873:3;10869:12;10862:19;;10521:366;;;:::o;10893:419::-;11059:4;11097:2;11086:9;11082:18;11074:26;;11146:9;11140:4;11136:20;11132:1;11121:9;11117:17;11110:47;11174:131;11300:4;11174:131;:::i;:::-;11166:139;;10893:419;;;:::o;11318:225::-;11458:34;11454:1;11446:6;11442:14;11435:58;11527:8;11522:2;11514:6;11510:15;11503:33;11318:225;:::o;11549:366::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:419::-;12087:4;12125:2;12114:9;12110:18;12102:26;;12174:9;12168:4;12164:20;12160:1;12149:9;12145:17;12138:47;12202:131;12328:4;12202:131;:::i;:::-;12194:139;;11921:419;;;:::o;12346:223::-;12486:34;12482:1;12474:6;12470:14;12463:58;12555:6;12550:2;12542:6;12538:15;12531:31;12346:223;:::o;12575:366::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:419::-;13113:4;13151:2;13140:9;13136:18;13128:26;;13200:9;13194:4;13190:20;13186:1;13175:9;13171:17;13164:47;13228:131;13354:4;13228:131;:::i;:::-;13220:139;;12947:419;;;:::o;13372:221::-;13512:34;13508:1;13500:6;13496:14;13489:58;13581:4;13576:2;13568:6;13564:15;13557:29;13372:221;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:224::-;14536:34;14532:1;14524:6;14520:14;14513:58;14605:7;14600:2;14592:6;14588:15;14581:32;14396:224;:::o;14626:366::-;14768:3;14789:67;14853:2;14848:3;14789:67;:::i;:::-;14782:74;;14865:93;14954:3;14865:93;:::i;:::-;14983:2;14978:3;14974:12;14967:19;;14626:366;;;:::o;14998:419::-;15164:4;15202:2;15191:9;15187:18;15179:26;;15251:9;15245:4;15241:20;15237:1;15226:9;15222:17;15215:47;15279:131;15405:4;15279:131;:::i;:::-;15271:139;;14998:419;;;:::o;15423:222::-;15563:34;15559:1;15551:6;15547:14;15540:58;15632:5;15627:2;15619:6;15615:15;15608:30;15423:222;:::o;15651:366::-;15793:3;15814:67;15878:2;15873:3;15814:67;:::i;:::-;15807:74;;15890:93;15979:3;15890:93;:::i;:::-;16008:2;16003:3;15999:12;15992:19;;15651:366;;;:::o;16023:419::-;16189:4;16227:2;16216:9;16212:18;16204:26;;16276:9;16270:4;16266:20;16262:1;16251:9;16247:17;16240:47;16304:131;16430:4;16304:131;:::i;:::-;16296:139;;16023:419;;;:::o;16448:225::-;16588:34;16584:1;16576:6;16572:14;16565:58;16657:8;16652:2;16644:6;16640:15;16633:33;16448:225;:::o;16679:366::-;16821:3;16842:67;16906:2;16901:3;16842:67;:::i;:::-;16835:74;;16918:93;17007:3;16918:93;:::i;:::-;17036:2;17031:3;17027:12;17020:19;;16679:366;;;:::o;17051:419::-;17217:4;17255:2;17244:9;17240:18;17232:26;;17304:9;17298:4;17294:20;17290:1;17279:9;17275:17;17268:47;17332:131;17458:4;17332:131;:::i;:::-;17324:139;;17051:419;;;:::o;17476:220::-;17616:34;17612:1;17604:6;17600:14;17593:58;17685:3;17680:2;17672:6;17668:15;17661:28;17476:220;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:221::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:4;18703:2;18695:6;18691:15;18684:29;18499:221;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:194::-;19563:4;19583:20;19601:1;19583:20;:::i;:::-;19578:25;;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19661:1;19658;19654:9;19646:17;;19685:1;19679:4;19676:11;19673:37;;;19690:18;;:::i;:::-;19673:37;19523:194;;;;:::o;19723:172::-;19863:24;19859:1;19851:6;19847:14;19840:48;19723:172;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:156::-;20838:8;20834:1;20826:6;20822:14;20815:32;20698:156;:::o;20860:365::-;21002:3;21023:66;21087:1;21082:3;21023:66;:::i;:::-;21016:73;;21098:93;21187:3;21098:93;:::i;:::-;21216:2;21211:3;21207:12;21200:19;;20860:365;;;:::o;21231:419::-;21397:4;21435:2;21424:9;21420:18;21412:26;;21484:9;21478:4;21474:20;21470:1;21459:9;21455:17;21448:47;21512:131;21638:4;21512:131;:::i;:::-;21504:139;;21231:419;;;:::o

Swarm Source

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