ETH Price: $3,505.09 (-0.13%)
Gas: 2 Gwei

Token

CIGAR (CIGAR)
 

Overview

Max Total Supply

3,570,205,610.931403633127352991 CIGAR

Holders

406

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
kyled005.eth
Balance
79,716.203703703703703703 CIGAR

Value
$0.00
0x97711bc3ca504f07aa0f8e7cd4b8bffdb19569c7
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:
CIGAR

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-05
*/

// File @openzeppelin/contracts/token/ERC20/[email protected]

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/contracts/token/ERC20/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

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 {}
}


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

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/interfaces/ICIGAR.sol

pragma solidity ^0.8.0;

interface ICIGAR {
    function publicSaleMint(address to, uint256 amountInEther) external payable;

    function mint(address to, uint256 amount) external;

    function reserveToDAO(address dao) external;

    function reserveToLiquidity(address liquidityHandler) external;

    function reserveToTeam(address team) external;

    function burn(address from, uint256 amount) external;

    function addController(address controller) external;

    function removeController(address controller) external;

    function flipSaleState() external;

    function setMintPrice(uint256 _mintPrice) external;

    function setMaxMint(uint256 _maxMint) external;

    function lockControllers() external;

    function withdrawPublicSale() external;
}


// File contracts/staking/CIGAR.sol

// SPDX-License-Identifier: MIT

/*
                                          «∩ⁿ─╖
                                       ⌐  ╦╠Σ▌╓┴                        .⌐─≈-,
                                ≤╠╠╠╫╕╬╦╜              ┌"░░░░░░░░░░≈╖φ░╔╦╬░░Σ╜^
                               ¼,╠.:╬╬╦╖╔≡p               "╙φ░ ╠╩╚`  ░╩░╟╓╜
                                   Γ╠▀╬═┘`                         Θ Å░▄
                      ,,,,,        ┌#                             ]  ▌░░╕
             ,-─S╜" ,⌐"",`░░φ░░░░S>╫▐                             ╩  ░░░░¼
            ╙ⁿ═s, <░φ╬░░φù ░░░░░░░░╬╠░░"Zw,                    ,─╓φ░Å░░╩╧w¼
            ∩²≥┴╝δ»╬░╝░░╩░╓║╙░░░░░░Åφ▄φ░░╦≥░⌠░≥╖,          ,≈"╓φ░░░╬╬░░╕ {⌐\
            } ▐      ½,#░░░░░╦╚░░╬╜Σ░p╠░░╬╘░░░░╩  ^"¥7"""░"¬╖╠░░░#▒░░░╩ φ╩ ∩
              Γ      ╬░⌐"╢╙φ░░▒╬╓╓░░░░▄▄╬▄░╬░░Å░░░░╠░╦,φ╠░░░░░░-"╠░╩╩  ê░Γ╠
             ╘░,,   ╠╬     '░╗Σ╢░░░░░░▀╢▓▒▒╬╬░╦#####≥╨░░░╝╜╙` ,φ╬░░░. é░░╔⌐
              ▐░ `^Σ░▒╗,   ▐░░░░░ ▒░"╙Σ░╨▀╜╬░▓▓▓▓▓▓▀▀░»φ░N  ╔╬▒░░░"`,╬≥░░╢
               \  ╠░░░░░░╬#╩╣▄░Γ, ▐░,φ╬▄Å` ░ ```"╚░░░░,╓▄▄▄╬▀▀░╠╙░╔╬░░░ ½"
                └ '░░░░░░╦╠ ╟▒M╗▄▄,▄▄▄╗#▒╬▒╠"╙╙╙╙╙╙╢▒▒▓▀▀░░░░░╠╦#░░░░╚,╩
                  ¼░░░░░░░⌂╦ ▀░░░╚╙░╚▓▒▀░░░½░░╠╜   ╘▀░░░╩╩╩,▄╣╬░░░░░╙╔╩
                    ╢^╙╨╠░░▄æ,Σ ",╓╥m╬░░░░░░░Θ░φ░φ▄ ╬╬░,▄#▒▀░░░░░≥░░#`
                      *╓,╙φ░░░░░#░░░░░░░#╬╠╩ ╠╩╚╠╟▓▄╣▒▓╬▓▀░░░░░╩░╓═^
                          `"╜╧Σ░░░Σ░░░░░░╬▓µ ─"░░░░░░░░░░╜░╬▄≈"
                                    `"╙╜╜╜╝╩ÅΣM≡,`╙╚░╙╙░╜|  ╙╙╙┴7≥╗
                                                   `"┴╙¬¬¬┴┴╙╙╙╙""
*/

pragma solidity ^0.8.0;



