ETH Price: $2,942.32 (-4.08%)
Gas: 2 Gwei

Token

ALLOW (ALLOW)
 

Overview

Max Total Supply

100,000,000,000,000 ALLOW

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
33,333,333,333 ALLOW

Value
$0.00
0x7b6e1d869e32ade209bef692a11977f20e2c0570
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:
ALLOW

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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/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: @openzeppelin/contracts/access/Ownable.sol


// 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: ALLOW.sol

// contracts/ALLOW.sol


//  ______     __         __         ______     __     __    
// /\  __ \   /\ \       /\ \       /\  __ \   /\ \  _ \ \   
// \ \  __ \  \ \ \____  \ \ \____  \ \ \/\ \  \ \ \/ ".\ \  
//  \ \_\ \_\  \ \_____\  \ \_____\  \ \_____\  \ \__/".~\_\ 
//   \/_/\/_/   \/_____/   \/_____/   \/_____/   \/_/   \/_/ 

pragma solidity ^0.8.7;



contract ALLOW is ERC20, Ownable {
    constructor() ERC20("ALLOW", "ALLOW"){}

    /// turn on/off contributions
    bool public allowContributions;

    /// a minimum contribution to participate in the seed round
    uint256 public constant MIN_CONTRIBUTION = .1 ether;

    /// limit the maximum contribution for each wallet
    uint256 public constant MAX_CONTRIBUTION = 1 ether;

    /// the maximum amount of eth that this contract will accept for seed round
    uint256 public constant HARD_CAP = 50 ether;

    /// total number of tokens available
    uint256 public constant MAX_SUPPLY = 100000000000000 * 10 ** 18;

    /// 43% of tokens reserved for seed round
    uint256 public constant SEED_SUPPLY = 43000000000000 * 10 ** 18;

    /// 57% of tokens reserved for LP, social airdrops, and team mint
    uint256 public constant RESERVE_MAX_SUPPLY = 57000000000000 * 10 ** 18;

    /// used to track the total contributions for the seed round
    uint256 public TOTAL_CONTRIBUTED;

    /// used to track the total number of contributors
    uint256 public NUMBER_OF_CONTRIBUTORS;

    /// a struct used to keep track of each contributors address and contribution amount
    struct Contribution {
        address addr;
        uint256 amount;
    }

    /// mapping of contributions
    mapping (uint256 => Contribution) public contribution;

    /// index of an address to it's contribition information
    mapping (address => uint256) public contributor;

    /// collect seed round contributions
    function sendToSeed() public payable {

        /// look up the sender's current contribution amount in the mapping
        uint256 currentContribution = contribution[contributor[msg.sender]].amount;

        /// initialize a contribution index so we can keep track of this address' contributions
        uint256 contributionIndex;

        require(msg.value >= MIN_CONTRIBUTION, "Contribution too low");

        /// check to see if contributions are allowed
        require (allowContributions, "Contributions not allowed");

        /// enforce per-wallet contribution limit
        require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit");

        /// enforce hard cap
        require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap"); 

        if (contributor[msg.sender] != 0){
            /// no need to increase the number of contributors since this person already added
            contributionIndex = contributor[msg.sender];
        } else {
            /// keep track of each new contributor with a unique index
            contributionIndex = NUMBER_OF_CONTRIBUTORS + 1;
            NUMBER_OF_CONTRIBUTORS++;
        }

        /// add the contribution to the amount contributed
        TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value;

        /// keep track of the address' contributions so far
        contributor[msg.sender] = contributionIndex;
        contribution[contributionIndex].addr = msg.sender;
        contribution[contributionIndex].amount += msg.value;
    }

    /// allow contributors to send directly to the contract
    receive() external payable {
        sendToSeed();
    }

    function airdropSeed() external onlyOwner {
        
        /// determine the price per token
        uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/SEED_SUPPLY;

        /// loop over each contribution and distribute tokens
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTORS; i++) {

            /// convert contribution to 18 decimals
            uint256 contributionAmount = contribution[i].amount * 10 ** 18;

            /// calculate the percentage of the pool based on the address' contribution
            uint256 numberOfTokensToMint = contributionAmount/pricePerToken;

            /// mint the tokens to the address
            _mint(contribution[i].addr, numberOfTokensToMint);
        }
    }

    /// team mint the remainder of the pool to round out the supply
    function teamMint() external onlyOwner {

        /// calculate the remaining supply
        uint256 numberToMint = MAX_SUPPLY - totalSupply();
        
        /// don't allow the team mint until the tokens have been airdropped
        require (numberToMint <= RESERVE_MAX_SUPPLY, "Team mint limited to reserve max");

        /// mint the remaining supply to the team's wallet
        _mint(msg.sender, numberToMint);
    }

     /// set whether or not the contract allows contributions
    function setAllowContributions(bool _value) external onlyOwner {
        allowContributions = _value;
    }

    /// if there are not enough contributions or we hit a bug, refund everyone their ETH
    function refundContributors(uint256 _startIndex, uint256 _endIndex) external onlyOwner {
        for (uint256 i = _startIndex; i <= _endIndex;) {
            payable(contribution[i].addr).transfer(contribution[i].amount);
            ++i;
        }
    }

    /// allows the owner to withdraw the funds in this contract
    function withdrawBalance(address payable _address) external onlyOwner {
        (bool success, ) = _address.call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributor","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":"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":[{"internalType":"uint256","name":"_startIndex","type":"uint256"},{"internalType":"uint256","name":"_endIndex","type":"uint256"}],"name":"refundContributors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToSeed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f414c4c4f570000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f414c4c4f57000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6128db80620002cb6000396000f3fe6080604052600436106101dc5760003560e01c8063715018a611610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610696578063df334677146106d3578063e8709c40146106fc578063f2fde38b1461073a576101eb565b8063a9059cbb146105da578063ba7a86b814610617578063c26993261461062e578063ceb3560514610659576101eb565b80638da5cb5b116100d15780638da5cb5b1461051c57806394d95f8f1461054757806395d89b4114610572578063a457c2d71461059d576101eb565b8063715018a61461049c578063756af45f146104b35780638271a012146104dc57806387e3c520146104f3576101eb565b806332cb6b0c1161017a57806340650c911161014957806340650c91146103de5780635ea06028146104095780637072e45c1461043457806370a082311461045f576101eb565b806332cb6b0c14610320578063395093511461034b5780633a03171c146103885780633ba86ee0146103b3576101eb565b806318160ddd116101b657806318160ddd1461026257806323b872dd1461028d5780632a8a3e87146102ca578063313ce567146102f5576101eb565b806306fdde03146101f0578063095ea7b31461021b57806318146ba114610258576101eb565b366101eb576101e9610763565b005b600080fd5b3480156101fc57600080fd5b50610205610a9e565b6040516102129190611f3a565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d9190611b24565b610b30565b60405161024f9190611f1f565b60405180910390f35b610260610763565b005b34801561026e57600080fd5b50610277610b53565b604051610284919061215c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190611ad1565b610b5d565b6040516102c19190611f1f565b60405180910390f35b3480156102d657600080fd5b506102df610b8c565b6040516102ec919061215c565b60405180910390f35b34801561030157600080fd5b5061030a610b92565b6040516103179190612177565b60405180910390f35b34801561032c57600080fd5b50610335610b9b565b604051610342919061215c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190611b24565b610bad565b60405161037f9190611f1f565b60405180910390f35b34801561039457600080fd5b5061039d610be4565b6040516103aa919061215c565b60405180910390f35b3480156103bf57600080fd5b506103c8610bf1565b6040516103d5919061215c565b60405180910390f35b3480156103ea57600080fd5b506103f3610c03565b604051610400919061215c565b60405180910390f35b34801561041557600080fd5b5061041e610c0f565b60405161042b919061215c565b60405180910390f35b34801561044057600080fd5b50610449610c15565b6040516104569190611f1f565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190611a37565b610c28565b604051610493919061215c565b60405180910390f35b3480156104a857600080fd5b506104b1610c70565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190611a64565b610c84565b005b3480156104e857600080fd5b506104f1610d3c565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190611b64565b610e1e565b005b34801561052857600080fd5b50610531610e43565b60405161053e9190611edb565b60405180910390f35b34801561055357600080fd5b5061055c610e6d565b604051610569919061215c565b60405180910390f35b34801561057e57600080fd5b50610587610e79565b6040516105949190611f3a565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190611b24565b610f0b565b6040516105d19190611f1f565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190611b24565b610f82565b60405161060e9190611f1f565b60405180910390f35b34801561062357600080fd5b5061062c610fa5565b005b34801561063a57600080fd5b50610643611030565b604051610650919061215c565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190611a37565b611042565b60405161068d919061215c565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190611a91565b61105a565b6040516106ca919061215c565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190611bbe565b6110e1565b005b34801561070857600080fd5b50610723600480360381019061071e9190611b91565b61119f565b604051610731929190611ef6565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190611a37565b6111e3565b005b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a000034101561080a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108019061205c565b60405180910390fd5b600560149054906101000a900460ff16610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061209c565b60405180910390fd5b670de0b6b3a7640000823461086e91906121b9565b11156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a69061201c565b60405180910390fd5b6802b5e3af16b1880000600654346108c791906121b9565b1115610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff9061203c565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461099657600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506109c0565b60016007546109a591906121b9565b9050600760008154809291906109ba9061239a565b91905055505b346006546109ce91906121b9565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610a9391906121b9565b925050819055505050565b606060038054610aad90612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990612368565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b600080610b3b611267565b9050610b4881858561126f565b600191505092915050565b6000600254905090565b600080610b68611267565b9050610b7585828561143a565b610b808585856114c6565b60019150509392505050565b60075481565b60006012905090565b6d04ee2d6d415b85acef810000000081565b600080610bb8611267565b9050610bd9818585610bca858961105a565b610bd491906121b9565b61126f565b600191505092915050565b6802b5e3af16b188000081565b6d021ebc7e56fbd5a3f658c000000081565b67016345785d8a000081565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c7861173e565b610c8260006117bc565b565b610c8c61173e565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610cb290611ec6565b60006040518083038185875af1925050503d8060008114610cef576040519150601f19603f3d011682016040523d82523d6000602084013e610cf4565b606091505b5050905080610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611fbc565b60405180910390fd5b5050565b610d4461173e565b60006d021ebc7e56fbd5a3f658c0000000670de0b6b3a7640000600654610d6b9190612240565b610d75919061220f565b90506000600190505b6007548111610e1a576000670de0b6b3a76400006008600084815260200190815260200160002060010154610db39190612240565b905060008382610dc3919061220f565b9050610e056008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611882565b50508080610e129061239a565b915050610d7e565b5050565b610e2661173e565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670de0b6b3a764000081565b606060048054610e8890612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb490612368565b8015610f015780601f10610ed657610100808354040283529160200191610f01565b820191906000526020600020905b815481529060010190602001808311610ee457829003601f168201915b5050505050905090565b600080610f16611267565b90506000610f24828661105a565b905083811015610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f609061211c565b60405180910390fd5b610f76828686840361126f565b60019250505092915050565b600080610f8d611267565b9050610f9a8185856114c6565b600191505092915050565b610fad61173e565b6000610fb7610b53565b6d04ee2d6d415b85acef8100000000610fd0919061229a565b90506d02cf70eeea5fb008f92840000000811115611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a906120bc565b60405180910390fd5b61102d3382611882565b50565b6d02cf70eeea5fb008f9284000000081565b60096020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110e961173e565b60008290505b81811161119a576008600082815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60086000848152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611188573d6000803e3d6000fd5b50806111939061239a565b90506110ef565b505050565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111eb61173e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290611f7c565b60405180910390fd5b611264816117bc565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d6906120fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690611f9c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142d919061215c565b60405180910390a3505050565b6000611446848461105a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114c057818110156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990611fdc565b60405180910390fd5b6114bf848484840361126f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906120dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90611f5c565b60405180910390fd5b6115b18383836119d9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90611ffc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611725919061215c565b60405180910390a36117388484846119de565b50505050565b611746611267565b73ffffffffffffffffffffffffffffffffffffffff16611764610e43565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061207c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e99061213c565b60405180910390fd5b6118fe600083836119d9565b806002600082825461191091906121b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119c1919061215c565b60405180910390a36119d5600083836119de565b5050565b505050565b505050565b6000813590506119f281612849565b92915050565b600081359050611a0781612860565b92915050565b600081359050611a1c81612877565b92915050565b600081359050611a318161288e565b92915050565b600060208284031215611a4d57611a4c612470565b5b6000611a5b848285016119e3565b91505092915050565b600060208284031215611a7a57611a79612470565b5b6000611a88848285016119f8565b91505092915050565b60008060408385031215611aa857611aa7612470565b5b6000611ab6858286016119e3565b9250506020611ac7858286016119e3565b9150509250929050565b600080600060608486031215611aea57611ae9612470565b5b6000611af8868287016119e3565b9350506020611b09868287016119e3565b9250506040611b1a86828701611a22565b9150509250925092565b60008060408385031215611b3b57611b3a612470565b5b6000611b49858286016119e3565b9250506020611b5a85828601611a22565b9150509250929050565b600060208284031215611b7a57611b79612470565b5b6000611b8884828501611a0d565b91505092915050565b600060208284031215611ba757611ba6612470565b5b6000611bb584828501611a22565b91505092915050565b60008060408385031215611bd557611bd4612470565b5b6000611be385828601611a22565b9250506020611bf485828601611a22565b9150509250929050565b611c07816122ce565b82525050565b611c16816122f2565b82525050565b6000611c2782612192565b611c3181856121a8565b9350611c41818560208601612335565b611c4a81612475565b840191505092915050565b6000611c626023836121a8565b9150611c6d82612486565b604082019050919050565b6000611c856026836121a8565b9150611c90826124d5565b604082019050919050565b6000611ca86022836121a8565b9150611cb382612524565b604082019050919050565b6000611ccb600f836121a8565b9150611cd682612573565b602082019050919050565b6000611cee601d836121a8565b9150611cf98261259c565b602082019050919050565b6000611d116026836121a8565b9150611d1c826125c5565b604082019050919050565b6000611d346025836121a8565b9150611d3f82612614565b604082019050919050565b6000611d57601d836121a8565b9150611d6282612663565b602082019050919050565b6000611d7a6014836121a8565b9150611d858261268c565b602082019050919050565b6000611d9d6020836121a8565b9150611da8826126b5565b602082019050919050565b6000611dc06019836121a8565b9150611dcb826126de565b602082019050919050565b6000611de36020836121a8565b9150611dee82612707565b602082019050919050565b6000611e066025836121a8565b9150611e1182612730565b604082019050919050565b6000611e2960008361219d565b9150611e348261277f565b600082019050919050565b6000611e4c6024836121a8565b9150611e5782612782565b604082019050919050565b6000611e6f6025836121a8565b9150611e7a826127d1565b604082019050919050565b6000611e92601f836121a8565b9150611e9d82612820565b602082019050919050565b611eb18161231e565b82525050565b611ec081612328565b82525050565b6000611ed182611e1c565b9150819050919050565b6000602082019050611ef06000830184611bfe565b92915050565b6000604082019050611f0b6000830185611bfe565b611f186020830184611ea8565b9392505050565b6000602082019050611f346000830184611c0d565b92915050565b60006020820190508181036000830152611f548184611c1c565b905092915050565b60006020820190508181036000830152611f7581611c55565b9050919050565b60006020820190508181036000830152611f9581611c78565b9050919050565b60006020820190508181036000830152611fb581611c9b565b9050919050565b60006020820190508181036000830152611fd581611cbe565b9050919050565b60006020820190508181036000830152611ff581611ce1565b9050919050565b6000602082019050818103600083015261201581611d04565b9050919050565b6000602082019050818103600083015261203581611d27565b9050919050565b6000602082019050818103600083015261205581611d4a565b9050919050565b6000602082019050818103600083015261207581611d6d565b9050919050565b6000602082019050818103600083015261209581611d90565b9050919050565b600060208201905081810360008301526120b581611db3565b9050919050565b600060208201905081810360008301526120d581611dd6565b9050919050565b600060208201905081810360008301526120f581611df9565b9050919050565b6000602082019050818103600083015261211581611e3f565b9050919050565b6000602082019050818103600083015261213581611e62565b9050919050565b6000602082019050818103600083015261215581611e85565b9050919050565b60006020820190506121716000830184611ea8565b92915050565b600060208201905061218c6000830184611eb7565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006121c48261231e565b91506121cf8361231e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612204576122036123e3565b5b828201905092915050565b600061221a8261231e565b91506122258361231e565b92508261223557612234612412565b5b828204905092915050565b600061224b8261231e565b91506122568361231e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228f5761228e6123e3565b5b828202905092915050565b60006122a58261231e565b91506122b08361231e565b9250828210156122c3576122c26123e3565b5b828203905092915050565b60006122d9826122fe565b9050919050565b60006122eb826122fe565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612353578082015181840152602081019050612338565b83811115612362576000848401525b50505050565b6000600282049050600182168061238057607f821691505b6020821081141561239457612393612441565b5b50919050565b60006123a58261231e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123d8576123d76123e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f5465616d206d696e74206c696d6974656420746f2072657365727665206d6178600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612852816122ce565b811461285d57600080fd5b50565b612869816122e0565b811461287457600080fd5b50565b612880816122f2565b811461288b57600080fd5b50565b6128978161231e565b81146128a257600080fd5b5056fea264697066735822122055db1f7be648b2c800cfcc61712439f2cc0e05e7b44bccc86c3fdd2c996cf41764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c8063715018a611610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610696578063df334677146106d3578063e8709c40146106fc578063f2fde38b1461073a576101eb565b8063a9059cbb146105da578063ba7a86b814610617578063c26993261461062e578063ceb3560514610659576101eb565b80638da5cb5b116100d15780638da5cb5b1461051c57806394d95f8f1461054757806395d89b4114610572578063a457c2d71461059d576101eb565b8063715018a61461049c578063756af45f146104b35780638271a012146104dc57806387e3c520146104f3576101eb565b806332cb6b0c1161017a57806340650c911161014957806340650c91146103de5780635ea06028146104095780637072e45c1461043457806370a082311461045f576101eb565b806332cb6b0c14610320578063395093511461034b5780633a03171c146103885780633ba86ee0146103b3576101eb565b806318160ddd116101b657806318160ddd1461026257806323b872dd1461028d5780632a8a3e87146102ca578063313ce567146102f5576101eb565b806306fdde03146101f0578063095ea7b31461021b57806318146ba114610258576101eb565b366101eb576101e9610763565b005b600080fd5b3480156101fc57600080fd5b50610205610a9e565b6040516102129190611f3a565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d9190611b24565b610b30565b60405161024f9190611f1f565b60405180910390f35b610260610763565b005b34801561026e57600080fd5b50610277610b53565b604051610284919061215c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190611ad1565b610b5d565b6040516102c19190611f1f565b60405180910390f35b3480156102d657600080fd5b506102df610b8c565b6040516102ec919061215c565b60405180910390f35b34801561030157600080fd5b5061030a610b92565b6040516103179190612177565b60405180910390f35b34801561032c57600080fd5b50610335610b9b565b604051610342919061215c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190611b24565b610bad565b60405161037f9190611f1f565b60405180910390f35b34801561039457600080fd5b5061039d610be4565b6040516103aa919061215c565b60405180910390f35b3480156103bf57600080fd5b506103c8610bf1565b6040516103d5919061215c565b60405180910390f35b3480156103ea57600080fd5b506103f3610c03565b604051610400919061215c565b60405180910390f35b34801561041557600080fd5b5061041e610c0f565b60405161042b919061215c565b60405180910390f35b34801561044057600080fd5b50610449610c15565b6040516104569190611f1f565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190611a37565b610c28565b604051610493919061215c565b60405180910390f35b3480156104a857600080fd5b506104b1610c70565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190611a64565b610c84565b005b3480156104e857600080fd5b506104f1610d3c565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190611b64565b610e1e565b005b34801561052857600080fd5b50610531610e43565b60405161053e9190611edb565b60405180910390f35b34801561055357600080fd5b5061055c610e6d565b604051610569919061215c565b60405180910390f35b34801561057e57600080fd5b50610587610e79565b6040516105949190611f3a565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190611b24565b610f0b565b6040516105d19190611f1f565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190611b24565b610f82565b60405161060e9190611f1f565b60405180910390f35b34801561062357600080fd5b5061062c610fa5565b005b34801561063a57600080fd5b50610643611030565b604051610650919061215c565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190611a37565b611042565b60405161068d919061215c565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190611a91565b61105a565b6040516106ca919061215c565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190611bbe565b6110e1565b005b34801561070857600080fd5b50610723600480360381019061071e9190611b91565b61119f565b604051610731929190611ef6565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190611a37565b6111e3565b005b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a000034101561080a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108019061205c565b60405180910390fd5b600560149054906101000a900460ff16610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061209c565b60405180910390fd5b670de0b6b3a7640000823461086e91906121b9565b11156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a69061201c565b60405180910390fd5b6802b5e3af16b1880000600654346108c791906121b9565b1115610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff9061203c565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461099657600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506109c0565b60016007546109a591906121b9565b9050600760008154809291906109ba9061239a565b91905055505b346006546109ce91906121b9565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610a9391906121b9565b925050819055505050565b606060038054610aad90612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990612368565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b600080610b3b611267565b9050610b4881858561126f565b600191505092915050565b6000600254905090565b600080610b68611267565b9050610b7585828561143a565b610b808585856114c6565b60019150509392505050565b60075481565b60006012905090565b6d04ee2d6d415b85acef810000000081565b600080610bb8611267565b9050610bd9818585610bca858961105a565b610bd491906121b9565b61126f565b600191505092915050565b6802b5e3af16b188000081565b6d021ebc7e56fbd5a3f658c000000081565b67016345785d8a000081565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c7861173e565b610c8260006117bc565b565b610c8c61173e565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610cb290611ec6565b60006040518083038185875af1925050503d8060008114610cef576040519150601f19603f3d011682016040523d82523d6000602084013e610cf4565b606091505b5050905080610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611fbc565b60405180910390fd5b5050565b610d4461173e565b60006d021ebc7e56fbd5a3f658c0000000670de0b6b3a7640000600654610d6b9190612240565b610d75919061220f565b90506000600190505b6007548111610e1a576000670de0b6b3a76400006008600084815260200190815260200160002060010154610db39190612240565b905060008382610dc3919061220f565b9050610e056008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611882565b50508080610e129061239a565b915050610d7e565b5050565b610e2661173e565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670de0b6b3a764000081565b606060048054610e8890612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb490612368565b8015610f015780601f10610ed657610100808354040283529160200191610f01565b820191906000526020600020905b815481529060010190602001808311610ee457829003601f168201915b5050505050905090565b600080610f16611267565b90506000610f24828661105a565b905083811015610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f609061211c565b60405180910390fd5b610f76828686840361126f565b60019250505092915050565b600080610f8d611267565b9050610f9a8185856114c6565b600191505092915050565b610fad61173e565b6000610fb7610b53565b6d04ee2d6d415b85acef8100000000610fd0919061229a565b90506d02cf70eeea5fb008f92840000000811115611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a906120bc565b60405180910390fd5b61102d3382611882565b50565b6d02cf70eeea5fb008f9284000000081565b60096020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110e961173e565b60008290505b81811161119a576008600082815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60086000848152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611188573d6000803e3d6000fd5b50806111939061239a565b90506110ef565b505050565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111eb61173e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290611f7c565b60405180910390fd5b611264816117bc565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d6906120fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690611f9c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142d919061215c565b60405180910390a3505050565b6000611446848461105a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114c057818110156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990611fdc565b60405180910390fd5b6114bf848484840361126f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906120dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90611f5c565b60405180910390fd5b6115b18383836119d9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90611ffc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611725919061215c565b60405180910390a36117388484846119de565b50505050565b611746611267565b73ffffffffffffffffffffffffffffffffffffffff16611764610e43565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061207c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e99061213c565b60405180910390fd5b6118fe600083836119d9565b806002600082825461191091906121b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119c1919061215c565b60405180910390a36119d5600083836119de565b5050565b505050565b505050565b6000813590506119f281612849565b92915050565b600081359050611a0781612860565b92915050565b600081359050611a1c81612877565b92915050565b600081359050611a318161288e565b92915050565b600060208284031215611a4d57611a4c612470565b5b6000611a5b848285016119e3565b91505092915050565b600060208284031215611a7a57611a79612470565b5b6000611a88848285016119f8565b91505092915050565b60008060408385031215611aa857611aa7612470565b5b6000611ab6858286016119e3565b9250506020611ac7858286016119e3565b9150509250929050565b600080600060608486031215611aea57611ae9612470565b5b6000611af8868287016119e3565b9350506020611b09868287016119e3565b9250506040611b1a86828701611a22565b9150509250925092565b60008060408385031215611b3b57611b3a612470565b5b6000611b49858286016119e3565b9250506020611b5a85828601611a22565b9150509250929050565b600060208284031215611b7a57611b79612470565b5b6000611b8884828501611a0d565b91505092915050565b600060208284031215611ba757611ba6612470565b5b6000611bb584828501611a22565b91505092915050565b60008060408385031215611bd557611bd4612470565b5b6000611be385828601611a22565b9250506020611bf485828601611a22565b9150509250929050565b611c07816122ce565b82525050565b611c16816122f2565b82525050565b6000611c2782612192565b611c3181856121a8565b9350611c41818560208601612335565b611c4a81612475565b840191505092915050565b6000611c626023836121a8565b9150611c6d82612486565b604082019050919050565b6000611c856026836121a8565b9150611c90826124d5565b604082019050919050565b6000611ca86022836121a8565b9150611cb382612524565b604082019050919050565b6000611ccb600f836121a8565b9150611cd682612573565b602082019050919050565b6000611cee601d836121a8565b9150611cf98261259c565b602082019050919050565b6000611d116026836121a8565b9150611d1c826125c5565b604082019050919050565b6000611d346025836121a8565b9150611d3f82612614565b604082019050919050565b6000611d57601d836121a8565b9150611d6282612663565b602082019050919050565b6000611d7a6014836121a8565b9150611d858261268c565b602082019050919050565b6000611d9d6020836121a8565b9150611da8826126b5565b602082019050919050565b6000611dc06019836121a8565b9150611dcb826126de565b602082019050919050565b6000611de36020836121a8565b9150611dee82612707565b602082019050919050565b6000611e066025836121a8565b9150611e1182612730565b604082019050919050565b6000611e2960008361219d565b9150611e348261277f565b600082019050919050565b6000611e4c6024836121a8565b9150611e5782612782565b604082019050919050565b6000611e6f6025836121a8565b9150611e7a826127d1565b604082019050919050565b6000611e92601f836121a8565b9150611e9d82612820565b602082019050919050565b611eb18161231e565b82525050565b611ec081612328565b82525050565b6000611ed182611e1c565b9150819050919050565b6000602082019050611ef06000830184611bfe565b92915050565b6000604082019050611f0b6000830185611bfe565b611f186020830184611ea8565b9392505050565b6000602082019050611f346000830184611c0d565b92915050565b60006020820190508181036000830152611f548184611c1c565b905092915050565b60006020820190508181036000830152611f7581611c55565b9050919050565b60006020820190508181036000830152611f9581611c78565b9050919050565b60006020820190508181036000830152611fb581611c9b565b9050919050565b60006020820190508181036000830152611fd581611cbe565b9050919050565b60006020820190508181036000830152611ff581611ce1565b9050919050565b6000602082019050818103600083015261201581611d04565b9050919050565b6000602082019050818103600083015261203581611d27565b9050919050565b6000602082019050818103600083015261205581611d4a565b9050919050565b6000602082019050818103600083015261207581611d6d565b9050919050565b6000602082019050818103600083015261209581611d90565b9050919050565b600060208201905081810360008301526120b581611db3565b9050919050565b600060208201905081810360008301526120d581611dd6565b9050919050565b600060208201905081810360008301526120f581611df9565b9050919050565b6000602082019050818103600083015261211581611e3f565b9050919050565b6000602082019050818103600083015261213581611e62565b9050919050565b6000602082019050818103600083015261215581611e85565b9050919050565b60006020820190506121716000830184611ea8565b92915050565b600060208201905061218c6000830184611eb7565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006121c48261231e565b91506121cf8361231e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612204576122036123e3565b5b828201905092915050565b600061221a8261231e565b91506122258361231e565b92508261223557612234612412565b5b828204905092915050565b600061224b8261231e565b91506122568361231e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228f5761228e6123e3565b5b828202905092915050565b60006122a58261231e565b91506122b08361231e565b9250828210156122c3576122c26123e3565b5b828203905092915050565b60006122d9826122fe565b9050919050565b60006122eb826122fe565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612353578082015181840152602081019050612338565b83811115612362576000848401525b50505050565b6000600282049050600182168061238057607f821691505b6020821081141561239457612393612441565b5b50919050565b60006123a58261231e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123d8576123d76123e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f5465616d206d696e74206c696d6974656420746f2072657365727665206d6178600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612852816122ce565b811461285d57600080fd5b50565b612869816122e0565b811461287457600080fd5b50565b612880816122f2565b811461288b57600080fd5b50565b6128978161231e565b81146128a257600080fd5b5056fea264697066735822122055db1f7be648b2c800cfcc61712439f2cc0e05e7b44bccc86c3fdd2c996cf41764736f6c63430008070033

Deployed Bytecode Sourcemap

20937:5353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24200:12;:10;:12::i;:::-;20937:5353;;;;;6651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22493:1600;;;:::i;:::-;;7771:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22017:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7613:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21513:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21419:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21632:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21163:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21920:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21059:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7942:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19722:103;;;;;;;;;;;;;:::i;:::-;;26086:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24228:736;;;;;;;;;;;;;:::i;:::-;;25547:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21279:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11228:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25041:435;;;;;;;;;;;;;:::i;:::-;;21775:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22395:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8531:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25754:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22271:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;19980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22493:1600;22620:27;22650:12;:37;22663:11;:23;22675:10;22663:23;;;;;;;;;;;;;;;;22650:37;;;;;;;;;;;:44;;;22620:74;;22804:25;21206:8;22850:9;:29;;22842:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22981:18;;;;;;;;;;;22972:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21322:7;23114:19;23102:9;:31;;;;:::i;:::-;:51;;23093:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;21454:8;23259:17;;23247:9;:29;;;;:::i;:::-;:41;;23238:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;23367:1;23340:11;:23;23352:10;23340:23;;;;;;;;;;;;;;;;:28;23336:389;;23500:11;:23;23512:10;23500:23;;;;;;;;;;;;;;;;23480:43;;23336:389;;;23673:1;23648:22;;:26;;;;:::i;:::-;23628:46;;23689:22;;:24;;;;;;;;;:::i;:::-;;;;;;23336:389;23837:9;23817:17;;:29;;;;:::i;:::-;23797:17;:49;;;;23946:17;23920:11;:23;23932:10;23920:23;;;;;;;;;;;;;;;:43;;;;24013:10;23974:12;:31;23987:17;23974:31;;;;;;;;;;;:36;;;:49;;;;;;;;;;;;;;;;;;24076:9;24034:12;:31;24047:17;24034:31;;;;;;;;;;;:38;;;:51;;;;;;;:::i;:::-;;;;;;;;22530:1563;;22493:1600::o;6651:100::-;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;9102:13;9118:12;:10;:12::i;:::-;9102:28;;9141:32;9150:5;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;:::o;7771:108::-;7832:7;7859:12;;7852:19;;7771:108;:::o;9783:295::-;9914:4;9931:15;9949:12;:10;:12::i;:::-;9931:30;;9972:38;9988:4;9994:7;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;10066:4;10059:11;;;9783:295;;;;;:::o;22017:37::-;;;;:::o;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;21513:63::-;21550:26;21513:63;:::o;10487:238::-;10575:4;10592:13;10608:12;:10;:12::i;:::-;10592:28;;10631:64;10640:5;10647:7;10684:10;10656:25;10666:5;10673:7;10656:9;:25::i;:::-;:38;;;;:::i;:::-;10631:8;:64::i;:::-;10713:4;10706:11;;;10487:238;;;;:::o;21419:43::-;21454:8;21419:43;:::o;21632:63::-;21670:25;21632:63;:::o;21163:51::-;21206:8;21163:51;:::o;21920:32::-;;;;:::o;21059:30::-;;;;;;;;;;;;;:::o;7942:127::-;8016:7;8043:9;:18;8053:7;8043:18;;;;;;;;;;;;;;;;8036:25;;7942:127;;;:::o;19722:103::-;18960:13;:11;:13::i;:::-;19787:30:::1;19814:1;19787:18;:30::i;:::-;19722:103::o:0;26086:201::-;18960:13;:11;:13::i;:::-;26168:12:::1;26186:8;:13;;26207:21;26186:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26167:66;;;26252:7;26244:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;26156:131;26086:201:::0;:::o;24228:736::-;18960:13;:11;:13::i;:::-;24334:21:::1;21670:25;24379:8;24359:17;;:28;;;;:::i;:::-;24358:42;;;;:::i;:::-;24334:66;;24481:9;24493:1;24481:13;;24476:481;24501:22;;24496:1;:27;24476:481;;24600:26;24654:8;24629:12;:15;24642:1;24629:15;;;;;;;;;;;:22;;;:33;;;;:::i;:::-;24600:62;;24768:28;24818:13;24799:18;:32;;;;:::i;:::-;24768:63;;24896:49;24902:12;:15;24915:1;24902:15;;;;;;;;;;;:20;;;;;;;;;;;;24924;24896:5;:49::i;:::-;24530:427;;24525:3;;;;;:::i;:::-;;;;24476:481;;;;24270:694;24228:736::o:0;25547:109::-;18960:13;:11;:13::i;:::-;25642:6:::1;25621:18;;:27;;;;;;;;;;;;;;;;;;25547:109:::0;:::o;19074:87::-;19120:7;19147:6;;;;;;;;;;;19140:13;;19074:87;:::o;21279:50::-;21322:7;21279:50;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870:104;:::o;11228:436::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377:24;11404:25;11414:5;11421:7;11404:9;:25::i;:::-;11377:52;;11468:15;11448:16;:35;;11440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;:::-;11652:4;11645:11;;;;11228:436;;;;:::o;8275:193::-;8354:4;8371:13;8387:12;:10;:12::i;:::-;8371:28;;8410;8420:5;8427:2;8431:6;8410:9;:28::i;:::-;8456:4;8449:11;;;8275:193;;;;:::o;25041:435::-;18960:13;:11;:13::i;:::-;25137:20:::1;25173:13;:11;:13::i;:::-;21550:26;25160;;;;:::i;:::-;25137:49;;21820:25;25293:12;:34;;25284:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;25437:31;25443:10;25455:12;25437:5;:31::i;:::-;25080:396;25041:435::o:0;21775:70::-;21820:25;21775:70;:::o;22395:47::-;;;;;;;;;;;;;;;;;:::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;25754:259::-;18960:13;:11;:13::i;:::-;25857:9:::1;25869:11;25857:23;;25852:154;25887:9;25882:1;:14;25852:154;;25922:12;:15;25935:1;25922:15;;;;;;;;;;;:20;;;;;;;;;;;;25914:38;;:62;25953:12;:15;25966:1;25953:15;;;;;;;;;;;:22;;;25914:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25991:3;;;;:::i;:::-;;;25852:154;;;;25754:259:::0;;:::o;22271:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19980:201::-;18960:13;:11;:13::i;:::-;20089:1:::1;20069:22;;:8;:22;;;;20061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20145:28;20164:8;20145:18;:28::i;:::-;19980:201:::0;:::o;4293:98::-;4346:7;4373:10;4366:17;;4293:98;:::o;15255:380::-;15408:1;15391:19;;:5;:19;;;;15383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:1;15470:21;;:7;:21;;;;15462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:6;15543:11;:18;15555:5;15543:18;;;;;;;;;;;;;;;:27;15562:7;15543:27;;;;;;;;;;;;;;;:36;;;;15611:7;15595:32;;15604:5;15595:32;;;15620:6;15595:32;;;;;;:::i;:::-;;;;;;;;15255:380;;;:::o;15926:453::-;16061:24;16088:25;16098:5;16105:7;16088:9;:25::i;:::-;16061:52;;16148:17;16128:16;:37;16124:248;;16210:6;16190:16;:26;;16182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16124:248;16050:329;15926:453;;;:::o;12134:840::-;12281:1;12265:18;;:4;:18;;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12134:840;;;:::o;19239:132::-;19314:12;:10;:12::i;:::-;19303:23;;:7;:5;:7::i;:::-;:23;;;19295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19239:132::o;20341:191::-;20415:16;20434:6;;;;;;;;;;;20415:25;;20460:8;20451:6;;:17;;;;;;;;;;;;;;;;;;20515:8;20484:40;;20505:8;20484:40;;;;;;;;;;;;20404:128;20341:191;:::o;13261:548::-;13364:1;13345:21;;:7;:21;;;;13337:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13415:49;13444:1;13448:7;13457:6;13415:20;:49::i;:::-;13493:6;13477:12;;:22;;;;;;;:::i;:::-;;;;;;;;13670:6;13648:9;:18;13658:7;13648:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13724:7;13703:37;;13720:1;13703:37;;;13733:6;13703:37;;;;;;:::i;:::-;;;;;;;;13753:48;13781:1;13785:7;13794:6;13753:19;:48::i;:::-;13261:548;;:::o;16979:125::-;;;;:::o;17708:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:155::-;206:5;244:6;231:20;222:29;;260:41;295:5;260:41;:::i;:::-;152:155;;;;:::o;313:133::-;356:5;394:6;381:20;372:29;;410:30;434:5;410:30;:::i;:::-;313:133;;;;:::o;452:139::-;498:5;536:6;523:20;514:29;;552:33;579:5;552:33;:::i;:::-;452:139;;;;:::o;597:329::-;656:6;705:2;693:9;684:7;680:23;676:32;673:119;;;711:79;;:::i;:::-;673:119;831:1;856:53;901:7;892:6;881:9;877:22;856:53;:::i;:::-;846:63;;802:117;597:329;;;;:::o;932:345::-;999:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:119;;;1054:79;;:::i;:::-;1016:119;1174:1;1199:61;1252:7;1243:6;1232:9;1228:22;1199:61;:::i;:::-;1189:71;;1145:125;932:345;;;;:::o;1283:474::-;1351:6;1359;1408:2;1396:9;1387:7;1383:23;1379:32;1376:119;;;1414:79;;:::i;:::-;1376:119;1534:1;1559:53;1604:7;1595:6;1584:9;1580:22;1559:53;:::i;:::-;1549:63;;1505:117;1661:2;1687:53;1732:7;1723:6;1712:9;1708:22;1687:53;:::i;:::-;1677:63;;1632:118;1283:474;;;;;:::o;1763:619::-;1840:6;1848;1856;1905:2;1893:9;1884:7;1880:23;1876:32;1873:119;;;1911:79;;:::i;:::-;1873:119;2031:1;2056:53;2101:7;2092:6;2081:9;2077:22;2056:53;:::i;:::-;2046:63;;2002:117;2158:2;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;:::i;:::-;2174:63;;2129:118;2286:2;2312:53;2357:7;2348:6;2337:9;2333:22;2312:53;:::i;:::-;2302:63;;2257:118;1763:619;;;;;:::o;2388:474::-;2456:6;2464;2513:2;2501:9;2492:7;2488:23;2484:32;2481:119;;;2519:79;;:::i;:::-;2481:119;2639:1;2664:53;2709:7;2700:6;2689:9;2685:22;2664:53;:::i;:::-;2654:63;;2610:117;2766:2;2792:53;2837:7;2828:6;2817:9;2813:22;2792:53;:::i;:::-;2782:63;;2737:118;2388:474;;;;;:::o;2868:323::-;2924:6;2973:2;2961:9;2952:7;2948:23;2944:32;2941:119;;;2979:79;;:::i;:::-;2941:119;3099:1;3124:50;3166:7;3157:6;3146:9;3142:22;3124:50;:::i;:::-;3114:60;;3070:114;2868:323;;;;:::o;3197:329::-;3256:6;3305:2;3293:9;3284:7;3280:23;3276:32;3273:119;;;3311:79;;:::i;:::-;3273:119;3431:1;3456:53;3501:7;3492:6;3481:9;3477:22;3456:53;:::i;:::-;3446:63;;3402:117;3197:329;;;;:::o;3532:474::-;3600:6;3608;3657:2;3645:9;3636:7;3632:23;3628:32;3625:119;;;3663:79;;:::i;:::-;3625:119;3783:1;3808:53;3853:7;3844:6;3833:9;3829:22;3808:53;:::i;:::-;3798:63;;3754:117;3910:2;3936:53;3981:7;3972:6;3961:9;3957:22;3936:53;:::i;:::-;3926:63;;3881:118;3532:474;;;;;:::o;4012:118::-;4099:24;4117:5;4099:24;:::i;:::-;4094:3;4087:37;4012:118;;:::o;4136:109::-;4217:21;4232:5;4217:21;:::i;:::-;4212:3;4205:34;4136:109;;:::o;4251:364::-;4339:3;4367:39;4400:5;4367:39;:::i;:::-;4422:71;4486:6;4481:3;4422:71;:::i;:::-;4415:78;;4502:52;4547:6;4542:3;4535:4;4528:5;4524:16;4502:52;:::i;:::-;4579:29;4601:6;4579:29;:::i;:::-;4574:3;4570:39;4563:46;;4343:272;4251:364;;;;:::o;4621:366::-;4763:3;4784:67;4848:2;4843:3;4784:67;:::i;:::-;4777:74;;4860:93;4949:3;4860:93;:::i;:::-;4978:2;4973:3;4969:12;4962:19;;4621:366;;;:::o;4993:::-;5135:3;5156:67;5220:2;5215:3;5156:67;:::i;:::-;5149:74;;5232:93;5321:3;5232:93;:::i;:::-;5350:2;5345:3;5341:12;5334:19;;4993:366;;;:::o;5365:::-;5507:3;5528:67;5592:2;5587:3;5528:67;:::i;:::-;5521:74;;5604:93;5693:3;5604:93;:::i;:::-;5722:2;5717:3;5713:12;5706:19;;5365:366;;;:::o;5737:::-;5879:3;5900:67;5964:2;5959:3;5900:67;:::i;:::-;5893:74;;5976:93;6065:3;5976:93;:::i;:::-;6094:2;6089:3;6085:12;6078:19;;5737:366;;;:::o;6109:::-;6251:3;6272:67;6336:2;6331:3;6272:67;:::i;:::-;6265:74;;6348:93;6437:3;6348:93;:::i;:::-;6466:2;6461:3;6457:12;6450:19;;6109:366;;;:::o;6481:::-;6623:3;6644:67;6708:2;6703:3;6644:67;:::i;:::-;6637:74;;6720:93;6809:3;6720:93;:::i;:::-;6838:2;6833:3;6829:12;6822:19;;6481:366;;;:::o;6853:::-;6995:3;7016:67;7080:2;7075:3;7016:67;:::i;:::-;7009:74;;7092:93;7181:3;7092:93;:::i;:::-;7210:2;7205:3;7201:12;7194:19;;6853:366;;;:::o;7225:::-;7367:3;7388:67;7452:2;7447:3;7388:67;:::i;:::-;7381:74;;7464:93;7553:3;7464:93;:::i;:::-;7582:2;7577:3;7573:12;7566:19;;7225:366;;;:::o;7597:::-;7739:3;7760:67;7824:2;7819:3;7760:67;:::i;:::-;7753:74;;7836:93;7925:3;7836:93;:::i;:::-;7954:2;7949:3;7945:12;7938:19;;7597:366;;;:::o;7969:::-;8111:3;8132:67;8196:2;8191:3;8132:67;:::i;:::-;8125:74;;8208:93;8297:3;8208:93;:::i;:::-;8326:2;8321:3;8317:12;8310:19;;7969:366;;;:::o;8341:::-;8483:3;8504:67;8568:2;8563:3;8504:67;:::i;:::-;8497:74;;8580:93;8669:3;8580:93;:::i;:::-;8698:2;8693:3;8689:12;8682:19;;8341:366;;;:::o;8713:::-;8855:3;8876:67;8940:2;8935:3;8876:67;:::i;:::-;8869:74;;8952:93;9041:3;8952:93;:::i;:::-;9070:2;9065:3;9061:12;9054:19;;8713:366;;;:::o;9085:::-;9227:3;9248:67;9312:2;9307:3;9248:67;:::i;:::-;9241:74;;9324:93;9413:3;9324:93;:::i;:::-;9442:2;9437:3;9433:12;9426:19;;9085:366;;;:::o;9457:398::-;9616:3;9637:83;9718:1;9713:3;9637:83;:::i;:::-;9630:90;;9729:93;9818:3;9729:93;:::i;:::-;9847:1;9842:3;9838:11;9831:18;;9457:398;;;:::o;9861:366::-;10003:3;10024:67;10088:2;10083:3;10024:67;:::i;:::-;10017:74;;10100:93;10189:3;10100:93;:::i;:::-;10218:2;10213:3;10209:12;10202:19;;9861:366;;;:::o;10233:::-;10375:3;10396:67;10460:2;10455:3;10396:67;:::i;:::-;10389:74;;10472:93;10561:3;10472:93;:::i;:::-;10590:2;10585:3;10581:12;10574:19;;10233:366;;;:::o;10605:::-;10747:3;10768:67;10832:2;10827:3;10768:67;:::i;:::-;10761:74;;10844:93;10933:3;10844:93;:::i;:::-;10962:2;10957:3;10953:12;10946:19;;10605:366;;;:::o;10977:118::-;11064:24;11082:5;11064:24;:::i;:::-;11059:3;11052:37;10977:118;;:::o;11101:112::-;11184:22;11200:5;11184:22;:::i;:::-;11179:3;11172:35;11101:112;;:::o;11219:379::-;11403:3;11425:147;11568:3;11425:147;:::i;:::-;11418:154;;11589:3;11582:10;;11219:379;;;:::o;11604:222::-;11697:4;11735:2;11724:9;11720:18;11712:26;;11748:71;11816:1;11805:9;11801:17;11792:6;11748:71;:::i;:::-;11604:222;;;;:::o;11832:332::-;11953:4;11991:2;11980:9;11976:18;11968:26;;12004:71;12072:1;12061:9;12057:17;12048:6;12004:71;:::i;:::-;12085:72;12153:2;12142:9;12138:18;12129:6;12085:72;:::i;:::-;11832:332;;;;;:::o;12170:210::-;12257:4;12295:2;12284:9;12280:18;12272:26;;12308:65;12370:1;12359:9;12355:17;12346:6;12308:65;:::i;:::-;12170:210;;;;:::o;12386:313::-;12499:4;12537:2;12526:9;12522:18;12514:26;;12586:9;12580:4;12576:20;12572:1;12561:9;12557:17;12550:47;12614:78;12687:4;12678:6;12614:78;:::i;:::-;12606:86;;12386:313;;;;:::o;12705:419::-;12871:4;12909:2;12898:9;12894:18;12886:26;;12958:9;12952:4;12948:20;12944:1;12933:9;12929:17;12922:47;12986:131;13112:4;12986:131;:::i;:::-;12978:139;;12705:419;;;:::o;13130:::-;13296:4;13334:2;13323:9;13319:18;13311:26;;13383:9;13377:4;13373:20;13369:1;13358:9;13354:17;13347:47;13411:131;13537:4;13411:131;:::i;:::-;13403:139;;13130:419;;;:::o;13555:::-;13721:4;13759:2;13748:9;13744:18;13736:26;;13808:9;13802:4;13798:20;13794:1;13783:9;13779:17;13772:47;13836:131;13962:4;13836:131;:::i;:::-;13828:139;;13555:419;;;:::o;13980:::-;14146:4;14184:2;14173:9;14169:18;14161:26;;14233:9;14227:4;14223:20;14219:1;14208:9;14204:17;14197:47;14261:131;14387:4;14261:131;:::i;:::-;14253:139;;13980:419;;;:::o;14405:::-;14571:4;14609:2;14598:9;14594:18;14586:26;;14658:9;14652:4;14648:20;14644:1;14633:9;14629:17;14622:47;14686:131;14812:4;14686:131;:::i;:::-;14678:139;;14405:419;;;:::o;14830:::-;14996:4;15034:2;15023:9;15019:18;15011:26;;15083:9;15077:4;15073:20;15069:1;15058:9;15054:17;15047:47;15111:131;15237:4;15111:131;:::i;:::-;15103:139;;14830:419;;;:::o;15255:::-;15421:4;15459:2;15448:9;15444:18;15436:26;;15508:9;15502:4;15498:20;15494:1;15483:9;15479:17;15472:47;15536:131;15662:4;15536:131;:::i;:::-;15528:139;;15255:419;;;:::o;15680:::-;15846:4;15884:2;15873:9;15869:18;15861:26;;15933:9;15927:4;15923:20;15919:1;15908:9;15904:17;15897:47;15961:131;16087:4;15961:131;:::i;:::-;15953:139;;15680:419;;;:::o;16105:::-;16271:4;16309:2;16298:9;16294:18;16286:26;;16358:9;16352:4;16348:20;16344:1;16333:9;16329:17;16322:47;16386:131;16512:4;16386:131;:::i;:::-;16378:139;;16105:419;;;:::o;16530:::-;16696:4;16734:2;16723:9;16719:18;16711:26;;16783:9;16777:4;16773:20;16769:1;16758:9;16754:17;16747:47;16811:131;16937:4;16811:131;:::i;:::-;16803:139;;16530:419;;;:::o;16955:::-;17121:4;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;16955:419;;;:::o;17380:::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:::-;17971:4;18009:2;17998:9;17994:18;17986:26;;18058:9;18052:4;18048:20;18044:1;18033:9;18029:17;18022:47;18086:131;18212:4;18086:131;:::i;:::-;18078:139;;17805:419;;;:::o;18230:::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18230:419;;;:::o;18655:::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18655:419;;;:::o;19080:::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19080:419;;;:::o;19505:222::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19649:71;19717:1;19706:9;19702:17;19693:6;19649:71;:::i;:::-;19505:222;;;;:::o;19733:214::-;19822:4;19860:2;19849:9;19845:18;19837:26;;19873:67;19937:1;19926:9;19922:17;19913:6;19873:67;:::i;:::-;19733:214;;;;:::o;20034:99::-;20086:6;20120:5;20114:12;20104:22;;20034:99;;;:::o;20139:147::-;20240:11;20277:3;20262:18;;20139:147;;;;:::o;20292:169::-;20376:11;20410:6;20405:3;20398:19;20450:4;20445:3;20441:14;20426:29;;20292:169;;;;:::o;20467:305::-;20507:3;20526:20;20544:1;20526:20;:::i;:::-;20521:25;;20560:20;20578:1;20560:20;:::i;:::-;20555:25;;20714:1;20646:66;20642:74;20639:1;20636:81;20633:107;;;20720:18;;:::i;:::-;20633:107;20764:1;20761;20757:9;20750:16;;20467:305;;;;:::o;20778:185::-;20818:1;20835:20;20853:1;20835:20;:::i;:::-;20830:25;;20869:20;20887:1;20869:20;:::i;:::-;20864:25;;20908:1;20898:35;;20913:18;;:::i;:::-;20898:35;20955:1;20952;20948:9;20943:14;;20778:185;;;;:::o;20969:348::-;21009:7;21032:20;21050:1;21032:20;:::i;:::-;21027:25;;21066:20;21084:1;21066:20;:::i;:::-;21061:25;;21254:1;21186:66;21182:74;21179:1;21176:81;21171:1;21164:9;21157:17;21153:105;21150:131;;;21261:18;;:::i;:::-;21150:131;21309:1;21306;21302:9;21291:20;;20969:348;;;;:::o;21323:191::-;21363:4;21383:20;21401:1;21383:20;:::i;:::-;21378:25;;21417:20;21435:1;21417:20;:::i;:::-;21412:25;;21456:1;21453;21450:8;21447:34;;;21461:18;;:::i;:::-;21447:34;21506:1;21503;21499:9;21491:17;;21323:191;;;;:::o;21520:96::-;21557:7;21586:24;21604:5;21586:24;:::i;:::-;21575:35;;21520:96;;;:::o;21622:104::-;21667:7;21696:24;21714:5;21696:24;:::i;:::-;21685:35;;21622:104;;;:::o;21732:90::-;21766:7;21809:5;21802:13;21795:21;21784:32;;21732:90;;;:::o;21828:126::-;21865:7;21905:42;21898:5;21894:54;21883:65;;21828:126;;;:::o;21960:77::-;21997:7;22026:5;22015:16;;21960:77;;;:::o;22043:86::-;22078:7;22118:4;22111:5;22107:16;22096:27;;22043:86;;;:::o;22135:307::-;22203:1;22213:113;22227:6;22224:1;22221:13;22213:113;;;22312:1;22307:3;22303:11;22297:18;22293:1;22288:3;22284:11;22277:39;22249:2;22246:1;22242:10;22237:15;;22213:113;;;22344:6;22341:1;22338:13;22335:101;;;22424:1;22415:6;22410:3;22406:16;22399:27;22335:101;22184:258;22135:307;;;:::o;22448:320::-;22492:6;22529:1;22523:4;22519:12;22509:22;;22576:1;22570:4;22566:12;22597:18;22587:81;;22653:4;22645:6;22641:17;22631:27;;22587:81;22715:2;22707:6;22704:14;22684:18;22681:38;22678:84;;;22734:18;;:::i;:::-;22678:84;22499:269;22448:320;;;:::o;22774:233::-;22813:3;22836:24;22854:5;22836:24;:::i;:::-;22827:33;;22882:66;22875:5;22872:77;22869:103;;;22952:18;;:::i;:::-;22869:103;22999:1;22992:5;22988:13;22981:20;;22774:233;;;:::o;23013:180::-;23061:77;23058:1;23051:88;23158:4;23155:1;23148:15;23182:4;23179:1;23172:15;23199:180;23247:77;23244:1;23237:88;23344:4;23341:1;23334:15;23368:4;23365:1;23358:15;23385:180;23433:77;23430:1;23423:88;23530:4;23527:1;23520:15;23554:4;23551:1;23544:15;23694:117;23803:1;23800;23793:12;23817:102;23858:6;23909:2;23905:7;23900:2;23893:5;23889:14;23885:28;23875:38;;23817:102;;;:::o;23925:222::-;24065:34;24061:1;24053:6;24049:14;24042:58;24134:5;24129:2;24121:6;24117:15;24110:30;23925:222;:::o;24153:225::-;24293:34;24289:1;24281:6;24277:14;24270:58;24362:8;24357:2;24349:6;24345:15;24338:33;24153:225;:::o;24384:221::-;24524:34;24520:1;24512:6;24508:14;24501:58;24593:4;24588:2;24580:6;24576:15;24569:29;24384:221;:::o;24611:165::-;24751:17;24747:1;24739:6;24735:14;24728:41;24611:165;:::o;24782:179::-;24922:31;24918:1;24910:6;24906:14;24899:55;24782:179;:::o;24967:225::-;25107:34;25103:1;25095:6;25091:14;25084:58;25176:8;25171:2;25163:6;25159:15;25152:33;24967:225;:::o;25198:224::-;25338:34;25334:1;25326:6;25322:14;25315:58;25407:7;25402:2;25394:6;25390:15;25383:32;25198:224;:::o;25428:179::-;25568:31;25564:1;25556:6;25552:14;25545:55;25428:179;:::o;25613:170::-;25753:22;25749:1;25741:6;25737:14;25730:46;25613:170;:::o;25789:182::-;25929:34;25925:1;25917:6;25913:14;25906:58;25789:182;:::o;25977:175::-;26117:27;26113:1;26105:6;26101:14;26094:51;25977:175;:::o;26158:182::-;26298:34;26294:1;26286:6;26282:14;26275:58;26158:182;:::o;26346:224::-;26486:34;26482:1;26474:6;26470:14;26463:58;26555:7;26550:2;26542:6;26538:15;26531:32;26346:224;:::o;26576:114::-;;:::o;26696:223::-;26836:34;26832:1;26824:6;26820:14;26813:58;26905:6;26900:2;26892:6;26888:15;26881:31;26696:223;:::o;26925:224::-;27065:34;27061:1;27053:6;27049:14;27042:58;27134:7;27129:2;27121:6;27117:15;27110:32;26925:224;:::o;27155:181::-;27295:33;27291:1;27283:6;27279:14;27272:57;27155:181;:::o;27342:122::-;27415:24;27433:5;27415:24;:::i;:::-;27408:5;27405:35;27395:63;;27454:1;27451;27444:12;27395:63;27342:122;:::o;27470:138::-;27551:32;27577:5;27551:32;:::i;:::-;27544:5;27541:43;27531:71;;27598:1;27595;27588:12;27531:71;27470:138;:::o;27614:116::-;27684:21;27699:5;27684:21;:::i;:::-;27677:5;27674:32;27664:60;;27720:1;27717;27710:12;27664:60;27614:116;:::o;27736:122::-;27809:24;27827:5;27809:24;:::i;:::-;27802:5;27799:35;27789:63;;27848:1;27845;27838:12;27789:63;27736:122;:::o

Swarm Source

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