ETH Price: $2,841.71 (-10.08%)
Gas: 12 Gwei

Token

GLIX (GLIX)
 

Overview

Max Total Supply

2,656,998.084490740740739864 GLIX

Holders

171

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.393685085844339007 GLIX

Value
$0.00
0xd860ec8f3df25e40eb408aab6109214040d9976f
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:
GLIXTOKEN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// SPDX-License-Identifier: CONSTANTLY WANTS TO MAKE THE WORLD BEAUTIFUL

//
//   ▄▀  █    ▄█     ▄         ▄▄▄▄▀ ████▄ █  █▀ ▄███▄      ▄   
// ▄▀    █    ██ ▀▄   █     ▀▀▀ █    █   █ █▄█   █▀   ▀      █  
// █ ▀▄  █    ██   █ ▀          █    █   █ █▀▄   ██▄▄    ██   █ 
// █   █ ███▄ ▐█  ▄ █          █     ▀████ █  █  █▄   ▄▀ █ █  █ 
//  ███      ▀ ▐ █   ▀▄       ▀              █   ▀███▀   █  █ █ 
//                ▀                         ▀            █   ██ 

// by @berkozdemir aka princess camel aka guerrilla pimp minion god bastard
                                                             
// A UTILITY TOKEN FOR GLICPIXXX RELATED ARTSY FART THINGIES

// THE TOKEN IS DEPLOYED ALONGSIDE "ARTGLIXXX GENESIS" - BADASS ON-CHAIN GENERATIVE ART COLLECTION

// $GLIX WILL BE YIELDED FROM ELDEST ARTGLIXXX NFTs AND WILL BE BURNED TO GIVE BIRTH TO NEWER GENERATIONS

// THE YIELD MECHANISM IS PLUNDERED FROM CYBERKONGZ $BANANA CONTRACT, SHOUTOUT TO DEM

// IN THE MEANTIME NEW GLICPIXXX RELATED COLLECTIONS/CONTRACTS MAY BE HOOKED TO THIS CONTRACT TO MINT/BURN $GLIX

// ps. THIS IS NOT AN INVESTMENT TOKEN. DYOR.

// LET'S SPREAD THE LOVE, REMIXES, AND GLITCH

// GLICPIXXX IS LOVE, GLICPIXXX IS LIFE

// https://glicpixxx.love
// https://artglixxx.io

// https://berkozdemir.com
// https://linktr.ee/0xberk
// https://twitter.com/berkozdemir

// ==================================================================================================================

// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 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);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/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:
     *
     * - `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 `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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 {}
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of GLIXTOKEN.
 */
interface IGLIX is IERC20 {
    function mint(address to, uint256 amount) external returns(bool);
    function burn(address from, uint256 amount) external returns(bool);
    function minterPermissionCheck(address _address) external view returns(bool);
    function burnerPermissionCheck(address _address) external view returns(bool);
}

// File: contract-0103118b21.sol


pragma solidity ^0.8.2;

