ETH Price: $3,497.93 (+0.33%)
Gas: 3 Gwei

Token

Carl (HIM)
 

Overview

Max Total Supply

89,000,000,000 HIM

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
491,240,911.810575976123649251 HIM

Value
$0.00
0xdc02928b8d990942bf77f98b12ceb85a1d66293f
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:
Him

Compiler Version
v0.8.9+commit.e5eed63a

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-06
*/

/**
// SPDX-License-Identifier: MIT

*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File: Him.sol

pragma solidity ^0.8.9;

contract Him is ERC20 {
    address public owner;
    uint256 public maxTxAmount;
    uint256 public maxWalletToken; // New variable for maximum wallet tokens
    bool public maxWalletTokenEnabled = false; // New variable for maxWalletToken status
    bool public saleStarted = false; // New variable for one-time sale switch

        mapping(address => uint256) private lastTransactionTime;
        uint256 public constant cooldownTime = 30; // 20 seconds cooldown time
        bool public cooldownEnabled = true; // New variable for cooldown status


    modifier onlyOwner() {
        require(msg.sender == owner, "Caller is not the owner");
        _;
    }

    constructor() ERC20("Carl", "HIM") {
        owner = msg.sender;
        _mint(msg.sender, 89000000000 * 10 ** decimals());
        // Set the maximum wallet token limit to 1.69% of the total supply. Can be switched off later. 
        maxWalletToken = (totalSupply() * 169) / 1000;
        // Set the maximum transaction amount
        maxTxAmount = 1166100000 * 10 ** decimals();
    }
    function renounceOwnership() public onlyOwner {
        owner = address(0);
   
    }
    function setCooldownStatus(bool status) external onlyOwner { // New function for setting cooldown status
        cooldownEnabled = status;
    
    }
  function setMaxTxAmount(uint256 newMaxTxAmount) external onlyOwner {
        maxTxAmount = newMaxTxAmount;
  }
  function setMaxWalletTokenStatus(bool status) external onlyOwner { // New function for setting maxWalletToken status
        maxWalletTokenEnabled = status;
  }
   function startSale() external onlyOwner {
        require(!saleStarted, "Sale has already started");
        saleStarted = true;
  }
    
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        
        // If the sale hasn't started, only allow the owner to perform transactions
    if (!saleStarted) {
        require(sender == owner, "Sales haven't started yet");
    }
    
    // Check if the transaction amount is below the maximum limit
    if (sender != owner) {
        require(amount <= maxTxAmount, "Transaction amount exceeds the maxTxAmount");
        
        // Check if the sender is not in cooldown period
        require(block.timestamp >= lastTransactionTime[sender] + cooldownTime, "Transaction cooldown in effect");
    }
    
    // Check if the recipient's balance will not exceed the maximum wallet token limit
    if (recipient != owner && maxWalletTokenEnabled) {
        uint256 newBalance = balanceOf(recipient) + amount;
        require(newBalance <= maxWalletToken, "Recipient's wallet balance will exceed the maxWalletToken limit");
    }

    // Update the last transaction time
    lastTransactionTime[sender] = block.timestamp;

    // Perform the transfer without any tax logic
    super._transfer(sender, recipient, amount);
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTokenEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setCooldownStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMaxWalletTokenStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506001600a60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600481526020017f4361726c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48494d00000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e79291906200037e565b508060049080519060200190620001009291906200037e565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001853362000159620001f360201b60201c565b600a620001679190620005c8565b6414b8d03a0062000179919062000619565b620001fc60201b60201c565b6103e860a96200019a6200036a60201b60201c565b620001a6919062000619565b620001b29190620006a9565b600781905550620001c8620001f360201b60201c565b600a620001d69190620005c8565b6345814620620001e7919062000619565b60068190555062000854565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200026f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002669062000742565b60405180910390fd5b62000283600083836200037460201b60201c565b806002600082825462000297919062000764565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a9190620007d2565b60405180910390a362000366600083836200037960201b60201c565b5050565b6000600254905090565b505050565b505050565b8280546200038c906200081e565b90600052602060002090601f016020900481019282620003b05760008555620003fc565b82601f10620003cb57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fb578251825591602001919060010190620003de565b5b5090506200040b91906200040f565b5090565b5b808211156200042a57600081600090555060010162000410565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004bc578086048111156200049457620004936200042e565b5b6001851615620004a45780820291505b8081029050620004b4856200045d565b945062000474565b94509492505050565b600082620004d75760019050620005aa565b81620004e75760009050620005aa565b81600181146200050057600281146200050b5762000541565b6001915050620005aa565b60ff84111562000520576200051f6200042e565b5b8360020a9150848211156200053a57620005396200042e565b5b50620005aa565b5060208310610133831016604e8410600b84101617156200057b5782820a9050838111156200057557620005746200042e565b5b620005aa565b6200058a84848460016200046a565b92509050818404811115620005a457620005a36200042e565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005d582620005b1565b9150620005e283620005bb565b9250620006117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c5565b905092915050565b60006200062682620005b1565b91506200063383620005b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200066f576200066e6200042e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620006b682620005b1565b9150620006c383620005b1565b925082620006d657620006d56200067a565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200072a601f83620006e1565b91506200073782620006f2565b602082019050919050565b600060208201905081810360008301526200075d816200071b565b9050919050565b60006200077182620005b1565b91506200077e83620005b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007b657620007b56200042e565b5b828201905092915050565b620007cc81620005b1565b82525050565b6000602082019050620007e96000830184620007c1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200083757607f821691505b602082108114156200084e576200084d620007ef565b5b50919050565b611ee680620008646000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063af91338f1161007c578063af91338f146103a6578063b319c6b7146103c2578063b66a0e5d146103e0578063dd62ed3e146103ea578063e6c75f711461041a578063ec28438a146104385761014d565b80638da5cb5b146102d057806395d89b41146102ee578063a457c2d71461030c578063a52437e31461033c578063a9059cbb14610358578063a985ceef146103885761014d565b80633950935111610115578063395093511461020c5780635c474f9e1461023c57806362e81f531461025a57806370a0823114610278578063715018a6146102a85780638c0b5e22146102b25761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a610454565b604051610167919061141c565b60405180910390f35b61018a600480360381019061018591906114d7565b6104e6565b6040516101979190611532565b60405180910390f35b6101a8610509565b6040516101b5919061155c565b60405180910390f35b6101d860048036038101906101d39190611577565b610513565b6040516101e59190611532565b60405180910390f35b6101f6610542565b60405161020391906115e6565b60405180910390f35b610226600480360381019061022191906114d7565b61054b565b6040516102339190611532565b60405180910390f35b610244610582565b6040516102519190611532565b60405180910390f35b610262610595565b60405161026f9190611532565b60405180910390f35b610292600480360381019061028d9190611601565b6105a8565b60405161029f919061155c565b60405180910390f35b6102b06105f0565b005b6102ba6106c4565b6040516102c7919061155c565b60405180910390f35b6102d86106ca565b6040516102e5919061163d565b60405180910390f35b6102f66106f0565b604051610303919061141c565b60405180910390f35b610326600480360381019061032191906114d7565b610782565b6040516103339190611532565b60405180910390f35b61035660048036038101906103519190611684565b6107f9565b005b610372600480360381019061036d91906114d7565b6108a6565b60405161037f9190611532565b60405180910390f35b6103906108c9565b60405161039d9190611532565b60405180910390f35b6103c060048036038101906103bb9190611684565b6108dc565b005b6103ca610989565b6040516103d7919061155c565b60405180910390f35b6103e861098e565b005b61040460048036038101906103ff91906116b1565b610a8b565b604051610411919061155c565b60405180910390f35b610422610b12565b60405161042f919061155c565b60405180910390f35b610452600480360381019061044d91906116f1565b610b18565b005b6060600380546104639061174d565b80601f016020809104026020016040519081016040528092919081815260200182805461048f9061174d565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6000806104f1610bb2565b90506104fe818585610bba565b600191505092915050565b6000600254905090565b60008061051e610bb2565b905061052b858285610d85565b610536858585610e11565b60019150509392505050565b60006012905090565b600080610556610bb2565b90506105778185856105688589610a8b565b61057291906117ae565b610bba565b600191505092915050565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611850565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546106ff9061174d565b80601f016020809104026020016040519081016040528092919081815260200182805461072b9061174d565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b60008061078d610bb2565b9050600061079b8286610a8b565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906118e2565b60405180910390fd5b6107ed8286868403610bba565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611850565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000806108b1610bb2565b90506108be818585610e11565b600191505092915050565b600a60009054906101000a900460ff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390611850565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b601e81565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611850565b60405180910390fd5b600860019054906101000a900460ff1615610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a659061194e565b60405180910390fd5b6001600860016101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90611850565b60405180910390fd5b8060068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906119e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190611a72565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d78919061155c565b60405180910390a3505050565b6000610d918484610a8b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0b5781811015610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490611ade565b60405180910390fd5b610e0a8484848403610bba565b5b50505050565b600860019054906101000a900460ff16610eb657600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611b4a565b60405180910390fd5b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610fdf57600654811115610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611bdc565b60405180910390fd5b601e600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f9c91906117ae565b421015610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611c48565b60405180910390fd5b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110495750600860009054906101000a900460ff165b156110ad5760008161105a846105a8565b61106491906117ae565b90506007548111156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611cda565b60405180910390fd5b505b42600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fc838383611101565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890611d6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890611dfe565b60405180910390fd5b6111ec838383611379565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611e90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611360919061155c565b60405180910390a361137384848461137e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113bd5780820151818401526020810190506113a2565b838111156113cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006113ee82611383565b6113f8818561138e565b935061140881856020860161139f565b611411816113d2565b840191505092915050565b6000602082019050818103600083015261143681846113e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061146e82611443565b9050919050565b61147e81611463565b811461148957600080fd5b50565b60008135905061149b81611475565b92915050565b6000819050919050565b6114b4816114a1565b81146114bf57600080fd5b50565b6000813590506114d1816114ab565b92915050565b600080604083850312156114ee576114ed61143e565b5b60006114fc8582860161148c565b925050602061150d858286016114c2565b9150509250929050565b60008115159050919050565b61152c81611517565b82525050565b60006020820190506115476000830184611523565b92915050565b611556816114a1565b82525050565b6000602082019050611571600083018461154d565b92915050565b6000806000606084860312156115905761158f61143e565b5b600061159e8682870161148c565b93505060206115af8682870161148c565b92505060406115c0868287016114c2565b9150509250925092565b600060ff82169050919050565b6115e0816115ca565b82525050565b60006020820190506115fb60008301846115d7565b92915050565b6000602082840312156116175761161661143e565b5b60006116258482850161148c565b91505092915050565b61163781611463565b82525050565b6000602082019050611652600083018461162e565b92915050565b61166181611517565b811461166c57600080fd5b50565b60008135905061167e81611658565b92915050565b60006020828403121561169a5761169961143e565b5b60006116a88482850161166f565b91505092915050565b600080604083850312156116c8576116c761143e565b5b60006116d68582860161148c565b92505060206116e78582860161148c565b9150509250929050565b6000602082840312156117075761170661143e565b5b6000611715848285016114c2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176557607f821691505b602082108114156117795761177861171e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117b9826114a1565b91506117c4836114a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117f9576117f861177f565b5b828201905092915050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b600061183a60178361138e565b915061184582611804565b602082019050919050565b600060208201905081810360008301526118698161182d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118cc60258361138e565b91506118d782611870565b604082019050919050565b600060208201905081810360008301526118fb816118bf565b9050919050565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b600061193860188361138e565b915061194382611902565b602082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119ca60248361138e565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c60228361138e565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ac8601d8361138e565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b9050919050565b7f53616c657320686176656e277420737461727465642079657400000000000000600082015250565b6000611b3460198361138e565b9150611b3f82611afe565b602082019050919050565b60006020820190508181036000830152611b6381611b27565b9050919050565b7f5472616e73616374696f6e20616d6f756e74206578636565647320746865206d60008201527f61785478416d6f756e7400000000000000000000000000000000000000000000602082015250565b6000611bc6602a8361138e565b9150611bd182611b6a565b604082019050919050565b60006020820190508181036000830152611bf581611bb9565b9050919050565b7f5472616e73616374696f6e20636f6f6c646f776e20696e206566666563740000600082015250565b6000611c32601e8361138e565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f526563697069656e7427732077616c6c65742062616c616e63652077696c6c2060008201527f65786365656420746865206d617857616c6c6574546f6b656e206c696d697400602082015250565b6000611cc4603f8361138e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660258361138e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611de860238361138e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60268361138e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b905091905056fea2646970667358221220aefbae6b074df36e1ad901478ee83b0df65c1f7e57635e0c438470a72eb1be5e64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063af91338f1161007c578063af91338f146103a6578063b319c6b7146103c2578063b66a0e5d146103e0578063dd62ed3e146103ea578063e6c75f711461041a578063ec28438a146104385761014d565b80638da5cb5b146102d057806395d89b41146102ee578063a457c2d71461030c578063a52437e31461033c578063a9059cbb14610358578063a985ceef146103885761014d565b80633950935111610115578063395093511461020c5780635c474f9e1461023c57806362e81f531461025a57806370a0823114610278578063715018a6146102a85780638c0b5e22146102b25761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a610454565b604051610167919061141c565b60405180910390f35b61018a600480360381019061018591906114d7565b6104e6565b6040516101979190611532565b60405180910390f35b6101a8610509565b6040516101b5919061155c565b60405180910390f35b6101d860048036038101906101d39190611577565b610513565b6040516101e59190611532565b60405180910390f35b6101f6610542565b60405161020391906115e6565b60405180910390f35b610226600480360381019061022191906114d7565b61054b565b6040516102339190611532565b60405180910390f35b610244610582565b6040516102519190611532565b60405180910390f35b610262610595565b60405161026f9190611532565b60405180910390f35b610292600480360381019061028d9190611601565b6105a8565b60405161029f919061155c565b60405180910390f35b6102b06105f0565b005b6102ba6106c4565b6040516102c7919061155c565b60405180910390f35b6102d86106ca565b6040516102e5919061163d565b60405180910390f35b6102f66106f0565b604051610303919061141c565b60405180910390f35b610326600480360381019061032191906114d7565b610782565b6040516103339190611532565b60405180910390f35b61035660048036038101906103519190611684565b6107f9565b005b610372600480360381019061036d91906114d7565b6108a6565b60405161037f9190611532565b60405180910390f35b6103906108c9565b60405161039d9190611532565b60405180910390f35b6103c060048036038101906103bb9190611684565b6108dc565b005b6103ca610989565b6040516103d7919061155c565b60405180910390f35b6103e861098e565b005b61040460048036038101906103ff91906116b1565b610a8b565b604051610411919061155c565b60405180910390f35b610422610b12565b60405161042f919061155c565b60405180910390f35b610452600480360381019061044d91906116f1565b610b18565b005b6060600380546104639061174d565b80601f016020809104026020016040519081016040528092919081815260200182805461048f9061174d565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6000806104f1610bb2565b90506104fe818585610bba565b600191505092915050565b6000600254905090565b60008061051e610bb2565b905061052b858285610d85565b610536858585610e11565b60019150509392505050565b60006012905090565b600080610556610bb2565b90506105778185856105688589610a8b565b61057291906117ae565b610bba565b600191505092915050565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611850565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546106ff9061174d565b80601f016020809104026020016040519081016040528092919081815260200182805461072b9061174d565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b60008061078d610bb2565b9050600061079b8286610a8b565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906118e2565b60405180910390fd5b6107ed8286868403610bba565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611850565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000806108b1610bb2565b90506108be818585610e11565b600191505092915050565b600a60009054906101000a900460ff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390611850565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b601e81565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611850565b60405180910390fd5b600860019054906101000a900460ff1615610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a659061194e565b60405180910390fd5b6001600860016101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90611850565b60405180910390fd5b8060068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906119e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190611a72565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d78919061155c565b60405180910390a3505050565b6000610d918484610a8b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0b5781811015610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490611ade565b60405180910390fd5b610e0a8484848403610bba565b5b50505050565b600860019054906101000a900460ff16610eb657600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611b4a565b60405180910390fd5b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610fdf57600654811115610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611bdc565b60405180910390fd5b601e600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f9c91906117ae565b421015610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611c48565b60405180910390fd5b5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110495750600860009054906101000a900460ff165b156110ad5760008161105a846105a8565b61106491906117ae565b90506007548111156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611cda565b60405180910390fd5b505b42600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fc838383611101565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890611d6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890611dfe565b60405180910390fd5b6111ec838383611379565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611e90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611360919061155c565b60405180910390a361137384848461137e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113bd5780820151818401526020810190506113a2565b838111156113cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006113ee82611383565b6113f8818561138e565b935061140881856020860161139f565b611411816113d2565b840191505092915050565b6000602082019050818103600083015261143681846113e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061146e82611443565b9050919050565b61147e81611463565b811461148957600080fd5b50565b60008135905061149b81611475565b92915050565b6000819050919050565b6114b4816114a1565b81146114bf57600080fd5b50565b6000813590506114d1816114ab565b92915050565b600080604083850312156114ee576114ed61143e565b5b60006114fc8582860161148c565b925050602061150d858286016114c2565b9150509250929050565b60008115159050919050565b61152c81611517565b82525050565b60006020820190506115476000830184611523565b92915050565b611556816114a1565b82525050565b6000602082019050611571600083018461154d565b92915050565b6000806000606084860312156115905761158f61143e565b5b600061159e8682870161148c565b93505060206115af8682870161148c565b92505060406115c0868287016114c2565b9150509250925092565b600060ff82169050919050565b6115e0816115ca565b82525050565b60006020820190506115fb60008301846115d7565b92915050565b6000602082840312156116175761161661143e565b5b60006116258482850161148c565b91505092915050565b61163781611463565b82525050565b6000602082019050611652600083018461162e565b92915050565b61166181611517565b811461166c57600080fd5b50565b60008135905061167e81611658565b92915050565b60006020828403121561169a5761169961143e565b5b60006116a88482850161166f565b91505092915050565b600080604083850312156116c8576116c761143e565b5b60006116d68582860161148c565b92505060206116e78582860161148c565b9150509250929050565b6000602082840312156117075761170661143e565b5b6000611715848285016114c2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176557607f821691505b602082108114156117795761177861171e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117b9826114a1565b91506117c4836114a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117f9576117f861177f565b5b828201905092915050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b600061183a60178361138e565b915061184582611804565b602082019050919050565b600060208201905081810360008301526118698161182d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118cc60258361138e565b91506118d782611870565b604082019050919050565b600060208201905081810360008301526118fb816118bf565b9050919050565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b600061193860188361138e565b915061194382611902565b602082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119ca60248361138e565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c60228361138e565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ac8601d8361138e565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b9050919050565b7f53616c657320686176656e277420737461727465642079657400000000000000600082015250565b6000611b3460198361138e565b9150611b3f82611afe565b602082019050919050565b60006020820190508181036000830152611b6381611b27565b9050919050565b7f5472616e73616374696f6e20616d6f756e74206578636565647320746865206d60008201527f61785478416d6f756e7400000000000000000000000000000000000000000000602082015250565b6000611bc6602a8361138e565b9150611bd182611b6a565b604082019050919050565b60006020820190508181036000830152611bf581611bb9565b9050919050565b7f5472616e73616374696f6e20636f6f6c646f776e20696e206566666563740000600082015250565b6000611c32601e8361138e565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f526563697069656e7427732077616c6c65742062616c616e63652077696c6c2060008201527f65786365656420746865206d617857616c6c6574546f6b656e206c696d697400602082015250565b6000611cc4603f8361138e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660258361138e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611de860238361138e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60268361138e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b905091905056fea2646970667358221220aefbae6b074df36e1ad901478ee83b0df65c1f7e57635e0c438470a72eb1be5e64736f6c63430008090033

Deployed Bytecode Sourcemap

17932:3006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6697:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9048:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7817:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9829:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7659:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10533:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18189:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18099:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7988:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19016:88;;;:::i;:::-;;17988:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17961:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6916:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11274:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19110:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8321:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18420:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19382:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18340:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19549:135;;;:::i;:::-;;8577:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18021:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19266:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6697:100;6751:13;6784:5;6777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6697:100;:::o;9048:201::-;9131:4;9148:13;9164:12;:10;:12::i;:::-;9148:28;;9187:32;9196:5;9203:7;9212:6;9187:8;:32::i;:::-;9237:4;9230:11;;;9048:201;;;;:::o;7817:108::-;7878:7;7905:12;;7898:19;;7817:108;:::o;9829:295::-;9960:4;9977:15;9995:12;:10;:12::i;:::-;9977:30;;10018:38;10034:4;10040:7;10049:6;10018:15;:38::i;:::-;10067:27;10077:4;10083:2;10087:6;10067:9;:27::i;:::-;10112:4;10105:11;;;9829:295;;;;;:::o;7659:93::-;7717:5;7742:2;7735:9;;7659:93;:::o;10533:238::-;10621:4;10638:13;10654:12;:10;:12::i;:::-;10638:28;;10677:64;10686:5;10693:7;10730:10;10702:25;10712:5;10719:7;10702:9;:25::i;:::-;:38;;;;:::i;:::-;10677:8;:64::i;:::-;10759:4;10752:11;;;10533:238;;;;:::o;18189:31::-;;;;;;;;;;;;;:::o;18099:41::-;;;;;;;;;;;;;:::o;7988:127::-;8062:7;8089:9;:18;8099:7;8089:18;;;;;;;;;;;;;;;;8082:25;;7988:127;;;:::o;19016:88::-;18555:5;;;;;;;;;;;18541:19;;:10;:19;;;18533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19089:1:::1;19073:5;;:18;;;;;;;;;;;;;;;;;;19016:88::o:0;17988:26::-;;;;:::o;17961:20::-;;;;;;;;;;;;;:::o;6916:104::-;6972:13;7005:7;6998:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6916:104;:::o;11274:436::-;11367:4;11384:13;11400:12;:10;:12::i;:::-;11384:28;;11423:24;11450:25;11460:5;11467:7;11450:9;:25::i;:::-;11423:52;;11514:15;11494:16;:35;;11486:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11607:60;11616:5;11623:7;11651:15;11632:16;:34;11607:8;:60::i;:::-;11698:4;11691:11;;;;11274:436;;;;:::o;19110:152::-;18555:5;;;;;;;;;;;18541:19;;:10;:19;;;18533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19242:6:::1;19224:15;;:24;;;;;;;;;;;;;;;;;;19110:152:::0;:::o;8321:193::-;8400:4;8417:13;8433:12;:10;:12::i;:::-;8417:28;;8456;8466:5;8473:2;8477:6;8456:9;:28::i;:::-;8502:4;8495:11;;;8321:193;;;;:::o;18420:34::-;;;;;;;;;;;;;:::o;19382:162::-;18555:5;;;;;;;;;;;18541:19;;:10;:19;;;18533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19532:6:::1;19508:21;;:30;;;;;;;;;;;;;;;;;;19382:162:::0;:::o;18340:41::-;18379:2;18340:41;:::o;19549:135::-;18555:5;;;;;;;;;;;18541:19;;:10;:19;;;18533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19609:11:::1;;;;;;;;;;;19608:12;19600:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;19674:4;19660:11;;:18;;;;;;;;;;;;;;;;;;19549:135::o:0;8577:151::-;8666:7;8693:11;:18;8705:5;8693:18;;;;;;;;;;;;;;;:27;8712:7;8693:27;;;;;;;;;;;;;;;;8686:34;;8577:151;;;;:::o;18021:29::-;;;;:::o;19266:112::-;18555:5;;;;;;;;;;;18541:19;;:10;:19;;;18533:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19358:14:::1;19344:11;:28;;;;19266:112:::0;:::o;725:98::-;778:7;805:10;798:17;;725:98;:::o;15301:380::-;15454:1;15437:19;;:5;:19;;;;15429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15535:1;15516:21;;:7;:21;;;;15508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15619:6;15589:11;:18;15601:5;15589:18;;;;;;;;;;;;;;;:27;15608:7;15589:27;;;;;;;;;;;;;;;:36;;;;15657:7;15641:32;;15650:5;15641:32;;;15666:6;15641:32;;;;;;:::i;:::-;;;;;;;;15301:380;;;:::o;15972:453::-;16107:24;16134:25;16144:5;16151:7;16134:9;:25::i;:::-;16107:52;;16194:17;16174:16;:37;16170:248;;16256:6;16236:16;:26;;16228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16340:51;16349:5;16356:7;16384:6;16365:16;:25;16340:8;:51::i;:::-;16170:248;16096:329;15972:453;;;:::o;19696:1239::-;19925:11;;;;;;;;;;;19920:90;;19967:5;;;;;;;;;;;19957:15;;:6;:15;;;19949:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;19920:90;20103:5;;;;;;;;;;;20093:15;;:6;:15;;;20089:299;;20139:11;;20129:6;:21;;20121:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;18379:2;20303:19;:27;20323:6;20303:27;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;20284:15;:61;;20276:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;20089:299;20505:5;;;;;;;;;;;20492:18;;:9;:18;;;;:43;;;;;20514:21;;;;;;;;;;;20492:43;20488:233;;;20548:18;20592:6;20569:20;20579:9;20569;:20::i;:::-;:29;;;;:::i;:::-;20548:50;;20631:14;;20617:10;:28;;20609:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;20537:184;20488:233;20800:15;20770:19;:27;20790:6;20770:27;;;;;;;;;;;;;;;:45;;;;20875:42;20891:6;20899:9;20910:6;20875:15;:42::i;:::-;19696:1239;;;:::o;12180:840::-;12327:1;12311:18;;:4;:18;;;;12303:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12404:1;12390:16;;:2;:16;;;;12382:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12459:38;12480:4;12486:2;12490:6;12459:20;:38::i;:::-;12510:19;12532:9;:15;12542:4;12532:15;;;;;;;;;;;;;;;;12510:37;;12581:6;12566:11;:21;;12558:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12698:6;12684:11;:20;12666:9;:15;12676:4;12666:15;;;;;;;;;;;;;;;:38;;;;12901:6;12884:9;:13;12894:2;12884:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12951:2;12936:26;;12945:4;12936:26;;;12955:6;12936:26;;;;;;:::i;:::-;;;;;;;;12975:37;12995:4;13001:2;13005:6;12975:19;:37::i;:::-;12292:728;12180:840;;;:::o;17025:125::-;;;;:::o;17754:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:116::-;5658:21;5673:5;5658:21;:::i;:::-;5651:5;5648:32;5638:60;;5694:1;5691;5684:12;5638:60;5588:116;:::o;5710:133::-;5753:5;5791:6;5778:20;5769:29;;5807:30;5831:5;5807:30;:::i;:::-;5710:133;;;;:::o;5849:323::-;5905:6;5954:2;5942:9;5933:7;5929:23;5925:32;5922:119;;;5960:79;;:::i;:::-;5922:119;6080:1;6105:50;6147:7;6138:6;6127:9;6123:22;6105:50;:::i;:::-;6095:60;;6051:114;5849:323;;;;:::o;6178:474::-;6246:6;6254;6303:2;6291:9;6282:7;6278:23;6274:32;6271:119;;;6309:79;;:::i;:::-;6271:119;6429:1;6454:53;6499:7;6490:6;6479:9;6475:22;6454:53;:::i;:::-;6444:63;;6400:117;6556:2;6582:53;6627:7;6618:6;6607:9;6603:22;6582:53;:::i;:::-;6572:63;;6527:118;6178:474;;;;;:::o;6658:329::-;6717:6;6766:2;6754:9;6745:7;6741:23;6737:32;6734:119;;;6772:79;;:::i;:::-;6734:119;6892:1;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6863:117;6658:329;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:180::-;7553:77;7550:1;7543:88;7650:4;7647:1;7640:15;7674:4;7671:1;7664:15;7691:305;7731:3;7750:20;7768:1;7750:20;:::i;:::-;7745:25;;7784:20;7802:1;7784:20;:::i;:::-;7779:25;;7938:1;7870:66;7866:74;7863:1;7860:81;7857:107;;;7944:18;;:::i;:::-;7857:107;7988:1;7985;7981:9;7974:16;;7691:305;;;;:::o;8002:173::-;8142:25;8138:1;8130:6;8126:14;8119:49;8002:173;:::o;8181:366::-;8323:3;8344:67;8408:2;8403:3;8344:67;:::i;:::-;8337:74;;8420:93;8509:3;8420:93;:::i;:::-;8538:2;8533:3;8529:12;8522:19;;8181:366;;;:::o;8553:419::-;8719:4;8757:2;8746:9;8742:18;8734:26;;8806:9;8800:4;8796:20;8792:1;8781:9;8777:17;8770:47;8834:131;8960:4;8834:131;:::i;:::-;8826:139;;8553:419;;;:::o;8978:224::-;9118:34;9114:1;9106:6;9102:14;9095:58;9187:7;9182:2;9174:6;9170:15;9163:32;8978:224;:::o;9208:366::-;9350:3;9371:67;9435:2;9430:3;9371:67;:::i;:::-;9364:74;;9447:93;9536:3;9447:93;:::i;:::-;9565:2;9560:3;9556:12;9549:19;;9208:366;;;:::o;9580:419::-;9746:4;9784:2;9773:9;9769:18;9761:26;;9833:9;9827:4;9823:20;9819:1;9808:9;9804:17;9797:47;9861:131;9987:4;9861:131;:::i;:::-;9853:139;;9580:419;;;:::o;10005:174::-;10145:26;10141:1;10133:6;10129:14;10122:50;10005:174;:::o;10185:366::-;10327:3;10348:67;10412:2;10407:3;10348:67;:::i;:::-;10341:74;;10424:93;10513:3;10424:93;:::i;:::-;10542:2;10537:3;10533:12;10526:19;;10185:366;;;:::o;10557:419::-;10723:4;10761:2;10750:9;10746:18;10738:26;;10810:9;10804:4;10800:20;10796:1;10785:9;10781:17;10774:47;10838:131;10964:4;10838:131;:::i;:::-;10830:139;;10557:419;;;:::o;10982:223::-;11122:34;11118:1;11110:6;11106:14;11099:58;11191:6;11186:2;11178:6;11174:15;11167:31;10982:223;:::o;11211:366::-;11353:3;11374:67;11438:2;11433:3;11374:67;:::i;:::-;11367:74;;11450:93;11539:3;11450:93;:::i;:::-;11568:2;11563:3;11559:12;11552:19;;11211:366;;;:::o;11583:419::-;11749:4;11787:2;11776:9;11772:18;11764:26;;11836:9;11830:4;11826:20;11822:1;11811:9;11807:17;11800:47;11864:131;11990:4;11864:131;:::i;:::-;11856:139;;11583:419;;;:::o;12008:221::-;12148:34;12144:1;12136:6;12132:14;12125:58;12217:4;12212:2;12204:6;12200:15;12193:29;12008:221;:::o;12235:366::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:419::-;12773:4;12811:2;12800:9;12796:18;12788:26;;12860:9;12854:4;12850:20;12846:1;12835:9;12831:17;12824:47;12888:131;13014:4;12888:131;:::i;:::-;12880:139;;12607:419;;;:::o;13032:179::-;13172:31;13168:1;13160:6;13156:14;13149:55;13032:179;:::o;13217:366::-;13359:3;13380:67;13444:2;13439:3;13380:67;:::i;:::-;13373:74;;13456:93;13545:3;13456:93;:::i;:::-;13574:2;13569:3;13565:12;13558:19;;13217:366;;;:::o;13589:419::-;13755:4;13793:2;13782:9;13778:18;13770:26;;13842:9;13836:4;13832:20;13828:1;13817:9;13813:17;13806:47;13870:131;13996:4;13870:131;:::i;:::-;13862:139;;13589:419;;;:::o;14014:175::-;14154:27;14150:1;14142:6;14138:14;14131:51;14014:175;:::o;14195:366::-;14337:3;14358:67;14422:2;14417:3;14358:67;:::i;:::-;14351:74;;14434:93;14523:3;14434:93;:::i;:::-;14552:2;14547:3;14543:12;14536:19;;14195:366;;;:::o;14567:419::-;14733:4;14771:2;14760:9;14756:18;14748:26;;14820:9;14814:4;14810:20;14806:1;14795:9;14791:17;14784:47;14848:131;14974:4;14848:131;:::i;:::-;14840:139;;14567:419;;;:::o;14992:229::-;15132:34;15128:1;15120:6;15116:14;15109:58;15201:12;15196:2;15188:6;15184:15;15177:37;14992:229;:::o;15227:366::-;15369:3;15390:67;15454:2;15449:3;15390:67;:::i;:::-;15383:74;;15466:93;15555:3;15466:93;:::i;:::-;15584:2;15579:3;15575:12;15568:19;;15227:366;;;:::o;15599:419::-;15765:4;15803:2;15792:9;15788:18;15780:26;;15852:9;15846:4;15842:20;15838:1;15827:9;15823:17;15816:47;15880:131;16006:4;15880:131;:::i;:::-;15872:139;;15599:419;;;:::o;16024:180::-;16164:32;16160:1;16152:6;16148:14;16141:56;16024:180;:::o;16210:366::-;16352:3;16373:67;16437:2;16432:3;16373:67;:::i;:::-;16366:74;;16449:93;16538:3;16449:93;:::i;:::-;16567:2;16562:3;16558:12;16551:19;;16210:366;;;:::o;16582:419::-;16748:4;16786:2;16775:9;16771:18;16763:26;;16835:9;16829:4;16825:20;16821:1;16810:9;16806:17;16799:47;16863:131;16989:4;16863:131;:::i;:::-;16855:139;;16582:419;;;:::o;17007:250::-;17147:34;17143:1;17135:6;17131:14;17124:58;17216:33;17211:2;17203:6;17199:15;17192:58;17007:250;:::o;17263:366::-;17405:3;17426:67;17490:2;17485:3;17426:67;:::i;:::-;17419:74;;17502:93;17591:3;17502:93;:::i;:::-;17620:2;17615:3;17611:12;17604:19;;17263:366;;;:::o;17635:419::-;17801:4;17839:2;17828:9;17824:18;17816:26;;17888:9;17882:4;17878:20;17874:1;17863:9;17859:17;17852:47;17916:131;18042:4;17916:131;:::i;:::-;17908:139;;17635:419;;;:::o;18060:224::-;18200:34;18196:1;18188:6;18184:14;18177:58;18269:7;18264:2;18256:6;18252:15;18245:32;18060:224;:::o;18290:366::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:419::-;18828:4;18866:2;18855:9;18851:18;18843:26;;18915:9;18909:4;18905:20;18901:1;18890:9;18886:17;18879:47;18943:131;19069:4;18943:131;:::i;:::-;18935:139;;18662:419;;;:::o;19087:222::-;19227:34;19223:1;19215:6;19211:14;19204:58;19296:5;19291:2;19283:6;19279:15;19272:30;19087:222;:::o;19315:366::-;19457:3;19478:67;19542:2;19537:3;19478:67;:::i;:::-;19471:74;;19554:93;19643:3;19554:93;:::i;:::-;19672:2;19667:3;19663:12;19656:19;;19315:366;;;:::o;19687:419::-;19853:4;19891:2;19880:9;19876:18;19868:26;;19940:9;19934:4;19930:20;19926:1;19915:9;19911:17;19904:47;19968:131;20094:4;19968:131;:::i;:::-;19960:139;;19687:419;;;:::o;20112:225::-;20252:34;20248:1;20240:6;20236:14;20229:58;20321:8;20316:2;20308:6;20304:15;20297:33;20112:225;:::o;20343:366::-;20485:3;20506:67;20570:2;20565:3;20506:67;:::i;:::-;20499:74;;20582:93;20671:3;20582:93;:::i;:::-;20700:2;20695:3;20691:12;20684:19;;20343:366;;;:::o;20715:419::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:131;21122:4;20996:131;:::i;:::-;20988:139;;20715:419;;;:::o

Swarm Source

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