Token

Blaze (Blaze)

Overview

Max Total Supply

10,000,000 Blaze

Holders

40

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
105,045.536820167327458404 Blaze

Value
$0.00
0xd71d837b8ce264e9a24acf9cdaeed32628acfcc0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Blaze

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-13
*/

// SPDX-License-Identifier: MIT
/*
                x.com/BlazeOnSonic
               www.blazeonsonic.xyz
*/

pragma solidity ^0.8.21;

/**
 * @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).
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @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(address initialOwner) {
        _transferOwnership(initialOwner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

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

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

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

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

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

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

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

/**
 * @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);
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Blaze is ERC20, Ownable {
    constructor() ERC20("Blaze", "Blaze") Ownable(msg.sender) {
        _mint(msg.sender, 10000000 * 10 ** decimals());
    }

    function airdrop(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner {
        require(recipients.length == amounts.length, "Recipients and amounts length mismatch");

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(msg.sender, recipients[i], amounts[i]);
        }
    }

    // The owner can renounce ownership of the contract
    function renounceOwnership() public override onlyOwner {
        super.renounceOwnership();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b50336040518060400160405280600581526020017f426c617a650000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f426c617a65000000000000000000000000000000000000000000000000000000815250816003908161008c9190610560565b50806004908161009c9190610560565b5050506100ae816100eb60201b60201c565b506100e6336100c16101ae60201b60201c565b600a6100cd9190610797565b629896806100db91906107e1565b6101b660201b60201c565b6108f5565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021b9061087c565b60405180910390fd5b6102355f838361031960201b60201c565b8060025f828254610246919061089a565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610298919061089a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102fc91906108dc565b60405180910390a36103155f838361031e60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061039e57607f821691505b6020821081036103b1576103b061035a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103d8565b61041d86836103d8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61046161045c61045784610435565b61043e565b610435565b9050919050565b5f819050919050565b61047a83610447565b61048e61048682610468565b8484546103e4565b825550505050565b5f5f905090565b6104a5610496565b6104b0818484610471565b505050565b5b818110156104d3576104c85f8261049d565b6001810190506104b6565b5050565b601f821115610518576104e9816103b7565b6104f2846103c9565b81016020851015610501578190505b61051561050d856103c9565b8301826104b5565b50505b505050565b5f82821c905092915050565b5f6105385f198460080261051d565b1980831691505092915050565b5f6105508383610529565b9150826002028217905092915050565b61056982610323565b67ffffffffffffffff8111156105825761058161032d565b5b61058c8254610387565b6105978282856104d7565b5f60209050601f8311600181146105c8575f84156105b6578287015190505b6105c08582610545565b865550610627565b601f1984166105d6866103b7565b5f5b828110156105fd578489015182556001820191506020850194506020810190506105d8565b8683101561061a5784890151610616601f891682610529565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b60018511156106b15780860481111561068d5761068c61062f565b5b600185161561069c5780820291505b80810290506106aa8561065c565b9450610671565b94509492505050565b5f826106c95760019050610784565b816106d6575f9050610784565b81600181146106ec57600281146106f657610725565b6001915050610784565b60ff8411156107085761070761062f565b5b8360020a91508482111561071f5761071e61062f565b5b50610784565b5060208310610133831016604e8410600b841016171561075a5782820a9050838111156107555761075461062f565b5b610784565b6107678484846001610668565b9250905081840481111561077e5761077d61062f565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6107a182610435565b91506107ac8361078b565b92506107d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846106ba565b905092915050565b5f6107eb82610435565b91506107f683610435565b925082820261080481610435565b9150828204841483151761081b5761081a61062f565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610866601f83610822565b915061087182610832565b602082019050919050565b5f6020820190508181035f8301526108938161085a565b9050919050565b5f6108a482610435565b91506108af83610435565b92508282019050808211156108c7576108c661062f565b5b92915050565b6108d681610435565b82525050565b5f6020820190506108ef5f8301846108cd565b92915050565b611ac7806109025f395ff3fe608060405234801561000f575f5ffd5b50600436106100f3575f3560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063f2fde38b14610303576100f3565b806370a08231146101fd578063715018a61461022d5780638da5cb5b1461023757806395d89b4114610255576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806367243482146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f5ffd5b6100ff61031f565b60405161010c91906110aa565b60405180910390f35b61012f600480360381019061012a919061115f565b6103af565b60405161013c91906111b7565b60405180910390f35b61014d6103cc565b60405161015a91906111df565b60405180910390f35b61017d600480360381019061017891906111f8565b6103d5565b60405161018a91906111b7565b60405180910390f35b61019b6104c7565b6040516101a89190611263565b60405180910390f35b6101cb60048036038101906101c6919061115f565b6104cf565b6040516101d891906111b7565b60405180910390f35b6101fb60048036038101906101f69190611332565b610576565b005b610217600480360381019061021291906113b0565b6106a9565b60405161022491906111df565b60405180910390f35b6102356106ee565b005b61023f610774565b60405161024c91906113ea565b60405180910390f35b61025d61079c565b60405161026a91906110aa565b60405180910390f35b61028d6004803603810190610288919061115f565b61082c565b60405161029a91906111b7565b60405180910390f35b6102bd60048036038101906102b8919061115f565b610912565b6040516102ca91906111b7565b60405180910390f35b6102ed60048036038101906102e89190611403565b61092f565b6040516102fa91906111df565b60405180910390f35b61031d600480360381019061031891906113b0565b6109b1565b005b60606003805461032e9061146e565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061146e565b80156103a55780601f1061037c576101008083540402835291602001916103a5565b820191905f5260205f20905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b5f6103c26103bb610aa7565b8484610aae565b6001905092915050565b5f600254905090565b5f6103e1848484610c71565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610428610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049e9061150e565b60405180910390fd5b6104bb856104b3610aa7565b858403610aae565b60019150509392505050565b5f6012905090565b5f61056c6104db610aa7565b848460015f6104e8610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105679190611559565b610aae565b6001905092915050565b61057e610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661059c610774565b73ffffffffffffffffffffffffffffffffffffffff16146105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e9906115d6565b60405180910390fd5b81819050848490501461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063190611664565b60405180910390fd5b5f5f90505b848490508110156106a2576106953386868481811061066157610660611682565b5b905060200201602081019061067691906113b0565b85858581811061068957610688611682565b5b90506020020135610c71565b808060010191505061063f565b5050505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106f6610aa7565b73ffffffffffffffffffffffffffffffffffffffff16610714610774565b73ffffffffffffffffffffffffffffffffffffffff161461076a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610761906115d6565b60405180910390fd5b610772610ee6565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ab9061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061146e565b80156108225780601f106107f957610100808354040283529160200191610822565b820191905f5260205f20905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b5f5f60015f610839610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061171f565b60405180910390fd5b6109076108fe610aa7565b85858403610aae565b600191505092915050565b5f61092561091e610aa7565b8484610c71565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109b9610aa7565b73ffffffffffffffffffffffffffffffffffffffff166109d7610774565b73ffffffffffffffffffffffffffffffffffffffff1614610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906115d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906117ad565b60405180910390fd5b610aa481610f6d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b139061183b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b81906118c9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c6491906111df565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611957565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906119e5565b60405180910390fd5b610d58838383611030565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290611a73565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610e699190611559565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ecd91906111df565b60405180910390a3610ee0848484611035565b50505050565b610eee610aa7565b73ffffffffffffffffffffffffffffffffffffffff16610f0c610774565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906115d6565b60405180910390fd5b610f6b5f610f6d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61107c8261103a565b6110868185611044565b9350611096818560208601611054565b61109f81611062565b840191505092915050565b5f6020820190508181035f8301526110c28184611072565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110fb826110d2565b9050919050565b61110b816110f1565b8114611115575f5ffd5b50565b5f8135905061112681611102565b92915050565b5f819050919050565b61113e8161112c565b8114611148575f5ffd5b50565b5f8135905061115981611135565b92915050565b5f5f60408385031215611175576111746110ca565b5b5f61118285828601611118565b92505060206111938582860161114b565b9150509250929050565b5f8115159050919050565b6111b18161119d565b82525050565b5f6020820190506111ca5f8301846111a8565b92915050565b6111d98161112c565b82525050565b5f6020820190506111f25f8301846111d0565b92915050565b5f5f5f6060848603121561120f5761120e6110ca565b5b5f61121c86828701611118565b935050602061122d86828701611118565b925050604061123e8682870161114b565b9150509250925092565b5f60ff82169050919050565b61125d81611248565b82525050565b5f6020820190506112765f830184611254565b92915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f84011261129d5761129c61127c565b5b8235905067ffffffffffffffff8111156112ba576112b9611280565b5b6020830191508360208202830111156112d6576112d5611284565b5b9250929050565b5f5f83601f8401126112f2576112f161127c565b5b8235905067ffffffffffffffff81111561130f5761130e611280565b5b60208301915083602082028301111561132b5761132a611284565b5b9250929050565b5f5f5f5f6040858703121561134a576113496110ca565b5b5f85013567ffffffffffffffff811115611367576113666110ce565b5b61137387828801611288565b9450945050602085013567ffffffffffffffff811115611396576113956110ce565b5b6113a2878288016112dd565b925092505092959194509250565b5f602082840312156113c5576113c46110ca565b5b5f6113d284828501611118565b91505092915050565b6113e4816110f1565b82525050565b5f6020820190506113fd5f8301846113db565b92915050565b5f5f60408385031215611419576114186110ca565b5b5f61142685828601611118565b925050602061143785828601611118565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148557607f821691505b60208210810361149857611497611441565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6114f8602883611044565b91506115038261149e565b604082019050919050565b5f6020820190508181035f830152611525816114ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115638261112c565b915061156e8361112c565b92508282019050808211156115865761158561152c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115c0602083611044565b91506115cb8261158c565b602082019050919050565b5f6020820190508181035f8301526115ed816115b4565b9050919050565b7f526563697069656e747320616e6420616d6f756e7473206c656e677468206d695f8201527f736d617463680000000000000000000000000000000000000000000000000000602082015250565b5f61164e602683611044565b9150611659826115f4565b604082019050919050565b5f6020820190508181035f83015261167b81611642565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611709602583611044565b9150611714826116af565b604082019050919050565b5f6020820190508181035f830152611736816116fd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611797602683611044565b91506117a28261173d565b604082019050919050565b5f6020820190508181035f8301526117c48161178b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611825602483611044565b9150611830826117cb565b604082019050919050565b5f6020820190508181035f83015261185281611819565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118b3602283611044565b91506118be82611859565b604082019050919050565b5f6020820190508181035f8301526118e0816118a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611941602583611044565b915061194c826118e7565b604082019050919050565b5f6020820190508181035f83015261196e81611935565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119cf602383611044565b91506119da82611975565b604082019050919050565b5f6020820190508181035f8301526119fc816119c3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a5d602683611044565b9150611a6882611a03565b604082019050919050565b5f6020820190508181035f830152611a8a81611a51565b905091905056fea2646970667358221220eb5583d3e113599273696f511f5e01c344cdb35e7976387b22b15f144ed9e0b364736f6c634300081c0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100f3575f3560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063f2fde38b14610303576100f3565b806370a08231146101fd578063715018a61461022d5780638da5cb5b1461023757806395d89b4114610255576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806367243482146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f5ffd5b6100ff61031f565b60405161010c91906110aa565b60405180910390f35b61012f600480360381019061012a919061115f565b6103af565b60405161013c91906111b7565b60405180910390f35b61014d6103cc565b60405161015a91906111df565b60405180910390f35b61017d600480360381019061017891906111f8565b6103d5565b60405161018a91906111b7565b60405180910390f35b61019b6104c7565b6040516101a89190611263565b60405180910390f35b6101cb60048036038101906101c6919061115f565b6104cf565b6040516101d891906111b7565b60405180910390f35b6101fb60048036038101906101f69190611332565b610576565b005b610217600480360381019061021291906113b0565b6106a9565b60405161022491906111df565b60405180910390f35b6102356106ee565b005b61023f610774565b60405161024c91906113ea565b60405180910390f35b61025d61079c565b60405161026a91906110aa565b60405180910390f35b61028d6004803603810190610288919061115f565b61082c565b60405161029a91906111b7565b60405180910390f35b6102bd60048036038101906102b8919061115f565b610912565b6040516102ca91906111b7565b60405180910390f35b6102ed60048036038101906102e89190611403565b61092f565b6040516102fa91906111df565b60405180910390f35b61031d600480360381019061031891906113b0565b6109b1565b005b60606003805461032e9061146e565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061146e565b80156103a55780601f1061037c576101008083540402835291602001916103a5565b820191905f5260205f20905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b5f6103c26103bb610aa7565b8484610aae565b6001905092915050565b5f600254905090565b5f6103e1848484610c71565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610428610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049e9061150e565b60405180910390fd5b6104bb856104b3610aa7565b858403610aae565b60019150509392505050565b5f6012905090565b5f61056c6104db610aa7565b848460015f6104e8610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105679190611559565b610aae565b6001905092915050565b61057e610aa7565b73ffffffffffffffffffffffffffffffffffffffff1661059c610774565b73ffffffffffffffffffffffffffffffffffffffff16146105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e9906115d6565b60405180910390fd5b81819050848490501461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063190611664565b60405180910390fd5b5f5f90505b848490508110156106a2576106953386868481811061066157610660611682565b5b905060200201602081019061067691906113b0565b85858581811061068957610688611682565b5b90506020020135610c71565b808060010191505061063f565b5050505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106f6610aa7565b73ffffffffffffffffffffffffffffffffffffffff16610714610774565b73ffffffffffffffffffffffffffffffffffffffff161461076a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610761906115d6565b60405180910390fd5b610772610ee6565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ab9061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061146e565b80156108225780601f106107f957610100808354040283529160200191610822565b820191905f5260205f20905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b5f5f60015f610839610aa7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061171f565b60405180910390fd5b6109076108fe610aa7565b85858403610aae565b600191505092915050565b5f61092561091e610aa7565b8484610c71565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109b9610aa7565b73ffffffffffffffffffffffffffffffffffffffff166109d7610774565b73ffffffffffffffffffffffffffffffffffffffff1614610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906115d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906117ad565b60405180910390fd5b610aa481610f6d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b139061183b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b81906118c9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c6491906111df565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611957565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906119e5565b60405180910390fd5b610d58838383611030565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290611a73565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610e699190611559565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ecd91906111df565b60405180910390a3610ee0848484611035565b50505050565b610eee610aa7565b73ffffffffffffffffffffffffffffffffffffffff16610f0c610774565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906115d6565b60405180910390fd5b610f6b5f610f6d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61107c8261103a565b6110868185611044565b9350611096818560208601611054565b61109f81611062565b840191505092915050565b5f6020820190508181035f8301526110c28184611072565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110fb826110d2565b9050919050565b61110b816110f1565b8114611115575f5ffd5b50565b5f8135905061112681611102565b92915050565b5f819050919050565b61113e8161112c565b8114611148575f5ffd5b50565b5f8135905061115981611135565b92915050565b5f5f60408385031215611175576111746110ca565b5b5f61118285828601611118565b92505060206111938582860161114b565b9150509250929050565b5f8115159050919050565b6111b18161119d565b82525050565b5f6020820190506111ca5f8301846111a8565b92915050565b6111d98161112c565b82525050565b5f6020820190506111f25f8301846111d0565b92915050565b5f5f5f6060848603121561120f5761120e6110ca565b5b5f61121c86828701611118565b935050602061122d86828701611118565b925050604061123e8682870161114b565b9150509250925092565b5f60ff82169050919050565b61125d81611248565b82525050565b5f6020820190506112765f830184611254565b92915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f84011261129d5761129c61127c565b5b8235905067ffffffffffffffff8111156112ba576112b9611280565b5b6020830191508360208202830111156112d6576112d5611284565b5b9250929050565b5f5f83601f8401126112f2576112f161127c565b5b8235905067ffffffffffffffff81111561130f5761130e611280565b5b60208301915083602082028301111561132b5761132a611284565b5b9250929050565b5f5f5f5f6040858703121561134a576113496110ca565b5b5f85013567ffffffffffffffff811115611367576113666110ce565b5b61137387828801611288565b9450945050602085013567ffffffffffffffff811115611396576113956110ce565b5b6113a2878288016112dd565b925092505092959194509250565b5f602082840312156113c5576113c46110ca565b5b5f6113d284828501611118565b91505092915050565b6113e4816110f1565b82525050565b5f6020820190506113fd5f8301846113db565b92915050565b5f5f60408385031215611419576114186110ca565b5b5f61142685828601611118565b925050602061143785828601611118565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148557607f821691505b60208210810361149857611497611441565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6114f8602883611044565b91506115038261149e565b604082019050919050565b5f6020820190508181035f830152611525816114ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115638261112c565b915061156e8361112c565b92508282019050808211156115865761158561152c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115c0602083611044565b91506115cb8261158c565b602082019050919050565b5f6020820190508181035f8301526115ed816115b4565b9050919050565b7f526563697069656e747320616e6420616d6f756e7473206c656e677468206d695f8201527f736d617463680000000000000000000000000000000000000000000000000000602082015250565b5f61164e602683611044565b9150611659826115f4565b604082019050919050565b5f6020820190508181035f83015261167b81611642565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611709602583611044565b9150611714826116af565b604082019050919050565b5f6020820190508181035f830152611736816116fd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611797602683611044565b91506117a28261173d565b604082019050919050565b5f6020820190508181035f8301526117c48161178b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611825602483611044565b9150611830826117cb565b604082019050919050565b5f6020820190508181035f83015261185281611819565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118b3602283611044565b91506118be82611859565b604082019050919050565b5f6020820190508181035f8301526118e0816118a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611941602583611044565b915061194c826118e7565b604082019050919050565b5f6020820190508181035f83015261196e81611935565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119cf602383611044565b91506119da82611975565b604082019050919050565b5f6020820190508181035f8301526119fc816119c3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a5d602683611044565b9150611a6882611a03565b604082019050919050565b5f6020820190508181035f830152611a8a81611a51565b905091905056fea2646970667358221220eb5583d3e113599273696f511f5e01c344cdb35e7976387b22b15f144ed9e0b364736f6c634300081c0033

Deployed Bytecode Sourcemap

18413:673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8452:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10619:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9572:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11270:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9414:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12171:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18584:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9743:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18984:99;;;:::i;:::-;;1756:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8671:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12889:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10083:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10321:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2665:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8452:100;8506:13;8539:5;8532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8452:100;:::o;10619:169::-;10702:4;10719:39;10728:12;:10;:12::i;:::-;10742:7;10751:6;10719:8;:39::i;:::-;10776:4;10769:11;;10619:169;;;;:::o;9572:108::-;9633:7;9660:12;;9653:19;;9572:108;:::o;11270:492::-;11410:4;11427:36;11437:6;11445:9;11456:6;11427:9;:36::i;:::-;11476:24;11503:11;:19;11515:6;11503:19;;;;;;;;;;;;;;;:33;11523:12;:10;:12::i;:::-;11503:33;;;;;;;;;;;;;;;;11476:60;;11575:6;11555:16;:26;;11547:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11662:57;11671:6;11679:12;:10;:12::i;:::-;11712:6;11693:16;:25;11662:8;:57::i;:::-;11750:4;11743:11;;;11270:492;;;;;:::o;9414:93::-;9472:5;9497:2;9490:9;;9414:93;:::o;12171:215::-;12259:4;12276:80;12285:12;:10;:12::i;:::-;12299:7;12345:10;12308:11;:25;12320:12;:10;:12::i;:::-;12308:25;;;;;;;;;;;;;;;:34;12334:7;12308:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12276:8;:80::i;:::-;12374:4;12367:11;;12171:215;;;;:::o;18584:335::-;1987:12;:10;:12::i;:::-;1976:23;;:7;:5;:7::i;:::-;:23;;;1968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18719:7:::1;;:14;;18698:10;;:17;;:35;18690:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;18794:9;18806:1;18794:13;;18789:123;18813:10;;:17;;18809:1;:21;18789:123;;;18852:48;18862:10;18874;;18885:1;18874:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;18889:7;;18897:1;18889:10;;;;;;;:::i;:::-;;;;;;;;18852:9;:48::i;:::-;18832:3;;;;;;;18789:123;;;;18584:335:::0;;;;:::o;9743:127::-;9817:7;9844:9;:18;9854:7;9844:18;;;;;;;;;;;;;;;;9837:25;;9743:127;;;:::o;18984:99::-;1987:12;:10;:12::i;:::-;1976:23;;:7;:5;:7::i;:::-;:23;;;1968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19050:25:::1;:23;:25::i;:::-;18984:99::o:0;1756:87::-;1802:7;1829:6;;;;;;;;;;;1822:13;;1756:87;:::o;8671:104::-;8727:13;8760:7;8753:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8671:104;:::o;12889:413::-;12982:4;12999:24;13026:11;:25;13038:12;:10;:12::i;:::-;13026:25;;;;;;;;;;;;;;;:34;13052:7;13026:34;;;;;;;;;;;;;;;;12999:61;;13099:15;13079:16;:35;;13071:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13192:67;13201:12;:10;:12::i;:::-;13215:7;13243:15;13224:16;:34;13192:8;:67::i;:::-;13290:4;13283:11;;;12889:413;;;;:::o;10083:175::-;10169:4;10186:42;10196:12;:10;:12::i;:::-;10210:9;10221:6;10186:9;:42::i;:::-;10246:4;10239:11;;10083:175;;;;:::o;10321:151::-;10410:7;10437:11;:18;10449:5;10437:18;;;;;;;;;;;;;;;:27;10456:7;10437:27;;;;;;;;;;;;;;;;10430:34;;10321:151;;;;:::o;2665:201::-;1987:12;:10;:12::i;:::-;1976:23;;:7;:5;:7::i;:::-;:23;;;1968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2774:1:::1;2754:22;;:8;:22;;::::0;2746:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2830:28;2849:8;2830:18;:28::i;:::-;2665:201:::0;:::o;603:98::-;656:7;683:10;676:17;;603:98;:::o;16573:380::-;16726:1;16709:19;;:5;:19;;;16701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16807:1;16788:21;;:7;:21;;;16780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16891:6;16861:11;:18;16873:5;16861:18;;;;;;;;;;;;;;;:27;16880:7;16861:27;;;;;;;;;;;;;;;:36;;;;16929:7;16913:32;;16922:5;16913:32;;;16938:6;16913:32;;;;;;:::i;:::-;;;;;;;;16573:380;;;:::o;13792:733::-;13950:1;13932:20;;:6;:20;;;13924:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14034:1;14013:23;;:9;:23;;;14005:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14089:47;14110:6;14118:9;14129:6;14089:20;:47::i;:::-;14149:21;14173:9;:17;14183:6;14173:17;;;;;;;;;;;;;;;;14149:41;;14226:6;14209:13;:23;;14201:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14347:6;14331:13;:22;14311:9;:17;14321:6;14311:17;;;;;;;;;;;;;;;:42;;;;14399:6;14375:9;:20;14385:9;14375:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14440:9;14423:35;;14432:6;14423:35;;;14451:6;14423:35;;;;;;:::i;:::-;;;;;;;;14471:46;14491:6;14499:9;14510:6;14471:19;:46::i;:::-;13913:612;13792:733;;;:::o;2407:103::-;1987:12;:10;:12::i;:::-;1976:23;;:7;:5;:7::i;:::-;:23;;;1968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2472:30:::1;2499:1;2472:18;:30::i;:::-;2407:103::o:0;3026:191::-;3100:16;3119:6;;;;;;;;;;;3100:25;;3145:8;3136:6;;:17;;;;;;;;;;;;;;;;;;3200:8;3169:40;;3190:8;3169:40;;;;;;;;;;;;3089:128;3026:191;:::o;17553:125::-;;;;:::o;18282:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:117::-;4855:1;4852;4845:12;4869:117;4978:1;4975;4968:12;4992:117;5101:1;5098;5091:12;5132:568;5205:8;5215:6;5265:3;5258:4;5250:6;5246:17;5242:27;5232:122;;5273:79;;:::i;:::-;5232:122;5386:6;5373:20;5363:30;;5416:18;5408:6;5405:30;5402:117;;;5438:79;;:::i;:::-;5402:117;5552:4;5544:6;5540:17;5528:29;;5606:3;5598:4;5590:6;5586:17;5576:8;5572:32;5569:41;5566:128;;;5613:79;;:::i;:::-;5566:128;5132:568;;;;;:::o;5723:::-;5796:8;5806:6;5856:3;5849:4;5841:6;5837:17;5833:27;5823:122;;5864:79;;:::i;:::-;5823:122;5977:6;5964:20;5954:30;;6007:18;5999:6;5996:30;5993:117;;;6029:79;;:::i;:::-;5993:117;6143:4;6135:6;6131:17;6119:29;;6197:3;6189:4;6181:6;6177:17;6167:8;6163:32;6160:41;6157:128;;;6204:79;;:::i;:::-;6157:128;5723:568;;;;;:::o;6297:934::-;6419:6;6427;6435;6443;6492:2;6480:9;6471:7;6467:23;6463:32;6460:119;;;6498:79;;:::i;:::-;6460:119;6646:1;6635:9;6631:17;6618:31;6676:18;6668:6;6665:30;6662:117;;;6698:79;;:::i;:::-;6662:117;6811:80;6883:7;6874:6;6863:9;6859:22;6811:80;:::i;:::-;6793:98;;;;6589:312;6968:2;6957:9;6953:18;6940:32;6999:18;6991:6;6988:30;6985:117;;;7021:79;;:::i;:::-;6985:117;7134:80;7206:7;7197:6;7186:9;7182:22;7134:80;:::i;:::-;7116:98;;;;6911:313;6297:934;;;;;;;:::o;7237:329::-;7296:6;7345:2;7333:9;7324:7;7320:23;7316:32;7313:119;;;7351:79;;:::i;:::-;7313:119;7471:1;7496:53;7541:7;7532:6;7521:9;7517:22;7496:53;:::i;:::-;7486:63;;7442:117;7237:329;;;;:::o;7572:118::-;7659:24;7677:5;7659:24;:::i;:::-;7654:3;7647:37;7572:118;;:::o;7696:222::-;7789:4;7827:2;7816:9;7812:18;7804:26;;7840:71;7908:1;7897:9;7893:17;7884:6;7840:71;:::i;:::-;7696:222;;;;:::o;7924:474::-;7992:6;8000;8049:2;8037:9;8028:7;8024:23;8020:32;8017:119;;;8055:79;;:::i;:::-;8017:119;8175:1;8200:53;8245:7;8236:6;8225:9;8221:22;8200:53;:::i;:::-;8190:63;;8146:117;8302:2;8328:53;8373:7;8364:6;8353:9;8349:22;8328:53;:::i;:::-;8318:63;;8273:118;7924:474;;;;;:::o;8404:180::-;8452:77;8449:1;8442:88;8549:4;8546:1;8539:15;8573:4;8570:1;8563:15;8590:320;8634:6;8671:1;8665:4;8661:12;8651:22;;8718:1;8712:4;8708:12;8739:18;8729:81;;8795:4;8787:6;8783:17;8773:27;;8729:81;8857:2;8849:6;8846:14;8826:18;8823:38;8820:84;;8876:18;;:::i;:::-;8820:84;8641:269;8590:320;;;:::o;8916:227::-;9056:34;9052:1;9044:6;9040:14;9033:58;9125:10;9120:2;9112:6;9108:15;9101:35;8916:227;:::o;9149:366::-;9291:3;9312:67;9376:2;9371:3;9312:67;:::i;:::-;9305:74;;9388:93;9477:3;9388:93;:::i;:::-;9506:2;9501:3;9497:12;9490:19;;9149:366;;;:::o;9521:419::-;9687:4;9725:2;9714:9;9710:18;9702:26;;9774:9;9768:4;9764:20;9760:1;9749:9;9745:17;9738:47;9802:131;9928:4;9802:131;:::i;:::-;9794:139;;9521:419;;;:::o;9946:180::-;9994:77;9991:1;9984:88;10091:4;10088:1;10081:15;10115:4;10112:1;10105:15;10132:191;10172:3;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10268:1;10265;10261:9;10254:16;;10289:3;10286:1;10283:10;10280:36;;;10296:18;;:::i;:::-;10280:36;10132:191;;;;:::o;10329:182::-;10469:34;10465:1;10457:6;10453:14;10446:58;10329:182;:::o;10517:366::-;10659:3;10680:67;10744:2;10739:3;10680:67;:::i;:::-;10673:74;;10756:93;10845:3;10756:93;:::i;:::-;10874:2;10869:3;10865:12;10858:19;;10517:366;;;:::o;10889:419::-;11055:4;11093:2;11082:9;11078:18;11070:26;;11142:9;11136:4;11132:20;11128:1;11117:9;11113:17;11106:47;11170:131;11296:4;11170:131;:::i;:::-;11162:139;;10889:419;;;:::o;11314:225::-;11454:34;11450:1;11442:6;11438:14;11431:58;11523:8;11518:2;11510:6;11506:15;11499:33;11314:225;:::o;11545:366::-;11687:3;11708:67;11772:2;11767:3;11708:67;:::i;:::-;11701:74;;11784:93;11873:3;11784:93;:::i;:::-;11902:2;11897:3;11893:12;11886:19;;11545:366;;;:::o;11917:419::-;12083:4;12121:2;12110:9;12106:18;12098:26;;12170:9;12164:4;12160:20;12156:1;12145:9;12141:17;12134:47;12198:131;12324:4;12198:131;:::i;:::-;12190:139;;11917:419;;;:::o;12342:180::-;12390:77;12387:1;12380:88;12487:4;12484:1;12477:15;12511:4;12508:1;12501:15;12528:224;12668:34;12664:1;12656:6;12652:14;12645:58;12737:7;12732:2;12724:6;12720:15;12713:32;12528:224;:::o;12758:366::-;12900:3;12921:67;12985:2;12980:3;12921:67;:::i;:::-;12914:74;;12997:93;13086:3;12997:93;:::i;:::-;13115:2;13110:3;13106:12;13099:19;;12758:366;;;:::o;13130:419::-;13296:4;13334:2;13323:9;13319:18;13311:26;;13383:9;13377:4;13373:20;13369:1;13358:9;13354:17;13347:47;13411:131;13537:4;13411:131;:::i;:::-;13403:139;;13130:419;;;:::o;13555:225::-;13695:34;13691:1;13683:6;13679:14;13672:58;13764:8;13759:2;13751:6;13747:15;13740:33;13555:225;:::o;13786:366::-;13928:3;13949:67;14013:2;14008:3;13949:67;:::i;:::-;13942:74;;14025:93;14114:3;14025:93;:::i;:::-;14143:2;14138:3;14134:12;14127:19;;13786:366;;;:::o;14158:419::-;14324:4;14362:2;14351:9;14347:18;14339:26;;14411:9;14405:4;14401:20;14397:1;14386:9;14382:17;14375:47;14439:131;14565:4;14439:131;:::i;:::-;14431:139;;14158:419;;;:::o;14583:223::-;14723:34;14719:1;14711:6;14707:14;14700:58;14792:6;14787:2;14779:6;14775:15;14768:31;14583:223;:::o;14812:366::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:419::-;15350:4;15388:2;15377:9;15373:18;15365:26;;15437:9;15431:4;15427:20;15423:1;15412:9;15408:17;15401:47;15465:131;15591:4;15465:131;:::i;:::-;15457:139;;15184:419;;;:::o;15609:221::-;15749:34;15745:1;15737:6;15733:14;15726:58;15818:4;15813:2;15805:6;15801:15;15794:29;15609:221;:::o;15836:366::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:419::-;16374:4;16412:2;16401:9;16397:18;16389:26;;16461:9;16455:4;16451:20;16447:1;16436:9;16432:17;16425:47;16489:131;16615:4;16489:131;:::i;:::-;16481:139;;16208:419;;;:::o;16633:224::-;16773:34;16769:1;16761:6;16757:14;16750:58;16842:7;16837:2;16829:6;16825:15;16818:32;16633:224;:::o;16863:366::-;17005:3;17026:67;17090:2;17085:3;17026:67;:::i;:::-;17019:74;;17102:93;17191:3;17102:93;:::i;:::-;17220:2;17215:3;17211:12;17204:19;;16863:366;;;:::o;17235:419::-;17401:4;17439:2;17428:9;17424:18;17416:26;;17488:9;17482:4;17478:20;17474:1;17463:9;17459:17;17452:47;17516:131;17642:4;17516:131;:::i;:::-;17508:139;;17235:419;;;:::o;17660:222::-;17800:34;17796:1;17788:6;17784:14;17777:58;17869:5;17864:2;17856:6;17852:15;17845:30;17660:222;:::o;17888:366::-;18030:3;18051:67;18115:2;18110:3;18051:67;:::i;:::-;18044:74;;18127:93;18216:3;18127:93;:::i;:::-;18245:2;18240:3;18236:12;18229:19;;17888:366;;;:::o;18260:419::-;18426:4;18464:2;18453:9;18449:18;18441:26;;18513:9;18507:4;18503:20;18499:1;18488:9;18484:17;18477:47;18541:131;18667:4;18541:131;:::i;:::-;18533:139;;18260:419;;;:::o;18685:225::-;18825:34;18821:1;18813:6;18809:14;18802:58;18894:8;18889:2;18881:6;18877:15;18870:33;18685:225;:::o;18916:366::-;19058:3;19079:67;19143:2;19138:3;19079:67;:::i;:::-;19072:74;;19155:93;19244:3;19155:93;:::i;:::-;19273:2;19268:3;19264:12;19257:19;;18916:366;;;:::o;19288:419::-;19454:4;19492:2;19481:9;19477:18;19469:26;;19541:9;19535:4;19531:20;19527:1;19516:9;19512:17;19505:47;19569:131;19695:4;19569:131;:::i;:::-;19561:139;;19288:419;;;:::o

Swarm Source

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