contract CIGAR is ICIGAR, ERC20, Ownable {
    uint256 public constant DAO_AMOUNT = 600000000000 ether;
    uint256 public constant LIQUIDITY_AMOUNT = 150000000000 ether;
    uint256 public constant TEAM_AMOUNT = 450000000000 ether;
    uint256 public constant PUBLIC_SALE_AMOUNT = 300000000000 ether;
    uint256 public constant STAKING_AMOUNT = 1500000000000 ether;
    uint256 public constant TOTAL_AMOUNT = 3000000000000 ether;

    // price per 1 ether tokens
    uint256 public mintPrice = .00001 ether;
    // max number of tokens to mint in one tx in ether
    uint256 public maxMint = 10000;

    uint256 public immutable timeStarted;
    uint256 public teamValueMinted;
    uint256 public publicSaleMinted;
    uint256 public totalMinted;

    bool public saleIsActive;

    bool public areControllersLocked;

    // a mapping from an address to whether or not it can mint / burn
    mapping(address => bool) public controllers;

    constructor() ERC20("CIGAR", "CIGAR") {
        timeStarted = block.timestamp;
    }

    function publicSaleMint(address to, uint256 amountInEther) external override payable {
        require(saleIsActive, "Sale is not active");
        uint256 amountInWei = amountInEther * 1 ether;
        require(publicSaleMinted + amountInWei <= PUBLIC_SALE_AMOUNT, "The public sale cap has been reached");
        require(amountInEther <= maxMint, "Amount requested is greater than max mint");
        require(amountInEther * mintPrice == msg.value, "Given ether does not match price required");

        _mint(to, amountInWei);
        publicSaleMinted += amountInWei;
        totalMinted += amountInWei;
    }

    function mint(address to, uint256 amount) external override {
        require(controllers[msg.sender], "Only controllers are allowed to mint");
        totalMinted += amount;
        require(totalMinted <= TOTAL_AMOUNT, "Max CIGAR reached");
        _mint(to, amount);
    }

    function reserveToDAO(address dao) external override onlyOwner {
        totalMinted += DAO_AMOUNT;
        _mint(dao, DAO_AMOUNT);
    }

    function reserveToLiquidity(address liquidityHandler) external override onlyOwner {
        totalMinted += LIQUIDITY_AMOUNT;
        _mint(liquidityHandler, LIQUIDITY_AMOUNT);
    }

    function reserveToTeam(address team) external override onlyOwner {
        require(teamValueMinted < TEAM_AMOUNT, "Team amount has been fully vested");
        uint256 quarter = 13 * (1 weeks);
        uint256 quarterNum = (block.timestamp - timeStarted) / quarter;
        require(quarterNum > 0, "A quarter has not passed");
        uint256 quarterAmount = TEAM_AMOUNT / 4;
        require(quarterNum * quarterAmount > teamValueMinted, "Quarter value already minted");

        uint256 amountToMint = (quarterNum * quarterAmount) - teamValueMinted;
        totalMinted += amountToMint;
        teamValueMinted += amountToMint;
        _mint(team, amountToMint);
    }

    function burn(address from, uint256 amount) external override {
        require(controllers[msg.sender], "Only controllers are allowed to burn");
        _burn(from, amount);
    }

    function addController(address controller) external override onlyOwner {
        require(!areControllersLocked, 'Controllers have been locked! No more controllers allowed.');
        controllers[controller] = true;
    }

    function removeController(address controller) external override onlyOwner {
        require(!areControllersLocked, 'Controllers have been locked! No more changes allowed.');
        controllers[controller] = false;
    }

    function flipSaleState() external override onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setMintPrice(uint256 _mintPrice) external override onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxMint(uint256 _maxMint) external override onlyOwner {
        maxMint = _maxMint;
    }

    function lockControllers() external override onlyOwner {
        areControllersLocked = true;
    }

    function withdrawPublicSale() external override onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DAO_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","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":[],"name":"areControllersLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"controllers","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":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockControllers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amountInEther","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dao","type":"address"}],"name":"reserveToDAO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHandler","type":"address"}],"name":"reserveToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"team","type":"address"}],"name":"reserveToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamValueMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeStarted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"withdrawPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526509184e72a0006006556127106007553480156200002157600080fd5b5060408051808201825260058082526421a4a3a0a960d91b6020808401828152855180870190965292855284015281519192916200006291600391620000f5565b50805162000078906004906020840190620000f5565b505050620000956200008f6200009f60201b60201c565b620000a3565b42608052620001d8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000103906200019b565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b600281046001821680620001b057607f821691505b60208210811415620001d257634e487b7160e01b600052602260045260246000fd5b50919050565b608051611e4f620001fb60003960008181610a7b0152610be00152611e4f6000f3fe6080604052600436106102515760003560e01c80638b32f62a11610139578063a9059cbb116100b6578063e1c51e341161007a578063e1c51e341461062e578063e7f5aad91461064e578063eb8d244414610663578063f2fde38b14610678578063f4a0a52814610698578063f6a74ed7146106b857610251565b8063a9059cbb1461059b578063ac5ae11b146105bb578063c131dfd7146105ce578063da8c229e146105ee578063dd62ed3e1461060e57610251565b8063a2309ff8116100fd578063a2309ff81461051c578063a2d7f5e314610531578063a457c2d714610546578063a666098d14610566578063a7fc7a071461057b57610251565b80638b32f62a146104905780638da5cb5b146104a557806395d89b41146104c75780639c326653146104dc5780639dc29fac146104fc57610251565b806340c10f19116101d257806370a082311161019657806370a0823114610407578063715018a6146104275780637501f7411461043c5780637b3e65c2146104515780637ea8e738146104665780638918ac821461047b57610251565b806340c10f1914610388578063547520fe146103a857806354dda15f146103c8578063638f6575146103dd5780636817c76c146103f257610251565b806331d6671b1161021957806331d6671b146103125780633250acb41461032957806334918dfd1461033e57806339509351146103535780633fadf3041461037357610251565b806306fdde0314610256578063095ea7b31461028157806318160ddd146102ae57806323b872dd146102d0578063313ce567146102f0575b600080fd5b34801561026257600080fd5b5061026b6106d8565b60405161027891906116c3565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611663565b61076a565b60405161027891906116b8565b3480156102ba57600080fd5b506102c3610787565b6040516102789190611d43565b3480156102dc57600080fd5b506102a16102eb366004611628565b61078d565b3480156102fc57600080fd5b50610305610826565b6040516102789190611d4c565b34801561031e57600080fd5b5061032761082b565b005b34801561033557600080fd5b506102c361087b565b34801561034a57600080fd5b5061032761088c565b34801561035f57600080fd5b506102a161036e366004611663565b6108df565b34801561037f57600080fd5b506102c3610933565b34801561039457600080fd5b506103276103a3366004611663565b610944565b3480156103b457600080fd5b506103276103c336600461168c565b6109c7565b3480156103d457600080fd5b50610327610a0b565b3480156103e957600080fd5b506102c3610a79565b3480156103fe57600080fd5b506102c3610a9d565b34801561041357600080fd5b506102c36104223660046115d5565b610aa3565b34801561043357600080fd5b50610327610ac2565b34801561044857600080fd5b506102c3610b0d565b34801561045d57600080fd5b506102c3610b13565b34801561047257600080fd5b506102a1610b19565b34801561048757600080fd5b506102c3610b27565b34801561049c57600080fd5b506102c3610b38565b3480156104b157600080fd5b506104ba610b49565b60405161027891906116a4565b3480156104d357600080fd5b5061026b610b58565b3480156104e857600080fd5b506103276104f73660046115d5565b610b67565b34801561050857600080fd5b50610327610517366004611663565b610cd6565b34801561052857600080fd5b506102c3610d0f565b34801561053d57600080fd5b506102c3610d15565b34801561055257600080fd5b506102a1610561366004611663565b610d26565b34801561057257600080fd5b506102c3610d9f565b34801561058757600080fd5b506103276105963660046115d5565b610da5565b3480156105a757600080fd5b506102a16105b6366004611663565b610e30565b6103276105c9366004611663565b610e44565b3480156105da57600080fd5b506103276105e93660046115d5565b610f43565b3480156105fa57600080fd5b506102a16106093660046115d5565b610fc1565b34801561061a57600080fd5b506102c36106293660046115f6565b610fd6565b34801561063a57600080fd5b506103276106493660046115d5565b611001565b34801561065a57600080fd5b506102c361107c565b34801561066f57600080fd5b506102a161108d565b34801561068457600080fd5b506103276106933660046115d5565b611096565b3480156106a457600080fd5b506103276106b336600461168c565b611104565b3480156106c457600080fd5b506103276106d33660046115d5565b611148565b6060600380546106e790611dc8565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611dc8565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600061077e6107776111d0565b84846111d4565b50600192915050565b60025490565b600061079a848484611288565b6001600160a01b0384166000908152600160205260408120816107bb6111d0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108075760405162461bcd60e51b81526004016107fe90611b0c565b60405180910390fd5b61081b856108136111d0565b8584036111d4565b506001949350505050565b601290565b6108336111d0565b6001600160a01b0316610844610b49565b6001600160a01b03161461086a5760405162461bcd60e51b81526004016107fe90611b54565b600b805461ff001916610100179055565b6c03c95a2f0b4856475fe000000081565b6108946111d0565b6001600160a01b03166108a5610b49565b6001600160a01b0316146108cb5760405162461bcd60e51b81526004016107fe90611b54565b600b805460ff19811660ff90911615179055565b600061077e6108ec6111d0565b8484600160006108fa6111d0565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461092e9190611d5a565b6111d4565b6c0792b45e1690ac8ebfc000000081565b336000908152600c602052604090205460ff166109735760405162461bcd60e51b81526004016107fe90611a43565b80600a60008282546109859190611d5a565b9091555050600a546c25dd85d670d35ec9bec000000010156109b95760405162461bcd60e51b81526004016107fe90611bd2565b6109c382826113b2565b5050565b6109cf6111d0565b6001600160a01b03166109e0610b49565b6001600160a01b031614610a065760405162461bcd60e51b81526004016107fe90611b54565b600755565b610a136111d0565b6001600160a01b0316610a24610b49565b6001600160a01b031614610a4a5760405162461bcd60e51b81526004016107fe90611b54565b6040514790339082156108fc029083906000818181858888f193505050501580156109c3573d6000803e3d6000fd5b7f000000000000000000000000000000000000000000000000000000000000000081565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b610aca6111d0565b6001600160a01b0316610adb610b49565b6001600160a01b031614610b015760405162461bcd60e51b81526004016107fe90611b54565b610b0b600061147a565b565b60075481565b60085481565b600b54610100900460ff1681565b6c01e4ad1785a42b23aff000000081565b6c05ae074690ec816b0fd000000081565b6005546001600160a01b031690565b6060600480546106e790611dc8565b610b6f6111d0565b6001600160a01b0316610b80610b49565b6001600160a01b031614610ba65760405162461bcd60e51b81526004016107fe90611b54565b6c05ae074690ec816b0fd000000060085410610bd45760405162461bcd60e51b81526004016107fe90611acb565b6277f880600081610c057f000000000000000000000000000000000000000000000000000000000000000042611db1565b610c0f9190611d72565b905060008111610c315760405162461bcd60e51b81526004016107fe90611823565b6000610c4b60046c05ae074690ec816b0fd0000000611d72565b600854909150610c5b8284611d92565b11610c785760405162461bcd60e51b81526004016107fe906118a3565b600854600090610c888385611d92565b610c929190611db1565b905080600a6000828254610ca69190611d5a565b925050819055508060086000828254610cbf9190611d5a565b90915550610ccf905085826113b2565b5050505050565b336000908152600c602052604090205460ff16610d055760405162461bcd60e51b81526004016107fe90611a87565b6109c382826114cc565b600a5481565b6c25dd85d670d35ec9bec000000081565b60008060016000610d356111d0565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610d815760405162461bcd60e51b81526004016107fe90611cc7565b610d95610d8c6111d0565b858584036111d4565b5060019392505050565b60095481565b610dad6111d0565b6001600160a01b0316610dbe610b49565b6001600160a01b031614610de45760405162461bcd60e51b81526004016107fe90611b54565b600b54610100900460ff1615610e0c5760405162461bcd60e51b81526004016107fe90611974565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600061077e610e3d6111d0565b8484611288565b600b5460ff16610e665760405162461bcd60e51b81526004016107fe90611a17565b6000610e7a82670de0b6b3a7640000611d92565b90506c03c95a2f0b4856475fe000000081600954610e989190611d5a565b1115610eb65760405162461bcd60e51b81526004016107fe906118da565b600754821115610ed85760405162461bcd60e51b81526004016107fe90611b89565b3460065483610ee79190611d92565b14610f045760405162461bcd60e51b81526004016107fe9061185a565b610f0e83826113b2565b8060096000828254610f209190611d5a565b9250508190555080600a6000828254610f399190611d5a565b9091555050505050565b610f4b6111d0565b6001600160a01b0316610f5c610b49565b6001600160a01b031614610f825760405162461bcd60e51b81526004016107fe90611b54565b6c0792b45e1690ac8ebfc0000000600a6000828254610fa19190611d5a565b90915550610fbe9050816c0792b45e1690ac8ebfc00000006113b2565b50565b600c6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110096111d0565b6001600160a01b031661101a610b49565b6001600160a01b0316146110405760405162461bcd60e51b81526004016107fe90611b54565b6c01e4ad1785a42b23aff0000000600a600082825461105f9190611d5a565b90915550610fbe9050816c01e4ad1785a42b23aff00000006113b2565b6c12eec2eb3869af64df6000000081565b600b5460ff1681565b61109e6111d0565b6001600160a01b03166110af610b49565b6001600160a01b0316146110d55760405162461bcd60e51b81526004016107fe90611b54565b6001600160a01b0381166110fb5760405162461bcd60e51b81526004016107fe9061179b565b610fbe8161147a565b61110c6111d0565b6001600160a01b031661111d610b49565b6001600160a01b0316146111435760405162461bcd60e51b81526004016107fe90611b54565b600655565b6111506111d0565b6001600160a01b0316611161610b49565b6001600160a01b0316146111875760405162461bcd60e51b81526004016107fe90611b54565b600b54610100900460ff16156111af5760405162461bcd60e51b81526004016107fe9061191e565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b3390565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107fe90611c83565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107fe906117e1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061127b908590611d43565b60405180910390a3505050565b6001600160a01b0383166112ae5760405162461bcd60e51b81526004016107fe90611c3e565b6001600160a01b0382166112d45760405162461bcd60e51b81526004016107fe90611716565b6112df8383836115b9565b6001600160a01b038316600090815260208190526040902054818110156113185760405162461bcd60e51b81526004016107fe906119d1565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061134f908490611d5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113999190611d43565b60405180910390a36113ac8484846115b9565b50505050565b6001600160a01b0382166113d85760405162461bcd60e51b81526004016107fe90611d0c565b6113e4600083836115b9565b80600260008282546113f69190611d5a565b90915550506001600160a01b03821660009081526020819052604081208054839290611423908490611d5a565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611466908590611d43565b60405180910390a36109c3600083836115b9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114f25760405162461bcd60e51b81526004016107fe90611bfd565b6114fe826000836115b9565b6001600160a01b038216600090815260208190526040902054818110156115375760405162461bcd60e51b81526004016107fe90611759565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611566908490611db1565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115a9908690611d43565b60405180910390a36115b9836000845b505050565b80356001600160a01b0381168114610abd57600080fd5b6000602082840312156115e6578081fd5b6115ef826115be565b9392505050565b60008060408385031215611608578081fd5b611611836115be565b915061161f602084016115be565b90509250929050565b60008060006060848603121561163c578081fd5b611645846115be565b9250611653602085016115be565b9150604084013590509250925092565b60008060408385031215611675578182fd5b61167e836115be565b946020939093013593505050565b60006020828403121561169d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156116ef578581018301518582016040015282016116d3565b818111156117005783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f41207175617274657220686173206e6f74207061737365640000000000000000604082015260600190565b60208082526029908201527f476976656e20657468657220646f6573206e6f74206d61746368207072696365604082015268081c995c5d5a5c995960ba1b606082015260800190565b6020808252601c908201527f517561727465722076616c756520616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f546865207075626c69632073616c652063617020686173206265656e2072656160408201526318da195960e21b606082015260800190565b60208082526036908201527f436f6e74726f6c6c6572732068617665206265656e206c6f636b656421204e6f6040820152751036b7b9329031b430b733b2b99030b63637bbb2b21760511b606082015260800190565b6020808252603a908201527f436f6e74726f6c6c6572732068617665206265656e206c6f636b656421204e6f60408201527f206d6f726520636f6e74726f6c6c65727320616c6c6f7765642e000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b60208082526024908201527f4f6e6c7920636f6e74726f6c6c6572732061726520616c6c6f77656420746f206040820152631b5a5b9d60e21b606082015260800190565b60208082526024908201527f4f6e6c7920636f6e74726f6c6c6572732061726520616c6c6f77656420746f20604082015263313ab93760e11b606082015260800190565b60208082526021908201527f5465616d20616d6f756e7420686173206265656e2066756c6c792076657374656040820152601960fa1b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f416d6f756e74207265717565737465642069732067726561746572207468616e604082015268081b585e081b5a5b9d60ba1b606082015260800190565b60208082526011908201527013585e0810d251d054881c995858da1959607a1b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611d6d57611d6d611e03565b500190565b600082611d8d57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611dac57611dac611e03565b500290565b600082821015611dc357611dc3611e03565b500390565b600281046001821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a7e42272175c6cec36091234d858e5f1a9fe483e6e1588b54775e4feee09911e64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638b32f62a11610139578063a9059cbb116100b6578063e1c51e341161007a578063e1c51e341461062e578063e7f5aad91461064e578063eb8d244414610663578063f2fde38b14610678578063f4a0a52814610698578063f6a74ed7146106b857610251565b8063a9059cbb1461059b578063ac5ae11b146105bb578063c131dfd7146105ce578063da8c229e146105ee578063dd62ed3e1461060e57610251565b8063a2309ff8116100fd578063a2309ff81461051c578063a2d7f5e314610531578063a457c2d714610546578063a666098d14610566578063a7fc7a071461057b57610251565b80638b32f62a146104905780638da5cb5b146104a557806395d89b41146104c75780639c326653146104dc5780639dc29fac146104fc57610251565b806340c10f19116101d257806370a082311161019657806370a0823114610407578063715018a6146104275780637501f7411461043c5780637b3e65c2146104515780637ea8e738146104665780638918ac821461047b57610251565b806340c10f1914610388578063547520fe146103a857806354dda15f146103c8578063638f6575146103dd5780636817c76c146103f257610251565b806331d6671b1161021957806331d6671b146103125780633250acb41461032957806334918dfd1461033e57806339509351146103535780633fadf3041461037357610251565b806306fdde0314610256578063095ea7b31461028157806318160ddd146102ae57806323b872dd146102d0578063313ce567146102f0575b600080fd5b34801561026257600080fd5b5061026b6106d8565b60405161027891906116c3565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004611663565b61076a565b60405161027891906116b8565b3480156102ba57600080fd5b506102c3610787565b6040516102789190611d43565b3480156102dc57600080fd5b506102a16102eb366004611628565b61078d565b3480156102fc57600080fd5b50610305610826565b6040516102789190611d4c565b34801561031e57600080fd5b5061032761082b565b005b34801561033557600080fd5b506102c361087b565b34801561034a57600080fd5b5061032761088c565b34801561035f57600080fd5b506102a161036e366004611663565b6108df565b34801561037f57600080fd5b506102c3610933565b34801561039457600080fd5b506103276103a3366004611663565b610944565b3480156103b457600080fd5b506103276103c336600461168c565b6109c7565b3480156103d457600080fd5b50610327610a0b565b3480156103e957600080fd5b506102c3610a79565b3480156103fe57600080fd5b506102c3610a9d565b34801561041357600080fd5b506102c36104223660046115d5565b610aa3565b34801561043357600080fd5b50610327610ac2565b34801561044857600080fd5b506102c3610b0d565b34801561045d57600080fd5b506102c3610b13565b34801561047257600080fd5b506102a1610b19565b34801561048757600080fd5b506102c3610b27565b34801561049c57600080fd5b506102c3610b38565b3480156104b157600080fd5b506104ba610b49565b60405161027891906116a4565b3480156104d357600080fd5b5061026b610b58565b3480156104e857600080fd5b506103276104f73660046115d5565b610b67565b34801561050857600080fd5b50610327610517366004611663565b610cd6565b34801561052857600080fd5b506102c3610d0f565b34801561053d57600080fd5b506102c3610d15565b34801561055257600080fd5b506102a1610561366004611663565b610d26565b34801561057257600080fd5b506102c3610d9f565b34801561058757600080fd5b506103276105963660046115d5565b610da5565b3480156105a757600080fd5b506102a16105b6366004611663565b610e30565b6103276105c9366004611663565b610e44565b3480156105da57600080fd5b506103276105e93660046115d5565b610f43565b3480156105fa57600080fd5b506102a16106093660046115d5565b610fc1565b34801561061a57600080fd5b506102c36106293660046115f6565b610fd6565b34801561063a57600080fd5b506103276106493660046115d5565b611001565b34801561065a57600080fd5b506102c361107c565b34801561066f57600080fd5b506102a161108d565b34801561068457600080fd5b506103276106933660046115d5565b611096565b3480156106a457600080fd5b506103276106b336600461168c565b611104565b3480156106c457600080fd5b506103276106d33660046115d5565b611148565b6060600380546106e790611dc8565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611dc8565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600061077e6107776111d0565b84846111d4565b50600192915050565b60025490565b600061079a848484611288565b6001600160a01b0384166000908152600160205260408120816107bb6111d0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108075760405162461bcd60e51b81526004016107fe90611b0c565b60405180910390fd5b61081b856108136111d0565b8584036111d4565b506001949350505050565b601290565b6108336111d0565b6001600160a01b0316610844610b49565b6001600160a01b03161461086a5760405162461bcd60e51b81526004016107fe90611b54565b600b805461ff001916610100179055565b6c03c95a2f0b4856475fe000000081565b6108946111d0565b6001600160a01b03166108a5610b49565b6001600160a01b0316146108cb5760405162461bcd60e51b81526004016107fe90611b54565b600b805460ff19811660ff90911615179055565b600061077e6108ec6111d0565b8484600160006108fa6111d0565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461092e9190611d5a565b6111d4565b6c0792b45e1690ac8ebfc000000081565b336000908152600c602052604090205460ff166109735760405162461bcd60e51b81526004016107fe90611a43565b80600a60008282546109859190611d5a565b9091555050600a546c25dd85d670d35ec9bec000000010156109b95760405162461bcd60e51b81526004016107fe90611bd2565b6109c382826113b2565b5050565b6109cf6111d0565b6001600160a01b03166109e0610b49565b6001600160a01b031614610a065760405162461bcd60e51b81526004016107fe90611b54565b600755565b610a136111d0565b6001600160a01b0316610a24610b49565b6001600160a01b031614610a4a5760405162461bcd60e51b81526004016107fe90611b54565b6040514790339082156108fc029083906000818181858888f193505050501580156109c3573d6000803e3d6000fd5b7f0000000000000000000000000000000000000000000000000000000061fcf3ba81565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b610aca6111d0565b6001600160a01b0316610adb610b49565b6001600160a01b031614610b015760405162461bcd60e51b81526004016107fe90611b54565b610b0b600061147a565b565b60075481565b60085481565b600b54610100900460ff1681565b6c01e4ad1785a42b23aff000000081565b6c05ae074690ec816b0fd000000081565b6005546001600160a01b031690565b6060600480546106e790611dc8565b610b6f6111d0565b6001600160a01b0316610b80610b49565b6001600160a01b031614610ba65760405162461bcd60e51b81526004016107fe90611b54565b6c05ae074690ec816b0fd000000060085410610bd45760405162461bcd60e51b81526004016107fe90611acb565b6277f880600081610c057f0000000000000000000000000000000000000000000000000000000061fcf3ba42611db1565b610c0f9190611d72565b905060008111610c315760405162461bcd60e51b81526004016107fe90611823565b6000610c4b60046c05ae074690ec816b0fd0000000611d72565b600854909150610c5b8284611d92565b11610c785760405162461bcd60e51b81526004016107fe906118a3565b600854600090610c888385611d92565b610c929190611db1565b905080600a6000828254610ca69190611d5a565b925050819055508060086000828254610cbf9190611d5a565b90915550610ccf905085826113b2565b5050505050565b336000908152600c602052604090205460ff16610d055760405162461bcd60e51b81526004016107fe90611a87565b6109c382826114cc565b600a5481565b6c25dd85d670d35ec9bec000000081565b60008060016000610d356111d0565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610d815760405162461bcd60e51b81526004016107fe90611cc7565b610d95610d8c6111d0565b858584036111d4565b5060019392505050565b60095481565b610dad6111d0565b6001600160a01b0316610dbe610b49565b6001600160a01b031614610de45760405162461bcd60e51b81526004016107fe90611b54565b600b54610100900460ff1615610e0c5760405162461bcd60e51b81526004016107fe90611974565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600061077e610e3d6111d0565b8484611288565b600b5460ff16610e665760405162461bcd60e51b81526004016107fe90611a17565b6000610e7a82670de0b6b3a7640000611d92565b90506c03c95a2f0b4856475fe000000081600954610e989190611d5a565b1115610eb65760405162461bcd60e51b81526004016107fe906118da565b600754821115610ed85760405162461bcd60e51b81526004016107fe90611b89565b3460065483610ee79190611d92565b14610f045760405162461bcd60e51b81526004016107fe9061185a565b610f0e83826113b2565b8060096000828254610f209190611d5a565b9250508190555080600a6000828254610f399190611d5a565b9091555050505050565b610f4b6111d0565b6001600160a01b0316610f5c610b49565b6001600160a01b031614610f825760405162461bcd60e51b81526004016107fe90611b54565b6c0792b45e1690ac8ebfc0000000600a6000828254610fa19190611d5a565b90915550610fbe9050816c0792b45e1690ac8ebfc00000006113b2565b50565b600c6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110096111d0565b6001600160a01b031661101a610b49565b6001600160a01b0316146110405760405162461bcd60e51b81526004016107fe90611b54565b6c01e4ad1785a42b23aff0000000600a600082825461105f9190611d5a565b90915550610fbe9050816c01e4ad1785a42b23aff00000006113b2565b6c12eec2eb3869af64df6000000081565b600b5460ff1681565b61109e6111d0565b6001600160a01b03166110af610b49565b6001600160a01b0316146110d55760405162461bcd60e51b81526004016107fe90611b54565b6001600160a01b0381166110fb5760405162461bcd60e51b81526004016107fe9061179b565b610fbe8161147a565b61110c6111d0565b6001600160a01b031661111d610b49565b6001600160a01b0316146111435760405162461bcd60e51b81526004016107fe90611b54565b600655565b6111506111d0565b6001600160a01b0316611161610b49565b6001600160a01b0316146111875760405162461bcd60e51b81526004016107fe90611b54565b600b54610100900460ff16156111af5760405162461bcd60e51b81526004016107fe9061191e565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b3390565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107fe90611c83565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107fe906117e1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061127b908590611d43565b60405180910390a3505050565b6001600160a01b0383166112ae5760405162461bcd60e51b81526004016107fe90611c3e565b6001600160a01b0382166112d45760405162461bcd60e51b81526004016107fe90611716565b6112df8383836115b9565b6001600160a01b038316600090815260208190526040902054818110156113185760405162461bcd60e51b81526004016107fe906119d1565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061134f908490611d5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113999190611d43565b60405180910390a36113ac8484846115b9565b50505050565b6001600160a01b0382166113d85760405162461bcd60e51b81526004016107fe90611d0c565b6113e4600083836115b9565b80600260008282546113f69190611d5a565b90915550506001600160a01b03821660009081526020819052604081208054839290611423908490611d5a565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611466908590611d43565b60405180910390a36109c3600083836115b9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114f25760405162461bcd60e51b81526004016107fe90611bfd565b6114fe826000836115b9565b6001600160a01b038216600090815260208190526040902054818110156115375760405162461bcd60e51b81526004016107fe90611759565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611566908490611db1565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115a9908690611d43565b60405180910390a36115b9836000845b505050565b80356001600160a01b0381168114610abd57600080fd5b6000602082840312156115e6578081fd5b6115ef826115be565b9392505050565b60008060408385031215611608578081fd5b611611836115be565b915061161f602084016115be565b90509250929050565b60008060006060848603121561163c578081fd5b611645846115be565b9250611653602085016115be565b9150604084013590509250925092565b60008060408385031215611675578182fd5b61167e836115be565b946020939093013593505050565b60006020828403121561169d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156116ef578581018301518582016040015282016116d3565b818111156117005783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f41207175617274657220686173206e6f74207061737365640000000000000000604082015260600190565b60208082526029908201527f476976656e20657468657220646f6573206e6f74206d61746368207072696365604082015268081c995c5d5a5c995960ba1b606082015260800190565b6020808252601c908201527f517561727465722076616c756520616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f546865207075626c69632073616c652063617020686173206265656e2072656160408201526318da195960e21b606082015260800190565b60208082526036908201527f436f6e74726f6c6c6572732068617665206265656e206c6f636b656421204e6f6040820152751036b7b9329031b430b733b2b99030b63637bbb2b21760511b606082015260800190565b6020808252603a908201527f436f6e74726f6c6c6572732068617665206265656e206c6f636b656421204e6f60408201527f206d6f726520636f6e74726f6c6c65727320616c6c6f7765642e000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b60208082526024908201527f4f6e6c7920636f6e74726f6c6c6572732061726520616c6c6f77656420746f206040820152631b5a5b9d60e21b606082015260800190565b60208082526024908201527f4f6e6c7920636f6e74726f6c6c6572732061726520616c6c6f77656420746f20604082015263313ab93760e11b606082015260800190565b60208082526021908201527f5465616d20616d6f756e7420686173206265656e2066756c6c792076657374656040820152601960fa1b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f416d6f756e74207265717565737465642069732067726561746572207468616e604082015268081b585e081b5a5b9d60ba1b606082015260800190565b60208082526011908201527013585e0810d251d054881c995858da1959607a1b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611d6d57611d6d611e03565b500190565b600082611d8d57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611dac57611dac611e03565b500290565b600082821015611dc357611dc3611e03565b500390565b600281046001821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a7e42272175c6cec36091234d858e5f1a9fe483e6e1588b54775e4feee09911e64736f6c63430008000033