contract GLIXTOKEN is ERC20, Ownable {

    // THE WHITELISTS ARE GIVEN TO ARTGLIXXX AND GLIX UTILITY CONTRACTS
    mapping (address => bool) public minterPermission;
    mapping (address => bool) public burnerPermission;

    event minterPermissionGiven(address indexed _address);
    event minterPermissionRemoved(address indexed _address);
    event burnerPermissionGiven(address indexed _address);
    event burnerPermissionRemoved(address indexed _address);

    event GlixMinted(address indexed _user, uint256 _amount);
    event GlixBurnt(address indexed _user, uint256 _amount);

    constructor() ERC20("GLIX", "GLIX") {}

    function mint(address to, uint256 amount) external returns(bool) {
        require(minterPermission[msg.sender], "Address don't have mint permission");
        _mint(to, amount);
        emit GlixMinted(to, amount);
        return true;
    }

    function burn(address from, uint256 amount) external returns(bool) {
        require(burnerPermission[msg.sender], "Address don't have burn permission");
        _burn(from, amount);
        emit GlixBurnt(from, amount);
        return true;
    }
   
    function giveMinterPermission(address _address) public onlyOwner {
        minterPermission[_address] = true;
        emit minterPermissionGiven(_address);
    }

    function removeMinterPermission(address _address) public onlyOwner {
        minterPermission[_address] = false;
        emit minterPermissionRemoved(_address);
    }

    function giveBurnerPermission(address _address) public onlyOwner {
        burnerPermission[_address] = true;
        emit burnerPermissionGiven(_address);
    }

    function removeBurnerPermission(address _address) public onlyOwner {
        burnerPermission[_address] = false;
        emit burnerPermissionRemoved(_address);
    }

    function minterPermissionCheck(address _address) external view returns(bool) {
        return minterPermission[_address];
    }

    function burnerPermissionCheck(address _address) external view returns(bool) {
        return burnerPermission[_address];
    }
}

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":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GlixBurnt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GlixMinted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"burnerPermissionGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"burnerPermissionRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"minterPermissionGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"minterPermissionRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burnerPermission","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burnerPermissionCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"giveBurnerPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"giveMinterPermission","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterPermission","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"minterPermissionCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBurnerPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeMinterPermission","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f474c4958000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f474c495800000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61271880620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d714610415578063a9059cbb14610445578063ba110b2214610475578063c56b5f7414610491578063dd62ed3e146104ad578063f2fde38b146104dd57610158565b8063715018a6146103535780638ce86fd01461035d5780638da5cb5b1461038d57806395d89b41146103ab57806397d790f6146103c95780639dc29fac146103e557610158565b8063313ce56711610115578063313ce56714610245578063395093511461026357806340c10f1914610293578063597f34ce146102c357806367a78972146102f357806370a082311461032357610158565b806306fdde031461015d578063085323f31461017b578063095ea7b31461019757806318160ddd146101c757806323b872dd146101e55780632dd3022714610215575b600080fd5b6101656104f9565b6040516101729190611ec2565b60405180910390f35b61019560048036038101906101909190611b2d565b61058b565b005b6101b160048036038101906101ac9190611bed565b6106a5565b6040516101be9190611ea7565b60405180910390f35b6101cf6106c3565b6040516101dc91906120a4565b60405180910390f35b6101ff60048036038101906101fa9190611b9a565b6106cd565b60405161020c9190611ea7565b60405180910390f35b61022f600480360381019061022a9190611b2d565b6107c5565b60405161023c9190611ea7565b60405180910390f35b61024d6107e5565b60405161025a91906120bf565b60405180910390f35b61027d60048036038101906102789190611bed565b6107ee565b60405161028a9190611ea7565b60405180910390f35b6102ad60048036038101906102a89190611bed565b61089a565b6040516102ba9190611ea7565b60405180910390f35b6102dd60048036038101906102d89190611b2d565b61098a565b6040516102ea9190611ea7565b60405180910390f35b61030d60048036038101906103089190611b2d565b6109e0565b60405161031a9190611ea7565b60405180910390f35b61033d60048036038101906103389190611b2d565b610a36565b60405161034a91906120a4565b60405180910390f35b61035b610a7e565b005b61037760048036038101906103729190611b2d565b610b06565b6040516103849190611ea7565b60405180910390f35b610395610b26565b6040516103a29190611e8c565b60405180910390f35b6103b3610b50565b6040516103c09190611ec2565b60405180910390f35b6103e360048036038101906103de9190611b2d565b610be2565b005b6103ff60048036038101906103fa9190611bed565b610cfc565b60405161040c9190611ea7565b60405180910390f35b61042f600480360381019061042a9190611bed565b610dec565b60405161043c9190611ea7565b60405180910390f35b61045f600480360381019061045a9190611bed565b610ed7565b60405161046c9190611ea7565b60405180910390f35b61048f600480360381019061048a9190611b2d565b610ef5565b005b6104ab60048036038101906104a69190611b2d565b61100f565b005b6104c760048036038101906104c29190611b5a565b611129565b6040516104d491906120a4565b60405180910390f35b6104f760048036038101906104f29190611b2d565b6111b0565b005b60606003805461050890612208565b80601f016020809104026020016040519081016040528092919081815260200182805461053490612208565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b6105936112a8565b73ffffffffffffffffffffffffffffffffffffffff166105b1610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611fe4565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa5c1327ebe8e0da7e055fcfe0247c6890f3b83ab467bf5f040c600560b7fadc60405160405180910390a250565b60006106b96106b26112a8565b84846112b0565b6001905092915050565b6000600254905090565b60006106da84848461147b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107256112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90611fc4565b60405180910390fd5b6107b9856107b16112a8565b8584036112b0565b60019150509392505050565b60076020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60006108906107fb6112a8565b8484600160006108096112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088b91906120f6565b6112b0565b6001905092915050565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90611fa4565b60405180910390fd5b61093283836116fc565b8273ffffffffffffffffffffffffffffffffffffffff167f4b662de90cbc89029b781af58d96949264d1871625cbda9eaf31a8e37c0ac3808360405161097891906120a4565b60405180910390a26001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a866112a8565b73ffffffffffffffffffffffffffffffffffffffff16610aa4610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611fe4565b60405180910390fd5b610b04600061185c565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5f90612208565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612208565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b610bea6112a8565b73ffffffffffffffffffffffffffffffffffffffff16610c08610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611fe4565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3f39efb550946dd038ae1b56598d075493ae7ad9bbe611517439d62b8e4c18c360405160405180910390a250565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611f84565b60405180910390fd5b610d948383611922565b8273ffffffffffffffffffffffffffffffffffffffff167f80e226cd9ff03c40b41f3d6861c15377d337f64ee0f8615f511c8d3cd2e3590583604051610dda91906120a4565b60405180910390a26001905092915050565b60008060016000610dfb6112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612064565b60405180910390fd5b610ecc610ec36112a8565b858584036112b0565b600191505092915050565b6000610eeb610ee46112a8565b848461147b565b6001905092915050565b610efd6112a8565b73ffffffffffffffffffffffffffffffffffffffff16610f1b610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890611fe4565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f244e7f171404d4dc2af4ad3d7bf77c24d21866a0e4960d37a0f24f69df90778c60405160405180910390a250565b6110176112a8565b73ffffffffffffffffffffffffffffffffffffffff16611035610b26565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290611fe4565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1394b62d1c5e10fe96a0b4386bb68327a488c9dadace3b2def2a7f6dc8fbba1960405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111b86112a8565b73ffffffffffffffffffffffffffffffffffffffff166111d6610b26565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390611f24565b60405180910390fd5b6112a58161185c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612044565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790611f44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161146e91906120a4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290611ee4565b60405180910390fd5b611566838383611af9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390611f64565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167f91906120f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e391906120a4565b60405180910390a36116f6848484611afe565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390612084565b60405180910390fd5b61177860008383611af9565b806002600082825461178a91906120f6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117df91906120f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161184491906120a4565b60405180910390a361185860008383611afe565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612004565b60405180910390fd5b61199e82600083611af9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90611f04565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611a7b919061214c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ae091906120a4565b60405180910390a3611af483600084611afe565b505050565b505050565b505050565b600081359050611b12816126b4565b92915050565b600081359050611b27816126cb565b92915050565b600060208284031215611b4357611b42612298565b5b6000611b5184828501611b03565b91505092915050565b60008060408385031215611b7157611b70612298565b5b6000611b7f85828601611b03565b9250506020611b9085828601611b03565b9150509250929050565b600080600060608486031215611bb357611bb2612298565b5b6000611bc186828701611b03565b9350506020611bd286828701611b03565b9250506040611be386828701611b18565b9150509250925092565b60008060408385031215611c0457611c03612298565b5b6000611c1285828601611b03565b9250506020611c2385828601611b18565b9150509250929050565b611c3681612180565b82525050565b611c4581612192565b82525050565b6000611c56826120da565b611c6081856120e5565b9350611c708185602086016121d5565b611c798161229d565b840191505092915050565b6000611c916023836120e5565b9150611c9c826122ae565b604082019050919050565b6000611cb46022836120e5565b9150611cbf826122fd565b604082019050919050565b6000611cd76026836120e5565b9150611ce28261234c565b604082019050919050565b6000611cfa6022836120e5565b9150611d058261239b565b604082019050919050565b6000611d1d6026836120e5565b9150611d28826123ea565b604082019050919050565b6000611d406022836120e5565b9150611d4b82612439565b604082019050919050565b6000611d636022836120e5565b9150611d6e82612488565b604082019050919050565b6000611d866028836120e5565b9150611d91826124d7565b604082019050919050565b6000611da96020836120e5565b9150611db482612526565b602082019050919050565b6000611dcc6021836120e5565b9150611dd78261254f565b604082019050919050565b6000611def6025836120e5565b9150611dfa8261259e565b604082019050919050565b6000611e126024836120e5565b9150611e1d826125ed565b604082019050919050565b6000611e356025836120e5565b9150611e408261263c565b604082019050919050565b6000611e58601f836120e5565b9150611e638261268b565b602082019050919050565b611e77816121be565b82525050565b611e86816121c8565b82525050565b6000602082019050611ea16000830184611c2d565b92915050565b6000602082019050611ebc6000830184611c3c565b92915050565b60006020820190508181036000830152611edc8184611c4b565b905092915050565b60006020820190508181036000830152611efd81611c84565b9050919050565b60006020820190508181036000830152611f1d81611ca7565b9050919050565b60006020820190508181036000830152611f3d81611cca565b9050919050565b60006020820190508181036000830152611f5d81611ced565b9050919050565b60006020820190508181036000830152611f7d81611d10565b9050919050565b60006020820190508181036000830152611f9d81611d33565b9050919050565b60006020820190508181036000830152611fbd81611d56565b9050919050565b60006020820190508181036000830152611fdd81611d79565b9050919050565b60006020820190508181036000830152611ffd81611d9c565b9050919050565b6000602082019050818103600083015261201d81611dbf565b9050919050565b6000602082019050818103600083015261203d81611de2565b9050919050565b6000602082019050818103600083015261205d81611e05565b9050919050565b6000602082019050818103600083015261207d81611e28565b9050919050565b6000602082019050818103600083015261209d81611e4b565b9050919050565b60006020820190506120b96000830184611e6e565b92915050565b60006020820190506120d46000830184611e7d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612101826121be565b915061210c836121be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121415761214061223a565b5b828201905092915050565b6000612157826121be565b9150612162836121be565b9250828210156121755761217461223a565b5b828203905092915050565b600061218b8261219e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121f35780820151818401526020810190506121d8565b83811115612202576000848401525b50505050565b6000600282049050600182168061222057607f821691505b6020821081141561223457612233612269565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6e27742068617665206275726e207065726d6973736960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6e27742068617665206d696e74207065726d6973736960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6126bd81612180565b81146126c857600080fd5b50565b6126d4816121be565b81146126df57600080fd5b5056fea264697066735822122033d42feb806102d3366915badf0c4c64391d390464136ed3e7f282de174ba08b64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d714610415578063a9059cbb14610445578063ba110b2214610475578063c56b5f7414610491578063dd62ed3e146104ad578063f2fde38b146104dd57610158565b8063715018a6146103535780638ce86fd01461035d5780638da5cb5b1461038d57806395d89b41146103ab57806397d790f6146103c95780639dc29fac146103e557610158565b8063313ce56711610115578063313ce56714610245578063395093511461026357806340c10f1914610293578063597f34ce146102c357806367a78972146102f357806370a082311461032357610158565b806306fdde031461015d578063085323f31461017b578063095ea7b31461019757806318160ddd146101c757806323b872dd146101e55780632dd3022714610215575b600080fd5b6101656104f9565b6040516101729190611ec2565b60405180910390f35b61019560048036038101906101909190611b2d565b61058b565b005b6101b160048036038101906101ac9190611bed565b6106a5565b6040516101be9190611ea7565b60405180910390f35b6101cf6106c3565b6040516101dc91906120a4565b60405180910390f35b6101ff60048036038101906101fa9190611b9a565b6106cd565b60405161020c9190611ea7565b60405180910390f35b61022f600480360381019061022a9190611b2d565b6107c5565b60405161023c9190611ea7565b60405180910390f35b61024d6107e5565b60405161025a91906120bf565b60405180910390f35b61027d60048036038101906102789190611bed565b6107ee565b60405161028a9190611ea7565b60405180910390f35b6102ad60048036038101906102a89190611bed565b61089a565b6040516102ba9190611ea7565b60405180910390f35b6102dd60048036038101906102d89190611b2d565b61098a565b6040516102ea9190611ea7565b60405180910390f35b61030d60048036038101906103089190611b2d565b6109e0565b60405161031a9190611ea7565b60405180910390f35b61033d60048036038101906103389190611b2d565b610a36565b60405161034a91906120a4565b60405180910390f35b61035b610a7e565b005b61037760048036038101906103729190611b2d565b610b06565b6040516103849190611ea7565b60405180910390f35b610395610b26565b6040516103a29190611e8c565b60405180910390f35b6103b3610b50565b6040516103c09190611ec2565b60405180910390f35b6103e360048036038101906103de9190611b2d565b610be2565b005b6103ff60048036038101906103fa9190611bed565b610cfc565b60405161040c9190611ea7565b60405180910390f35b61042f600480360381019061042a9190611bed565b610dec565b60405161043c9190611ea7565b60405180910390f35b61045f600480360381019061045a9190611bed565b610ed7565b60405161046c9190611ea7565b60405180910390f35b61048f600480360381019061048a9190611b2d565b610ef5565b005b6104ab60048036038101906104a69190611b2d565b61100f565b005b6104c760048036038101906104c29190611b5a565b611129565b6040516104d491906120a4565b60405180910390f35b6104f760048036038101906104f29190611b2d565b6111b0565b005b60606003805461050890612208565b80601f016020809104026020016040519081016040528092919081815260200182805461053490612208565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b6105936112a8565b73ffffffffffffffffffffffffffffffffffffffff166105b1610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611fe4565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa5c1327ebe8e0da7e055fcfe0247c6890f3b83ab467bf5f040c600560b7fadc60405160405180910390a250565b60006106b96106b26112a8565b84846112b0565b6001905092915050565b6000600254905090565b60006106da84848461147b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107256112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90611fc4565b60405180910390fd5b6107b9856107b16112a8565b8584036112b0565b60019150509392505050565b60076020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60006108906107fb6112a8565b8484600160006108096112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088b91906120f6565b6112b0565b6001905092915050565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90611fa4565b60405180910390fd5b61093283836116fc565b8273ffffffffffffffffffffffffffffffffffffffff167f4b662de90cbc89029b781af58d96949264d1871625cbda9eaf31a8e37c0ac3808360405161097891906120a4565b60405180910390a26001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a866112a8565b73ffffffffffffffffffffffffffffffffffffffff16610aa4610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611fe4565b60405180910390fd5b610b04600061185c565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5f90612208565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612208565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b610bea6112a8565b73ffffffffffffffffffffffffffffffffffffffff16610c08610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611fe4565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3f39efb550946dd038ae1b56598d075493ae7ad9bbe611517439d62b8e4c18c360405160405180910390a250565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190611f84565b60405180910390fd5b610d948383611922565b8273ffffffffffffffffffffffffffffffffffffffff167f80e226cd9ff03c40b41f3d6861c15377d337f64ee0f8615f511c8d3cd2e3590583604051610dda91906120a4565b60405180910390a26001905092915050565b60008060016000610dfb6112a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612064565b60405180910390fd5b610ecc610ec36112a8565b858584036112b0565b600191505092915050565b6000610eeb610ee46112a8565b848461147b565b6001905092915050565b610efd6112a8565b73ffffffffffffffffffffffffffffffffffffffff16610f1b610b26565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890611fe4565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f244e7f171404d4dc2af4ad3d7bf77c24d21866a0e4960d37a0f24f69df90778c60405160405180910390a250565b6110176112a8565b73ffffffffffffffffffffffffffffffffffffffff16611035610b26565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290611fe4565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1394b62d1c5e10fe96a0b4386bb68327a488c9dadace3b2def2a7f6dc8fbba1960405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111b86112a8565b73ffffffffffffffffffffffffffffffffffffffff166111d6610b26565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390611f24565b60405180910390fd5b6112a58161185c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612044565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790611f44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161146e91906120a4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290611ee4565b60405180910390fd5b611566838383611af9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390611f64565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167f91906120f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e391906120a4565b60405180910390a36116f6848484611afe565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390612084565b60405180910390fd5b61177860008383611af9565b806002600082825461178a91906120f6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117df91906120f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161184491906120a4565b60405180910390a361185860008383611afe565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612004565b60405180910390fd5b61199e82600083611af9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90611f04565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611a7b919061214c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ae091906120a4565b60405180910390a3611af483600084611afe565b505050565b505050565b505050565b600081359050611b12816126b4565b92915050565b600081359050611b27816126cb565b92915050565b600060208284031215611b4357611b42612298565b5b6000611b5184828501611b03565b91505092915050565b60008060408385031215611b7157611b70612298565b5b6000611b7f85828601611b03565b9250506020611b9085828601611b03565b9150509250929050565b600080600060608486031215611bb357611bb2612298565b5b6000611bc186828701611b03565b9350506020611bd286828701611b03565b9250506040611be386828701611b18565b9150509250925092565b60008060408385031215611c0457611c03612298565b5b6000611c1285828601611b03565b9250506020611c2385828601611b18565b9150509250929050565b611c3681612180565b82525050565b611c4581612192565b82525050565b6000611c56826120da565b611c6081856120e5565b9350611c708185602086016121d5565b611c798161229d565b840191505092915050565b6000611c916023836120e5565b9150611c9c826122ae565b604082019050919050565b6000611cb46022836120e5565b9150611cbf826122fd565b604082019050919050565b6000611cd76026836120e5565b9150611ce28261234c565b604082019050919050565b6000611cfa6022836120e5565b9150611d058261239b565b604082019050919050565b6000611d1d6026836120e5565b9150611d28826123ea565b604082019050919050565b6000611d406022836120e5565b9150611d4b82612439565b604082019050919050565b6000611d636022836120e5565b9150611d6e82612488565b604082019050919050565b6000611d866028836120e5565b9150611d91826124d7565b604082019050919050565b6000611da96020836120e5565b9150611db482612526565b602082019050919050565b6000611dcc6021836120e5565b9150611dd78261254f565b604082019050919050565b6000611def6025836120e5565b9150611dfa8261259e565b604082019050919050565b6000611e126024836120e5565b9150611e1d826125ed565b604082019050919050565b6000611e356025836120e5565b9150611e408261263c565b604082019050919050565b6000611e58601f836120e5565b9150611e638261268b565b602082019050919050565b611e77816121be565b82525050565b611e86816121c8565b82525050565b6000602082019050611ea16000830184611c2d565b92915050565b6000602082019050611ebc6000830184611c3c565b92915050565b60006020820190508181036000830152611edc8184611c4b565b905092915050565b60006020820190508181036000830152611efd81611c84565b9050919050565b60006020820190508181036000830152611f1d81611ca7565b9050919050565b60006020820190508181036000830152611f3d81611cca565b9050919050565b60006020820190508181036000830152611f5d81611ced565b9050919050565b60006020820190508181036000830152611f7d81611d10565b9050919050565b60006020820190508181036000830152611f9d81611d33565b9050919050565b60006020820190508181036000830152611fbd81611d56565b9050919050565b60006020820190508181036000830152611fdd81611d79565b9050919050565b60006020820190508181036000830152611ffd81611d9c565b9050919050565b6000602082019050818103600083015261201d81611dbf565b9050919050565b6000602082019050818103600083015261203d81611de2565b9050919050565b6000602082019050818103600083015261205d81611e05565b9050919050565b6000602082019050818103600083015261207d81611e28565b9050919050565b6000602082019050818103600083015261209d81611e4b565b9050919050565b60006020820190506120b96000830184611e6e565b92915050565b60006020820190506120d46000830184611e7d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612101826121be565b915061210c836121be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121415761214061223a565b5b828201905092915050565b6000612157826121be565b9150612162836121be565b9250828210156121755761217461223a565b5b828203905092915050565b600061218b8261219e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121f35780820151818401526020810190506121d8565b83811115612202576000848401525b50505050565b6000600282049050600182168061222057607f821691505b6020821081141561223457612233612269565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6e27742068617665206275726e207065726d6973736960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6e27742068617665206d696e74207065726d6973736960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6126bd81612180565b81146126c857600080fd5b50565b6126d4816121be565b81146126df57600080fd5b5056fea264697066735822122033d42feb806102d3366915badf0c4c64391d390464136ed3e7f282de174ba08b64736f6c63430008070033

