ETH Price: $3,400.76 (-1.69%)
Gas: 5 Gwei

Token

bozo (BOZO)
 

Overview

Max Total Supply

420,420,420,420,420 BOZO

Holders

162

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
698,122,652,405.806429289201292111 BOZO

Value
$0.00
0xdFC1bcA626fdD65cd8A5440aA748eEd4344d2273
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:
bozo

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// contracts/bozo.sol

//
//██████   ██████  ███████  ██████
//██   ██ ██    ██    ███  ██    ██
//██████  ██    ██   ███   ██    ██
//██   ██ ██    ██  ███    ██    ██
//██████   ██████  ███████  ██████
//
//

pragma solidity ^0.8.7;



contract bozo is ERC20, Ownable {
    constructor() ERC20("bozo", "BOZO"){}

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

    /// a minimum contribution to participate in the presale
    uint256 public constant MIN_CONTRIBUTION = .01 ether;

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

    /// the maximum amount of eth that this contract will accept for presale
    uint256 public constant HARD_CAP = 30.69 ether;

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

    /// 55% of tokens reserved for presale
    uint256 public constant PRESALE_SUPPLY = 231231231231231 * 10 ** 18;

    /// 45% of tokens reserved for LP and dev mint
    uint256 public constant RESERVE_MAX_SUPPLY = 189189189189189 * 10 ** 18;

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

    /// used to track the total number of contributoors
    uint256 public NUMBER_OF_CONTRIBUTOORS;

    /// a struct used to keep track of each contributoors 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 contributoor;

    /// collect presale contributions
    function sendToPresale() public payable {

        /// look up the sender's current contribution amount in the mapping
        uint256 currentContribution = contribution[contributoor[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 (contributoor[msg.sender] != 0){
            /// no need to increase the number of contributors since this person already added
            contributionIndex = contributoor[msg.sender];
        } else {
            /// keep track of each new contributor with a unique index
            contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1;
            NUMBER_OF_CONTRIBUTOORS++;
        }

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

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

    function airdropPresale() external onlyOwner {

        /// determine the price per token
        uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY;

        /// loop over each contribution and distribute tokens
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; 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);
        }
    }

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

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

        /// mint the remaining supply to the dev'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 decide this sucks, refund everyone their eth
    function refundEveryone() external onlyOwner {
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {
            address payable refundAddress = payable(contribution[i].addr);
            
            /// refund the contribution
            refundAddress.transfer(contribution[i].amount);
        }
    }

    /// 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_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","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":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresale","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":"contributoor","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":[],"name":"devMint","outputs":[],"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":[],"name":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f626f7a6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f5a4f0000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000412565b508060049081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61283280620005096000396000f3fe6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff91906119d8565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611a83565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b34565b6107d6565b6040516102679190611b8f565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b60405161029291906119d8565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611baa565b610803565b6040516102cf9190611b8f565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa9190611c19565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b60405161032591906119d8565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b34565b61084d565b6040516103629190611b8f565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d91906119d8565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611c34565b610891565b6040516103ca91906119d8565b60405180910390f35b3480156103df57600080fd5b506103e86108a9565b6040516103f591906119d8565b60405180910390f35b6104066108b4565b005b34801561041457600080fd5b5061041d610bee565b60405161042a91906119d8565b60405180910390f35b34801561043f57600080fd5b50610448610bf4565b6040516104559190611b8f565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611c34565b610c07565b60405161049291906119d8565b60405180910390f35b3480156104a757600080fd5b506104b0610c4f565b005b3480156104be57600080fd5b506104c7610c63565b6040516104d491906119d8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611c9f565b610c75565b005b34801561051257600080fd5b5061051b610d2d565b005b34801561052957600080fd5b50610532610db8565b005b34801561054057600080fd5b5061055b60048036038101906105569190611cf8565b610e9a565b005b34801561056957600080fd5b50610572610ebf565b60405161057f9190611d34565b60405180910390f35b34801561059457600080fd5b5061059d610ee9565b6040516105aa91906119d8565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef5565b6040516105d59190611a83565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b34565b610f87565b6040516106129190611b8f565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b34565b610ffe565b60405161064f9190611b8f565b60405180910390f35b34801561066457600080fd5b5061066d611021565b60405161067a91906119d8565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611d4f565b611033565b6040516106b791906119d8565b60405180910390f35b3480156106cc57600080fd5b506106d56110ba565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611d8f565b611181565b60405161070c929190611dbc565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611c34565b6111c5565b005b60075481565b60606003805461075390611e14565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90611e14565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e1611248565b90506107ee818585611250565b600191505092915050565b6000600254905090565b60008061080e611248565b905061081b858285611419565b6108268585856114a5565b60019150509392505050565b60006012905090565b6d14ba73a4e4a66cbdc579a290000081565b600080610858611248565b905061087981858561086a8589611033565b6108749190611e74565b611250565b600191505092915050565b6801a9e8c865bcbd000081565b60096020528060005260406000206000915090505481565b662386f26fc1000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000206001015490506000662386f26fc1000034101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611ef4565b60405180910390fd5b600560149054906101000a900460ff166109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611f60565b60405180910390fd5b6702c68af0bb14000082346109be9190611e74565b11156109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611ff2565b60405180910390fd5b6801a9e8c865bcbd000060065434610a179190611e74565b1115610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f9061205e565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae657600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b10565b6001600754610af59190611e74565b905060076000815480929190610b0a9061207e565b91905055505b34600654610b1e9190611e74565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be39190611e74565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5761171b565b610c616000611799565b565b6d0b668c677dc1ef01f9694c9c000081565b610c7d61171b565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca3906120f7565b60006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090612158565b60405180910390fd5b5050565b610d3561171b565b6000610d3f6107f9565b6d14ba73a4e4a66cbdc579a2900000610d589190612178565b90506d0953e73d66e47dbbcc1055f40000811115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906121f8565b60405180910390fd5b610db5338261185f565b50565b610dc061171b565b60006d0b668c677dc1ef01f9694c9c0000670de0b6b3a7640000600654610de79190612218565b610df19190612289565b90506000600190505b6007548111610e96576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e2f9190612218565b905060008382610e3f9190612289565b9050610e816008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261185f565b50508080610e8e9061207e565b915050610dfa565b5050565b610ea261171b565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6702c68af0bb14000081565b606060048054610f0490611e14565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3090611e14565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b600080610f92611248565b90506000610fa08286611033565b905083811015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061232c565b60405180910390fd5b610ff28286868403611250565b60019250505092915050565b600080611009611248565b90506110168185856114a5565b600191505092915050565b6d0953e73d66e47dbbcc1055f4000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c261171b565b6000600190505b600754811161117e5760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611169573d6000803e3d6000fd5b505080806111769061207e565b9150506110c9565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cd61171b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906123be565b60405180910390fd5b61124581611799565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690612450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906124e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140c91906119d8565b60405180910390a3505050565b60006114258484611033565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114889061254e565b60405180910390fd5b61149e8484848403611250565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906125e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90612672565b60405180910390fd5b61158e8383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612704565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170291906119d8565b60405180910390a36117158484846119ba565b50505050565b611723611248565b73ffffffffffffffffffffffffffffffffffffffff16611741610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90612770565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c5906127dc565b60405180910390fd5b6118da600083836119b5565b80600260008282546118ec9190611e74565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161199d91906119d8565b60405180910390a36119b1600083836119ba565b5050565b505050565b505050565b6000819050919050565b6119d2816119bf565b82525050565b60006020820190506119ed60008301846119c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a2d578082015181840152602081019050611a12565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a55826119f3565b611a5f81856119fe565b9350611a6f818560208601611a0f565b611a7881611a39565b840191505092915050565b60006020820190508181036000830152611a9d8184611a4a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ad582611aaa565b9050919050565b611ae581611aca565b8114611af057600080fd5b50565b600081359050611b0281611adc565b92915050565b611b11816119bf565b8114611b1c57600080fd5b50565b600081359050611b2e81611b08565b92915050565b60008060408385031215611b4b57611b4a611aa5565b5b6000611b5985828601611af3565b9250506020611b6a85828601611b1f565b9150509250929050565b60008115159050919050565b611b8981611b74565b82525050565b6000602082019050611ba46000830184611b80565b92915050565b600080600060608486031215611bc357611bc2611aa5565b5b6000611bd186828701611af3565b9350506020611be286828701611af3565b9250506040611bf386828701611b1f565b9150509250925092565b600060ff82169050919050565b611c1381611bfd565b82525050565b6000602082019050611c2e6000830184611c0a565b92915050565b600060208284031215611c4a57611c49611aa5565b5b6000611c5884828501611af3565b91505092915050565b6000611c6c82611aaa565b9050919050565b611c7c81611c61565b8114611c8757600080fd5b50565b600081359050611c9981611c73565b92915050565b600060208284031215611cb557611cb4611aa5565b5b6000611cc384828501611c8a565b91505092915050565b611cd581611b74565b8114611ce057600080fd5b50565b600081359050611cf281611ccc565b92915050565b600060208284031215611d0e57611d0d611aa5565b5b6000611d1c84828501611ce3565b91505092915050565b611d2e81611aca565b82525050565b6000602082019050611d496000830184611d25565b92915050565b60008060408385031215611d6657611d65611aa5565b5b6000611d7485828601611af3565b9250506020611d8585828601611af3565b9150509250929050565b600060208284031215611da557611da4611aa5565b5b6000611db384828501611b1f565b91505092915050565b6000604082019050611dd16000830185611d25565b611dde60208301846119c9565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2c57607f821691505b602082108103611e3f57611e3e611de5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e7f826119bf565b9150611e8a836119bf565b9250828201905080821115611ea257611ea1611e45565b5b92915050565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b6000611ede6014836119fe565b9150611ee982611ea8565b602082019050919050565b60006020820190508181036000830152611f0d81611ed1565b9050919050565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b6000611f4a6019836119fe565b9150611f5582611f14565b602082019050919050565b60006020820190508181036000830152611f7981611f3d565b9050919050565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6000611fdc6025836119fe565b9150611fe782611f80565b604082019050919050565b6000602082019050818103600083015261200b81611fcf565b9050919050565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b6000612048601d836119fe565b915061205382612012565b602082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b6000612089826119bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036120bb576120ba611e45565b5b600182019050919050565b600081905092915050565b50565b60006120e16000836120c6565b91506120ec826120d1565b600082019050919050565b6000612102826120d4565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612142600f836119fe565b915061214d8261210c565b602082019050919050565b6000602082019050818103600083015261217181612135565b9050919050565b6000612183826119bf565b915061218e836119bf565b92508282039050818111156121a6576121a5611e45565b5b92915050565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b60006121e2601f836119fe565b91506121ed826121ac565b602082019050919050565b60006020820190508181036000830152612211816121d5565b9050919050565b6000612223826119bf565b915061222e836119bf565b925082820261223c816119bf565b9150828204841483151761225357612252611e45565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612294826119bf565b915061229f836119bf565b9250826122af576122ae61225a565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123166025836119fe565b9150612321826122ba565b604082019050919050565b6000602082019050818103600083015261234581612309565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123a86026836119fe565b91506123b38261234c565b604082019050919050565b600060208201905081810360008301526123d78161239b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061243a6024836119fe565b9150612445826123de565b604082019050919050565b600060208201905081810360008301526124698161242d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124cc6022836119fe565b91506124d782612470565b604082019050919050565b600060208201905081810360008301526124fb816124bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612538601d836119fe565b915061254382612502565b602082019050919050565b600060208201905081810360008301526125678161252b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125ca6025836119fe565b91506125d58261256e565b604082019050919050565b600060208201905081810360008301526125f9816125bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061265c6023836119fe565b915061266782612600565b604082019050919050565b6000602082019050818103600083015261268b8161264f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126ee6026836119fe565b91506126f982612692565b604082019050919050565b6000602082019050818103600083015261271d816126e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061275a6020836119fe565b915061276582612724565b602082019050919050565b600060208201905081810360008301526127898161274d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006127c6601f836119fe565b91506127d182612790565b602082019050919050565b600060208201905081810360008301526127f5816127b9565b905091905056fea26469706673582212205f5d49a48b99d1c3c8c35c47f8b6e031f62a5d032788a5b553bb68c7efa047f664736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff91906119d8565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611a83565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b34565b6107d6565b6040516102679190611b8f565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b60405161029291906119d8565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611baa565b610803565b6040516102cf9190611b8f565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa9190611c19565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b60405161032591906119d8565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b34565b61084d565b6040516103629190611b8f565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d91906119d8565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611c34565b610891565b6040516103ca91906119d8565b60405180910390f35b3480156103df57600080fd5b506103e86108a9565b6040516103f591906119d8565b60405180910390f35b6104066108b4565b005b34801561041457600080fd5b5061041d610bee565b60405161042a91906119d8565b60405180910390f35b34801561043f57600080fd5b50610448610bf4565b6040516104559190611b8f565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611c34565b610c07565b60405161049291906119d8565b60405180910390f35b3480156104a757600080fd5b506104b0610c4f565b005b3480156104be57600080fd5b506104c7610c63565b6040516104d491906119d8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611c9f565b610c75565b005b34801561051257600080fd5b5061051b610d2d565b005b34801561052957600080fd5b50610532610db8565b005b34801561054057600080fd5b5061055b60048036038101906105569190611cf8565b610e9a565b005b34801561056957600080fd5b50610572610ebf565b60405161057f9190611d34565b60405180910390f35b34801561059457600080fd5b5061059d610ee9565b6040516105aa91906119d8565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef5565b6040516105d59190611a83565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b34565b610f87565b6040516106129190611b8f565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b34565b610ffe565b60405161064f9190611b8f565b60405180910390f35b34801561066457600080fd5b5061066d611021565b60405161067a91906119d8565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611d4f565b611033565b6040516106b791906119d8565b60405180910390f35b3480156106cc57600080fd5b506106d56110ba565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611d8f565b611181565b60405161070c929190611dbc565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611c34565b6111c5565b005b60075481565b60606003805461075390611e14565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90611e14565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e1611248565b90506107ee818585611250565b600191505092915050565b6000600254905090565b60008061080e611248565b905061081b858285611419565b6108268585856114a5565b60019150509392505050565b60006012905090565b6d14ba73a4e4a66cbdc579a290000081565b600080610858611248565b905061087981858561086a8589611033565b6108749190611e74565b611250565b600191505092915050565b6801a9e8c865bcbd000081565b60096020528060005260406000206000915090505481565b662386f26fc1000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020019081526020016000206001015490506000662386f26fc1000034101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611ef4565b60405180910390fd5b600560149054906101000a900460ff166109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611f60565b60405180910390fd5b6702c68af0bb14000082346109be9190611e74565b11156109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611ff2565b60405180910390fd5b6801a9e8c865bcbd000060065434610a179190611e74565b1115610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f9061205e565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae657600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b10565b6001600754610af59190611e74565b905060076000815480929190610b0a9061207e565b91905055505b34600654610b1e9190611e74565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be39190611e74565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5761171b565b610c616000611799565b565b6d0b668c677dc1ef01f9694c9c000081565b610c7d61171b565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca3906120f7565b60006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090612158565b60405180910390fd5b5050565b610d3561171b565b6000610d3f6107f9565b6d14ba73a4e4a66cbdc579a2900000610d589190612178565b90506d0953e73d66e47dbbcc1055f40000811115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906121f8565b60405180910390fd5b610db5338261185f565b50565b610dc061171b565b60006d0b668c677dc1ef01f9694c9c0000670de0b6b3a7640000600654610de79190612218565b610df19190612289565b90506000600190505b6007548111610e96576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e2f9190612218565b905060008382610e3f9190612289565b9050610e816008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261185f565b50508080610e8e9061207e565b915050610dfa565b5050565b610ea261171b565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6702c68af0bb14000081565b606060048054610f0490611e14565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3090611e14565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b600080610f92611248565b90506000610fa08286611033565b905083811015610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061232c565b60405180910390fd5b610ff28286868403611250565b60019250505092915050565b600080611009611248565b90506110168185856114a5565b600191505092915050565b6d0953e73d66e47dbbcc1055f4000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c261171b565b6000600190505b600754811161117e5760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611169573d6000803e3d6000fd5b505080806111769061207e565b9150506110c9565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cd61171b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906123be565b60405180910390fd5b61124581611799565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690612450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906124e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140c91906119d8565b60405180910390a3505050565b60006114258484611033565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114889061254e565b60405180910390fd5b61149e8484848403611250565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906125e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90612672565b60405180910390fd5b61158e8383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612704565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170291906119d8565b60405180910390a36117158484846119ba565b50505050565b611723611248565b73ffffffffffffffffffffffffffffffffffffffff16611741610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90612770565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c5906127dc565b60405180910390fd5b6118da600083836119b5565b80600260008282546118ec9190611e74565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161199d91906119d8565b60405180910390a36119b1600083836119ba565b5050565b505050565b505050565b6000819050919050565b6119d2816119bf565b82525050565b60006020820190506119ed60008301846119c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a2d578082015181840152602081019050611a12565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a55826119f3565b611a5f81856119fe565b9350611a6f818560208601611a0f565b611a7881611a39565b840191505092915050565b60006020820190508181036000830152611a9d8184611a4a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ad582611aaa565b9050919050565b611ae581611aca565b8114611af057600080fd5b50565b600081359050611b0281611adc565b92915050565b611b11816119bf565b8114611b1c57600080fd5b50565b600081359050611b2e81611b08565b92915050565b60008060408385031215611b4b57611b4a611aa5565b5b6000611b5985828601611af3565b9250506020611b6a85828601611b1f565b9150509250929050565b60008115159050919050565b611b8981611b74565b82525050565b6000602082019050611ba46000830184611b80565b92915050565b600080600060608486031215611bc357611bc2611aa5565b5b6000611bd186828701611af3565b9350506020611be286828701611af3565b9250506040611bf386828701611b1f565b9150509250925092565b600060ff82169050919050565b611c1381611bfd565b82525050565b6000602082019050611c2e6000830184611c0a565b92915050565b600060208284031215611c4a57611c49611aa5565b5b6000611c5884828501611af3565b91505092915050565b6000611c6c82611aaa565b9050919050565b611c7c81611c61565b8114611c8757600080fd5b50565b600081359050611c9981611c73565b92915050565b600060208284031215611cb557611cb4611aa5565b5b6000611cc384828501611c8a565b91505092915050565b611cd581611b74565b8114611ce057600080fd5b50565b600081359050611cf281611ccc565b92915050565b600060208284031215611d0e57611d0d611aa5565b5b6000611d1c84828501611ce3565b91505092915050565b611d2e81611aca565b82525050565b6000602082019050611d496000830184611d25565b92915050565b60008060408385031215611d6657611d65611aa5565b5b6000611d7485828601611af3565b9250506020611d8585828601611af3565b9150509250929050565b600060208284031215611da557611da4611aa5565b5b6000611db384828501611b1f565b91505092915050565b6000604082019050611dd16000830185611d25565b611dde60208301846119c9565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2c57607f821691505b602082108103611e3f57611e3e611de5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e7f826119bf565b9150611e8a836119bf565b9250828201905080821115611ea257611ea1611e45565b5b92915050565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b6000611ede6014836119fe565b9150611ee982611ea8565b602082019050919050565b60006020820190508181036000830152611f0d81611ed1565b9050919050565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b6000611f4a6019836119fe565b9150611f5582611f14565b602082019050919050565b60006020820190508181036000830152611f7981611f3d565b9050919050565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6000611fdc6025836119fe565b9150611fe782611f80565b604082019050919050565b6000602082019050818103600083015261200b81611fcf565b9050919050565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b6000612048601d836119fe565b915061205382612012565b602082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b6000612089826119bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036120bb576120ba611e45565b5b600182019050919050565b600081905092915050565b50565b60006120e16000836120c6565b91506120ec826120d1565b600082019050919050565b6000612102826120d4565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612142600f836119fe565b915061214d8261210c565b602082019050919050565b6000602082019050818103600083015261217181612135565b9050919050565b6000612183826119bf565b915061218e836119bf565b92508282039050818111156121a6576121a5611e45565b5b92915050565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b60006121e2601f836119fe565b91506121ed826121ac565b602082019050919050565b60006020820190508181036000830152612211816121d5565b9050919050565b6000612223826119bf565b915061222e836119bf565b925082820261223c816119bf565b9150828204841483151761225357612252611e45565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612294826119bf565b915061229f836119bf565b9250826122af576122ae61225a565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123166025836119fe565b9150612321826122ba565b604082019050919050565b6000602082019050818103600083015261234581612309565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123a86026836119fe565b91506123b38261234c565b604082019050919050565b600060208201905081810360008301526123d78161239b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061243a6024836119fe565b9150612445826123de565b604082019050919050565b600060208201905081810360008301526124698161242d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124cc6022836119fe565b91506124d782612470565b604082019050919050565b600060208201905081810360008301526124fb816124bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612538601d836119fe565b915061254382612502565b602082019050919050565b600060208201905081810360008301526125678161252b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125ca6025836119fe565b91506125d58261256e565b604082019050919050565b600060208201905081810360008301526125f9816125bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061265c6023836119fe565b915061266782612600565b604082019050919050565b6000602082019050818103600083015261268b8161264f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126ee6026836119fe565b91506126f982612692565b604082019050919050565b6000602082019050818103600083015261271d816126e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061275a6020836119fe565b915061276582612724565b602082019050919050565b600060208201905081810360008301526127898161274d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006127c6601f836119fe565b91506127d182612790565b602082019050919050565b600060208201905081810360008301526127f5816127b9565b905091905056fea26469706673582212205f5d49a48b99d1c3c8c35c47f8b6e031f62a5d032788a5b553bb68c7efa047f664736f6c63430008120033

Deployed Bytecode Sourcemap

21017:5277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22074:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7613:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21589:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21492:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21237:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22550:1609;;;:::i;:::-;;21976:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21136:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7942:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19722:103;;;;;;;;;;;;;:::i;:::-;;21705:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26090:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24978:431;;;;;;;;;;;;;:::i;:::-;;24167:735;;;;;;;;;;;;;:::i;:::-;;25480:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21354:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11228:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21833:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8531:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25695:322;;;;;;;;;;;;;:::i;:::-;;22330:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;19980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22074:38;;;;:::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;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;21589:63::-;21626:26;21589: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;21492:46::-;21527:11;21492:46;:::o;22454:48::-;;;;;;;;;;;;;;;;;:::o;21237:52::-;21280:9;21237:52;:::o;22550:1609::-;22680:27;22710:12;:38;22723:12;:24;22736:10;22723:24;;;;;;;;;;;;;;;;22710:38;;;;;;;;;;;:45;;;22680:75;;22865:25;21280:9;22911;:29;;22903:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23042:18;;;;;;;;;;;23033:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21397:8;23175:19;23163:9;:31;;;;:::i;:::-;:51;;23154:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;21527:11;23320:17;;23308:9;:29;;;;:::i;:::-;:41;;23299:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;23429:1;23401:12;:24;23414:10;23401:24;;;;;;;;;;;;;;;;:29;23397:393;;23562:12;:24;23575:10;23562:24;;;;;;;;;;;;;;;;23542:44;;23397:393;;;23737:1;23711:23;;:27;;;;:::i;:::-;23691:47;;23753:23;;:25;;;;;;;;;:::i;:::-;;;;;;23397:393;23902:9;23882:17;;:29;;;;:::i;:::-;23862:17;:49;;;;24012:17;23985:12;:24;23998:10;23985:24;;;;;;;;;;;;;;;:44;;;;24079:10;24040:12;:31;24053:17;24040:31;;;;;;;;;;;:36;;;:49;;;;;;;;;;;;;;;;;;24142:9;24100:12;:31;24113:17;24100:31;;;;;;;;;;;:38;;;:51;;;;;;;:::i;:::-;;;;;;;;22590:1569;;22550:1609::o;21976:32::-;;;;:::o;21136: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;21705:67::-;21746:26;21705:67;:::o;26090:201::-;18960:13;:11;:13::i;:::-;26172:12:::1;26190:8;:13;;26211:21;26190:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26171:66;;;26256:7;26248:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;26160:131;26090:201:::0;:::o;24978:431::-;18960:13;:11;:13::i;:::-;25073:20:::1;25109:13;:11;:13::i;:::-;21626:26;25096;;;;:::i;:::-;25073:49;;21878:26;25228:12;:34;;25219:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;25370:31;25376:10;25388:12;25370:5;:31::i;:::-;25016:393;24978:431::o:0;24167:735::-;18960:13;:11;:13::i;:::-;24268:21:::1;21746:26;24313:8;24293:17;;:28;;;;:::i;:::-;24292:45;;;;:::i;:::-;24268:69;;24418:9;24430:1;24418:13;;24413:482;24438:23;;24433:1;:28;24413:482;;24538:26;24592:8;24567:12;:15;24580:1;24567:15;;;;;;;;;;;:22;;;:33;;;;:::i;:::-;24538:62;;24706:28;24756:13;24737:18;:32;;;;:::i;:::-;24706:63;;24834:49;24840:12;:15;24853:1;24840:15;;;;;;;;;;;:20;;;;;;;;;;;;24862;24834:5;:49::i;:::-;24468:427;;24463:3;;;;;:::i;:::-;;;;24413:482;;;;24212:690;24167:735::o:0;25480:109::-;18960:13;:11;:13::i;:::-;25575:6:::1;25554:18;;:27;;;;;;;;;;;;;;;;;;25480:109:::0;:::o;19074:87::-;19120:7;19147:6;;;;;;;;;;;19140:13;;19074:87;:::o;21354:51::-;21397:8;21354:51;:::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;21833:71::-;21878:26;21833:71;:::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;25695:322::-;18960:13;:11;:13::i;:::-;25756:9:::1;25768:1;25756:13;;25751:259;25776:23;;25771:1;:28;25751:259;;25821:29;25861:12;:15;25874:1;25861:15;;;;;;;;;;;:20;;;;;;;;;;;;25821:61;;25952:13;:22;;:46;25975:12;:15;25988:1;25975:15;;;;;;;;;;;:22;;;25952:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25806:204;25801:3;;;;;:::i;:::-;;;;25751:259;;;;25695:322::o:0;22330:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19980:201::-;18960:13;:11;:13::i;:::-;20089:1:::1;20069:22;;:8;:22;;::::0;20061:73:::1;;;;;;;;;;;;:::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:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:246::-;803:1;813:113;827:6;824:1;821:13;813:113;;;912:1;907:3;903:11;897:18;893:1;888:3;884:11;877:39;849:2;846:1;842:10;837:15;;813:113;;;960:1;951:6;946:3;942:16;935:27;784:184;722:246;;;:::o;974:102::-;1015:6;1066:2;1062:7;1057:2;1050:5;1046:14;1042:28;1032:38;;974:102;;;:::o;1082:377::-;1170:3;1198:39;1231:5;1198:39;:::i;:::-;1253:71;1317:6;1312:3;1253:71;:::i;:::-;1246:78;;1333:65;1391:6;1386:3;1379:4;1372:5;1368:16;1333:65;:::i;:::-;1423:29;1445:6;1423:29;:::i;:::-;1418:3;1414:39;1407:46;;1174:285;1082:377;;;;:::o;1465:313::-;1578:4;1616:2;1605:9;1601:18;1593:26;;1665:9;1659:4;1655:20;1651:1;1640:9;1636:17;1629:47;1693:78;1766:4;1757:6;1693:78;:::i;:::-;1685:86;;1465:313;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:104::-;5233:7;5262:24;5280:5;5262:24;:::i;:::-;5251:35;;5188:104;;;:::o;5298:138::-;5379:32;5405:5;5379:32;:::i;:::-;5372:5;5369:43;5359:71;;5426:1;5423;5416:12;5359:71;5298:138;:::o;5442:155::-;5496:5;5534:6;5521:20;5512:29;;5550:41;5585:5;5550:41;:::i;:::-;5442:155;;;;:::o;5603:345::-;5670:6;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:61;5923:7;5914:6;5903:9;5899:22;5870:61;:::i;:::-;5860:71;;5816:125;5603:345;;;;:::o;5954:116::-;6024:21;6039:5;6024:21;:::i;:::-;6017:5;6014:32;6004:60;;6060:1;6057;6050:12;6004:60;5954:116;:::o;6076:133::-;6119:5;6157:6;6144:20;6135:29;;6173:30;6197:5;6173:30;:::i;:::-;6076:133;;;;:::o;6215:323::-;6271:6;6320:2;6308:9;6299:7;6295:23;6291:32;6288:119;;;6326:79;;:::i;:::-;6288:119;6446:1;6471:50;6513:7;6504:6;6493:9;6489:22;6471:50;:::i;:::-;6461:60;;6417:114;6215:323;;;;:::o;6544:118::-;6631:24;6649:5;6631:24;:::i;:::-;6626:3;6619:37;6544:118;;:::o;6668:222::-;6761:4;6799:2;6788:9;6784:18;6776:26;;6812:71;6880:1;6869:9;6865:17;6856:6;6812:71;:::i;:::-;6668:222;;;;:::o;6896:474::-;6964:6;6972;7021:2;7009:9;7000:7;6996:23;6992:32;6989:119;;;7027:79;;:::i;:::-;6989:119;7147:1;7172:53;7217:7;7208:6;7197:9;7193:22;7172:53;:::i;:::-;7162:63;;7118:117;7274:2;7300:53;7345:7;7336:6;7325:9;7321:22;7300:53;:::i;:::-;7290:63;;7245:118;6896:474;;;;;:::o;7376:329::-;7435:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:119;;;7490:79;;:::i;:::-;7452:119;7610:1;7635:53;7680:7;7671:6;7660:9;7656:22;7635:53;:::i;:::-;7625:63;;7581:117;7376:329;;;;:::o;7711:332::-;7832:4;7870:2;7859:9;7855:18;7847:26;;7883:71;7951:1;7940:9;7936:17;7927:6;7883:71;:::i;:::-;7964:72;8032:2;8021:9;8017:18;8008:6;7964:72;:::i;:::-;7711:332;;;;;:::o;8049:180::-;8097:77;8094:1;8087:88;8194:4;8191:1;8184:15;8218:4;8215:1;8208:15;8235:320;8279:6;8316:1;8310:4;8306:12;8296:22;;8363:1;8357:4;8353:12;8384:18;8374:81;;8440:4;8432:6;8428:17;8418:27;;8374:81;8502:2;8494:6;8491:14;8471:18;8468:38;8465:84;;8521:18;;:::i;:::-;8465:84;8286:269;8235:320;;;:::o;8561:180::-;8609:77;8606:1;8599:88;8706:4;8703:1;8696:15;8730:4;8727:1;8720:15;8747:191;8787:3;8806:20;8824:1;8806:20;:::i;:::-;8801:25;;8840:20;8858:1;8840:20;:::i;:::-;8835:25;;8883:1;8880;8876:9;8869:16;;8904:3;8901:1;8898:10;8895:36;;;8911:18;;:::i;:::-;8895:36;8747:191;;;;:::o;8944:170::-;9084:22;9080:1;9072:6;9068:14;9061:46;8944:170;:::o;9120:366::-;9262:3;9283:67;9347:2;9342:3;9283:67;:::i;:::-;9276:74;;9359:93;9448:3;9359:93;:::i;:::-;9477:2;9472:3;9468:12;9461:19;;9120:366;;;:::o;9492:419::-;9658:4;9696:2;9685:9;9681:18;9673:26;;9745:9;9739:4;9735:20;9731:1;9720:9;9716:17;9709:47;9773:131;9899:4;9773:131;:::i;:::-;9765:139;;9492:419;;;:::o;9917:175::-;10057:27;10053:1;10045:6;10041:14;10034:51;9917:175;:::o;10098:366::-;10240:3;10261:67;10325:2;10320:3;10261:67;:::i;:::-;10254:74;;10337:93;10426:3;10337:93;:::i;:::-;10455:2;10450:3;10446:12;10439:19;;10098:366;;;:::o;10470:419::-;10636:4;10674:2;10663:9;10659:18;10651:26;;10723:9;10717:4;10713:20;10709:1;10698:9;10694:17;10687:47;10751:131;10877:4;10751:131;:::i;:::-;10743:139;;10470:419;;;:::o;10895:224::-;11035:34;11031:1;11023:6;11019:14;11012:58;11104:7;11099:2;11091:6;11087:15;11080:32;10895:224;:::o;11125:366::-;11267:3;11288:67;11352:2;11347:3;11288:67;:::i;:::-;11281:74;;11364:93;11453:3;11364:93;:::i;:::-;11482:2;11477:3;11473:12;11466:19;;11125:366;;;:::o;11497:419::-;11663:4;11701:2;11690:9;11686:18;11678:26;;11750:9;11744:4;11740:20;11736:1;11725:9;11721:17;11714:47;11778:131;11904:4;11778:131;:::i;:::-;11770:139;;11497:419;;;:::o;11922:179::-;12062:31;12058:1;12050:6;12046:14;12039:55;11922:179;:::o;12107:366::-;12249:3;12270:67;12334:2;12329:3;12270:67;:::i;:::-;12263:74;;12346:93;12435:3;12346:93;:::i;:::-;12464:2;12459:3;12455:12;12448:19;;12107:366;;;:::o;12479:419::-;12645:4;12683:2;12672:9;12668:18;12660:26;;12732:9;12726:4;12722:20;12718:1;12707:9;12703:17;12696:47;12760:131;12886:4;12760:131;:::i;:::-;12752:139;;12479:419;;;:::o;12904:233::-;12943:3;12966:24;12984:5;12966:24;:::i;:::-;12957:33;;13012:66;13005:5;13002:77;12999:103;;13082:18;;:::i;:::-;12999:103;13129:1;13122:5;13118:13;13111:20;;12904:233;;;:::o;13143:147::-;13244:11;13281:3;13266:18;;13143:147;;;;:::o;13296:114::-;;:::o;13416:398::-;13575:3;13596:83;13677:1;13672:3;13596:83;:::i;:::-;13589:90;;13688:93;13777:3;13688:93;:::i;:::-;13806:1;13801:3;13797:11;13790:18;;13416:398;;;:::o;13820:379::-;14004:3;14026:147;14169:3;14026:147;:::i;:::-;14019:154;;14190:3;14183:10;;13820:379;;;:::o;14205:165::-;14345:17;14341:1;14333:6;14329:14;14322:41;14205:165;:::o;14376:366::-;14518:3;14539:67;14603:2;14598:3;14539:67;:::i;:::-;14532:74;;14615:93;14704:3;14615:93;:::i;:::-;14733:2;14728:3;14724:12;14717:19;;14376:366;;;:::o;14748:419::-;14914:4;14952:2;14941:9;14937:18;14929:26;;15001:9;14995:4;14991:20;14987:1;14976:9;14972:17;14965:47;15029:131;15155:4;15029:131;:::i;:::-;15021:139;;14748:419;;;:::o;15173:194::-;15213:4;15233:20;15251:1;15233:20;:::i;:::-;15228:25;;15267:20;15285:1;15267:20;:::i;:::-;15262:25;;15311:1;15308;15304:9;15296:17;;15335:1;15329:4;15326:11;15323:37;;;15340:18;;:::i;:::-;15323:37;15173:194;;;;:::o;15373:181::-;15513:33;15509:1;15501:6;15497:14;15490:57;15373:181;:::o;15560:366::-;15702:3;15723:67;15787:2;15782:3;15723:67;:::i;:::-;15716:74;;15799:93;15888:3;15799:93;:::i;:::-;15917:2;15912:3;15908:12;15901:19;;15560:366;;;:::o;15932:419::-;16098:4;16136:2;16125:9;16121:18;16113:26;;16185:9;16179:4;16175:20;16171:1;16160:9;16156:17;16149:47;16213:131;16339:4;16213:131;:::i;:::-;16205:139;;15932:419;;;:::o;16357:410::-;16397:7;16420:20;16438:1;16420:20;:::i;:::-;16415:25;;16454:20;16472:1;16454:20;:::i;:::-;16449:25;;16509:1;16506;16502:9;16531:30;16549:11;16531:30;:::i;:::-;16520:41;;16710:1;16701:7;16697:15;16694:1;16691:22;16671:1;16664:9;16644:83;16621:139;;16740:18;;:::i;:::-;16621:139;16405:362;16357:410;;;;:::o;16773:180::-;16821:77;16818:1;16811:88;16918:4;16915:1;16908:15;16942:4;16939:1;16932:15;16959:185;16999:1;17016:20;17034:1;17016:20;:::i;:::-;17011:25;;17050:20;17068:1;17050:20;:::i;:::-;17045:25;;17089:1;17079:35;;17094:18;;:::i;:::-;17079:35;17136:1;17133;17129:9;17124:14;;16959:185;;;;:::o;17150:224::-;17290:34;17286:1;17278:6;17274:14;17267:58;17359:7;17354:2;17346:6;17342:15;17335:32;17150:224;:::o;17380:366::-;17522:3;17543:67;17607:2;17602:3;17543:67;:::i;:::-;17536:74;;17619:93;17708:3;17619:93;:::i;:::-;17737:2;17732:3;17728:12;17721:19;;17380:366;;;:::o;17752:419::-;17918:4;17956:2;17945:9;17941:18;17933:26;;18005:9;17999:4;17995:20;17991:1;17980:9;17976:17;17969:47;18033:131;18159:4;18033:131;:::i;:::-;18025:139;;17752:419;;;:::o;18177:225::-;18317:34;18313:1;18305:6;18301:14;18294:58;18386:8;18381:2;18373:6;18369:15;18362:33;18177:225;:::o;18408:366::-;18550:3;18571:67;18635:2;18630:3;18571:67;:::i;:::-;18564:74;;18647:93;18736:3;18647:93;:::i;:::-;18765:2;18760:3;18756:12;18749:19;;18408:366;;;:::o;18780:419::-;18946:4;18984:2;18973:9;18969:18;18961:26;;19033:9;19027:4;19023:20;19019:1;19008:9;19004:17;18997:47;19061:131;19187:4;19061:131;:::i;:::-;19053:139;;18780:419;;;:::o;19205:223::-;19345:34;19341:1;19333:6;19329:14;19322:58;19414:6;19409:2;19401:6;19397:15;19390:31;19205:223;:::o;19434:366::-;19576:3;19597:67;19661:2;19656:3;19597:67;:::i;:::-;19590:74;;19673:93;19762:3;19673:93;:::i;:::-;19791:2;19786:3;19782:12;19775:19;;19434:366;;;:::o;19806:419::-;19972:4;20010:2;19999:9;19995:18;19987:26;;20059:9;20053:4;20049:20;20045:1;20034:9;20030:17;20023:47;20087:131;20213:4;20087:131;:::i;:::-;20079:139;;19806:419;;;:::o;20231:221::-;20371:34;20367:1;20359:6;20355:14;20348:58;20440:4;20435:2;20427:6;20423:15;20416:29;20231:221;:::o;20458:366::-;20600:3;20621:67;20685:2;20680:3;20621:67;:::i;:::-;20614:74;;20697:93;20786:3;20697:93;:::i;:::-;20815:2;20810:3;20806:12;20799:19;;20458:366;;;:::o;20830:419::-;20996:4;21034:2;21023:9;21019:18;21011:26;;21083:9;21077:4;21073:20;21069:1;21058:9;21054:17;21047:47;21111:131;21237:4;21111:131;:::i;:::-;21103:139;;20830:419;;;:::o;21255:179::-;21395:31;21391:1;21383:6;21379:14;21372:55;21255:179;:::o;21440:366::-;21582:3;21603:67;21667:2;21662:3;21603:67;:::i;:::-;21596:74;;21679:93;21768:3;21679:93;:::i;:::-;21797:2;21792:3;21788:12;21781:19;;21440:366;;;:::o;21812:419::-;21978:4;22016:2;22005:9;22001:18;21993:26;;22065:9;22059:4;22055:20;22051:1;22040:9;22036:17;22029:47;22093:131;22219:4;22093:131;:::i;:::-;22085:139;;21812:419;;;:::o;22237:224::-;22377:34;22373:1;22365:6;22361:14;22354:58;22446:7;22441:2;22433:6;22429:15;22422:32;22237:224;:::o;22467:366::-;22609:3;22630:67;22694:2;22689:3;22630:67;:::i;:::-;22623:74;;22706:93;22795:3;22706:93;:::i;:::-;22824:2;22819:3;22815:12;22808:19;;22467:366;;;:::o;22839:419::-;23005:4;23043:2;23032:9;23028:18;23020:26;;23092:9;23086:4;23082:20;23078:1;23067:9;23063:17;23056:47;23120:131;23246:4;23120:131;:::i;:::-;23112:139;;22839:419;;;:::o;23264:222::-;23404:34;23400:1;23392:6;23388:14;23381:58;23473:5;23468:2;23460:6;23456:15;23449:30;23264:222;:::o;23492:366::-;23634:3;23655:67;23719:2;23714:3;23655:67;:::i;:::-;23648:74;;23731:93;23820:3;23731:93;:::i;:::-;23849:2;23844:3;23840:12;23833:19;;23492:366;;;:::o;23864:419::-;24030:4;24068:2;24057:9;24053:18;24045:26;;24117:9;24111:4;24107:20;24103:1;24092:9;24088:17;24081:47;24145:131;24271:4;24145:131;:::i;:::-;24137:139;;23864:419;;;:::o;24289:225::-;24429:34;24425:1;24417:6;24413:14;24406:58;24498:8;24493:2;24485:6;24481:15;24474:33;24289:225;:::o;24520:366::-;24662:3;24683:67;24747:2;24742:3;24683:67;:::i;:::-;24676:74;;24759:93;24848:3;24759:93;:::i;:::-;24877:2;24872:3;24868:12;24861:19;;24520:366;;;:::o;24892:419::-;25058:4;25096:2;25085:9;25081:18;25073:26;;25145:9;25139:4;25135:20;25131:1;25120:9;25116:17;25109:47;25173:131;25299:4;25173:131;:::i;:::-;25165:139;;24892:419;;;:::o;25317:182::-;25457:34;25453:1;25445:6;25441:14;25434:58;25317:182;:::o;25505:366::-;25647:3;25668:67;25732:2;25727:3;25668:67;:::i;:::-;25661:74;;25744:93;25833:3;25744:93;:::i;:::-;25862:2;25857:3;25853:12;25846:19;;25505:366;;;:::o;25877:419::-;26043:4;26081:2;26070:9;26066:18;26058:26;;26130:9;26124:4;26120:20;26116:1;26105:9;26101:17;26094:47;26158:131;26284:4;26158:131;:::i;:::-;26150:139;;25877:419;;;:::o;26302:181::-;26442:33;26438:1;26430:6;26426:14;26419:57;26302:181;:::o;26489:366::-;26631:3;26652:67;26716:2;26711:3;26652:67;:::i;:::-;26645:74;;26728:93;26817:3;26728:93;:::i;:::-;26846:2;26841:3;26837:12;26830:19;;26489:366;;;:::o;26861:419::-;27027:4;27065:2;27054:9;27050:18;27042:26;;27114:9;27108:4;27104:20;27100:1;27089:9;27085:17;27078:47;27142:131;27268:4;27142:131;:::i;:::-;27134:139;;26861:419;;;:::o

Swarm Source

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