Deployed Bytecode Sourcemap

22372:4272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8583:169;;;;;;;;;;-1:-1:-1;8583:169:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7536:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9234:492::-;;;;;;;;;;-1:-1:-1;9234:492:0;;;;;:::i;:::-;;:::i;7378:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26371:101::-;;;;;;;;;;;;;:::i;:::-;;22613:63;;;;;;;;;;;;;:::i;26033:100::-;;;;;;;;;;;;;:::i;10135:215::-;;;;;;;;;;-1:-1:-1;10135:215:0;;;;;:::i;:::-;;:::i;22420:55::-;;;;;;;;;;;;;:::i;24064:279::-;;;;;;;;;;-1:-1:-1;24064:279:0;;;;;:::i;:::-;;:::i;26260:103::-;;;;;;;;;;-1:-1:-1;26260:103:0;;;;;:::i;:::-;;:::i;26480:161::-;;;;;;;;;;;;;:::i;22991:36::-;;;;;;;;;;;;;:::i;22850:39::-;;;;;;;;;;;;;:::i;7707:127::-;;;;;;;;;;-1:-1:-1;7707:127:0;;;;;:::i;:::-;;:::i;18028:94::-;;;;;;;;;;;;;:::i;22952:30::-;;;;;;;;;;;;;:::i;23034:::-;;;;;;;;;;;;;:::i;23177:32::-;;;;;;;;;;;;;:::i;22482:61::-;;;;;;;;;;;;;:::i;22550:56::-;;;;;;;;;;;;;:::i;17377:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6635:104::-;;;;;;;;;;;;;:::i;24691:681::-;;;;;;;;;;-1:-1:-1;24691:681:0;;;;;:::i;:::-;;:::i;25380:183::-;;;;;;;;;;-1:-1:-1;25380:183:0;;;;;:::i;:::-;;:::i;23109:26::-;;;;;;;;;;;;;:::i;22750:58::-;;;;;;;;;;;;;:::i;10853:413::-;;;;;;;;;;-1:-1:-1;10853:413:0;;;;;:::i;:::-;;:::i;23071:31::-;;;;;;;;;;;;;:::i;25571:223::-;;;;;;;;;;-1:-1:-1;25571:223:0;;;;;:::i;:::-;;:::i;8047:175::-;;;;;;;;;;-1:-1:-1;8047:175:0;;;;;:::i;:::-;;:::i;23435:621::-;;;;;;:::i;:::-;;:::i;24351:140::-;;;;;;;;;;-1:-1:-1;24351:140:0;;;;;:::i;:::-;;:::i;23289:43::-;;;;;;;;;;-1:-1:-1;23289:43:0;;;;;:::i;:::-;;:::i;8285:151::-;;;;;;;;;;-1:-1:-1;8285:151:0;;;;;:::i;:::-;;:::i;24499:184::-;;;;;;;;;;-1:-1:-1;24499:184:0;;;;;:::i;:::-;;:::i;22683:60::-;;;;;;;;;;;;;:::i;23144:24::-;;;;;;;;;;;;;:::i;18277:192::-;;;;;;;;;;-1:-1:-1;18277:192:0;;;;;:::i;:::-;;:::i;26141:111::-;;;;;;;;;;-1:-1:-1;26141:111:0;;;;;:::i;:::-;;:::i;25802:223::-;;;;;;;;;;-1:-1:-1;25802:223:0;;;;;:::i;:::-;;:::i;6416:100::-;6470:13;6503:5;6496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6416:100;:::o;8583:169::-;8666:4;8683:39;8692:12;:10;:12::i;:::-;8706:7;8715:6;8683:8;:39::i;:::-;-1:-1:-1;8740:4:0;8583:169;;;;:::o;7536:108::-;7624:12;;7536:108;:::o;9234:492::-;9374:4;9391:36;9401:6;9409:9;9420:6;9391:9;:36::i;:::-;-1:-1:-1;;;;;9467:19:0;;9440:24;9467:19;;;:11;:19;;;;;9440:24;9487:12;:10;:12::i;:::-;-1:-1:-1;;;;;9467:33:0;-1:-1:-1;;;;;9467:33:0;;;;;;;;;;;;;9440:60;;9539:6;9519:16;:26;;9511:79;;;;-1:-1:-1;;;9511:79:0;;;;;;;:::i;:::-;;;;;;;;;9626:57;9635:6;9643:12;:10;:12::i;:::-;9676:6;9657:16;:25;9626:8;:57::i;:::-;-1:-1:-1;9714:4:0;;9234:492;-1:-1:-1;;;;9234:492:0:o;7378:93::-;7461:2;7378:93;:::o;26371:101::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;26437:20:::1;:27:::0;;-1:-1:-1;;26437:27:0::1;;;::::0;;26371:101::o;22613:63::-;22658:18;22613:63;:::o;26033:100::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;26113:12:::1;::::0;;-1:-1:-1;;26097:28:0;::::1;26113:12;::::0;;::::1;26112:13;26097:28;::::0;;26033:100::o;10135:215::-;10223:4;10240:80;10249:12;:10;:12::i;:::-;10263:7;10309:10;10272:11;:25;10284:12;:10;:12::i;:::-;-1:-1:-1;;;;;10272:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10272:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10240:8;:80::i;22420:55::-;22457:18;22420:55;:::o;24064:279::-;24155:10;24143:23;;;;:11;:23;;;;;;;;24135:72;;;;-1:-1:-1;;;24135:72:0;;;;;;;:::i;:::-;24233:6;24218:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;24258:11:0;;22789:19;-1:-1:-1;24258:27:0;24250:57;;;;-1:-1:-1;;;24250:57:0;;;;;;;:::i;:::-;24318:17;24324:2;24328:6;24318:5;:17::i;:::-;24064:279;;:::o;26260:103::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;26337:7:::1;:18:::0;26260:103::o;26480:161::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;26596:37:::1;::::0;26564:21:::1;::::0;26604:10:::1;::::0;26596:37;::::1;;;::::0;26564:21;;26549:12:::1;26596:37:::0;26549:12;26596:37;26564:21;26604:10;26596:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;22991:36:::0;;;:::o;22850:39::-;;;;:::o;7707:127::-;-1:-1:-1;;;;;7808:18:0;;7781:7;7808:18;;;;;;;;;;;7707:127;;;;:::o;18028:94::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;18093:21:::1;18111:1;18093:9;:21::i;:::-;18028:94::o:0;22952:30::-;;;;:::o;23034:::-;;;;:::o;23177:32::-;;;;;;;;;:::o;22482:61::-;22525:18;22482:61;:::o;22550:56::-;22588:18;22550:56;:::o;17377:87::-;17450:6;;-1:-1:-1;;;;;17450:6:0;17377:87;:::o;6635:104::-;6691:13;6724:7;6717:14;;;;;:::i;24691:681::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;22588:18:::1;24775:15;;:29;24767:75;;;;-1:-1:-1::0;;;24767:75:0::1;;;;;;;:::i;:::-;24871:14;24853:15;24871:14:::0;24918:29:::1;24936:11;24918:15;:29;:::i;:::-;24917:41;;;;:::i;:::-;24896:62;;24990:1;24977:10;:14;24969:51;;;;-1:-1:-1::0;;;24969:51:0::1;;;;;;;:::i;:::-;25031:21;25055:15;25069:1;22588:18;25055:15;:::i;:::-;25118;::::0;25031:39;;-1:-1:-1;25089:26:0::1;25031:39:::0;25089:10;:26:::1;:::i;:::-;:44;25081:85;;;;-1:-1:-1::0;;;25081:85:0::1;;;;;;;:::i;:::-;25233:15;::::0;25179:20:::1;::::0;25203:26:::1;25216:13:::0;25203:10;:26:::1;:::i;:::-;25202:46;;;;:::i;:::-;25179:69;;25274:12;25259:11;;:27;;;;;;;:::i;:::-;;;;;;;;25316:12;25297:15;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;25339:25:0::1;::::0;-1:-1:-1;25345:4:0;25351:12;25339:5:::1;:25::i;:::-;17668:1;;;;24691:681:::0;:::o;25380:183::-;25473:10;25461:23;;;;:11;:23;;;;;;;;25453:72;;;;-1:-1:-1;;;25453:72:0;;;;;;;:::i;:::-;25536:19;25542:4;25548:6;25536:5;:19::i;23109:26::-;;;;:::o;22750:58::-;22789:19;22750:58;:::o;10853:413::-;10946:4;10963:24;10990:11;:25;11002:12;:10;:12::i;:::-;-1:-1:-1;;;;;10990:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10990:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11043:35:0;;;;11035:85;;;;-1:-1:-1;;;11035:85:0;;;;;;;:::i;:::-;11156:67;11165:12;:10;:12::i;:::-;11179:7;11207:15;11188:16;:34;11156:8;:67::i;:::-;-1:-1:-1;11254:4:0;;10853:413;-1:-1:-1;;;10853:413:0:o;23071:31::-;;;;:::o;25571:223::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;25662:20:::1;::::0;::::1;::::0;::::1;;;25661:21;25653:92;;;;-1:-1:-1::0;;;25653:92:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25756:23:0::1;;::::0;;;:11:::1;:23;::::0;;;;:30;;-1:-1:-1;;25756:30:0::1;25782:4;25756:30;::::0;;25571:223::o;8047:175::-;8133:4;8150:42;8160:12;:10;:12::i;:::-;8174:9;8185:6;8150:9;:42::i;23435:621::-;23539:12;;;;23531:43;;;;-1:-1:-1;;;23531:43:0;;;;;;;:::i;:::-;23585:19;23607:23;:13;23623:7;23607:23;:::i;:::-;23585:45;;22658:18;23668:11;23649:16;;:30;;;;:::i;:::-;:52;;23641:101;;;;-1:-1:-1;;;23641:101:0;;;;;;;:::i;:::-;23778:7;;23761:13;:24;;23753:78;;;;-1:-1:-1;;;23753:78:0;;;;;;;:::i;:::-;23879:9;23866;;23850:13;:25;;;;:::i;:::-;:38;23842:92;;;;-1:-1:-1;;;23842:92:0;;;;;;;:::i;:::-;23947:22;23953:2;23957:11;23947:5;:22::i;:::-;24000:11;23980:16;;:31;;;;;;;:::i;:::-;;;;;;;;24037:11;24022;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;23435:621:0:o;24351:140::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;22457:18:::1;24425:11;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;24461:22:0::1;::::0;-1:-1:-1;24467:3:0;22457:18:::1;24461:5;:22::i;:::-;24351:140:::0;:::o;23289:43::-;;;;;;;;;;;;;;;:::o;8285:151::-;-1:-1:-1;;;;;8401:18:0;;;8374:7;8401:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8285:151::o;24499:184::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;22525:18:::1;24592:11;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;24634:41:0::1;::::0;-1:-1:-1;24640:16:0;22525:18:::1;24634:5;:41::i;22683:60::-:0;22724:19;22683:60;:::o;23144:24::-;;;;;;:::o;18277:192::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18366:22:0;::::1;18358:73;;;;-1:-1:-1::0;;;18358:73:0::1;;;;;;;:::i;:::-;18442:19;18452:8;18442:9;:19::i;26141:111::-:0;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;26222:9:::1;:22:::0;26141:111::o;25802:223::-;17608:12;:10;:12::i;:::-;-1:-1:-1;;;;;17597:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17597:23:0;;17589:68;;;;-1:-1:-1;;;17589:68:0;;;;;;;:::i;:::-;25896:20:::1;::::0;::::1;::::0;::::1;;;25895:21;25887:88;;;;-1:-1:-1::0;;;25887:88:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25986:23:0::1;26012:5;25986:23:::0;;;:11:::1;:23;::::0;;;;:31;;-1:-1:-1;;25986:31:0::1;::::0;;25802:223::o;4127:98::-;4207:10;4127:98;:::o;14537:380::-;-1:-1:-1;;;;;14673:19:0;;14665:68;;;;-1:-1:-1;;;14665:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14752:21:0;;14744:68;;;;-1:-1:-1;;;14744:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14825:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14877:32;;;;;14855:6;;14877:32;:::i;:::-;;;;;;;;14537:380;;;:::o;11756:733::-;-1:-1:-1;;;;;11896:20:0;;11888:70;;;;-1:-1:-1;;;11888:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11977:23:0;;11969:71;;;;-1:-1:-1;;;11969:71:0;;;;;;;:::i;:::-;12053:47;12074:6;12082:9;12093:6;12053:20;:47::i;:::-;-1:-1:-1;;;;;12137:17:0;;12113:21;12137:17;;;;;;;;;;;12173:23;;;;12165:74;;;;-1:-1:-1;;;12165:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12275:17:0;;;:9;:17;;;;;;;;;;;12295:22;;;12275:42;;12339:20;;;;;;;;:30;;12311:6;;12275:9;12339:30;;12311:6;;12339:30;:::i;:::-;;;;;;;;12404:9;-1:-1:-1;;;;;12387:35:0;12396:6;-1:-1:-1;;;;;12387:35:0;;12415:6;12387:35;;;;;;:::i;:::-;;;;;;;;12435:46;12455:6;12463:9;12474:6;12435:19;:46::i;:::-;11756:733;;;;:::o;12776:399::-;-1:-1:-1;;;;;12860:21:0;;12852:65;;;;-1:-1:-1;;;12852:65:0;;;;;;;:::i;:::-;12930:49;12959:1;12963:7;12972:6;12930:20;:49::i;:::-;13008:6;12992:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13025:18:0;;:9;:18;;;;;;;;;;:28;;13047:6;;13025:9;:28;;13047:6;;13025:28;:::i;:::-;;;;-1:-1:-1;;13069:37:0;;-1:-1:-1;;;;;13069:37:0;;;13086:1;;13069:37;;;;13099:6;;13069:37;:::i;:::-;;;;;;;;13119:48;13147:1;13151:7;13160:6;13119:19;:48::i;18477:173::-;18552:6;;;-1:-1:-1;;;;;18569:17:0;;;-1:-1:-1;;;;;;18569:17:0;;;;;;;18602:40;;18552:6;;;18569:17;18552:6;;18602:40;;18533:16;;18602:40;18477:173;;:::o;13508:591::-;-1:-1:-1;;;;;13592:21:0;;13584:67;;;;-1:-1:-1;;;13584:67:0;;;;;;;:::i;:::-;13664:49;13685:7;13702:1;13706:6;13664:20;:49::i;:::-;-1:-1:-1;;;;;13751:18:0;;13726:22;13751:18;;;;;;;;;;;13788:24;;;;13780:71;;;;-1:-1:-1;;;13780:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13887:18:0;;:9;:18;;;;;;;;;;13908:23;;;13887:44;;13953:12;:22;;13925:6;;13887:9;13953:22;;13925:6;;13953:22;:::i;:::-;;;;-1:-1:-1;;13993:37:0;;14019:1;;-1:-1:-1;;;;;13993:37:0;;;;;;;14023:6;;13993:37;:::i;:::-;;;;;;;;14043:48;14063:7;14080:1;14084:6;14043:48;13508:591;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:348::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:26;4389:2;4374:18;;4367:54;4453:2;4438:18;;4288:174::o;4467:405::-;4669:2;4651:21;;;4708:2;4688:18;;;4681:30;4747:34;4742:2;4727:18;;4720:62;-1:-1:-1;;;4813:2:1;4798:18;;4791:39;4862:3;4847:19;;4641:231::o;4877:352::-;5079:2;5061:21;;;5118:2;5098:18;;;5091:30;5157;5152:2;5137:18;;5130:58;5220:2;5205:18;;5051:178::o;5234:400::-;5436:2;5418:21;;;5475:2;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;-1:-1:-1;;;5580:2:1;5565:18;;5558:34;5624:3;5609:19;;5408:226::o;5639:418::-;5841:2;5823:21;;;5880:2;5860:18;;;5853:30;5919:34;5914:2;5899:18;;5892:62;-1:-1:-1;;;5985:2:1;5970:18;;5963:52;6047:3;6032:19;;5813:244::o;6062:422::-;6264:2;6246:21;;;6303:2;6283:18;;;6276:30;6342:34;6337:2;6322:18;;6315:62;6413:28;6408:2;6393:18;;6386:56;6474:3;6459:19;;6236:248::o;6489:402::-;6691:2;6673:21;;;6730:2;6710:18;;;6703:30;6769:34;6764:2;6749:18;;6742:62;-1:-1:-1;;;6835:2:1;6820:18;;6813:36;6881:3;6866:19;;6663:228::o;6896:342::-;7098:2;7080:21;;;7137:2;7117:18;;;7110:30;-1:-1:-1;;;7171:2:1;7156:18;;7149:48;7229:2;7214:18;;7070:168::o;7243:400::-;7445:2;7427:21;;;7484:2;7464:18;;;7457:30;7523:34;7518:2;7503:18;;7496:62;-1:-1:-1;;;7589:2:1;7574:18;;7567:34;7633:3;7618:19;;7417:226::o;7648:400::-;7850:2;7832:21;;;7889:2;7869:18;;;7862:30;7928:34;7923:2;7908:18;;7901:62;-1:-1:-1;;;7994:2:1;7979:18;;7972:34;8038:3;8023:19;;7822:226::o;8053:397::-;8255:2;8237:21;;;8294:2;8274:18;;;8267:30;8333:34;8328:2;8313:18;;8306:62;-1:-1:-1;;;8399:2:1;8384:18;;8377:31;8440:3;8425:19;;8227:223::o;8455:404::-;8657:2;8639:21;;;8696:2;8676:18;;;8669:30;8735:34;8730:2;8715:18;;8708:62;-1:-1:-1;;;8801:2:1;8786:18;;8779:38;8849:3;8834:19;;8629:230::o;8864:356::-;9066:2;9048:21;;;9085:18;;;9078:30;9144:34;9139:2;9124:18;;9117:62;9211:2;9196:18;;9038:182::o;9225:405::-;9427:2;9409:21;;;9466:2;9446:18;;;9439:30;9505:34;9500:2;9485:18;;9478:62;-1:-1:-1;;;9571:2:1;9556:18;;9549:39;9620:3;9605:19;;9399:231::o;9635:341::-;9837:2;9819:21;;;9876:2;9856:18;;;9849:30;-1:-1:-1;;;9910:2:1;9895:18;;9888:47;9967:2;9952:18;;9809:167::o;9981:397::-;10183:2;10165:21;;;10222:2;10202:18;;;10195:30;10261:34;10256:2;10241:18;;10234:62;-1:-1:-1;;;10327:2:1;10312:18;;10305:31;10368:3;10353:19;;10155:223::o;10383:401::-;10585:2;10567:21;;;10624:2;10604:18;;;10597:30;10663:34;10658:2;10643:18;;10636:62;-1:-1:-1;;;10729:2:1;10714:18;;10707:35;10774:3;10759:19;;10557:227::o;10789:400::-;10991:2;10973:21;;;11030:2;11010:18;;;11003:30;11069:34;11064:2;11049:18;;11042:62;-1:-1:-1;;;11135:2:1;11120:18;;11113:34;11179:3;11164:19;;10963:226::o;11194:401::-;11396:2;11378:21;;;11435:2;11415:18;;;11408:30;11474:34;11469:2;11454:18;;11447:62;-1:-1:-1;;;11540:2:1;11525:18;;11518:35;11585:3;11570:19;;11368:227::o;11600:355::-;11802:2;11784:21;;;11841:2;11821:18;;;11814:30;11880:33;11875:2;11860:18;;11853:61;11946:2;11931:18;;11774:181::o;11960:177::-;12106:25;;;12094:2;12079:18;;12061:76::o;12142:184::-;12314:4;12302:17;;;;12284:36;;12272:2;12257:18;;12239:87::o;12331:128::-;;12402:1;12398:6;12395:1;12392:13;12389:2;;;12408:18;;:::i;:::-;-1:-1:-1;12444:9:1;;12379:80::o;12464:217::-;;12530:1;12520:2;;-1:-1:-1;;;12555:31:1;;12609:4;12606:1;12599:15;12637:4;12562:1;12627:15;12520:2;-1:-1:-1;12666:9:1;;12510:171::o;12686:168::-;;12792:1;12788;12784:6;12780:14;12777:1;12774:21;12769:1;12762:9;12755:17;12751:45;12748:2;;;12799:18;;:::i;:::-;-1:-1:-1;12839:9:1;;12738:116::o;12859:125::-;;12927:1;12924;12921:8;12918:2;;;12932:18;;:::i;:::-;-1:-1:-1;12969:9:1;;12908:76::o;12989:380::-;13074:1;13064:12;;13121:1;13111:12;;;13132:2;;13186:4;13178:6;13174:17;13164:27;;13132:2;13239;13231:6;13228:14;13208:18;13205:38;13202:2;;;13285:10;13280:3;13276:20;13273:1;13266:31;13320:4;13317:1;13310:15;13348:4;13345:1;13338:15;13202:2;;13044:325;;;:::o;13374:127::-;13435:10;13430:3;13426:20;13423:1;13416:31;13466:4;13463:1;13456:15;13490:4;13487:1;13480:15

Swarm Source

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