Deployed Bytecode Sourcemap

21394:2137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10954:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22736:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12074:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13772:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21569:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11916:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14673:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22046:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23262:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12245:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4357:103;;;:::i;:::-;;21513:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3706:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11173:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22564:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22301:252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15391:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12585:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22913:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23085:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12823:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4615:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10954:100;11008:13;11041:5;11034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10954:100;:::o;22736:169::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22843:5:::1;22814:16;:26;22831:8;22814:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;22888:8;22864:33;;;;;;;;;;;;22736:169:::0;:::o;13121:::-;13204:4;13221:39;13230:12;:10;:12::i;:::-;13244:7;13253:6;13221:8;:39::i;:::-;13278:4;13271:11;;13121:169;;;;:::o;12074:108::-;12135:7;12162:12;;12155:19;;12074:108;:::o;13772:492::-;13912:4;13929:36;13939:6;13947:9;13958:6;13929:9;:36::i;:::-;13978:24;14005:11;:19;14017:6;14005:19;;;;;;;;;;;;;;;:33;14025:12;:10;:12::i;:::-;14005:33;;;;;;;;;;;;;;;;13978:60;;14077:6;14057:16;:26;;14049:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14164:57;14173:6;14181:12;:10;:12::i;:::-;14214:6;14195:16;:25;14164:8;:57::i;:::-;14252:4;14245:11;;;13772:492;;;;;:::o;21569:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;11916:93::-;11974:5;11999:2;11992:9;;11916:93;:::o;14673:215::-;14761:4;14778:80;14787:12;:10;:12::i;:::-;14801:7;14847:10;14810:11;:25;14822:12;:10;:12::i;:::-;14810:25;;;;;;;;;;;;;;;:34;14836:7;14810:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14778:8;:80::i;:::-;14876:4;14869:11;;14673:215;;;;:::o;22046:247::-;22105:4;22130:16;:28;22147:10;22130:28;;;;;;;;;;;;;;;;;;;;;;;;;22122:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22208:17;22214:2;22218:6;22208:5;:17::i;:::-;22252:2;22241:22;;;22256:6;22241:22;;;;;;:::i;:::-;;;;;;;;22281:4;22274:11;;22046:247;;;;:::o;23262:129::-;23333:4;23357:16;:26;23374:8;23357:26;;;;;;;;;;;;;;;;;;;;;;;;;23350:33;;23262:129;;;:::o;23399:::-;23470:4;23494:16;:26;23511:8;23494:26;;;;;;;;;;;;;;;;;;;;;;;;;23487:33;;23399:129;;;:::o;12245:127::-;12319:7;12346:9;:18;12356:7;12346:18;;;;;;;;;;;;;;;;12339:25;;12245:127;;;:::o;4357:103::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4422:30:::1;4449:1;4422:18;:30::i;:::-;4357:103::o:0;21513:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;3706:87::-;3752:7;3779:6;;;;;;;;;;;3772:13;;3706:87;:::o;11173:104::-;11229:13;11262:7;11255:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11173:104;:::o;22564:164::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22669:4:::1;22640:16;:26;22657:8;22640:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;22711:8;22689:31;;;;;;;;;;;;22564:164:::0;:::o;22301:252::-;22362:4;22387:16;:28;22404:10;22387:28;;;;;;;;;;;;;;;;;;;;;;;;;22379:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22465:19;22471:4;22477:6;22465:5;:19::i;:::-;22510:4;22500:23;;;22516:6;22500:23;;;;;;:::i;:::-;;;;;;;;22541:4;22534:11;;22301:252;;;;:::o;15391:413::-;15484:4;15501:24;15528:11;:25;15540:12;:10;:12::i;:::-;15528:25;;;;;;;;;;;;;;;:34;15554:7;15528:34;;;;;;;;;;;;;;;;15501:61;;15601:15;15581:16;:35;;15573:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15694:67;15703:12;:10;:12::i;:::-;15717:7;15745:15;15726:16;:34;15694:8;:67::i;:::-;15792:4;15785:11;;;15391:413;;;;:::o;12585:175::-;12671:4;12688:42;12698:12;:10;:12::i;:::-;12712:9;12723:6;12688:9;:42::i;:::-;12748:4;12741:11;;12585:175;;;;:::o;22913:164::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23018:4:::1;22989:16;:26;23006:8;22989:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;23060:8;23038:31;;;;;;;;;;;;22913:164:::0;:::o;23085:169::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23192:5:::1;23163:16;:26;23180:8;23163:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;23237:8;23213:33;;;;;;;;;;;;23085:169:::0;:::o;12823:151::-;12912:7;12939:11;:18;12951:5;12939:18;;;;;;;;;;;;;;;:27;12958:7;12939:27;;;;;;;;;;;;;;;;12932:34;;12823:151;;;;:::o;4615:201::-;3937:12;:10;:12::i;:::-;3926:23;;:7;:5;:7::i;:::-;:23;;;3918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4724:1:::1;4704:22;;:8;:22;;;;4696:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4780:28;4799:8;4780:18;:28::i;:::-;4615:201:::0;:::o;2424:98::-;2477:7;2504:10;2497:17;;2424:98;:::o;19075:380::-;19228:1;19211:19;;:5;:19;;;;19203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19309:1;19290:21;;:7;:21;;;;19282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19393:6;19363:11;:18;19375:5;19363:18;;;;;;;;;;;;;;;:27;19382:7;19363:27;;;;;;;;;;;;;;;:36;;;;19431:7;19415:32;;19424:5;19415:32;;;19440:6;19415:32;;;;;;:::i;:::-;;;;;;;;19075:380;;;:::o;16294:733::-;16452:1;16434:20;;:6;:20;;;;16426:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16536:1;16515:23;;:9;:23;;;;16507:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16591:47;16612:6;16620:9;16631:6;16591:20;:47::i;:::-;16651:21;16675:9;:17;16685:6;16675:17;;;;;;;;;;;;;;;;16651:41;;16728:6;16711:13;:23;;16703:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16849:6;16833:13;:22;16813:9;:17;16823:6;16813:17;;;;;;;;;;;;;;;:42;;;;16901:6;16877:9;:20;16887:9;16877:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16942:9;16925:35;;16934:6;16925:35;;;16953:6;16925:35;;;;;;:::i;:::-;;;;;;;;16973:46;16993:6;17001:9;17012:6;16973:19;:46::i;:::-;16415:612;16294:733;;;:::o;17314:399::-;17417:1;17398:21;;:7;:21;;;;17390:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17468:49;17497:1;17501:7;17510:6;17468:20;:49::i;:::-;17546:6;17530:12;;:22;;;;;;;:::i;:::-;;;;;;;;17585:6;17563:9;:18;17573:7;17563:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;17628:7;17607:37;;17624:1;17607:37;;;17637:6;17607:37;;;;;;:::i;:::-;;;;;;;;17657:48;17685:1;17689:7;17698:6;17657:19;:48::i;:::-;17314:399;;:::o;4976:191::-;5050:16;5069:6;;;;;;;;;;;5050:25;;5095:8;5086:6;;:17;;;;;;;;;;;;;;;;;;5150:8;5119:40;;5140:8;5119:40;;;;;;;;;;;;5039:128;4976:191;:::o;18046:591::-;18149:1;18130:21;;:7;:21;;;;18122:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18202:49;18223:7;18240:1;18244:6;18202:20;:49::i;:::-;18264:22;18289:9;:18;18299:7;18289:18;;;;;;;;;;;;;;;;18264:43;;18344:6;18326:14;:24;;18318:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18463:6;18446:14;:23;18425:9;:18;18435:7;18425:18;;;;;;;;;;;;;;;:44;;;;18507:6;18491:12;;:22;;;;;;;:::i;:::-;;;;;;;;18557:1;18531:37;;18540:7;18531:37;;;18561:6;18531:37;;;;;;:::i;:::-;;;;;;;;18581:48;18601:7;18618:1;18622:6;18581:19;:48::i;:::-;18111:526;18046:591;;:::o;20055:125::-;;;;:::o;20784:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7290:366;;;:::o;7662:::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7662:366;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8034:118;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8158:112;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8276:222;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8504:210;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8720:313;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9039:419;;;:::o;9464:::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;9889:419;;;:::o;10314:::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10314:419;;;:::o;10739:::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10739:419;;;:::o;11164:::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11164:419;;;:::o;11589:::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11589:419;;;:::o;12014:::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12014:419;;;:::o;12439:::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12439:419;;;:::o;12864:::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;12864:419;;;:::o;13289:::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13289:419;;;:::o;13714:::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13714:419;;;:::o;14139:::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14139:419;;;:::o;14564:::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14564:419;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;14989:222;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15217:214;;;;:::o;15518:99::-;15570:6;15604:5;15598:12;15588:22;;15518:99;;;:::o;15623:169::-;15707:11;15741:6;15736:3;15729:19;15781:4;15776:3;15772:14;15757:29;;15623:169;;;;:::o;15798:305::-;15838:3;15857:20;15875:1;15857:20;:::i;:::-;15852:25;;15891:20;15909:1;15891:20;:::i;:::-;15886:25;;16045:1;15977:66;15973:74;15970:1;15967:81;15964:107;;;16051:18;;:::i;:::-;15964:107;16095:1;16092;16088:9;16081:16;;15798:305;;;;:::o;16109:191::-;16149:4;16169:20;16187:1;16169:20;:::i;:::-;16164:25;;16203:20;16221:1;16203:20;:::i;:::-;16198:25;;16242:1;16239;16236:8;16233:34;;;16247:18;;:::i;:::-;16233:34;16292:1;16289;16285:9;16277:17;;16109:191;;;;:::o;16306:96::-;16343:7;16372:24;16390:5;16372:24;:::i;:::-;16361:35;;16306:96;;;:::o;16408:90::-;16442:7;16485:5;16478:13;16471:21;16460:32;;16408:90;;;:::o;16504:126::-;16541:7;16581:42;16574:5;16570:54;16559:65;;16504:126;;;:::o;16636:77::-;16673:7;16702:5;16691:16;;16636:77;;;:::o;16719:86::-;16754:7;16794:4;16787:5;16783:16;16772:27;;16719:86;;;:::o;16811:307::-;16879:1;16889:113;16903:6;16900:1;16897:13;16889:113;;;16988:1;16983:3;16979:11;16973:18;16969:1;16964:3;16960:11;16953:39;16925:2;16922:1;16918:10;16913:15;;16889:113;;;17020:6;17017:1;17014:13;17011:101;;;17100:1;17091:6;17086:3;17082:16;17075:27;17011:101;16860:258;16811:307;;;:::o;17124:320::-;17168:6;17205:1;17199:4;17195:12;17185:22;;17252:1;17246:4;17242:12;17273:18;17263:81;;17329:4;17321:6;17317:17;17307:27;;17263:81;17391:2;17383:6;17380:14;17360:18;17357:38;17354:84;;;17410:18;;:::i;:::-;17354:84;17175:269;17124:320;;;:::o;17450:180::-;17498:77;17495:1;17488:88;17595:4;17592:1;17585:15;17619:4;17616:1;17609:15;17636:180;17684:77;17681:1;17674:88;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17945:117;18054:1;18051;18044:12;18068:102;18109:6;18160:2;18156:7;18151:2;18144:5;18140:14;18136:28;18126:38;;18068:102;;;:::o;18176:222::-;18316:34;18312:1;18304:6;18300:14;18293:58;18385:5;18380:2;18372:6;18368:15;18361:30;18176:222;:::o;18404:221::-;18544:34;18540:1;18532:6;18528:14;18521:58;18613:4;18608:2;18600:6;18596:15;18589:29;18404:221;:::o;18631:225::-;18771:34;18767:1;18759:6;18755:14;18748:58;18840:8;18835:2;18827:6;18823:15;18816:33;18631:225;:::o;18862:221::-;19002:34;18998:1;18990:6;18986:14;18979:58;19071:4;19066:2;19058:6;19054:15;19047:29;18862:221;:::o;19089:225::-;19229:34;19225:1;19217:6;19213:14;19206:58;19298:8;19293:2;19285:6;19281:15;19274:33;19089:225;:::o;19320:221::-;19460:34;19456:1;19448:6;19444:14;19437:58;19529:4;19524:2;19516:6;19512:15;19505:29;19320:221;:::o;19547:::-;19687:34;19683:1;19675:6;19671:14;19664:58;19756:4;19751:2;19743:6;19739:15;19732:29;19547:221;:::o;19774:227::-;19914:34;19910:1;19902:6;19898:14;19891:58;19983:10;19978:2;19970:6;19966:15;19959:35;19774:227;:::o;20007:182::-;20147:34;20143:1;20135:6;20131:14;20124:58;20007:182;:::o;20195:220::-;20335:34;20331:1;20323:6;20319:14;20312:58;20404:3;20399:2;20391:6;20387:15;20380:28;20195:220;:::o;20421:224::-;20561:34;20557:1;20549:6;20545:14;20538:58;20630:7;20625:2;20617:6;20613:15;20606:32;20421:224;:::o;20651:223::-;20791:34;20787:1;20779:6;20775:14;20768:58;20860:6;20855:2;20847:6;20843:15;20836:31;20651:223;:::o;20880:224::-;21020:34;21016:1;21008:6;21004:14;20997:58;21089:7;21084:2;21076:6;21072:15;21065:32;20880:224;:::o;21110:181::-;21250:33;21246:1;21238:6;21234:14;21227:57;21110:181;:::o;21297:122::-;21370:24;21388:5;21370:24;:::i;:::-;21363:5;21360:35;21350:63;;21409:1;21406;21399:12;21350:63;21297:122;:::o;21425:::-;21498:24;21516:5;21498:24;:::i;:::-;21491:5;21488:35;21478:63;;21537:1;21534;21527:12;21478:63;21425:122;:::o

Swarm Source

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