ETH Price: $3,386.89 (-1.74%)
Gas: 1 Gwei

Token

RabbitX (RBX)
 

Overview

Max Total Supply

1,000,000,000 RBX

Holders

2,411 (0.00%)

Market

Price

$0.03 @ 0.000010 ETH (-2.77%)

Onchain Market Cap

$34,433,220.00

Circulating Supply Market Cap

$15,475,988.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Turbo: TURBO Token
Balance
19.89 RBX

Value
$0.68 ( ~0.000200774185899249 Eth) [0.0000%]
0xa35923162c49cf95e6bf26623385eb431ad920d3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

RabbitX is a global permissionless perpetuals exchange powered by Starknet. RabbitX is building the most secure and liquid global derivatives network, giving you 24/7 access to global markets anywhere in the world.

Market

Volume (24H):$732,878.00
Market Capitalization:$15,475,988.00
Circulating Supply:450,506,145.00 RBX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Rbx

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-26
*/

// Sources flattened with hardhat v2.9.9 https://hardhat.org
// SPDX-License-Identifier: BUSL-1.1

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

// 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/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 (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/[email protected]

// 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/[email protected]

// 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 contracts/Rbx.sol

pragma solidity ^0.8.15;

/**
 * ERC20 contract for RBX token
 */



contract Rbx is ERC20, Ownable {
 
    uint256 public constant ONE_BILLION_TOKENS = (10 ** 9) * (10 ** 18);
    uint256 public constant ONE_YEAR = 365 days;
    uint256 public lastMintTime;
    IERC20 public immutable strpToken;

    error MaxSupplyExceeded();
    error MaxMintExceeded(uint256 maxIncrease);
    error RecentlyMinted();
    error InvalidTokenAmount();
    error InsufficientSTRP();
    error StrpTransferFailed();

    event SwapSTRP(address indexed user, uint256 strpAmount, uint256 rbxAmount);
    event Mint(uint256 amount);

    constructor(address _strpToken) ERC20("RabbitX", "RBX") {
        strpToken = IERC20(_strpToken);
        lastMintTime = block.timestamp;
        _mint(msg.sender, ONE_BILLION_TOKENS);
    }

    /**
     * @dev allow user to swap STRP tokens for RBX tokens at a ratio of 1 STRP to 10 RBX 
     */
    function swapSTRP(uint256 strpAmount) external {
        if (strpAmount == 0) {
            revert InvalidTokenAmount();
        }
        if (strpToken.balanceOf(msg.sender) < strpAmount) {
            revert InsufficientSTRP();
        }
        uint256 rbxAmount = strpAmount * 10;
        if (balanceOf(owner()) < rbxAmount) {
            revert MaxSupplyExceeded();
        }
        // Burn STRP tokens, STRP OZ implementation won't allow us to transfer them to the zero address 
        // so use address(this), which has the same effect as there's no way to get them back again
        if (!strpToken.transferFrom(msg.sender, address(this), strpAmount)) {
            revert StrpTransferFailed();
        }
        // burn RBX tokens for RBX contract owner
        _burn(owner(), rbxAmount);
        // mint RBX tokens for user
        _mint(msg.sender, rbxAmount);
        emit SwapSTRP(msg.sender, strpAmount, rbxAmount);
    }

    /**
     * @dev mint new tokens up to a maximum increase of 20% per year
     */
    function mint(uint256 amount) external onlyOwner {
        if (amount == 0) {
            revert InvalidTokenAmount();
        }
        if (block.timestamp <= lastMintTime) {
            revert RecentlyMinted();
        }
        uint256 elapsedTime = block.timestamp - lastMintTime;
        // max increase is 20%, and that only if it's at least 1 year since last mint, 
        // if only 6 months have passed, max increase is 10%, etc...
        if (elapsedTime > ONE_YEAR) {
            elapsedTime = ONE_YEAR;
        }
        uint256 maxIncrease = (totalSupply() * elapsedTime) / (5 * ONE_YEAR);
        if (amount > maxIncrease) {
            revert MaxMintExceeded(maxIncrease);
        }
        lastMintTime = block.timestamp;
        _mint(owner(), amount);
        emit Mint(amount);
    }

    /**
     * @dev burn unallocated tokens
     */
    function burn(uint256 amount) external onlyOwner {
        if (amount == 0) {
            revert InvalidTokenAmount();
        }
        _burn(owner(), amount);       
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_strpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InsufficientSTRP","type":"error"},{"inputs":[],"name":"InvalidTokenAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxIncrease","type":"uint256"}],"name":"MaxMintExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"RecentlyMinted","type":"error"},{"inputs":[],"name":"StrpTransferFailed","type":"error"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"strpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rbxAmount","type":"uint256"}],"name":"SwapSTRP","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":[],"name":"ONE_BILLION_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE_YEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"strpAmount","type":"uint256"}],"name":"swapSTRP","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002ba738038062002ba78339818101604052810190620000379190620003f8565b6040518060400160405280600781526020017f52616262697458000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f52425800000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620006a4565b508060049081620000c69190620006a4565b505050620000e9620000dd6200014960201b60201c565b6200015160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250504260068190555062000142336b033b2e3c9fd0803ce80000006200021760201b60201c565b50620008a6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028090620007ec565b60405180910390fd5b6200029d600083836200038460201b60201c565b8060026000828254620002b191906200083d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000364919062000889565b60405180910390a362000380600083836200038960201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003c08262000393565b9050919050565b620003d281620003b3565b8114620003de57600080fd5b50565b600081519050620003f281620003c7565b92915050565b6000602082840312156200041157620004106200038e565b5b60006200042184828501620003e1565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ac57607f821691505b602082108103620004c257620004c162000464565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200052c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ed565b620005388683620004ed565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005856200057f620005798462000550565b6200055a565b62000550565b9050919050565b6000819050919050565b620005a18362000564565b620005b9620005b0826200058c565b848454620004fa565b825550505050565b600090565b620005d0620005c1565b620005dd81848462000596565b505050565b5b818110156200060557620005f9600082620005c6565b600181019050620005e3565b5050565b601f82111562000654576200061e81620004c8565b6200062984620004dd565b8101602085101562000639578190505b620006516200064885620004dd565b830182620005e2565b50505b505050565b600082821c905092915050565b6000620006796000198460080262000659565b1980831691505092915050565b600062000694838362000666565b9150826002028217905092915050565b620006af826200042a565b67ffffffffffffffff811115620006cb57620006ca62000435565b5b620006d7825462000493565b620006e482828562000609565b600060209050601f8311600181146200071c576000841562000707578287015190505b62000713858262000686565b86555062000783565b601f1984166200072c86620004c8565b60005b8281101562000756578489015182556001820191506020850194506020810190506200072f565b8683101562000776578489015162000772601f89168262000666565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007d4601f836200078b565b9150620007e1826200079c565b602082019050919050565b600060208201905081810360008301526200080781620007c5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200084a8262000550565b9150620008578362000550565b92508282019050808211156200087257620008716200080e565b5b92915050565b620008838162000550565b82525050565b6000602082019050620008a0600083018462000878565b92915050565b6080516122d7620008d06000396000818161083e015281816109370152610a6301526122d76000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a31ab6f21161007c578063a31ab6f21461032e578063a457c2d71461034c578063a9059cbb1461037c578063bf796aa4146103ac578063dd62ed3e146103c8578063f2fde38b146103f857610137565b8063715018a6146102ae5780638da5cb5b146102b857806395d89b41146102d65780639d463520146102f4578063a0712d681461031257610137565b8063313ce567116100ff578063313ce567146101f6578063384c9b3014610214578063395093511461023257806342966c681461026257806370a082311461027e57610137565b806306fdde031461013c578063095ea7b31461015a57806316d3bfbb1461018a57806318160ddd146101a857806323b872dd146101c6575b600080fd5b610144610414565b6040516101519190611684565b60405180910390f35b610174600480360381019061016f919061173f565b6104a6565b604051610181919061179a565b60405180910390f35b6101926104c9565b60405161019f91906117c4565b60405180910390f35b6101b06104d1565b6040516101bd91906117c4565b60405180910390f35b6101e060048036038101906101db91906117df565b6104db565b6040516101ed919061179a565b60405180910390f35b6101fe61050a565b60405161020b919061184e565b60405180910390f35b61021c610513565b60405161022991906117c4565b60405180910390f35b61024c6004803603810190610247919061173f565b610523565b604051610259919061179a565b60405180910390f35b61027c60048036038101906102779190611869565b61055a565b005b61029860048036038101906102939190611896565b6105b0565b6040516102a591906117c4565b60405180910390f35b6102b66105f8565b005b6102c061060c565b6040516102cd91906118d2565b60405180910390f35b6102de610636565b6040516102eb9190611684565b60405180910390f35b6102fc6106c8565b60405161030991906117c4565b60405180910390f35b61032c60048036038101906103279190611869565b6106ce565b005b61033661083c565b604051610343919061194c565b60405180910390f35b6103666004803603810190610361919061173f565b610860565b604051610373919061179a565b60405180910390f35b6103966004803603810190610391919061173f565b6108d7565b6040516103a3919061179a565b60405180910390f35b6103c660048036038101906103c19190611869565b6108fa565b005b6103e260048036038101906103dd9190611967565b610ba6565b6040516103ef91906117c4565b60405180910390f35b610412600480360381019061040d9190611896565b610c2d565b005b606060038054610423906119d6565b80601f016020809104026020016040519081016040528092919081815260200182805461044f906119d6565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610cb0565b90506104be818585610cb8565b600191505092915050565b6301e1338081565b6000600254905090565b6000806104e6610cb0565b90506104f3858285610e81565b6104fe858585610f0d565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b60008061052e610cb0565b905061054f8185856105408589610ba6565b61054a9190611a36565b610cb8565b600191505092915050565b610562611183565b6000810361059c576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ad6105a761060c565b82611201565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610600611183565b61060a60006113ce565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610645906119d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610671906119d6565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b60065481565b6106d6611183565b60008103610710576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654421161074b576040517ff118709700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006544261075b9190611a6a565b90506301e13380811115610771576301e1338090505b60006301e1338060056107849190611a9e565b8261078d6104d1565b6107979190611a9e565b6107a19190611b0f565b9050808311156107e857806040517fdb845e000000000000000000000000000000000000000000000000000000000081526004016107df91906117c4565b60405180910390fd5b426006819055506108006107fa61060c565b84611494565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846658360405161082f91906117c4565b60405180910390a1505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061086b610cb0565b905060006108798286610ba6565b9050838110156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b590611bb2565b60405180910390fd5b6108cb8286868403610cb8565b60019250505092915050565b6000806108e2610cb0565b90506108ef818585610f0d565b600191505092915050565b60008103610934576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161098e91906118d2565b602060405180830381865afa1580156109ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cf9190611be7565b1015610a07576040517f5fb9ad7e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a82610a169190611a9e565b905080610a29610a2461060c565b6105b0565b1015610a61576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610abe93929190611c14565b6020604051808303816000875af1158015610add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b019190611c77565b610b37576040517f4191d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b48610b4261060c565b82611201565b610b523382611494565b3373ffffffffffffffffffffffffffffffffffffffff167f0cb40269191a4cdaae70fe304ae0135d70899c22210e5b853a2b3cbdf5f96fa28383604051610b9a929190611ca4565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c35611183565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611d3f565b60405180910390fd5b610cad816113ce565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90611dd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90611e63565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7491906117c4565b60405180910390a3505050565b6000610e8d8484610ba6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f075781811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611ecf565b60405180910390fd5b610f068484848403610cb8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290611ff3565b60405180910390fd5b610ff68383836115ea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612085565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116a91906117c4565b60405180910390a361117d8484846115ef565b50505050565b61118b610cb0565b73ffffffffffffffffffffffffffffffffffffffff166111a961060c565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906120f1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612183565b60405180910390fd5b61127c826000836115ea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612215565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b591906117c4565b60405180910390a36113c9836000846115ef565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612281565b60405180910390fd5b61150f600083836115ea565b80600260008282546115219190611a36565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115d291906117c4565b60405180910390a36115e6600083836115ef565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162e578082015181840152602081019050611613565b60008484015250505050565b6000601f19601f8301169050919050565b6000611656826115f4565b61166081856115ff565b9350611670818560208601611610565b6116798161163a565b840191505092915050565b6000602082019050818103600083015261169e818461164b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d6826116ab565b9050919050565b6116e6816116cb565b81146116f157600080fd5b50565b600081359050611703816116dd565b92915050565b6000819050919050565b61171c81611709565b811461172757600080fd5b50565b60008135905061173981611713565b92915050565b60008060408385031215611756576117556116a6565b5b6000611764858286016116f4565b92505060206117758582860161172a565b9150509250929050565b60008115159050919050565b6117948161177f565b82525050565b60006020820190506117af600083018461178b565b92915050565b6117be81611709565b82525050565b60006020820190506117d960008301846117b5565b92915050565b6000806000606084860312156117f8576117f76116a6565b5b6000611806868287016116f4565b9350506020611817868287016116f4565b92505060406118288682870161172a565b9150509250925092565b600060ff82169050919050565b61184881611832565b82525050565b6000602082019050611863600083018461183f565b92915050565b60006020828403121561187f5761187e6116a6565b5b600061188d8482850161172a565b91505092915050565b6000602082840312156118ac576118ab6116a6565b5b60006118ba848285016116f4565b91505092915050565b6118cc816116cb565b82525050565b60006020820190506118e760008301846118c3565b92915050565b6000819050919050565b600061191261190d611908846116ab565b6118ed565b6116ab565b9050919050565b6000611924826118f7565b9050919050565b600061193682611919565b9050919050565b6119468161192b565b82525050565b6000602082019050611961600083018461193d565b92915050565b6000806040838503121561197e5761197d6116a6565b5b600061198c858286016116f4565b925050602061199d858286016116f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119ee57607f821691505b602082108103611a0157611a006119a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a4182611709565b9150611a4c83611709565b9250828201905080821115611a6457611a63611a07565b5b92915050565b6000611a7582611709565b9150611a8083611709565b9250828203905081811115611a9857611a97611a07565b5b92915050565b6000611aa982611709565b9150611ab483611709565b9250828202611ac281611709565b91508282048414831517611ad957611ad8611a07565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b1a82611709565b9150611b2583611709565b925082611b3557611b34611ae0565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b9c6025836115ff565b9150611ba782611b40565b604082019050919050565b60006020820190508181036000830152611bcb81611b8f565b9050919050565b600081519050611be181611713565b92915050565b600060208284031215611bfd57611bfc6116a6565b5b6000611c0b84828501611bd2565b91505092915050565b6000606082019050611c2960008301866118c3565b611c3660208301856118c3565b611c4360408301846117b5565b949350505050565b611c548161177f565b8114611c5f57600080fd5b50565b600081519050611c7181611c4b565b92915050565b600060208284031215611c8d57611c8c6116a6565b5b6000611c9b84828501611c62565b91505092915050565b6000604082019050611cb960008301856117b5565b611cc660208301846117b5565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d296026836115ff565b9150611d3482611ccd565b604082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb6024836115ff565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4d6022836115ff565b9150611e5882611df1565b604082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb9601d836115ff565b9150611ec482611e83565b602082019050919050565b60006020820190508181036000830152611ee881611eac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f4b6025836115ff565b9150611f5682611eef565b604082019050919050565b60006020820190508181036000830152611f7a81611f3e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fdd6023836115ff565b9150611fe882611f81565b604082019050919050565b6000602082019050818103600083015261200c81611fd0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061206f6026836115ff565b915061207a82612013565b604082019050919050565b6000602082019050818103600083015261209e81612062565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120db6020836115ff565b91506120e6826120a5565b602082019050919050565b6000602082019050818103600083015261210a816120ce565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061216d6021836115ff565b915061217882612111565b604082019050919050565b6000602082019050818103600083015261219c81612160565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ff6022836115ff565b915061220a826121a3565b604082019050919050565b6000602082019050818103600083015261222e816121f2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061226b601f836115ff565b915061227682612235565b602082019050919050565b6000602082019050818103600083015261229a8161225e565b905091905056fea2646970667358221220c98e137b1dbd925c26365a6a1bc02a2aa5bff15f1b44826eff626c573549bcfb64736f6c6343000811003300000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a31ab6f21161007c578063a31ab6f21461032e578063a457c2d71461034c578063a9059cbb1461037c578063bf796aa4146103ac578063dd62ed3e146103c8578063f2fde38b146103f857610137565b8063715018a6146102ae5780638da5cb5b146102b857806395d89b41146102d65780639d463520146102f4578063a0712d681461031257610137565b8063313ce567116100ff578063313ce567146101f6578063384c9b3014610214578063395093511461023257806342966c681461026257806370a082311461027e57610137565b806306fdde031461013c578063095ea7b31461015a57806316d3bfbb1461018a57806318160ddd146101a857806323b872dd146101c6575b600080fd5b610144610414565b6040516101519190611684565b60405180910390f35b610174600480360381019061016f919061173f565b6104a6565b604051610181919061179a565b60405180910390f35b6101926104c9565b60405161019f91906117c4565b60405180910390f35b6101b06104d1565b6040516101bd91906117c4565b60405180910390f35b6101e060048036038101906101db91906117df565b6104db565b6040516101ed919061179a565b60405180910390f35b6101fe61050a565b60405161020b919061184e565b60405180910390f35b61021c610513565b60405161022991906117c4565b60405180910390f35b61024c6004803603810190610247919061173f565b610523565b604051610259919061179a565b60405180910390f35b61027c60048036038101906102779190611869565b61055a565b005b61029860048036038101906102939190611896565b6105b0565b6040516102a591906117c4565b60405180910390f35b6102b66105f8565b005b6102c061060c565b6040516102cd91906118d2565b60405180910390f35b6102de610636565b6040516102eb9190611684565b60405180910390f35b6102fc6106c8565b60405161030991906117c4565b60405180910390f35b61032c60048036038101906103279190611869565b6106ce565b005b61033661083c565b604051610343919061194c565b60405180910390f35b6103666004803603810190610361919061173f565b610860565b604051610373919061179a565b60405180910390f35b6103966004803603810190610391919061173f565b6108d7565b6040516103a3919061179a565b60405180910390f35b6103c660048036038101906103c19190611869565b6108fa565b005b6103e260048036038101906103dd9190611967565b610ba6565b6040516103ef91906117c4565b60405180910390f35b610412600480360381019061040d9190611896565b610c2d565b005b606060038054610423906119d6565b80601f016020809104026020016040519081016040528092919081815260200182805461044f906119d6565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610cb0565b90506104be818585610cb8565b600191505092915050565b6301e1338081565b6000600254905090565b6000806104e6610cb0565b90506104f3858285610e81565b6104fe858585610f0d565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b60008061052e610cb0565b905061054f8185856105408589610ba6565b61054a9190611a36565b610cb8565b600191505092915050565b610562611183565b6000810361059c576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ad6105a761060c565b82611201565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610600611183565b61060a60006113ce565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610645906119d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610671906119d6565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b60065481565b6106d6611183565b60008103610710576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654421161074b576040517ff118709700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006544261075b9190611a6a565b90506301e13380811115610771576301e1338090505b60006301e1338060056107849190611a9e565b8261078d6104d1565b6107979190611a9e565b6107a19190611b0f565b9050808311156107e857806040517fdb845e000000000000000000000000000000000000000000000000000000000081526004016107df91906117c4565b60405180910390fd5b426006819055506108006107fa61060c565b84611494565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846658360405161082f91906117c4565b60405180910390a1505050565b7f00000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc981565b60008061086b610cb0565b905060006108798286610ba6565b9050838110156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b590611bb2565b60405180910390fd5b6108cb8286868403610cb8565b60019250505092915050565b6000806108e2610cb0565b90506108ef818585610f0d565b600191505092915050565b60008103610934576040517f2160733900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b807f00000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc973ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161098e91906118d2565b602060405180830381865afa1580156109ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cf9190611be7565b1015610a07576040517f5fb9ad7e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a82610a169190611a9e565b905080610a29610a2461060c565b6105b0565b1015610a61576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610abe93929190611c14565b6020604051808303816000875af1158015610add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b019190611c77565b610b37576040517f4191d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b48610b4261060c565b82611201565b610b523382611494565b3373ffffffffffffffffffffffffffffffffffffffff167f0cb40269191a4cdaae70fe304ae0135d70899c22210e5b853a2b3cbdf5f96fa28383604051610b9a929190611ca4565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c35611183565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611d3f565b60405180910390fd5b610cad816113ce565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90611dd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90611e63565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7491906117c4565b60405180910390a3505050565b6000610e8d8484610ba6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f075781811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611ecf565b60405180910390fd5b610f068484848403610cb8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290611ff3565b60405180910390fd5b610ff68383836115ea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612085565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116a91906117c4565b60405180910390a361117d8484846115ef565b50505050565b61118b610cb0565b73ffffffffffffffffffffffffffffffffffffffff166111a961060c565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906120f1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612183565b60405180910390fd5b61127c826000836115ea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612215565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b591906117c4565b60405180910390a36113c9836000846115ef565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612281565b60405180910390fd5b61150f600083836115ea565b80600260008282546115219190611a36565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115d291906117c4565b60405180910390a36115e6600083836115ef565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162e578082015181840152602081019050611613565b60008484015250505050565b6000601f19601f8301169050919050565b6000611656826115f4565b61166081856115ff565b9350611670818560208601611610565b6116798161163a565b840191505092915050565b6000602082019050818103600083015261169e818461164b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d6826116ab565b9050919050565b6116e6816116cb565b81146116f157600080fd5b50565b600081359050611703816116dd565b92915050565b6000819050919050565b61171c81611709565b811461172757600080fd5b50565b60008135905061173981611713565b92915050565b60008060408385031215611756576117556116a6565b5b6000611764858286016116f4565b92505060206117758582860161172a565b9150509250929050565b60008115159050919050565b6117948161177f565b82525050565b60006020820190506117af600083018461178b565b92915050565b6117be81611709565b82525050565b60006020820190506117d960008301846117b5565b92915050565b6000806000606084860312156117f8576117f76116a6565b5b6000611806868287016116f4565b9350506020611817868287016116f4565b92505060406118288682870161172a565b9150509250925092565b600060ff82169050919050565b61184881611832565b82525050565b6000602082019050611863600083018461183f565b92915050565b60006020828403121561187f5761187e6116a6565b5b600061188d8482850161172a565b91505092915050565b6000602082840312156118ac576118ab6116a6565b5b60006118ba848285016116f4565b91505092915050565b6118cc816116cb565b82525050565b60006020820190506118e760008301846118c3565b92915050565b6000819050919050565b600061191261190d611908846116ab565b6118ed565b6116ab565b9050919050565b6000611924826118f7565b9050919050565b600061193682611919565b9050919050565b6119468161192b565b82525050565b6000602082019050611961600083018461193d565b92915050565b6000806040838503121561197e5761197d6116a6565b5b600061198c858286016116f4565b925050602061199d858286016116f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119ee57607f821691505b602082108103611a0157611a006119a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a4182611709565b9150611a4c83611709565b9250828201905080821115611a6457611a63611a07565b5b92915050565b6000611a7582611709565b9150611a8083611709565b9250828203905081811115611a9857611a97611a07565b5b92915050565b6000611aa982611709565b9150611ab483611709565b9250828202611ac281611709565b91508282048414831517611ad957611ad8611a07565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b1a82611709565b9150611b2583611709565b925082611b3557611b34611ae0565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b9c6025836115ff565b9150611ba782611b40565b604082019050919050565b60006020820190508181036000830152611bcb81611b8f565b9050919050565b600081519050611be181611713565b92915050565b600060208284031215611bfd57611bfc6116a6565b5b6000611c0b84828501611bd2565b91505092915050565b6000606082019050611c2960008301866118c3565b611c3660208301856118c3565b611c4360408301846117b5565b949350505050565b611c548161177f565b8114611c5f57600080fd5b50565b600081519050611c7181611c4b565b92915050565b600060208284031215611c8d57611c8c6116a6565b5b6000611c9b84828501611c62565b91505092915050565b6000604082019050611cb960008301856117b5565b611cc660208301846117b5565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d296026836115ff565b9150611d3482611ccd565b604082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb6024836115ff565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4d6022836115ff565b9150611e5882611df1565b604082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb9601d836115ff565b9150611ec482611e83565b602082019050919050565b60006020820190508181036000830152611ee881611eac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f4b6025836115ff565b9150611f5682611eef565b604082019050919050565b60006020820190508181036000830152611f7a81611f3e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fdd6023836115ff565b9150611fe882611f81565b604082019050919050565b6000602082019050818103600083015261200c81611fd0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061206f6026836115ff565b915061207a82612013565b604082019050919050565b6000602082019050818103600083015261209e81612062565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120db6020836115ff565b91506120e6826120a5565b602082019050919050565b6000602082019050818103600083015261210a816120ce565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061216d6021836115ff565b915061217882612111565b604082019050919050565b6000602082019050818103600083015261219c81612160565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ff6022836115ff565b915061220a826121a3565b604082019050919050565b6000602082019050818103600083015261222e816121f2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061226b601f836115ff565b915061227682612235565b602082019050919050565b6000602082019050818103600083015261229a8161225e565b905091905056fea2646970667358221220c98e137b1dbd925c26365a6a1bc02a2aa5bff15f1b44826eff626c573549bcfb64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9

-----Decoded View---------------
Arg [0] : _strpToken (address): 0x97872EAfd79940C7b24f7BCc1EADb1457347ADc9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9


Deployed Bytecode Sourcemap

20771:2999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9475:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11826:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20886:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10595:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12607:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10437:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20812:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13311:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23589:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10766:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2886:103;;;:::i;:::-;;2238:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9694:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20936:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22703:823;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20970:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14052:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11099:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21649:958;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11355:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9475:100;9529:13;9562:5;9555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9475:100;:::o;11826:201::-;11909:4;11926:13;11942:12;:10;:12::i;:::-;11926:28;;11965:32;11974:5;11981:7;11990:6;11965:8;:32::i;:::-;12015:4;12008:11;;;11826:201;;;;:::o;20886:43::-;20921:8;20886:43;:::o;10595:108::-;10656:7;10683:12;;10676:19;;10595:108;:::o;12607:295::-;12738:4;12755:15;12773:12;:10;:12::i;:::-;12755:30;;12796:38;12812:4;12818:7;12827:6;12796:15;:38::i;:::-;12845:27;12855:4;12861:2;12865:6;12845:9;:27::i;:::-;12890:4;12883:11;;;12607:295;;;;;:::o;10437:93::-;10495:5;10520:2;10513:9;;10437:93;:::o;20812:67::-;20857:22;20812:67;:::o;13311:238::-;13399:4;13416:13;13432:12;:10;:12::i;:::-;13416:28;;13455:64;13464:5;13471:7;13508:10;13480:25;13490:5;13497:7;13480:9;:25::i;:::-;:38;;;;:::i;:::-;13455:8;:64::i;:::-;13537:4;13530:11;;;13311:238;;;;:::o;23589:178::-;2124:13;:11;:13::i;:::-;23663:1:::1;23653:6;:11:::0;23649:71:::1;;23688:20;;;;;;;;;;;;;;23649:71;23730:22;23736:7;:5;:7::i;:::-;23745:6;23730:5;:22::i;:::-;23589:178:::0;:::o;10766:127::-;10840:7;10867:9;:18;10877:7;10867:18;;;;;;;;;;;;;;;;10860:25;;10766:127;;;:::o;2886:103::-;2124:13;:11;:13::i;:::-;2951:30:::1;2978:1;2951:18;:30::i;:::-;2886:103::o:0;2238:87::-;2284:7;2311:6;;;;;;;;;;;2304:13;;2238:87;:::o;9694:104::-;9750:13;9783:7;9776:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9694:104;:::o;20936:27::-;;;;:::o;22703:823::-;2124:13;:11;:13::i;:::-;22777:1:::1;22767:6;:11:::0;22763:71:::1;;22802:20;;;;;;;;;;;;;;22763:71;22867:12;;22848:15;:31;22844:87;;22903:16;;;;;;;;;;;;;;22844:87;22941:19;22981:12;;22963:15;:30;;;;:::i;:::-;22941:52;;20921:8;23167:11;:22;23163:77;;;20921:8;23206:22;;23163:77;23250:19;20921:8;23305:1;:12;;;;:::i;:::-;23289:11;23273:13;:11;:13::i;:::-;:27;;;;:::i;:::-;23272:46;;;;:::i;:::-;23250:68;;23342:11;23333:6;:20;23329:88;;;23393:11;23377:28;;;;;;;;;;;:::i;:::-;;;;;;;;23329:88;23442:15;23427:12;:30;;;;23468:22;23474:7;:5;:7::i;:::-;23483:6;23468:5;:22::i;:::-;23506:12;23511:6;23506:12;;;;;;:::i;:::-;;;;;;;;22752:774;;22703:823:::0;:::o;20970:33::-;;;:::o;14052:436::-;14145:4;14162:13;14178:12;:10;:12::i;:::-;14162:28;;14201:24;14228:25;14238:5;14245:7;14228:9;:25::i;:::-;14201:52;;14292:15;14272:16;:35;;14264:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14385:60;14394:5;14401:7;14429:15;14410:16;:34;14385:8;:60::i;:::-;14476:4;14469:11;;;;14052:436;;;;:::o;11099:193::-;11178:4;11195:13;11211:12;:10;:12::i;:::-;11195:28;;11234;11244:5;11251:2;11255:6;11234:9;:28::i;:::-;11280:4;11273:11;;;11099:193;;;;:::o;21649:958::-;21725:1;21711:10;:15;21707:75;;21750:20;;;;;;;;;;;;;;21707:75;21830:10;21796:9;:19;;;21816:10;21796:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;21792:102;;;21864:18;;;;;;;;;;;;;;21792:102;21904:17;21937:2;21924:10;:15;;;;:::i;:::-;21904:35;;21975:9;21954:18;21964:7;:5;:7::i;:::-;21954:9;:18::i;:::-;:30;21950:89;;;22008:19;;;;;;;;;;;;;;21950:89;22261:9;:22;;;22284:10;22304:4;22311:10;22261:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22256:122;;22346:20;;;;;;;;;;;;;;22256:122;22439:25;22445:7;:5;:7::i;:::-;22454:9;22439:5;:25::i;:::-;22512:28;22518:10;22530:9;22512:5;:28::i;:::-;22565:10;22556:43;;;22577:10;22589:9;22556:43;;;;;;;:::i;:::-;;;;;;;;21696:911;21649:958;:::o;11355:151::-;11444:7;11471:11;:18;11483:5;11471:18;;;;;;;;;;;;;;;:27;11490:7;11471:27;;;;;;;;;;;;;;;;11464:34;;11355:151;;;;:::o;3144:201::-;2124:13;:11;:13::i;:::-;3253:1:::1;3233:22;;:8;:22;;::::0;3225:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3309:28;3328:8;3309:18;:28::i;:::-;3144:201:::0;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;18079:380::-;18232:1;18215:19;;:5;:19;;;18207:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18313:1;18294:21;;:7;:21;;;18286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18397:6;18367:11;:18;18379:5;18367:18;;;;;;;;;;;;;;;:27;18386:7;18367:27;;;;;;;;;;;;;;;:36;;;;18435:7;18419:32;;18428:5;18419:32;;;18444:6;18419:32;;;;;;:::i;:::-;;;;;;;;18079:380;;;:::o;18750:453::-;18885:24;18912:25;18922:5;18929:7;18912:9;:25::i;:::-;18885:52;;18972:17;18952:16;:37;18948:248;;19034:6;19014:16;:26;;19006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19118:51;19127:5;19134:7;19162:6;19143:16;:25;19118:8;:51::i;:::-;18948:248;18874:329;18750:453;;;:::o;14958:840::-;15105:1;15089:18;;:4;:18;;;15081:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15182:1;15168:16;;:2;:16;;;15160:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15237:38;15258:4;15264:2;15268:6;15237:20;:38::i;:::-;15288:19;15310:9;:15;15320:4;15310:15;;;;;;;;;;;;;;;;15288:37;;15359:6;15344:11;:21;;15336:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15476:6;15462:11;:20;15444:9;:15;15454:4;15444:15;;;;;;;;;;;;;;;:38;;;;15679:6;15662:9;:13;15672:2;15662:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15729:2;15714:26;;15723:4;15714:26;;;15733:6;15714:26;;;;;;:::i;:::-;;;;;;;;15753:37;15773:4;15779:2;15783:6;15753:19;:37::i;:::-;15070:728;14958:840;;;:::o;2403:132::-;2478:12;:10;:12::i;:::-;2467:23;;:7;:5;:7::i;:::-;:23;;;2459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2403:132::o;16966:675::-;17069:1;17050:21;;:7;:21;;;17042:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17122:49;17143:7;17160:1;17164:6;17122:20;:49::i;:::-;17184:22;17209:9;:18;17219:7;17209:18;;;;;;;;;;;;;;;;17184:43;;17264:6;17246:14;:24;;17238:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17383:6;17366:14;:23;17345:9;:18;17355:7;17345:18;;;;;;;;;;;;;;;:44;;;;17500:6;17484:12;;:22;;;;;;;;;;;17561:1;17535:37;;17544:7;17535:37;;;17565:6;17535:37;;;;;;:::i;:::-;;;;;;;;17585:48;17605:7;17622:1;17626:6;17585:19;:48::i;:::-;17031:610;16966:675;;:::o;3505:191::-;3579:16;3598:6;;;;;;;;;;;3579:25;;3624:8;3615:6;;:17;;;;;;;;;;;;;;;;;;3679:8;3648:40;;3669:8;3648:40;;;;;;;;;;;;3568:128;3505:191;:::o;16085:548::-;16188:1;16169:21;;:7;:21;;;16161:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16239:49;16268:1;16272:7;16281:6;16239:20;:49::i;:::-;16317:6;16301:12;;:22;;;;;;;:::i;:::-;;;;;;;;16494:6;16472:9;:18;16482:7;16472:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16548:7;16527:37;;16544:1;16527:37;;;16557:6;16527:37;;;;;;:::i;:::-;;;;;;;;16577:48;16605:1;16609:7;16618:6;16577:19;:48::i;:::-;16085:548;;:::o;19803:125::-;;;;:::o;20532: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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:60::-;5903:3;5924:5;5917:12;;5875:60;;;:::o;5941:142::-;5991:9;6024:53;6042:34;6051:24;6069:5;6051:24;:::i;:::-;6042:34;:::i;:::-;6024:53;:::i;:::-;6011:66;;5941:142;;;:::o;6089:126::-;6139:9;6172:37;6203:5;6172:37;:::i;:::-;6159:50;;6089:126;;;:::o;6221:140::-;6285:9;6318:37;6349:5;6318:37;:::i;:::-;6305:50;;6221:140;;;:::o;6367:159::-;6468:51;6513:5;6468:51;:::i;:::-;6463:3;6456:64;6367:159;;:::o;6532:250::-;6639:4;6677:2;6666:9;6662:18;6654:26;;6690:85;6772:1;6761:9;6757:17;6748:6;6690:85;:::i;:::-;6532:250;;;;:::o;6788:474::-;6856:6;6864;6913:2;6901:9;6892:7;6888:23;6884:32;6881:119;;;6919:79;;:::i;:::-;6881:119;7039:1;7064:53;7109:7;7100:6;7089:9;7085:22;7064:53;:::i;:::-;7054:63;;7010:117;7166:2;7192:53;7237:7;7228:6;7217:9;7213:22;7192:53;:::i;:::-;7182:63;;7137:118;6788:474;;;;;:::o;7268:180::-;7316:77;7313:1;7306:88;7413:4;7410:1;7403:15;7437:4;7434:1;7427:15;7454:320;7498:6;7535:1;7529:4;7525:12;7515:22;;7582:1;7576:4;7572:12;7603:18;7593:81;;7659:4;7651:6;7647:17;7637:27;;7593:81;7721:2;7713:6;7710:14;7690:18;7687:38;7684:84;;7740:18;;:::i;:::-;7684:84;7505:269;7454:320;;;:::o;7780:180::-;7828:77;7825:1;7818:88;7925:4;7922:1;7915:15;7949:4;7946:1;7939:15;7966:191;8006:3;8025:20;8043:1;8025:20;:::i;:::-;8020:25;;8059:20;8077:1;8059:20;:::i;:::-;8054:25;;8102:1;8099;8095:9;8088:16;;8123:3;8120:1;8117:10;8114:36;;;8130:18;;:::i;:::-;8114:36;7966:191;;;;:::o;8163:194::-;8203:4;8223:20;8241:1;8223:20;:::i;:::-;8218:25;;8257:20;8275:1;8257:20;:::i;:::-;8252:25;;8301:1;8298;8294:9;8286:17;;8325:1;8319:4;8316:11;8313:37;;;8330:18;;:::i;:::-;8313:37;8163:194;;;;:::o;8363:410::-;8403:7;8426:20;8444:1;8426:20;:::i;:::-;8421:25;;8460:20;8478:1;8460:20;:::i;:::-;8455:25;;8515:1;8512;8508:9;8537:30;8555:11;8537:30;:::i;:::-;8526:41;;8716:1;8707:7;8703:15;8700:1;8697:22;8677:1;8670:9;8650:83;8627:139;;8746:18;;:::i;:::-;8627:139;8411:362;8363:410;;;;:::o;8779:180::-;8827:77;8824:1;8817:88;8924:4;8921:1;8914:15;8948:4;8945:1;8938:15;8965:185;9005:1;9022:20;9040:1;9022:20;:::i;:::-;9017:25;;9056:20;9074:1;9056:20;:::i;:::-;9051:25;;9095:1;9085:35;;9100:18;;:::i;:::-;9085:35;9142:1;9139;9135:9;9130:14;;8965:185;;;;:::o;9156:224::-;9296:34;9292:1;9284:6;9280:14;9273:58;9365:7;9360:2;9352:6;9348:15;9341:32;9156:224;:::o;9386:366::-;9528:3;9549:67;9613:2;9608:3;9549:67;:::i;:::-;9542:74;;9625:93;9714:3;9625:93;:::i;:::-;9743:2;9738:3;9734:12;9727:19;;9386:366;;;:::o;9758:419::-;9924:4;9962:2;9951:9;9947:18;9939:26;;10011:9;10005:4;10001:20;9997:1;9986:9;9982:17;9975:47;10039:131;10165:4;10039:131;:::i;:::-;10031:139;;9758:419;;;:::o;10183:143::-;10240:5;10271:6;10265:13;10256:22;;10287:33;10314:5;10287:33;:::i;:::-;10183:143;;;;:::o;10332:351::-;10402:6;10451:2;10439:9;10430:7;10426:23;10422:32;10419:119;;;10457:79;;:::i;:::-;10419:119;10577:1;10602:64;10658:7;10649:6;10638:9;10634:22;10602:64;:::i;:::-;10592:74;;10548:128;10332:351;;;;:::o;10689:442::-;10838:4;10876:2;10865:9;10861:18;10853:26;;10889:71;10957:1;10946:9;10942:17;10933:6;10889:71;:::i;:::-;10970:72;11038:2;11027:9;11023:18;11014:6;10970:72;:::i;:::-;11052;11120:2;11109:9;11105:18;11096:6;11052:72;:::i;:::-;10689:442;;;;;;:::o;11137:116::-;11207:21;11222:5;11207:21;:::i;:::-;11200:5;11197:32;11187:60;;11243:1;11240;11233:12;11187:60;11137:116;:::o;11259:137::-;11313:5;11344:6;11338:13;11329:22;;11360:30;11384:5;11360:30;:::i;:::-;11259:137;;;;:::o;11402:345::-;11469:6;11518:2;11506:9;11497:7;11493:23;11489:32;11486:119;;;11524:79;;:::i;:::-;11486:119;11644:1;11669:61;11722:7;11713:6;11702:9;11698:22;11669:61;:::i;:::-;11659:71;;11615:125;11402:345;;;;:::o;11753:332::-;11874:4;11912:2;11901:9;11897:18;11889:26;;11925:71;11993:1;11982:9;11978:17;11969:6;11925:71;:::i;:::-;12006:72;12074:2;12063:9;12059:18;12050:6;12006:72;:::i;:::-;11753:332;;;;;:::o;12091:225::-;12231:34;12227:1;12219:6;12215:14;12208:58;12300:8;12295:2;12287:6;12283:15;12276:33;12091:225;:::o;12322:366::-;12464:3;12485:67;12549:2;12544:3;12485:67;:::i;:::-;12478:74;;12561:93;12650:3;12561:93;:::i;:::-;12679:2;12674:3;12670:12;12663:19;;12322:366;;;:::o;12694:419::-;12860:4;12898:2;12887:9;12883:18;12875:26;;12947:9;12941:4;12937:20;12933:1;12922:9;12918:17;12911:47;12975:131;13101:4;12975:131;:::i;:::-;12967:139;;12694:419;;;:::o;13119:223::-;13259:34;13255:1;13247:6;13243:14;13236:58;13328:6;13323:2;13315:6;13311:15;13304:31;13119:223;:::o;13348:366::-;13490:3;13511:67;13575:2;13570:3;13511:67;:::i;:::-;13504:74;;13587:93;13676:3;13587:93;:::i;:::-;13705:2;13700:3;13696:12;13689:19;;13348:366;;;:::o;13720:419::-;13886:4;13924:2;13913:9;13909:18;13901:26;;13973:9;13967:4;13963:20;13959:1;13948:9;13944:17;13937:47;14001:131;14127:4;14001:131;:::i;:::-;13993:139;;13720:419;;;:::o;14145:221::-;14285:34;14281:1;14273:6;14269:14;14262:58;14354:4;14349:2;14341:6;14337:15;14330:29;14145:221;:::o;14372:366::-;14514:3;14535:67;14599:2;14594:3;14535:67;:::i;:::-;14528:74;;14611:93;14700:3;14611:93;:::i;:::-;14729:2;14724:3;14720:12;14713:19;;14372:366;;;:::o;14744:419::-;14910:4;14948:2;14937:9;14933:18;14925:26;;14997:9;14991:4;14987:20;14983:1;14972:9;14968:17;14961:47;15025:131;15151:4;15025:131;:::i;:::-;15017:139;;14744:419;;;:::o;15169:179::-;15309:31;15305:1;15297:6;15293:14;15286:55;15169:179;:::o;15354:366::-;15496:3;15517:67;15581:2;15576:3;15517:67;:::i;:::-;15510:74;;15593:93;15682:3;15593:93;:::i;:::-;15711:2;15706:3;15702:12;15695:19;;15354:366;;;:::o;15726:419::-;15892:4;15930:2;15919:9;15915:18;15907:26;;15979:9;15973:4;15969:20;15965:1;15954:9;15950:17;15943:47;16007:131;16133:4;16007:131;:::i;:::-;15999:139;;15726:419;;;:::o;16151:224::-;16291:34;16287:1;16279:6;16275:14;16268:58;16360:7;16355:2;16347:6;16343:15;16336:32;16151:224;:::o;16381:366::-;16523:3;16544:67;16608:2;16603:3;16544:67;:::i;:::-;16537:74;;16620:93;16709:3;16620:93;:::i;:::-;16738:2;16733:3;16729:12;16722:19;;16381:366;;;:::o;16753:419::-;16919:4;16957:2;16946:9;16942:18;16934:26;;17006:9;17000:4;16996:20;16992:1;16981:9;16977:17;16970:47;17034:131;17160:4;17034:131;:::i;:::-;17026:139;;16753:419;;;:::o;17178:222::-;17318:34;17314:1;17306:6;17302:14;17295:58;17387:5;17382:2;17374:6;17370:15;17363:30;17178:222;:::o;17406:366::-;17548:3;17569:67;17633:2;17628:3;17569:67;:::i;:::-;17562:74;;17645:93;17734:3;17645:93;:::i;:::-;17763:2;17758:3;17754:12;17747:19;;17406:366;;;:::o;17778:419::-;17944:4;17982:2;17971:9;17967:18;17959:26;;18031:9;18025:4;18021:20;18017:1;18006:9;18002:17;17995:47;18059:131;18185:4;18059:131;:::i;:::-;18051:139;;17778:419;;;:::o;18203:225::-;18343:34;18339:1;18331:6;18327:14;18320:58;18412:8;18407:2;18399:6;18395:15;18388:33;18203:225;:::o;18434:366::-;18576:3;18597:67;18661:2;18656:3;18597:67;:::i;:::-;18590:74;;18673:93;18762:3;18673:93;:::i;:::-;18791:2;18786:3;18782:12;18775:19;;18434:366;;;:::o;18806:419::-;18972:4;19010:2;18999:9;18995:18;18987:26;;19059:9;19053:4;19049:20;19045:1;19034:9;19030:17;19023:47;19087:131;19213:4;19087:131;:::i;:::-;19079:139;;18806:419;;;:::o;19231:182::-;19371:34;19367:1;19359:6;19355:14;19348:58;19231:182;:::o;19419:366::-;19561:3;19582:67;19646:2;19641:3;19582:67;:::i;:::-;19575:74;;19658:93;19747:3;19658:93;:::i;:::-;19776:2;19771:3;19767:12;19760:19;;19419:366;;;:::o;19791:419::-;19957:4;19995:2;19984:9;19980:18;19972:26;;20044:9;20038:4;20034:20;20030:1;20019:9;20015:17;20008:47;20072:131;20198:4;20072:131;:::i;:::-;20064:139;;19791:419;;;:::o;20216:220::-;20356:34;20352:1;20344:6;20340:14;20333:58;20425:3;20420:2;20412:6;20408:15;20401:28;20216:220;:::o;20442:366::-;20584:3;20605:67;20669:2;20664:3;20605:67;:::i;:::-;20598:74;;20681:93;20770:3;20681:93;:::i;:::-;20799:2;20794:3;20790:12;20783:19;;20442:366;;;:::o;20814:419::-;20980:4;21018:2;21007:9;21003:18;20995:26;;21067:9;21061:4;21057:20;21053:1;21042:9;21038:17;21031:47;21095:131;21221:4;21095:131;:::i;:::-;21087:139;;20814:419;;;:::o;21239:221::-;21379:34;21375:1;21367:6;21363:14;21356:58;21448:4;21443:2;21435:6;21431:15;21424:29;21239:221;:::o;21466:366::-;21608:3;21629:67;21693:2;21688:3;21629:67;:::i;:::-;21622:74;;21705:93;21794:3;21705:93;:::i;:::-;21823:2;21818:3;21814:12;21807:19;;21466:366;;;:::o;21838:419::-;22004:4;22042:2;22031:9;22027:18;22019:26;;22091:9;22085:4;22081:20;22077:1;22066:9;22062:17;22055:47;22119:131;22245:4;22119:131;:::i;:::-;22111:139;;21838:419;;;:::o;22263:181::-;22403:33;22399:1;22391:6;22387:14;22380:57;22263:181;:::o;22450:366::-;22592:3;22613:67;22677:2;22672:3;22613:67;:::i;:::-;22606:74;;22689:93;22778:3;22689:93;:::i;:::-;22807:2;22802:3;22798:12;22791:19;;22450:366;;;:::o;22822:419::-;22988:4;23026:2;23015:9;23011:18;23003:26;;23075:9;23069:4;23065:20;23061:1;23050:9;23046:17;23039:47;23103:131;23229:4;23103:131;:::i;:::-;23095:139;;22822:419;;;:::o

Swarm Source

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