ETH Price: $3,419.56 (+1.12%)
Gas: 5 Gwei

Token

CSC Stablecoin (CSCS)
 

Overview

Max Total Supply

1,000,000,000 CSCS

Holders

5,443

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mercuryo
Balance
1 CSCS

Value
$0.00
0x8C8D7C46219D9205f056f28fee5950aD564d7465
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xcE523Bf8...0e84f6B63
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Plus

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
error TransactionCapExceeded();
error ExcessiveOwnedMints();
error MintZeroQuantity();
error InvalidPayment();
error CapExceeded();
error ValueCannotBeZero();
error CannotBeNullAddress();
error InvalidTeamChange();
error InvalidInputValue();
error NoStateChange();

error PublicMintingClosed();
error AllowlistMintClosed();

error AddressNotAllowlisted();

error OnlyERC20MintingEnabled();
error ERC20TokenNotApproved();
error ERC20InsufficientBalance();
error ERC20InsufficientAllowance();
error ERC20TransferFailed();
error ERC20CappedInvalidValue();
error NotMaintainer();

pragma solidity ^0.8.0;

/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
    /**
    * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree
    * defined by 'root'. For this, a 'proof' must be provided, containing
    * sibling hashes on the branch from the leaf to the root of the tree. Each
    * pair of leaves and each pair of pre-images are assumed to be sorted.
    */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
    * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
    * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt
    * hash matches the root of the tree. When processing the proof, the pairs
    * of leafs & pre-images are assumed to be sorted.
    *
    * _Available since v4.4._
    */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        if(fromBalance < amount) revert ERC20InsufficientBalance();
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _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 {
        if(account == address(0)) revert CannotBeNullAddress();

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

        uint256 accountBalance = _balances[account];
        if(accountBalance < amount) revert ERC20InsufficientBalance();
        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 {
        if(owner == address(0)) revert CannotBeNullAddress();
        if(spender == address(0)) revert CannotBeNullAddress();

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if(currentAllowance < amount) revert ERC20InsufficientBalance();
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: contracts/erc20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if(newOwner == address(0)) revert CannotBeNullAddress();
        _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);
    }
}

// Rampp Contracts v2.1 (Teams.sol)

pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Mintplex.xyz.
**/
abstract contract Teams is Ownable{
  mapping (address => bool) internal team;

  /**
  * @dev Adds an address to the team. Allows them to execute protected functions
  * @param _address the ETH address to add, cannot be 0x and cannot be in team already
  **/
  function addToTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert CannotBeNullAddress();
    if(inTeam(_address)) revert InvalidTeamChange();
  
    team[_address] = true;
  }

  /**
  * @dev Removes an address to the team.
  * @param _address the ETH address to remove, cannot be 0x and must be in team
  **/
  function removeFromTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert CannotBeNullAddress();
    if(!inTeam(_address)) revert InvalidTeamChange();
  
    team[_address] = false;
  }

  /**
  * @dev Check if an address is valid and active in the team
  * @param _address ETH address to check for truthiness
  **/
  function inTeam(address _address)
    public
    view
    returns (bool)
  {
    if(_address == address(0)) revert CannotBeNullAddress();
    return team[_address] == true;
  }

  /**
  * @dev Throws if called by any account other than the owner or team member.
  */
  function _onlyTeamOrOwner() private view {
    bool _isOwner = owner() == _msgSender();
    bool _isTeam = inTeam(_msgSender());
    require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
  }

  modifier onlyTeamOrOwner() {
    _onlyTeamOrOwner();
    _;
  }
}

// @dev Allows the contract to have an enforceable supply cap.
// @notice This is toggleable by the team, so supply can be unlimited/limited at will.
abstract contract ERC20Capped is ERC20, Teams {
    bool public _capEnabled;
    uint256 internal _cap; // Supply Cap of entire token contract

    function setCapStatus(bool _capStatus) public onlyTeamOrOwner {
        _capEnabled = _capStatus;
    }

    function canMintAmount(uint256 _amount) public view returns (bool) {
        if(!_capEnabled){ return true; }
        return ERC20.totalSupply() + _amount <= supplyCap();
    }

    // @dev Update the total possible supply to a new value.
    // @notice _newCap must be greater than or equal to the currently minted supply
    // @param _newCap is the new amount of tokens available in wei
    function setSupplyCap(uint256 _newCap) public onlyTeamOrOwner {
        if(_newCap < ERC20.totalSupply()) revert ERC20CappedInvalidValue();
        _cap = _newCap;
    }

    function supplyCap() public view virtual returns (uint256) {
        if(!_capEnabled){ return ERC20.totalSupply(); }
        return _cap;
    }
}

abstract contract Feeable is Teams {
  uint256 public PRICE = 0 ether;
  uint256 public PROVIDER_FEE = 0.000777 ether;  
  address private constant PROVIDER = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

  function setPrice(uint256 _feeInWei) public onlyTeamOrOwner {
    PRICE = _feeInWei;
  }

  // @dev quickly calculate the fee that will be required for a given qty to mint
  // @notice _count is the value in wei, not in human readable count
  // @param _count is representation of quantity in wei. it will be converted to eth to arrive at proper value
  function getPrice(uint256 _count) public view returns (uint256) {
    if(_count < 1 ether) revert InvalidInputValue();
    uint256 countHuman = _count / 1 ether;
    return (PRICE * countHuman) + PROVIDER_FEE;
  }

  function sendProviderFee() internal {
    payable(PROVIDER).transfer(PROVIDER_FEE);
  }

  function setProviderFee(uint256 _fee) public {
    if(_msgSender() != PROVIDER) revert NotMaintainer();
    PROVIDER_FEE = _fee;
  }
}

// File: Allowlist.sol

pragma solidity ^0.8.0;

abstract contract Allowlist is Teams {
    bytes32 public merkleRoot;
    bool public onlyAllowlistMode = false;

    /**
        * @dev Update merkle root to reflect changes in Allowlist
        * @param _newMerkleRoot new merkle root to reflect most recent Allowlist
        */
    function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner {
        if(_newMerkleRoot == merkleRoot) revert NoStateChange();
        merkleRoot = _newMerkleRoot;
    }

    /**
        * @dev Check the proof of an address if valid for merkle root
        * @param _to address to check for proof
        * @param _merkleProof Proof of the address to validate against root and leaf
        */
    function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) {
        if(merkleRoot == 0) revert ValueCannotBeZero();
        bytes32 leaf = keccak256(abi.encodePacked(_to));

        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }


    function enableAllowlistOnlyMode() public onlyTeamOrOwner {
        onlyAllowlistMode = true;
    }

    function disableAllowlistOnlyMode() public onlyTeamOrOwner {
        onlyAllowlistMode = false;
    }
}

// File: WithdrawableV2
// This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints.
// ERC-20 Payouts are limited to a single payout address.
abstract contract WithdrawableV2 is Teams {
  struct acceptedERC20 {
    bool isActive;
    uint256 chargeAmount;
  }
  mapping(address => acceptedERC20) private allowedTokenContracts;
  address[] public payableAddresses;
  address public erc20Payable;
  uint256[] public payableFees;
  uint256 public payableAddressCount;
  bool public onlyERC20MintingMode;

  function withdrawAll() public onlyTeamOrOwner {
      if(address(this).balance == 0) revert ValueCannotBeZero();
      _withdrawAll(address(this).balance);
  }

  function _withdrawAll(uint256 balance) private {
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
  * @dev Allow contract owner to withdraw ERC-20 balance from contract
  * in the event ERC-20 tokens are paid to the contract for mints.
  * @param _tokenContract contract of ERC-20 token to withdraw
  * @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei
  */
  function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner {
    if(_amountToWithdraw == 0) revert ValueCannotBeZero();
    IERC20 tokenContract = IERC20(_tokenContract);
    if(tokenContract.balanceOf(address(this)) < _amountToWithdraw) revert ERC20InsufficientBalance();
    tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient
  }

  /**
  * @dev check if an ERC-20 contract is a valid payable contract for executing a mint.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) {
    return allowedTokenContracts[_erc20TokenContract].isActive == true;
  }

  /**
  * @dev get the value of tokens to transfer for user of an ERC-20
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) {
    if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved();
    return allowedTokenContracts[_erc20TokenContract].chargeAmount;
  }

  /**
  * @dev Explicity sets and ERC-20 contract as an allowed payment method for minting
  * @param _erc20TokenContract address of ERC-20 contract in question
  * @param _isActive default status of if contract should be allowed to accept payments
  * @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token
  */
  function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = _isActive;
    allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens;
  }

  /**
  * @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
  * it will assume the default value of zero. This should not be used to create new payment tokens.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = true;
  }

  /**
  * @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
  * it will assume the default value of zero. This should not be used to create new payment tokens.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = false;
  }

  /**
  * @dev Enable only ERC-20 payments for minting on this contract
  */
  function enableERC20OnlyMinting() public onlyTeamOrOwner {
    onlyERC20MintingMode = true;
  }

  /**
  * @dev Disable only ERC-20 payments for minting on this contract
  */
  function disableERC20OnlyMinting() public onlyTeamOrOwner {
    onlyERC20MintingMode = false;
  }

  /**
  * @dev Set the payout of the ERC-20 token payout to a specific address
  * @param _newErc20Payable new payout addresses of ERC-20 tokens
  */
  function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner {
    if(_newErc20Payable == address(0)) revert CannotBeNullAddress();
    if(_newErc20Payable == erc20Payable) revert NoStateChange();
    erc20Payable = _newErc20Payable;
  }

  function definePayables(address[] memory _newPayables, uint256[] memory _newFees) public onlyTeamOrOwner {
      delete payableAddresses;
      delete payableFees;
      payableAddresses = _newPayables;
      payableFees = _newFees;
      payableAddressCount = _newPayables.length;
  }
}

// @dev Allows us to add per wallet and per transaction caps to the minting aspect of this ERC20
abstract contract ERC20MintCaps is Teams {
    mapping(address => uint256) private _minted;
    bool internal _mintCapEnabled; // per wallet mint cap
    bool internal _batchSizeEnabled; // txn batch size limit
    uint256 internal mintCap; // in wei
    uint256 internal maxBatchSize; // in wei

    function setMintCap(uint256 _newMintCap) public onlyTeamOrOwner {
        mintCap = _newMintCap;
    }

    function setMintCapStatus(bool _newStatus) public onlyTeamOrOwner {
        _mintCapEnabled = _newStatus;
    }

    function setMaxBatchSize(uint256 _maxBatchSize) public onlyTeamOrOwner {
        maxBatchSize = _maxBatchSize;
    }

    function setMaxBatchSizeStatus(bool _newStatus) public onlyTeamOrOwner {
        _batchSizeEnabled = _newStatus;
    }

    // @dev Check if amount of tokens is possible to be minted
    // @param _amount is the amount of tokens in wei
    function canMintBatch(uint256 _amount) public view returns (bool) {
        if(!_batchSizeEnabled){ return true; }
        return _amount <= maxBatchSize;
    }

    // @dev returns if current mint caps are enabled (mints per wallet)
    // @return bool if mint caps per wallet are enforced
    function mintCapEnabled() public view returns (bool) {
        return _mintCapEnabled;
    }

    // @dev the current mintCap in decimals value
    // @return uint256 of mint caps per wallet. mintCapEnabled can be disabled and this value be non-zero.
    function maxWalletMints() public view returns(uint256) {
        return mintCap;
    }

    // @dev returns if current batch size caps are enabled (mints per txn)
    // @return bool if mint caps per transaction are enforced
    function mintBatchSizeEnabled() public view returns (bool) {
        return _batchSizeEnabled;
    }

    // @dev the current cap for a single txn in decimals value
    // @return uint256 the current cap for a single txn in decimals value
    function maxMintsPerTxn() public view returns (uint256) {
        return maxBatchSize;
    }

    // @dev checks if the mint count of an account is within the proper range
    // @notice if maxWalletMints is false it will always return true
    // @param _account is address to check
    // @param _amount is the amount of tokens in wei to be added to current minted supply
    function canAccountMintAmount(address _account, uint256 _amount) public view returns (bool) {
        if(!_mintCapEnabled){ return true; }
        return mintedAmount(_account) + _amount <= mintCap;
    }

    // @dev gets currently minted amount for an account
    // @return uint256 of tokens owned in base decimal value (wei)
    function mintedAmount(address _account) public view returns (uint256) {
        return _minted[_account];
    }

    // @dev helper function that increased the mint amount for an account
    // @notice this is not the same as _balances, as that can vary as trades occur.
    // @param _account is address to add to
    // @param _amount is the amount of tokens in wei to be added to current minted amount
    function addMintsToAccount(address _account, uint256 _amount) internal {
        unchecked {
            _minted[_account] += _amount;
        }
    }
}

abstract contract SingleStateMintable is Teams {
    bool internal publicMintOpen = false;
    bool internal allowlistMintOpen = false;

    function inPublicMint() public view returns (bool){
        return publicMintOpen && !allowlistMintOpen;
    }

    function inAllowlistMint() public view returns (bool){
        return allowlistMintOpen && !publicMintOpen;
    }

    function openPublicMint() public onlyTeamOrOwner {
        publicMintOpen = true;
        allowlistMintOpen = false;
    }

    function openAllowlistMint() public onlyTeamOrOwner {
        allowlistMintOpen = true;
        publicMintOpen = false;
    }

    // @notice This will set close all minting to public regardless of previous state
    function closeMinting() public onlyTeamOrOwner {
        allowlistMintOpen = false;
        publicMintOpen = false;
    }
}


// File: contracts/ERC20Plus.sol
pragma solidity ^0.8.0;

contract ERC20Plus is 
    Ownable,
    ERC20Burnable,
    ERC20Capped,
    ERC20MintCaps,
    Feeable,
    Allowlist,
    WithdrawableV2,
    SingleStateMintable
    {
    uint8 immutable CONTRACT_VERSION = 1;
    constructor(
        string memory name,
        string memory symbol,
        address[] memory _payableAddresses,
        address _erc20Payable,
        uint256[] memory _payableFees,
        bool[3] memory mintSettings, // hasMaxSupply, mintCapEnabled, maxBatchEnabled
        uint256[3] memory mintValues, // initMaxSupply, initMintCap, initBatchSize
        uint256 initPrice
    ) ERC20(name, symbol) {
        // Payable settings
        payableAddresses = _payableAddresses;
        erc20Payable = _erc20Payable;
        payableFees = _payableFees;
        payableAddressCount = _payableAddresses.length;

        // Set inital Supply cap settings
        _capEnabled = mintSettings[0];
        _cap = mintValues[0];
        
        // Per wallet minting settings
        _mintCapEnabled = mintSettings[1];
        mintCap = mintValues[1];

        // Per txn minting settings
        _batchSizeEnabled = mintSettings[2];
        maxBatchSize = mintValues[2];

        // setup price
        PRICE = initPrice;
    }

    /////////////// Admin Mint Functions
    /**
    * @dev Mints tokens to an address.
    * This is owner only and allows a fee-free drop
    * @param _to address of the future owner of the token
    * @param _qty amount of tokens to drop the owner in decimal value (wei typically 1e18)
    */
    function adminMint(address _to, uint256 _qty) public onlyTeamOrOwner{
        if(_qty < 1 ether) revert MintZeroQuantity();
        if(!canMintAmount(_qty)) revert CapExceeded();
        _mint(_to, _qty);
    }

    function adminMintBulk(address[] memory _tos, uint256 _qty) public onlyTeamOrOwner{
        if(_qty < 1 ether) revert MintZeroQuantity();
        for(uint i=0; i < _tos.length; i++ ) {
            _mint(_tos[i], _qty);
        }
    }

    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints tokens to an address in batch.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint in wei
    */
    function mintMany(address _to, uint256 _amount) public payable {
        if(onlyERC20MintingMode) revert PublicMintingClosed();
        if(_amount < 1 ether) revert MintZeroQuantity();
        if(!inPublicMint()) revert PublicMintingClosed();
        if(!canMintBatch(_amount)) revert TransactionCapExceeded();
        if(!canMintAmount(_amount)) revert CapExceeded();
        if(!canAccountMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
        if(msg.value != getPrice(_amount)) revert InvalidPayment();
        
        sendProviderFee();
        addMintsToAccount(_to, _amount);
        _mint(_to, _amount);
    }

    /**
     * @dev Mints tokens to an address in batch using an ERC-20 token for payment
     * fee may or may not be required*
     * @param _to address of the future owner of the token
     * @param _amount number of tokens to mint in wei
     * @param _erc20TokenContract erc-20 token contract to mint with
     */
    function mintManyERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable {
        if(_amount < 1 ether) revert MintZeroQuantity();
        if(!canMintAmount(_amount)) revert CapExceeded();
        if(!inPublicMint()) revert PublicMintingClosed();
        if(!canMintBatch(_amount)) revert TransactionCapExceeded();
        if(!canAccountMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
        if(msg.value != PROVIDER_FEE) revert InvalidPayment();

        // ERC-20 Specific pre-flight checks
        if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved();
        uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
        IERC20 payableToken = IERC20(_erc20TokenContract);

        if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance();
        if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance();
        bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
        if(!transferComplete) revert ERC20TransferFailed();
        
        sendProviderFee();
        addMintsToAccount(_to, _amount);
        _mint(_to, _amount);
    }

    /**
    * @dev Mints tokens to an address using an allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint in wei
    * @param _merkleProof merkle proof array
    */
    function mintManyAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
        if(onlyERC20MintingMode) revert AllowlistMintClosed();
        if(_amount < 1 ether) revert MintZeroQuantity();
        if(!inAllowlistMint()) revert AllowlistMintClosed();
        if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted();
        if(!canMintBatch(_amount)) revert TransactionCapExceeded();
        if(!canAccountMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
        if(!canMintAmount(_amount)) revert CapExceeded();
        if(msg.value != getPrice(_amount)) revert InvalidPayment();
        
        sendProviderFee();
        addMintsToAccount(_to, _amount);
        _mint(_to, _amount);
    }

    /**
    * @dev Mints tokens to an address using an allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint in wei
    * @param _merkleProof merkle proof array
    * @param _erc20TokenContract erc-20 token contract to mint with
    */
    function mintManyERC20AL(address _to, uint256 _amount, bytes32[] calldata _merkleProof, address _erc20TokenContract) public payable {
        if(!inAllowlistMint()) revert AllowlistMintClosed();
        if(_amount < 1 ether) revert MintZeroQuantity();
        if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted();
        if(!canMintBatch(_amount)) revert TransactionCapExceeded();
        if(!canAccountMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
        if(!canMintAmount(_amount)) revert CapExceeded();
        if(msg.value != PROVIDER_FEE) revert InvalidPayment();
        
        // ERC-20 Specific pre-flight checks
        if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved();
        uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
        IERC20 payableToken = IERC20(_erc20TokenContract);
        
        if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance();
        if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance();
        
        bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
        if(!transferComplete) revert ERC20TransferFailed();

        sendProviderFee();
        addMintsToAccount(_to, _amount);
        _mint(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"_payableAddresses","type":"address[]"},{"internalType":"address","name":"_erc20Payable","type":"address"},{"internalType":"uint256[]","name":"_payableFees","type":"uint256[]"},{"internalType":"bool[3]","name":"mintSettings","type":"bool[3]"},{"internalType":"uint256[3]","name":"mintValues","type":"uint256[3]"},{"internalType":"uint256","name":"initPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressNotAllowlisted","type":"error"},{"inputs":[],"name":"AllowlistMintClosed","type":"error"},{"inputs":[],"name":"CannotBeNullAddress","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"ERC20CappedInvalidValue","type":"error"},{"inputs":[],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[],"name":"ERC20TokenNotApproved","type":"error"},{"inputs":[],"name":"ERC20TransferFailed","type":"error"},{"inputs":[],"name":"ExcessiveOwnedMints","type":"error"},{"inputs":[],"name":"InvalidInputValue","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTeamChange","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoStateChange","type":"error"},{"inputs":[],"name":"NotMaintainer","type":"error"},{"inputs":[],"name":"PublicMintingClosed","type":"error"},{"inputs":[],"name":"TransactionCapExceeded","type":"error"},{"inputs":[],"name":"ValueCannotBeZero","type":"error"},{"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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVIDER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_capEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"adminMintBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canAccountMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintBatch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","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":"_newPayables","type":"address[]"},{"internalType":"uint256[]","name":"_newFees","type":"uint256[]"}],"name":"definePayables","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inAllowlistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintBatchSizeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintManyAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintManyERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintManyERC20AL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"mintedAmount","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":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyERC20MintingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_capStatus","type":"bool"}],"name":"setCapStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"}],"name":"setMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setMaxBatchSizeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintCap","type":"uint256"}],"name":"setMintCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setMintCapStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"setSupplyCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600d556602c2ad68fd9000600e556010805460ff191690556016805462ffff001916905560016080523480156200003c57600080fd5b5060405162003630380380620036308339810160408190526200005f91620005c4565b87518890889062000078906003906020850190620001ae565b5080516200008e906004906020840190620001ae565b505050620000ab620000a56200015860201b60201c565b6200015c565b8551620000c09060129060208901906200023d565b50601380546001600160a01b0319166001600160a01b0387161790558351620000f190601490602087019062000295565b50945160155581516007805460ff19169115159190911790558051600855602080830151600a805492840151600b5560409485015115156101000261ffff1990931691151561ff001916919091179190911790550151600c555050600d5550620007009050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001bc90620006c3565b90600052602060002090601f016020900481019282620001e057600085556200022b565b82601f10620001fb57805160ff19168380011785556200022b565b828001600101855582156200022b579182015b828111156200022b5782518255916020019190600101906200020e565b5062000239929150620002d2565b5090565b8280548282559060005260206000209081019282156200022b579160200282015b828111156200022b57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200025e565b8280548282559060005260206000209081019282156200022b57916020028201828111156200022b5782518255916020019190600101906200020e565b5b80821115620002395760008155600101620002d3565b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b0381118282101715620003245762000324620002e9565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620003555762000355620002e9565b604052919050565b600082601f8301126200036f57600080fd5b81516001600160401b038111156200038b576200038b620002e9565b6020620003a1601f8301601f191682016200032a565b8281528582848701011115620003b657600080fd5b60005b83811015620003d6578581018301518282018401528201620003b9565b83811115620003e85760008385840101525b5095945050505050565b60006001600160401b038211156200040e576200040e620002e9565b5060051b60200190565b80516001600160a01b03811681146200043057600080fd5b919050565b600082601f8301126200044757600080fd5b81516020620004606200045a83620003f2565b6200032a565b82815260059290921b840181019181810190868411156200048057600080fd5b8286015b84811015620004a657620004988162000418565b835291830191830162000484565b509695505050505050565b600082601f830112620004c357600080fd5b81516020620004d66200045a83620003f2565b82815260059290921b84018101918181019086841115620004f657600080fd5b8286015b84811015620004a65780518352918301918301620004fa565b600082601f8301126200052557600080fd5b6200052f620002ff565b8060608401858111156200054257600080fd5b845b818110156200056e57805180151581146200055f5760008081fd5b84526020938401930162000544565b509095945050505050565b600082601f8301126200058b57600080fd5b62000595620002ff565b806060840185811115620005a857600080fd5b845b818110156200056e578051845260209384019301620005aa565b600080600080600080600080610180898b031215620005e257600080fd5b88516001600160401b0380821115620005fa57600080fd5b620006088c838d016200035d565b995060208b01519150808211156200061f57600080fd5b6200062d8c838d016200035d565b985060408b01519150808211156200064457600080fd5b620006528c838d0162000435565b97506200066260608c0162000418565b965060808b01519150808211156200067957600080fd5b50620006888b828c01620004b1565b9450506200069a8a60a08b0162000513565b9250620006ac8a6101008b0162000579565b915061016089015190509295985092959890939650565b600181811c90821680620006d857607f821691505b60208210811415620006fa57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612f176200071960003960005050612f176000f3fe6080604052600436106104265760003560e01c806388993c8111610229578063b0cfbf161161012e578063dd62ed3e116100b6578063f2fde38b1161007a578063f2fde38b14610be9578063f623bb8b14610c09578063f82fa75614610c1f578063f8c0fd2014610c3c578063fbbf8cc314610c5157600080fd5b8063dd62ed3e14610b4f578063dfdedf6914610b6f578063e58306f914610b8f578063e6c6990a14610baf578063e757223014610bc957600080fd5b8063c3cb97c6116100fd578063c3cb97c614610abc578063c6ee6e3514610adc578063cacf084214610aef578063d266f3a914610b0f578063d83ae33214610b2f57600080fd5b8063b0cfbf1614610a47578063b6a3f59a14610a67578063b94b237614610a87578063c326876814610a9c57600080fd5b8063a1af10ca116101b1578063a9059cbb11610180578063a9059cbb146109bf578063a91bd1a9146109df578063ad1203dc146109ff578063af54001e14610a12578063afb16d1814610a2757600080fd5b8063a1af10ca1461093f578063a1db97821461095f578063a457c2d71461097f578063a7593fb71461099f57600080fd5b80638da5cb5b116101f85780638da5cb5b146108b75780638f770ad0146108d557806391b7f5ed146108ea57806395d89b411461090a57806398ad44171461091f57600080fd5b806388993c8114610857578063891bbe731461086c57806389f26d581461088c5780638d859f3e146108a157600080fd5b80634070a0c91161032f578063627255df116102b757806379ab3c891161028657806379ab3c89146107c057806379cc6790146107d55780637fb8c6d3146107f5578063853828b61461082d57806387491c601461084257600080fd5b8063627255df146107405780636d3de8061461076057806370a0823114610775578063715018a6146107ab57600080fd5b8063464c3428116102fe578063464c3428146106be57806346f41ed5146106de5780634783f0ef146106f85780634c23ce91146107185780635e8306561461072d57600080fd5b80634070a0c91461064957806342966c681461066957806343696f181461068957806345f7e06e146106a957600080fd5b806328ff1b51116103b2578063330067861161038157806333006786146105be57806334d00766146105de57806339509351146105f35780633d3f9c57146106135780633e07311c1461063357600080fd5b806328ff1b511461054c5780632b26a6bf1461056c5780632eb4a7ab1461058c578063313ce567146105a257600080fd5b80631963d0cc116103f95780631963d0cc146104c557806320fab142146104dd5780632181384e146104f757806323b872dd1461050c578063286c81371461052c57600080fd5b806306fdde031461042b5780630825850a14610456578063095ea7b31461048657806318160ddd146104a6575b600080fd5b34801561043757600080fd5b50610440610c87565b60405161044d9190612890565b60405180910390f35b34801561046257600080fd5b50610476610471366004612901565b610d19565b604051901515815260200161044d565b34801561049257600080fd5b506104766104a1366004612901565b610d66565b3480156104b257600080fd5b506002545b60405190815260200161044d565b3480156104d157600080fd5b50600a5460ff16610476565b3480156104e957600080fd5b506007546104769060ff1681565b61050a610505366004612977565b610d7e565b005b34801561051857600080fd5b506104766105273660046129e6565b6110d8565b34801561053857600080fd5b506104b7610547366004612a22565b6110fc565b34801561055857600080fd5b5061050a610567366004612b18565b61111d565b34801561057857600080fd5b5061050a610587366004612a22565b61116c565b34801561059857600080fd5b506104b7600f5481565b3480156105ae57600080fd5b506040516012815260200161044d565b3480156105ca57600080fd5b506104766105d9366004612bd3565b611179565b3480156105ea57600080fd5b50600b546104b7565b3480156105ff57600080fd5b5061047661060e366004612901565b611220565b34801561061f57600080fd5b5061047661062e366004612c26565b611242565b34801561063f57600080fd5b506104b760155481565b34801561065557600080fd5b5061050a610664366004612a22565b611265565b34801561067557600080fd5b5061050a610684366004612a22565b611272565b34801561069557600080fd5b5061050a6106a4366004612c26565b61127f565b3480156106b557600080fd5b5061050a6112f9565b3480156106ca57600080fd5b5061050a6106d9366004612c26565b611313565b3480156106ea57600080fd5b506016546104769060ff1681565b34801561070457600080fd5b5061050a610713366004612a22565b61133f565b34801561072457600080fd5b5061047661136f565b61050a61073b366004612901565b611397565b34801561074c57600080fd5b5061047661075b366004612a22565b6114c4565b34801561076c57600080fd5b5061050a6114e7565b34801561078157600080fd5b506104b7610790366004612c26565b6001600160a01b031660009081526020819052604090205490565b3480156107b757600080fd5b5061050a6114fb565b3480156107cc57600080fd5b5061050a61150f565b3480156107e157600080fd5b5061050a6107f0366004612901565b611526565b34801561080157600080fd5b50601354610815906001600160a01b031681565b6040516001600160a01b03909116815260200161044d565b34801561083957600080fd5b5061050a61153b565b34801561084e57600080fd5b5061050a61156a565b34801561086357600080fd5b50610476611580565b34801561087857600080fd5b50610815610887366004612a22565b6115a6565b34801561089857600080fd5b5061050a6115d0565b3480156108ad57600080fd5b506104b7600d5481565b3480156108c357600080fd5b506005546001600160a01b0316610815565b3480156108e157600080fd5b506104b76115e7565b3480156108f657600080fd5b5061050a610905366004612a22565b611602565b34801561091657600080fd5b5061044061160f565b34801561092b57600080fd5b5061050a61093a366004612c4f565b61161e565b34801561094b57600080fd5b5061047661095a366004612c26565b611640565b34801561096b57600080fd5b5061050a61097a366004612901565b61168d565b34801561098b57600080fd5b5061047661099a366004612901565b6117d9565b3480156109ab57600080fd5b5061050a6109ba366004612a22565b611817565b3480156109cb57600080fd5b506104766109da366004612901565b611850565b3480156109eb57600080fd5b5061050a6109fa366004612c26565b61185e565b61050a610a0d366004612c6c565b6118de565b348015610a1e57600080fd5b50600c546104b7565b348015610a3357600080fd5b5061050a610a42366004612cc6565b611a2f565b348015610a5357600080fd5b50610476610a62366004612a22565b611aa6565b348015610a7357600080fd5b5061050a610a82366004612a22565b611adf565b348015610a9357600080fd5b5061050a611b0f565b348015610aa857600080fd5b5061050a610ab7366004612c4f565b611b23565b348015610ac857600080fd5b5061050a610ad7366004612c4f565b611b3e565b61050a610aea366004612d0b565b611b59565b348015610afb57600080fd5b5061050a610b0a366004612c26565b611e89565b348015610b1b57600080fd5b506104b7610b2a366004612c26565b611eb2565b348015610b3b57600080fd5b5061050a610b4a366004612d47565b611ef9565b348015610b5b57600080fd5b506104b7610b6a366004612d86565b611f30565b348015610b7b57600080fd5b5061050a610b8a366004612c26565b611f5b565b348015610b9b57600080fd5b5061050a610baa366004612901565b611fd1565b348015610bbb57600080fd5b506010546104769060ff1681565b348015610bd557600080fd5b506104b7610be4366004612a22565b612028565b348015610bf557600080fd5b5061050a610c04366004612c26565b61208b565b348015610c1557600080fd5b506104b7600e5481565b348015610c2b57600080fd5b50600a54610100900460ff16610476565b348015610c4857600080fd5b5061050a6120c3565b348015610c5d57600080fd5b506104b7610c6c366004612c26565b6001600160a01b031660009081526009602052604090205490565b606060038054610c9690612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc290612db9565b8015610d0f5780601f10610ce457610100808354040283529160200191610d0f565b820191906000526020600020905b815481529060010190602001808311610cf257829003601f168201915b5050505050905090565b600a5460009060ff16610d2e57506001610d60565b600b5482610d51856001600160a01b031660009081526009602052604090205490565b610d5b9190612e0a565b111590505b92915050565b600033610d748185856120de565b5060019392505050565b610d8661136f565b610da3576040516309c7220160e31b815260040160405180910390fd5b670de0b6b3a7640000841015610dcc5760405163b562e8dd60e01b815260040160405180910390fd5b610dd7858484611179565b610df45760405163097b24df60e41b815260040160405180910390fd5b610dfd846114c4565b610e1a576040516393eeb41560e01b815260040160405180910390fd5b610e248585610d19565b610e41576040516366be767160e11b815260040160405180910390fd5b610e4a84611aa6565b610e675760405163a4875a4960e01b815260040160405180910390fd5b600e543414610e895760405163078d696560e31b815260040160405180910390fd5b610e9281611242565b610eaf57604051636c501c9960e11b815260040160405180910390fd5b600084610ebb83611eb2565b610ec59190612e22565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b158015610f0e57600080fd5b505afa158015610f22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f469190612e41565b1015610f6557604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015610faf57600080fd5b505afa158015610fc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe79190612e41565b10156110065760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612e5a565b9050806110b257604051633c9fd93960e21b815260040160405180910390fd5b6110ba61218d565b6110c488886121cf565b6110ce88886121f1565b5050505050505050565b6000336110e68582856122a1565b6110f18585856122e6565b506001949350505050565b6014818154811061110c57600080fd5b600091825260209091200154905081565b6111256123fe565b611131601260006127bd565b61113d601460006127bd565b81516111509060129060208501906127db565b508051611164906014906020840190612840565b505051601555565b6111746123fe565b600c55565b600f5460009061119c576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061121784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050612489565b95945050505050565b600033610d748185856112338383611f30565b61123d9190612e0a565b6120de565b6001600160a01b031660009081526011602052604090205460ff16151560011490565b61126d6123fe565b600b55565b61127c338261249f565b50565b61128761257a565b6001600160a01b0381166112ae576040516322646a9760e21b815260040160405180910390fd5b6112b781611640565b156112d557604051638afaeb9d60e01b815260040160405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6113016123fe565b6016805462ffff001916610100179055565b61131b6123fe565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6113476123fe565b600f5481141561136a5760405163a28a88c160e01b815260040160405180910390fd5b600f55565b60165460009062010000900460ff1680156113925750601654610100900460ff16155b905090565b60165460ff16156113bb576040516306717a3b60e51b815260040160405180910390fd5b670de0b6b3a76400008110156113e45760405163b562e8dd60e01b815260040160405180910390fd5b6113ec611580565b611409576040516306717a3b60e51b815260040160405180910390fd5b611412816114c4565b61142f576040516393eeb41560e01b815260040160405180910390fd5b61143881611aa6565b6114555760405163a4875a4960e01b815260040160405180910390fd5b61145f8282610d19565b61147c576040516366be767160e11b815260040160405180910390fd5b61148581612028565b34146114a45760405163078d696560e31b815260040160405180910390fd5b6114ac61218d565b6114b682826121cf565b6114c082826121f1565b5050565b600a54600090610100900460ff166114de57506001919050565b50600c54101590565b6114ef6123fe565b6010805460ff19169055565b61150361257a565b61150d60006125d4565b565b6115176123fe565b6010805460ff19166001179055565b6115318233836122a1565b6114c0828261249f565b6115436123fe565b47611561576040516363868c5560e11b815260040160405180910390fd5b61150d47612626565b6115726123fe565b6016805462ffff0019169055565b601654600090610100900460ff16801561139257505060165462010000900460ff161590565b601281815481106115b657600080fd5b6000918252602090912001546001600160a01b0316905081565b6115d86123fe565b6016805460ff19166001179055565b60075460009060ff166115fb575060025490565b5060085490565b61160a6123fe565b600d55565b606060048054610c9690612db9565b6116266123fe565b600a80549115156101000261ff0019909216919091179055565b60006001600160a01b038216611669576040516322646a9760e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205460ff16151560011490565b6116956123fe565b806116b3576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b1580156116f657600080fd5b505afa15801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e9190612e41565b101561174d57604051631642df1760e21b815260040160405180910390fd5b60135460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b15801561179b57600080fd5b505af11580156117af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d39190612e5a565b50505050565b600033816117e78286611f30565b90508381101561180a57604051631642df1760e21b815260040160405180910390fd5b6110f182868684036120de565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e11461184b57604051639b96b05160e01b815260040160405180910390fd5b600e55565b600033610d748185856122e6565b6118666123fe565b6001600160a01b03811661188d576040516322646a9760e21b815260040160405180910390fd5b6013546001600160a01b03828116911614156118bc5760405163a28a88c160e01b815260040160405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60165460ff1615611902576040516309c7220160e31b815260040160405180910390fd5b670de0b6b3a764000083101561192b5760405163b562e8dd60e01b815260040160405180910390fd5b61193361136f565b611950576040516309c7220160e31b815260040160405180910390fd5b61195b848383611179565b6119785760405163097b24df60e41b815260040160405180910390fd5b611981836114c4565b61199e576040516393eeb41560e01b815260040160405180910390fd5b6119a88484610d19565b6119c5576040516366be767160e11b815260040160405180910390fd5b6119ce83611aa6565b6119eb5760405163a4875a4960e01b815260040160405180910390fd5b6119f483612028565b3414611a135760405163078d696560e31b815260040160405180910390fd5b611a1b61218d565b611a2584846121cf565b6117d384846121f1565b611a376123fe565b670de0b6b3a7640000811015611a605760405163b562e8dd60e01b815260040160405180910390fd5b60005b8251811015611aa157611a8f838281518110611a8157611a81612e77565b6020026020010151836121f1565b80611a9981612e8d565b915050611a63565b505050565b60075460009060ff16611abb57506001919050565b611ac36115e7565b82611acd60025490565b611ad79190612e0a565b111592915050565b611ae76123fe565b600254811015611b0a5760405163cc67044560e01b815260040160405180910390fd5b600855565b611b176123fe565b6016805460ff19169055565b611b2b6123fe565b6007805460ff1916911515919091179055565b611b466123fe565b600a805460ff1916911515919091179055565b670de0b6b3a7640000821015611b825760405163b562e8dd60e01b815260040160405180910390fd5b611b8b82611aa6565b611ba85760405163a4875a4960e01b815260040160405180910390fd5b611bb0611580565b611bcd576040516306717a3b60e51b815260040160405180910390fd5b611bd6826114c4565b611bf3576040516393eeb41560e01b815260040160405180910390fd5b611bfd8383610d19565b611c1a576040516366be767160e11b815260040160405180910390fd5b600e543414611c3c5760405163078d696560e31b815260040160405180910390fd5b611c4581611242565b611c6257604051636c501c9960e11b815260040160405180910390fd5b600082611c6e83611eb2565b611c789190612e22565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611cc157600080fd5b505afa158015611cd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf99190612e41565b1015611d1857604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611d6257600080fd5b505afa158015611d76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9a9190612e41565b1015611db95760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611e0d57600080fd5b505af1158015611e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e459190612e5a565b905080611e6557604051633c9fd93960e21b815260040160405180910390fd5b611e6d61218d565b611e7786866121cf565b611e8186866121f1565b505050505050565b611e916123fe565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000611ebd82611242565b611eda57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526011602052604090206001015490565b611f016123fe565b6001600160a01b03929092166000908152601160205260409020805460ff191691151591909117815560010155565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611f6361257a565b6001600160a01b038116611f8a576040516322646a9760e21b815260040160405180910390fd5b611f9381611640565b611fb057604051638afaeb9d60e01b815260040160405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611fd96123fe565b670de0b6b3a76400008110156120025760405163b562e8dd60e01b815260040160405180910390fd5b61200b81611aa6565b6114b65760405163a4875a4960e01b815260040160405180910390fd5b6000670de0b6b3a764000082101561205357604051631cdaa1ed60e31b815260040160405180910390fd5b6000612067670de0b6b3a764000084612ea8565b9050600e5481600d5461207a9190612e22565b6120849190612e0a565b9392505050565b61209361257a565b6001600160a01b0381166120ba576040516322646a9760e21b815260040160405180910390fd5b61127c816125d4565b6120cb6123fe565b6016805462ffff00191662010000179055565b6001600160a01b038316612105576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b03821661212c576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600e5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f1935050505015801561127c573d6000803e3d6000fd5b6001600160a01b03909116600090815260096020526040902080549091019055565b6001600160a01b038216612218576040516322646a9760e21b815260040160405180910390fd5b806002600082825461222a9190612e0a565b90915550506001600160a01b03821660009081526020819052604081208054839290612257908490612e0a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006122ad8484611f30565b905060001981146117d357818110156122d957604051631642df1760e21b815260040160405180910390fd5b6117d384848484036120de565b6001600160a01b03831661230d576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b038216612334576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0383166000908152602081905260409020548181101561236e57604051631642df1760e21b815260040160405180910390fd5b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123a5908490612e0a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123f191815260200190565b60405180910390a36117d3565b6005546001600160a01b0316339081149060009061241b90611640565b905081806124265750805b6114c05760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b60648201526084015b60405180910390fd5b60008261249685846126b3565b14949350505050565b6001600160a01b0382166124c6576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152602081905260409020548181101561250057604051631642df1760e21b815260040160405180910390fd5b6001600160a01b038316600090815260208190526040812083830390556002805484929061252f908490612eca565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6005546001600160a01b0316331461150d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401612480565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b6015548110156114c0576126a16012828154811061264957612649612e77565b9060005260206000200160009054906101000a90046001600160a01b031660646014848154811061267c5761267c612e77565b9060005260206000200154856126929190612e22565b61269c9190612ea8565b612727565b806126ab81612e8d565b915050612629565b600081815b845181101561271f5760008582815181106126d5576126d5612e77565b602002602001015190508083116126fb576000838152602082905260409020925061270c565b600081815260208490526040902092505b508061271781612e8d565b9150506126b8565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612774576040519150601f19603f3d011682016040523d82523d6000602084013e612779565b606091505b5050905080611aa15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401612480565b508054600082559060005260206000209081019061127c919061287b565b828054828255906000526020600020908101928215612830579160200282015b8281111561283057825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906127fb565b5061283c92915061287b565b5090565b828054828255906000526020600020908101928215612830579160200282015b82811115612830578251825591602001919060010190612860565b5b8082111561283c576000815560010161287c565b600060208083528351808285015260005b818110156128bd578581018301518582016040015282016128a1565b818111156128cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146128fc57600080fd5b919050565b6000806040838503121561291457600080fd5b61291d836128e5565b946020939093013593505050565b60008083601f84011261293d57600080fd5b50813567ffffffffffffffff81111561295557600080fd5b6020830191508360208260051b850101111561297057600080fd5b9250929050565b60008060008060006080868803121561298f57600080fd5b612998866128e5565b945060208601359350604086013567ffffffffffffffff8111156129bb57600080fd5b6129c78882890161292b565b90945092506129da9050606087016128e5565b90509295509295909350565b6000806000606084860312156129fb57600080fd5b612a04846128e5565b9250612a12602085016128e5565b9150604084013590509250925092565b600060208284031215612a3457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a7a57612a7a612a3b565b604052919050565b600067ffffffffffffffff821115612a9c57612a9c612a3b565b5060051b60200190565b600082601f830112612ab757600080fd5b81356020612acc612ac783612a82565b612a51565b82815260059290921b84018101918181019086841115612aeb57600080fd5b8286015b84811015612b0d57612b00816128e5565b8352918301918301612aef565b509695505050505050565b60008060408385031215612b2b57600080fd5b823567ffffffffffffffff80821115612b4357600080fd5b612b4f86838701612aa6565b9350602091508185013581811115612b6657600080fd5b85019050601f81018613612b7957600080fd5b8035612b87612ac782612a82565b81815260059190911b82018301908381019088831115612ba657600080fd5b928401925b82841015612bc457833582529284019290840190612bab565b80955050505050509250929050565b600080600060408486031215612be857600080fd5b612bf1846128e5565b9250602084013567ffffffffffffffff811115612c0d57600080fd5b612c198682870161292b565b9497909650939450505050565b600060208284031215612c3857600080fd5b612084826128e5565b801515811461127c57600080fd5b600060208284031215612c6157600080fd5b813561208481612c41565b60008060008060608587031215612c8257600080fd5b612c8b856128e5565b935060208501359250604085013567ffffffffffffffff811115612cae57600080fd5b612cba8782880161292b565b95989497509550505050565b60008060408385031215612cd957600080fd5b823567ffffffffffffffff811115612cf057600080fd5b612cfc85828601612aa6565b95602094909401359450505050565b600080600060608486031215612d2057600080fd5b612d29846128e5565b925060208401359150612d3e604085016128e5565b90509250925092565b600080600060608486031215612d5c57600080fd5b612d65846128e5565b92506020840135612d7581612c41565b929592945050506040919091013590565b60008060408385031215612d9957600080fd5b612da2836128e5565b9150612db0602084016128e5565b90509250929050565b600181811c90821680612dcd57607f821691505b60208210811415612dee57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e1d57612e1d612df4565b500190565b6000816000190483118215151615612e3c57612e3c612df4565b500290565b600060208284031215612e5357600080fd5b5051919050565b600060208284031215612e6c57600080fd5b815161208481612c41565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ea157612ea1612df4565b5060010190565b600082612ec557634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612edc57612edc612df4565b50039056fea26469706673582212209af33394c65b1c033c9856392d32857f08225a976a16f5f311f0a5ea6cb4736864736f6c63430008090033000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000a74fc66e75f883ee8e60e287335436ca8e6a303c0000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000000000000000000000000001760cbc623bb35000000000000000000000000000000000000000000000000001760cbc623bb35000000000000000000000000000000000000000000000000000000000803d1ee9d000000000000000000000000000000000000000000000000000000000000000000b4e4f4f444c4520434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e4f4f444c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a74fc66e75f883ee8e60e287335436ca8e6a303c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106104265760003560e01c806388993c8111610229578063b0cfbf161161012e578063dd62ed3e116100b6578063f2fde38b1161007a578063f2fde38b14610be9578063f623bb8b14610c09578063f82fa75614610c1f578063f8c0fd2014610c3c578063fbbf8cc314610c5157600080fd5b8063dd62ed3e14610b4f578063dfdedf6914610b6f578063e58306f914610b8f578063e6c6990a14610baf578063e757223014610bc957600080fd5b8063c3cb97c6116100fd578063c3cb97c614610abc578063c6ee6e3514610adc578063cacf084214610aef578063d266f3a914610b0f578063d83ae33214610b2f57600080fd5b8063b0cfbf1614610a47578063b6a3f59a14610a67578063b94b237614610a87578063c326876814610a9c57600080fd5b8063a1af10ca116101b1578063a9059cbb11610180578063a9059cbb146109bf578063a91bd1a9146109df578063ad1203dc146109ff578063af54001e14610a12578063afb16d1814610a2757600080fd5b8063a1af10ca1461093f578063a1db97821461095f578063a457c2d71461097f578063a7593fb71461099f57600080fd5b80638da5cb5b116101f85780638da5cb5b146108b75780638f770ad0146108d557806391b7f5ed146108ea57806395d89b411461090a57806398ad44171461091f57600080fd5b806388993c8114610857578063891bbe731461086c57806389f26d581461088c5780638d859f3e146108a157600080fd5b80634070a0c91161032f578063627255df116102b757806379ab3c891161028657806379ab3c89146107c057806379cc6790146107d55780637fb8c6d3146107f5578063853828b61461082d57806387491c601461084257600080fd5b8063627255df146107405780636d3de8061461076057806370a0823114610775578063715018a6146107ab57600080fd5b8063464c3428116102fe578063464c3428146106be57806346f41ed5146106de5780634783f0ef146106f85780634c23ce91146107185780635e8306561461072d57600080fd5b80634070a0c91461064957806342966c681461066957806343696f181461068957806345f7e06e146106a957600080fd5b806328ff1b51116103b2578063330067861161038157806333006786146105be57806334d00766146105de57806339509351146105f35780633d3f9c57146106135780633e07311c1461063357600080fd5b806328ff1b511461054c5780632b26a6bf1461056c5780632eb4a7ab1461058c578063313ce567146105a257600080fd5b80631963d0cc116103f95780631963d0cc146104c557806320fab142146104dd5780632181384e146104f757806323b872dd1461050c578063286c81371461052c57600080fd5b806306fdde031461042b5780630825850a14610456578063095ea7b31461048657806318160ddd146104a6575b600080fd5b34801561043757600080fd5b50610440610c87565b60405161044d9190612890565b60405180910390f35b34801561046257600080fd5b50610476610471366004612901565b610d19565b604051901515815260200161044d565b34801561049257600080fd5b506104766104a1366004612901565b610d66565b3480156104b257600080fd5b506002545b60405190815260200161044d565b3480156104d157600080fd5b50600a5460ff16610476565b3480156104e957600080fd5b506007546104769060ff1681565b61050a610505366004612977565b610d7e565b005b34801561051857600080fd5b506104766105273660046129e6565b6110d8565b34801561053857600080fd5b506104b7610547366004612a22565b6110fc565b34801561055857600080fd5b5061050a610567366004612b18565b61111d565b34801561057857600080fd5b5061050a610587366004612a22565b61116c565b34801561059857600080fd5b506104b7600f5481565b3480156105ae57600080fd5b506040516012815260200161044d565b3480156105ca57600080fd5b506104766105d9366004612bd3565b611179565b3480156105ea57600080fd5b50600b546104b7565b3480156105ff57600080fd5b5061047661060e366004612901565b611220565b34801561061f57600080fd5b5061047661062e366004612c26565b611242565b34801561063f57600080fd5b506104b760155481565b34801561065557600080fd5b5061050a610664366004612a22565b611265565b34801561067557600080fd5b5061050a610684366004612a22565b611272565b34801561069557600080fd5b5061050a6106a4366004612c26565b61127f565b3480156106b557600080fd5b5061050a6112f9565b3480156106ca57600080fd5b5061050a6106d9366004612c26565b611313565b3480156106ea57600080fd5b506016546104769060ff1681565b34801561070457600080fd5b5061050a610713366004612a22565b61133f565b34801561072457600080fd5b5061047661136f565b61050a61073b366004612901565b611397565b34801561074c57600080fd5b5061047661075b366004612a22565b6114c4565b34801561076c57600080fd5b5061050a6114e7565b34801561078157600080fd5b506104b7610790366004612c26565b6001600160a01b031660009081526020819052604090205490565b3480156107b757600080fd5b5061050a6114fb565b3480156107cc57600080fd5b5061050a61150f565b3480156107e157600080fd5b5061050a6107f0366004612901565b611526565b34801561080157600080fd5b50601354610815906001600160a01b031681565b6040516001600160a01b03909116815260200161044d565b34801561083957600080fd5b5061050a61153b565b34801561084e57600080fd5b5061050a61156a565b34801561086357600080fd5b50610476611580565b34801561087857600080fd5b50610815610887366004612a22565b6115a6565b34801561089857600080fd5b5061050a6115d0565b3480156108ad57600080fd5b506104b7600d5481565b3480156108c357600080fd5b506005546001600160a01b0316610815565b3480156108e157600080fd5b506104b76115e7565b3480156108f657600080fd5b5061050a610905366004612a22565b611602565b34801561091657600080fd5b5061044061160f565b34801561092b57600080fd5b5061050a61093a366004612c4f565b61161e565b34801561094b57600080fd5b5061047661095a366004612c26565b611640565b34801561096b57600080fd5b5061050a61097a366004612901565b61168d565b34801561098b57600080fd5b5061047661099a366004612901565b6117d9565b3480156109ab57600080fd5b5061050a6109ba366004612a22565b611817565b3480156109cb57600080fd5b506104766109da366004612901565b611850565b3480156109eb57600080fd5b5061050a6109fa366004612c26565b61185e565b61050a610a0d366004612c6c565b6118de565b348015610a1e57600080fd5b50600c546104b7565b348015610a3357600080fd5b5061050a610a42366004612cc6565b611a2f565b348015610a5357600080fd5b50610476610a62366004612a22565b611aa6565b348015610a7357600080fd5b5061050a610a82366004612a22565b611adf565b348015610a9357600080fd5b5061050a611b0f565b348015610aa857600080fd5b5061050a610ab7366004612c4f565b611b23565b348015610ac857600080fd5b5061050a610ad7366004612c4f565b611b3e565b61050a610aea366004612d0b565b611b59565b348015610afb57600080fd5b5061050a610b0a366004612c26565b611e89565b348015610b1b57600080fd5b506104b7610b2a366004612c26565b611eb2565b348015610b3b57600080fd5b5061050a610b4a366004612d47565b611ef9565b348015610b5b57600080fd5b506104b7610b6a366004612d86565b611f30565b348015610b7b57600080fd5b5061050a610b8a366004612c26565b611f5b565b348015610b9b57600080fd5b5061050a610baa366004612901565b611fd1565b348015610bbb57600080fd5b506010546104769060ff1681565b348015610bd557600080fd5b506104b7610be4366004612a22565b612028565b348015610bf557600080fd5b5061050a610c04366004612c26565b61208b565b348015610c1557600080fd5b506104b7600e5481565b348015610c2b57600080fd5b50600a54610100900460ff16610476565b348015610c4857600080fd5b5061050a6120c3565b348015610c5d57600080fd5b506104b7610c6c366004612c26565b6001600160a01b031660009081526009602052604090205490565b606060038054610c9690612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc290612db9565b8015610d0f5780601f10610ce457610100808354040283529160200191610d0f565b820191906000526020600020905b815481529060010190602001808311610cf257829003601f168201915b5050505050905090565b600a5460009060ff16610d2e57506001610d60565b600b5482610d51856001600160a01b031660009081526009602052604090205490565b610d5b9190612e0a565b111590505b92915050565b600033610d748185856120de565b5060019392505050565b610d8661136f565b610da3576040516309c7220160e31b815260040160405180910390fd5b670de0b6b3a7640000841015610dcc5760405163b562e8dd60e01b815260040160405180910390fd5b610dd7858484611179565b610df45760405163097b24df60e41b815260040160405180910390fd5b610dfd846114c4565b610e1a576040516393eeb41560e01b815260040160405180910390fd5b610e248585610d19565b610e41576040516366be767160e11b815260040160405180910390fd5b610e4a84611aa6565b610e675760405163a4875a4960e01b815260040160405180910390fd5b600e543414610e895760405163078d696560e31b815260040160405180910390fd5b610e9281611242565b610eaf57604051636c501c9960e11b815260040160405180910390fd5b600084610ebb83611eb2565b610ec59190612e22565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b158015610f0e57600080fd5b505afa158015610f22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f469190612e41565b1015610f6557604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015610faf57600080fd5b505afa158015610fc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe79190612e41565b10156110065760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612e5a565b9050806110b257604051633c9fd93960e21b815260040160405180910390fd5b6110ba61218d565b6110c488886121cf565b6110ce88886121f1565b5050505050505050565b6000336110e68582856122a1565b6110f18585856122e6565b506001949350505050565b6014818154811061110c57600080fd5b600091825260209091200154905081565b6111256123fe565b611131601260006127bd565b61113d601460006127bd565b81516111509060129060208501906127db565b508051611164906014906020840190612840565b505051601555565b6111746123fe565b600c55565b600f5460009061119c576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061121784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050612489565b95945050505050565b600033610d748185856112338383611f30565b61123d9190612e0a565b6120de565b6001600160a01b031660009081526011602052604090205460ff16151560011490565b61126d6123fe565b600b55565b61127c338261249f565b50565b61128761257a565b6001600160a01b0381166112ae576040516322646a9760e21b815260040160405180910390fd5b6112b781611640565b156112d557604051638afaeb9d60e01b815260040160405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6113016123fe565b6016805462ffff001916610100179055565b61131b6123fe565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6113476123fe565b600f5481141561136a5760405163a28a88c160e01b815260040160405180910390fd5b600f55565b60165460009062010000900460ff1680156113925750601654610100900460ff16155b905090565b60165460ff16156113bb576040516306717a3b60e51b815260040160405180910390fd5b670de0b6b3a76400008110156113e45760405163b562e8dd60e01b815260040160405180910390fd5b6113ec611580565b611409576040516306717a3b60e51b815260040160405180910390fd5b611412816114c4565b61142f576040516393eeb41560e01b815260040160405180910390fd5b61143881611aa6565b6114555760405163a4875a4960e01b815260040160405180910390fd5b61145f8282610d19565b61147c576040516366be767160e11b815260040160405180910390fd5b61148581612028565b34146114a45760405163078d696560e31b815260040160405180910390fd5b6114ac61218d565b6114b682826121cf565b6114c082826121f1565b5050565b600a54600090610100900460ff166114de57506001919050565b50600c54101590565b6114ef6123fe565b6010805460ff19169055565b61150361257a565b61150d60006125d4565b565b6115176123fe565b6010805460ff19166001179055565b6115318233836122a1565b6114c0828261249f565b6115436123fe565b47611561576040516363868c5560e11b815260040160405180910390fd5b61150d47612626565b6115726123fe565b6016805462ffff0019169055565b601654600090610100900460ff16801561139257505060165462010000900460ff161590565b601281815481106115b657600080fd5b6000918252602090912001546001600160a01b0316905081565b6115d86123fe565b6016805460ff19166001179055565b60075460009060ff166115fb575060025490565b5060085490565b61160a6123fe565b600d55565b606060048054610c9690612db9565b6116266123fe565b600a80549115156101000261ff0019909216919091179055565b60006001600160a01b038216611669576040516322646a9760e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205460ff16151560011490565b6116956123fe565b806116b3576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b1580156116f657600080fd5b505afa15801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e9190612e41565b101561174d57604051631642df1760e21b815260040160405180910390fd5b60135460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b15801561179b57600080fd5b505af11580156117af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d39190612e5a565b50505050565b600033816117e78286611f30565b90508381101561180a57604051631642df1760e21b815260040160405180910390fd5b6110f182868684036120de565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e11461184b57604051639b96b05160e01b815260040160405180910390fd5b600e55565b600033610d748185856122e6565b6118666123fe565b6001600160a01b03811661188d576040516322646a9760e21b815260040160405180910390fd5b6013546001600160a01b03828116911614156118bc5760405163a28a88c160e01b815260040160405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60165460ff1615611902576040516309c7220160e31b815260040160405180910390fd5b670de0b6b3a764000083101561192b5760405163b562e8dd60e01b815260040160405180910390fd5b61193361136f565b611950576040516309c7220160e31b815260040160405180910390fd5b61195b848383611179565b6119785760405163097b24df60e41b815260040160405180910390fd5b611981836114c4565b61199e576040516393eeb41560e01b815260040160405180910390fd5b6119a88484610d19565b6119c5576040516366be767160e11b815260040160405180910390fd5b6119ce83611aa6565b6119eb5760405163a4875a4960e01b815260040160405180910390fd5b6119f483612028565b3414611a135760405163078d696560e31b815260040160405180910390fd5b611a1b61218d565b611a2584846121cf565b6117d384846121f1565b611a376123fe565b670de0b6b3a7640000811015611a605760405163b562e8dd60e01b815260040160405180910390fd5b60005b8251811015611aa157611a8f838281518110611a8157611a81612e77565b6020026020010151836121f1565b80611a9981612e8d565b915050611a63565b505050565b60075460009060ff16611abb57506001919050565b611ac36115e7565b82611acd60025490565b611ad79190612e0a565b111592915050565b611ae76123fe565b600254811015611b0a5760405163cc67044560e01b815260040160405180910390fd5b600855565b611b176123fe565b6016805460ff19169055565b611b2b6123fe565b6007805460ff1916911515919091179055565b611b466123fe565b600a805460ff1916911515919091179055565b670de0b6b3a7640000821015611b825760405163b562e8dd60e01b815260040160405180910390fd5b611b8b82611aa6565b611ba85760405163a4875a4960e01b815260040160405180910390fd5b611bb0611580565b611bcd576040516306717a3b60e51b815260040160405180910390fd5b611bd6826114c4565b611bf3576040516393eeb41560e01b815260040160405180910390fd5b611bfd8383610d19565b611c1a576040516366be767160e11b815260040160405180910390fd5b600e543414611c3c5760405163078d696560e31b815260040160405180910390fd5b611c4581611242565b611c6257604051636c501c9960e11b815260040160405180910390fd5b600082611c6e83611eb2565b611c789190612e22565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611cc157600080fd5b505afa158015611cd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf99190612e41565b1015611d1857604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611d6257600080fd5b505afa158015611d76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9a9190612e41565b1015611db95760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611e0d57600080fd5b505af1158015611e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e459190612e5a565b905080611e6557604051633c9fd93960e21b815260040160405180910390fd5b611e6d61218d565b611e7786866121cf565b611e8186866121f1565b505050505050565b611e916123fe565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000611ebd82611242565b611eda57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526011602052604090206001015490565b611f016123fe565b6001600160a01b03929092166000908152601160205260409020805460ff191691151591909117815560010155565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611f6361257a565b6001600160a01b038116611f8a576040516322646a9760e21b815260040160405180910390fd5b611f9381611640565b611fb057604051638afaeb9d60e01b815260040160405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611fd96123fe565b670de0b6b3a76400008110156120025760405163b562e8dd60e01b815260040160405180910390fd5b61200b81611aa6565b6114b65760405163a4875a4960e01b815260040160405180910390fd5b6000670de0b6b3a764000082101561205357604051631cdaa1ed60e31b815260040160405180910390fd5b6000612067670de0b6b3a764000084612ea8565b9050600e5481600d5461207a9190612e22565b6120849190612e0a565b9392505050565b61209361257a565b6001600160a01b0381166120ba576040516322646a9760e21b815260040160405180910390fd5b61127c816125d4565b6120cb6123fe565b6016805462ffff00191662010000179055565b6001600160a01b038316612105576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b03821661212c576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600e5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f1935050505015801561127c573d6000803e3d6000fd5b6001600160a01b03909116600090815260096020526040902080549091019055565b6001600160a01b038216612218576040516322646a9760e21b815260040160405180910390fd5b806002600082825461222a9190612e0a565b90915550506001600160a01b03821660009081526020819052604081208054839290612257908490612e0a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006122ad8484611f30565b905060001981146117d357818110156122d957604051631642df1760e21b815260040160405180910390fd5b6117d384848484036120de565b6001600160a01b03831661230d576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b038216612334576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0383166000908152602081905260409020548181101561236e57604051631642df1760e21b815260040160405180910390fd5b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123a5908490612e0a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123f191815260200190565b60405180910390a36117d3565b6005546001600160a01b0316339081149060009061241b90611640565b905081806124265750805b6114c05760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b60648201526084015b60405180910390fd5b60008261249685846126b3565b14949350505050565b6001600160a01b0382166124c6576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152602081905260409020548181101561250057604051631642df1760e21b815260040160405180910390fd5b6001600160a01b038316600090815260208190526040812083830390556002805484929061252f908490612eca565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6005546001600160a01b0316331461150d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401612480565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b6015548110156114c0576126a16012828154811061264957612649612e77565b9060005260206000200160009054906101000a90046001600160a01b031660646014848154811061267c5761267c612e77565b9060005260206000200154856126929190612e22565b61269c9190612ea8565b612727565b806126ab81612e8d565b915050612629565b600081815b845181101561271f5760008582815181106126d5576126d5612e77565b602002602001015190508083116126fb576000838152602082905260409020925061270c565b600081815260208490526040902092505b508061271781612e8d565b9150506126b8565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612774576040519150601f19603f3d011682016040523d82523d6000602084013e612779565b606091505b5050905080611aa15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401612480565b508054600082559060005260206000209081019061127c919061287b565b828054828255906000526020600020908101928215612830579160200282015b8281111561283057825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906127fb565b5061283c92915061287b565b5090565b828054828255906000526020600020908101928215612830579160200282015b82811115612830578251825591602001919060010190612860565b5b8082111561283c576000815560010161287c565b600060208083528351808285015260005b818110156128bd578581018301518582016040015282016128a1565b818111156128cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146128fc57600080fd5b919050565b6000806040838503121561291457600080fd5b61291d836128e5565b946020939093013593505050565b60008083601f84011261293d57600080fd5b50813567ffffffffffffffff81111561295557600080fd5b6020830191508360208260051b850101111561297057600080fd5b9250929050565b60008060008060006080868803121561298f57600080fd5b612998866128e5565b945060208601359350604086013567ffffffffffffffff8111156129bb57600080fd5b6129c78882890161292b565b90945092506129da9050606087016128e5565b90509295509295909350565b6000806000606084860312156129fb57600080fd5b612a04846128e5565b9250612a12602085016128e5565b9150604084013590509250925092565b600060208284031215612a3457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a7a57612a7a612a3b565b604052919050565b600067ffffffffffffffff821115612a9c57612a9c612a3b565b5060051b60200190565b600082601f830112612ab757600080fd5b81356020612acc612ac783612a82565b612a51565b82815260059290921b84018101918181019086841115612aeb57600080fd5b8286015b84811015612b0d57612b00816128e5565b8352918301918301612aef565b509695505050505050565b60008060408385031215612b2b57600080fd5b823567ffffffffffffffff80821115612b4357600080fd5b612b4f86838701612aa6565b9350602091508185013581811115612b6657600080fd5b85019050601f81018613612b7957600080fd5b8035612b87612ac782612a82565b81815260059190911b82018301908381019088831115612ba657600080fd5b928401925b82841015612bc457833582529284019290840190612bab565b80955050505050509250929050565b600080600060408486031215612be857600080fd5b612bf1846128e5565b9250602084013567ffffffffffffffff811115612c0d57600080fd5b612c198682870161292b565b9497909650939450505050565b600060208284031215612c3857600080fd5b612084826128e5565b801515811461127c57600080fd5b600060208284031215612c6157600080fd5b813561208481612c41565b60008060008060608587031215612c8257600080fd5b612c8b856128e5565b935060208501359250604085013567ffffffffffffffff811115612cae57600080fd5b612cba8782880161292b565b95989497509550505050565b60008060408385031215612cd957600080fd5b823567ffffffffffffffff811115612cf057600080fd5b612cfc85828601612aa6565b95602094909401359450505050565b600080600060608486031215612d2057600080fd5b612d29846128e5565b925060208401359150612d3e604085016128e5565b90509250925092565b600080600060608486031215612d5c57600080fd5b612d65846128e5565b92506020840135612d7581612c41565b929592945050506040919091013590565b60008060408385031215612d9957600080fd5b612da2836128e5565b9150612db0602084016128e5565b90509250929050565b600181811c90821680612dcd57607f821691505b60208210811415612dee57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e1d57612e1d612df4565b500190565b6000816000190483118215151615612e3c57612e3c612df4565b500290565b600060208284031215612e5357600080fd5b5051919050565b600060208284031215612e6c57600080fd5b815161208481612c41565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ea157612ea1612df4565b5060010190565b600082612ec557634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612edc57612edc612df4565b50039056fea26469706673582212209af33394c65b1c033c9856392d32857f08225a976a16f5f311f0a5ea6cb4736864736f6c63430008090033

Deployed Bytecode Sourcemap

39096:7368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9708:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37240:207;;;;;;;;;;-1:-1:-1;37240:207:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;37240:207:0;1053:187:1;12059:201:0;;;;;;;;;;-1:-1:-1;12059:201:0;;;;;:::i;:::-;;:::i;10828:108::-;;;;;;;;;;-1:-1:-1;10916:12:0;;10828:108;;;1391:25:1;;;1379:2;1364:18;10828:108:0;1245:177:1;36109:94:0;;;;;;;;;;-1:-1:-1;36180:15:0;;;;36109:94;;26201:23;;;;;;;;;;-1:-1:-1;26201:23:0;;;;;;;;45052:1409;;;;;;:::i;:::-;;:::i;:::-;;12840:295;;;;;;;;;;-1:-1:-1;12840:295:0;;;;;:::i;:::-;;:::i;29904:28::-;;;;;;;;;;-1:-1:-1;29904:28:0;;;;;:::i;:::-;;:::i;34498:291::-;;;;;;;;;;-1:-1:-1;34498:291:0;;;;;:::i;:::-;;:::i;35435:118::-;;;;;;;;;;-1:-1:-1;35435:118:0;;;;;:::i;:::-;;:::i;28277:25::-;;;;;;;;;;;;;;;;10670:93;;;;;;;;;;-1:-1:-1;10670:93:0;;10753:2;5716:36:1;;5704:2;5689:18;10670:93:0;5574:184:1;28945:288:0;;;;;;;;;;-1:-1:-1;28945:288:0;;;;;:::i;:::-;;:::i;36370:88::-;;;;;;;;;;-1:-1:-1;36443:7:0;;36370:88;;13544:238;;;;;;;;;;-1:-1:-1;13544:238:0;;;;;:::i;:::-;;:::i;31517:170::-;;;;;;;;;;-1:-1:-1;31517:170:0;;;;;:::i;:::-;;:::i;29937:34::-;;;;;;;;;;;;;;;;35202:104;;;;;;;;;;-1:-1:-1;35202:104:0;;;;;:::i;:::-;;:::i;20904:91::-;;;;;;;;;;-1:-1:-1;20904:91:0;;;;;:::i;:::-;;:::i;24716:208::-;;;;;;;;;;-1:-1:-1;24716:208:0;;;;;:::i;:::-;;:::i;38546:125::-;;;;;;;;;;;;;:::i;33071:161::-;;;;;;;;;;-1:-1:-1;33071:161:0;;;;;:::i;:::-;;:::i;29976:32::-;;;;;;;;;;-1:-1:-1;29976:32:0;;;;;;;;28525:185;;;;;;;;;;-1:-1:-1;28525:185:0;;;;;:::i;:::-;;:::i;38423:115::-;;;;;;;;;;;;;:::i;41418:638::-;;;;;;:::i;:::-;;:::i;35807:163::-;;;;;;;;;;-1:-1:-1;35807:163:0;;;;;:::i;:::-;;:::i;29352:103::-;;;;;;;;;;;;;:::i;10999:127::-;;;;;;;;;;-1:-1:-1;10999:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11100:18:0;11073:7;11100:18;;;;;;;;;;;;10999:127;23309:103;;;;;;;;;;;;;:::i;29243:101::-;;;;;;;;;;;;;:::i;21314:164::-;;;;;;;;;;-1:-1:-1;21314:164:0;;;;;:::i;:::-;;:::i;29872:27::-;;;;;;;;;;-1:-1:-1;29872:27:0;;;;-1:-1:-1;;;;;29872:27:0;;;;;;-1:-1:-1;;;;;6819:32:1;;;6801:51;;6789:2;6774:18;29872:27:0;6655:203:1;30015:162:0;;;;;;;;;;;;;:::i;38902:124::-;;;;;;;;;;;;;:::i;38303:112::-;;;;;;;;;;;;;:::i;29834:33::-;;;;;;;;;;-1:-1:-1;29834:33:0;;;;;:::i;:::-;;:::i;33788:97::-;;;;;;;;;;;;;:::i;27188:30::-;;;;;;;;;;;;;;;;22661:87;;;;;;;;;;-1:-1:-1;22734:6:0;;-1:-1:-1;;;;;22734:6:0;22661:87;;26995:146;;;;;;;;;;;;;:::i;27359:90::-;;;;;;;;;;-1:-1:-1;27359:90:0;;;;;:::i;:::-;;:::i;9927:104::-;;;;;;;;;;;;;:::i;35561:120::-;;;;;;;;;;-1:-1:-1;35561:120:0;;;;;:::i;:::-;;:::i;25421:183::-;;;;;;;;;;-1:-1:-1;25421:183:0;;;;;:::i;:::-;;:::i;30922:417::-;;;;;;;;;;-1:-1:-1;30922:417:0;;;;;:::i;:::-;;:::i;14285:423::-;;;;;;;;;;-1:-1:-1;14285:423:0;;;;;:::i;:::-;;:::i;28038:135::-;;;;;;;;;;-1:-1:-1;28038:135:0;;;;;:::i;:::-;;:::i;11332:193::-;;;;;;;;;;-1:-1:-1;11332:193:0;;;;;:::i;:::-;;:::i;34231:261::-;;;;;;;;;;-1:-1:-1;34231:261:0;;;;;:::i;:::-;;:::i;43946:755::-;;;;;;:::i;:::-;;:::i;36854:94::-;;;;;;;;;;-1:-1:-1;36928:12:0;;36854:94;;40909:239;;;;;;;;;;-1:-1:-1;40909:239:0;;;;;:::i;:::-;;:::i;26413:179::-;;;;;;;;;;-1:-1:-1;26413:179:0;;;;;:::i;:::-;;:::i;26815:172::-;;;;;;;;;;-1:-1:-1;26815:172:0;;;;;:::i;:::-;;:::i;33972:99::-;;;;;;;;;;;;;:::i;26300:105::-;;;;;;;;;;-1:-1:-1;26300:105:0;;;;;:::i;:::-;;:::i;35314:113::-;;;;;;;;;;-1:-1:-1;35314:113:0;;;;;:::i;:::-;;:::i;42390:1274::-;;;;;;:::i;:::-;;:::i;33539:163::-;;;;;;;;;;-1:-1:-1;33539:163:0;;;;;:::i;:::-;;:::i;31845:253::-;;;;;;;;;;-1:-1:-1;31845:253:0;;;;;:::i;:::-;;:::i;32464:304::-;;;;;;;;;;-1:-1:-1;32464:304:0;;;;;:::i;:::-;;:::i;11588:151::-;;;;;;;;;;-1:-1:-1;11588:151:0;;;;;:::i;:::-;;:::i;25067:215::-;;;;;;;;;;-1:-1:-1;25067:215:0;;;;;:::i;:::-;;:::i;40687:214::-;;;;;;;;;;-1:-1:-1;40687:214:0;;;;;:::i;:::-;;:::i;28309:37::-;;;;;;;;;;-1:-1:-1;28309:37:0;;;;;;;;27720:217;;;;;;;;;;-1:-1:-1;27720:217:0;;;;;:::i;:::-;;:::i;23567:183::-;;;;;;;;;;-1:-1:-1;23567:183:0;;;;;:::i;:::-;;:::i;27223:44::-;;;;;;;;;;;;;;;;36605:102;;;;;;;;;;-1:-1:-1;36682:17:0;;;;;;;36605:102;;38679:128;;;;;;;;;;;;;:::i;37580:113::-;;;;;;;;;;-1:-1:-1;37580:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;37668:17:0;37641:7;37668:17;;;:7;:17;;;;;;;37580:113;9708:100;9762:13;9795:5;9788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9708:100;:::o;37240:207::-;37347:15;;37326:4;;37347:15;;37343:36;;-1:-1:-1;37372:4:0;37365:11;;37343:36;37432:7;;37421;37396:22;37409:8;-1:-1:-1;;;;;37668:17:0;37641:7;37668:17;;;:7;:17;;;;;;;37580:113;37396:22;:32;;;;:::i;:::-;:43;;37389:50;;37240:207;;;;;:::o;12059:201::-;12142:4;3820:10;12198:32;3820:10;12214:7;12223:6;12198:8;:32::i;:::-;-1:-1:-1;12248:4:0;;12059:201;-1:-1:-1;;;12059:201:0:o;45052:1409::-;45199:17;:15;:17::i;:::-;45195:51;;45225:21;;-1:-1:-1;;;45225:21:0;;;;;;;;;;;45195:51;45270:7;45260;:17;45257:47;;;45286:18;;-1:-1:-1;;;45286:18:0;;;;;;;;;;;45257:47;45319:32;45333:3;45338:12;;45319:13;:32::i;:::-;45315:68;;45360:23;;-1:-1:-1;;;45360:23:0;;;;;;;;;;;45315:68;45398:21;45411:7;45398:12;:21::i;:::-;45394:58;;45428:24;;-1:-1:-1;;;45428:24:0;;;;;;;;;;;45394:58;45467:34;45488:3;45493:7;45467:20;:34::i;:::-;45463:68;;45510:21;;-1:-1:-1;;;45510:21:0;;;;;;;;;;;45463:68;45546:22;45560:7;45546:13;:22::i;:::-;45542:48;;45577:13;;-1:-1:-1;;;45577:13:0;;;;;;;;;;;45542:48;45617:12;;45604:9;:25;45601:53;;45638:16;;-1:-1:-1;;;45638:16:0;;;;;;;;;;;45601:53;45725:47;45752:19;45725:26;:47::i;:::-;45721:83;;45781:23;;-1:-1:-1;;;45781:23:0;;;;;;;;;;;45721:83;45815:27;45889:7;45845:41;45866:19;45845:20;:41::i;:::-;:51;;;;:::i;:::-;45980:27;;-1:-1:-1;;;45980:27:0;;-1:-1:-1;;;;;6819:32:1;;;45980:27:0;;;6801:51:1;45815:81:0;;-1:-1:-1;45936:19:0;;45815:81;;45980:22;;;;;;6774:18:1;;45980:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;45977:87;;;46038:26;;-1:-1:-1;;;46038:26:0;;;;;;;;;;;45977:87;46078:42;;-1:-1:-1;;;46078:42:0;;-1:-1:-1;;;;;10465:15:1;;;46078:42:0;;;10447:34:1;46114:4:0;10497:18:1;;;10490:43;46123:19:0;;46078:22;;;;;;10382:18:1;;46078:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;46075:104;;;46151:28;;-1:-1:-1;;;46151:28:0;;;;;;;;;;;46075:104;46224:66;;-1:-1:-1;;;46224:66:0;;-1:-1:-1;;;;;10802:15:1;;;46224:66:0;;;10784:34:1;46263:4:0;10834:18:1;;;10827:43;10886:18;;;10879:34;;;46200:21:0;;46224:25;;;;;;10719:18:1;;46224:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46200:90;;46305:16;46301:50;;46330:21;;-1:-1:-1;;;46330:21:0;;;;;;;;;;;46301:50;46364:17;:15;:17::i;:::-;46392:31;46410:3;46415:7;46392:17;:31::i;:::-;46434:19;46440:3;46445:7;46434:5;:19::i;:::-;45184:1277;;;45052:1409;;;;;:::o;12840:295::-;12971:4;3820:10;13029:38;13045:4;3820:10;13060:6;13029:15;:38::i;:::-;13078:27;13088:4;13094:2;13098:6;13078:9;:27::i;:::-;-1:-1:-1;13123:4:0;;12840:295;-1:-1:-1;;;;12840:295:0:o;29904:28::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29904:28:0;:::o;34498:291::-;25957:18;:16;:18::i;:::-;34612:23:::1;34619:16;;34612:23;:::i;:::-;34644:18;34651:11;;34644:18;:::i;:::-;34671:31:::0;;::::1;::::0;:16:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;34711:22:0;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;34764:19:0;34742::::1;:41:::0;34498:291::o;35435:118::-;25957:18;:16;:18::i;:::-;35517:12:::1;:28:::0;35435:118::o;28945:288::-;29054:10;;29034:4;;29051:46;;29078:19;;-1:-1:-1;;;29078:19:0;;;;;;;;;;;29051:46;29133:21;;-1:-1:-1;;11323:2:1;11319:15;;;11315:53;29133:21:0;;;11303:66:1;29108:12:0;;11385::1;;29133:21:0;;;;;;;;;;;;29123:32;;;;;;29108:47;;29175:50;29194:12;;29175:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29208:10:0;;;-1:-1:-1;29220:4:0;;-1:-1:-1;29175:18:0;:50::i;:::-;29168:57;28945:288;-1:-1:-1;;;;;28945:288:0:o;13544:238::-;13632:4;3820:10;13688:64;3820:10;13704:7;13741:10;13713:25;3820:10;13704:7;13713:9;:25::i;:::-;:38;;;;:::i;:::-;13688:8;:64::i;31517:170::-;-1:-1:-1;;;;;31622:42:0;31602:4;31622:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;31517:170::o;35202:104::-;25957:18;:16;:18::i;:::-;35277:7:::1;:21:::0;35202:104::o;20904:91::-;20960:27;3820:10;20980:6;20960:5;:27::i;:::-;20904:91;:::o;24716:208::-;22547:13;:11;:13::i;:::-;-1:-1:-1;;;;;24780:22:0;::::1;24777:55;;24811:21;;-1:-1:-1::0;;;24811:21:0::1;;;;;;;;;;;24777:55;24842:16;24849:8;24842:6;:16::i;:::-;24839:47;;;24867:19;;-1:-1:-1::0;;;24867:19:0::1;;;;;;;;;;;24839:47;-1:-1:-1::0;;;;;24897:14:0::1;;::::0;;;:4:::1;:14;::::0;;;;:21;;-1:-1:-1;;24897:21:0::1;24914:4;24897:21;::::0;;24716:208::o;38546:125::-;25957:18;:16;:18::i;:::-;38606:14:::1;:21:::0;;-1:-1:-1;;38638:25:0;38606:21:::1;38638:25:::0;;;38546:125::o;33071:161::-;25957:18;:16;:18::i;:::-;-1:-1:-1;;;;;33168:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;33168:58:0::1;33222:4;33168:58;::::0;;33071:161::o;28525:185::-;25957:18;:16;:18::i;:::-;28630:10:::1;;28612:14;:28;28609:55;;;28649:15;;-1:-1:-1::0;;;28649:15:0::1;;;;;;;;;;;28609:55;28675:10;:27:::0;28525:185::o;38423:115::-;38494:17;;38471:4;;38494:17;;;;;:36;;;;-1:-1:-1;38516:14:0;;;;;;;38515:15;38494:36;38487:43;;38423:115;:::o;41418:638::-;41495:20;;;;41492:53;;;41524:21;;-1:-1:-1;;;41524:21:0;;;;;;;;;;;41492:53;41569:7;41559;:17;41556:47;;;41585:18;;-1:-1:-1;;;41585:18:0;;;;;;;;;;;41556:47;41618:14;:12;:14::i;:::-;41614:48;;41641:21;;-1:-1:-1;;;41641:21:0;;;;;;;;;;;41614:48;41677:21;41690:7;41677:12;:21::i;:::-;41673:58;;41707:24;;-1:-1:-1;;;41707:24:0;;;;;;;;;;;41673:58;41746:22;41760:7;41746:13;:22::i;:::-;41742:48;;41777:13;;-1:-1:-1;;;41777:13:0;;;;;;;;;;;41742:48;41805:34;41826:3;41831:7;41805:20;:34::i;:::-;41801:68;;41848:21;;-1:-1:-1;;;41848:21:0;;;;;;;;;;;41801:68;41896:17;41905:7;41896:8;:17::i;:::-;41883:9;:30;41880:58;;41922:16;;-1:-1:-1;;;41922:16:0;;;;;;;;;;;41880:58;41959:17;:15;:17::i;:::-;41987:31;42005:3;42010:7;41987:17;:31::i;:::-;42029:19;42035:3;42040:7;42029:5;:19::i;:::-;41418:638;;:::o;35807:163::-;35888:17;;35867:4;;35888:17;;;;;35884:38;;-1:-1:-1;35915:4:0;;35807:163;-1:-1:-1;35807:163:0:o;35884:38::-;-1:-1:-1;35950:12:0;;-1:-1:-1;35939:23:0;;35807:163::o;29352:103::-;25957:18;:16;:18::i;:::-;29422:17:::1;:25:::0;;-1:-1:-1;;29422:25:0::1;::::0;;29352:103::o;23309:::-;22547:13;:11;:13::i;:::-;23374:30:::1;23401:1;23374:18;:30::i;:::-;23309:103::o:0;29243:101::-;25957:18;:16;:18::i;:::-;29312:17:::1;:24:::0;;-1:-1:-1;;29312:24:0::1;29332:4;29312:24;::::0;;29243:101::o;21314:164::-;21391:46;21407:7;3820:10;21430:6;21391:15;:46::i;:::-;21448:22;21454:7;21463:6;21448:5;:22::i;30015:162::-;25957:18;:16;:18::i;:::-;30073:21:::1;30070:57;;30108:19;;-1:-1:-1::0;;;30108:19:0::1;;;;;;;;;;;30070:57;30136:35;30149:21;30136:12;:35::i;38902:124::-:0;25957:18;:16;:18::i;:::-;38960:17:::1;:25:::0;;-1:-1:-1;;38996:22:0;;;38902:124::o;38303:112::-;38371:14;;38348:4;;38371:14;;;;;:36;;;;-1:-1:-1;;38390:17:0;;;;;;;38389:18;;38303:112::o;29834:33::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29834:33:0;;-1:-1:-1;29834:33:0;:::o;33788:97::-;25957:18;:16;:18::i;:::-;33852:20:::1;:27:::0;;-1:-1:-1;;33852:27:0::1;33875:4;33852:27;::::0;;33788:97::o;26995:146::-;27069:11;;27045:7;;27069:11;;27065:47;;-1:-1:-1;10916:12:0;;;38423:115::o;27065:47::-;-1:-1:-1;27129:4:0;;;26995:146::o;27359:90::-;25957:18;:16;:18::i;:::-;27426:5:::1;:17:::0;27359:90::o;9927:104::-;9983:13;10016:7;10009:14;;;;;:::i;35561:120::-;25957:18;:16;:18::i;:::-;35643:17:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;35643:30:0;;::::1;::::0;;;::::1;::::0;;35561:120::o;25421:183::-;25491:4;-1:-1:-1;;;;;25510:22:0;;25507:55;;25541:21;;-1:-1:-1;;;25541:21:0;;;;;;;;;;;25507:55;-1:-1:-1;;;;;;25576:14:0;;;;;:4;:14;;;;;;;;:22;;:14;:22;;25421:183::o;30922:417::-;25957:18;:16;:18::i;:::-;31029:22;31026:53:::1;;31060:19;;-1:-1:-1::0;;;31060:19:0::1;;;;;;;;;;;31026:53;31141:38;::::0;-1:-1:-1;;;31141:38:0;;31173:4:::1;31141:38;::::0;::::1;6801:51:1::0;31116:14:0;;31182:17;;-1:-1:-1;;;;;31141:23:0;::::1;::::0;::::1;::::0;6774:18:1;;31141:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;31138:96;;;31208:26;;-1:-1:-1::0;;;31208:26:0::1;;;;;;;;;;;31138:96;31264:12;::::0;31241:55:::1;::::0;-1:-1:-1;;;31241:55:0;;-1:-1:-1;;;;;31264:12:0;;::::1;31241:55;::::0;::::1;11582:51:1::0;11649:18;;;11642:34;;;31241:22:0;;::::1;::::0;::::1;::::0;11555:18:1;;31241:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31019:320;30922:417:::0;;:::o;14285:423::-;14378:4;3820:10;14378:4;14461:25;3820:10;14478:7;14461:9;:25::i;:::-;14434:52;;14519:15;14500:16;:34;14497:72;;;14543:26;;-1:-1:-1;;;14543:26:0;;;;;;;;;;;14497:72;14605:60;14614:5;14621:7;14649:15;14630:16;:34;14605:8;:60::i;28038:135::-;3820:10;27310:42;28093:24;28090:51;;28126:15;;-1:-1:-1;;;28126:15:0;;;;;;;;;;;28090:51;28148:12;:19;28038:135::o;11332:193::-;11411:4;3820:10;11467:28;3820:10;11484:2;11488:6;11467:9;:28::i;34231:261::-;25957:18;:16;:18::i;:::-;-1:-1:-1;;;;;34322:30:0;::::1;34319:63;;34361:21;;-1:-1:-1::0;;;34361:21:0::1;;;;;;;;;;;34319:63;34412:12;::::0;-1:-1:-1;;;;;34392:32:0;;::::1;34412:12:::0;::::1;34392:32;34389:59;;;34433:15;;-1:-1:-1::0;;;34433:15:0::1;;;;;;;;;;;34389:59;34455:12;:31:::0;;-1:-1:-1;;;;;;34455:31:0::1;-1:-1:-1::0;;;;;34455:31:0;;;::::1;::::0;;;::::1;::::0;;34231:261::o;43946:755::-;44058:20;;;;44055:53;;;44087:21;;-1:-1:-1;;;44087:21:0;;;;;;;;;;;44055:53;44132:7;44122;:17;44119:47;;;44148:18;;-1:-1:-1;;;44148:18:0;;;;;;;;;;;44119:47;44181:17;:15;:17::i;:::-;44177:51;;44207:21;;-1:-1:-1;;;44207:21:0;;;;;;;;;;;44177:51;44243:32;44257:3;44262:12;;44243:13;:32::i;:::-;44239:68;;44284:23;;-1:-1:-1;;;44284:23:0;;;;;;;;;;;44239:68;44322:21;44335:7;44322:12;:21::i;:::-;44318:58;;44352:24;;-1:-1:-1;;;44352:24:0;;;;;;;;;;;44318:58;44391:34;44412:3;44417:7;44391:20;:34::i;:::-;44387:68;;44434:21;;-1:-1:-1;;;44434:21:0;;;;;;;;;;;44387:68;44470:22;44484:7;44470:13;:22::i;:::-;44466:48;;44501:13;;-1:-1:-1;;;44501:13:0;;;;;;;;;;;44466:48;44541:17;44550:7;44541:8;:17::i;:::-;44528:9;:30;44525:58;;44567:16;;-1:-1:-1;;;44567:16:0;;;;;;;;;;;44525:58;44604:17;:15;:17::i;:::-;44632:31;44650:3;44655:7;44632:17;:31::i;:::-;44674:19;44680:3;44685:7;44674:5;:19::i;40909:239::-;25957:18;:16;:18::i;:::-;41012:7:::1;41005:4;:14;41002:44;;;41028:18;;-1:-1:-1::0;;;41028:18:0::1;;;;;;;;;;;41002:44;41061:6;41057:84;41075:4;:11;41071:1;:15;41057:84;;;41109:20;41115:4;41120:1;41115:7;;;;;;;;:::i;:::-;;;;;;;41124:4;41109:5;:20::i;:::-;41088:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41057:84;;;;40909:239:::0;;:::o;26413:179::-;26495:11;;26474:4;;26495:11;;26491:32;;-1:-1:-1;26516:4:0;;26413:179;-1:-1:-1;26413:179:0:o;26491:32::-;26573:11;:9;:11::i;:::-;26562:7;26540:19;10916:12;;;10828:108;26540:19;:29;;;;:::i;:::-;:44;;;26413:179;-1:-1:-1;;26413:179:0:o;26815:172::-;25957:18;:16;:18::i;:::-;10916:12;;26891:7:::1;:29;26888:66;;;26929:25;;-1:-1:-1::0;;;26929:25:0::1;;;;;;;;;;;26888:66;26965:4;:14:::0;26815:172::o;33972:99::-;25957:18;:16;:18::i;:::-;34037:20:::1;:28:::0;;-1:-1:-1;;34037:28:0::1;::::0;;33972:99::o;26300:105::-;25957:18;:16;:18::i;:::-;26373:11:::1;:24:::0;;-1:-1:-1;;26373:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26300:105::o;35314:113::-;25957:18;:16;:18::i;:::-;35391:15:::1;:28:::0;;-1:-1:-1;;35391:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35314:113::o;42390:1274::-;42511:7;42501;:17;42498:47;;;42527:18;;-1:-1:-1;;;42527:18:0;;;;;;;;;;;42498:47;42560:22;42574:7;42560:13;:22::i;:::-;42556:48;;42591:13;;-1:-1:-1;;;42591:13:0;;;;;;;;;;;42556:48;42619:14;:12;:14::i;:::-;42615:48;;42642:21;;-1:-1:-1;;;42642:21:0;;;;;;;;;;;42615:48;42678:21;42691:7;42678:12;:21::i;:::-;42674:58;;42708:24;;-1:-1:-1;;;42708:24:0;;;;;;;;;;;42674:58;42747:34;42768:3;42773:7;42747:20;:34::i;:::-;42743:68;;42790:21;;-1:-1:-1;;;42790:21:0;;;;;;;;;;;42743:68;42838:12;;42825:9;:25;42822:53;;42859:16;;-1:-1:-1;;;42859:16:0;;;;;;;;;;;42822:53;42938:47;42965:19;42938:26;:47::i;:::-;42934:83;;42994:23;;-1:-1:-1;;;42994:23:0;;;;;;;;;;;42934:83;43028:27;43102:7;43058:41;43079:19;43058:20;:41::i;:::-;:51;;;;:::i;:::-;43185:27;;-1:-1:-1;;;43185:27:0;;-1:-1:-1;;;;;6819:32:1;;;43185:27:0;;;6801:51:1;43028:81:0;;-1:-1:-1;43149:19:0;;43028:81;;43185:22;;;;;;6774:18:1;;43185:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;43182:87;;;43243:26;;-1:-1:-1;;;43243:26:0;;;;;;;;;;;43182:87;43283:42;;-1:-1:-1;;;43283:42:0;;-1:-1:-1;;;;;10465:15:1;;;43283:42:0;;;10447:34:1;43319:4:0;10497:18:1;;;10490:43;43328:19:0;;43283:22;;;;;;10382:18:1;;43283:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;43280:104;;;43356:28;;-1:-1:-1;;;43356:28:0;;;;;;;;;;;43280:104;43419:66;;-1:-1:-1;;;43419:66:0;;-1:-1:-1;;;;;10802:15:1;;;43419:66:0;;;10784:34:1;43458:4:0;10834:18:1;;;10827:43;10886:18;;;10879:34;;;43395:21:0;;43419:25;;;;;;10719:18:1;;43419:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43395:90;;43500:16;43496:50;;43525:21;;-1:-1:-1;;;43525:21:0;;;;;;;;;;;43496:50;43567:17;:15;:17::i;:::-;43595:31;43613:3;43618:7;43595:17;:31::i;:::-;43637:19;43643:3;43648:7;43637:5;:19::i;:::-;42487:1177;;;42390:1274;;;:::o;33539:163::-;25957:18;:16;:18::i;:::-;-1:-1:-1;;;;;33637:42:0::1;33691:5;33637:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;33637:59:0::1;::::0;;33539:163::o;31845:253::-;31924:7;31944:47;31971:19;31944:26;:47::i;:::-;31940:83;;32000:23;;-1:-1:-1;;;32000:23:0;;;;;;;;;;;31940:83;-1:-1:-1;;;;;;32037:42:0;;;;;:21;:42;;;;;:55;;;;31845:253::o;32464:304::-;25957:18;:16;:18::i;:::-;-1:-1:-1;;;;;32613:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;32613:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;32683:55:0::1;:79:::0;32464:304::o;11588:151::-;-1:-1:-1;;;;;11704:18:0;;;11677:7;11704:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11588:151::o;25067:215::-;22547:13;:11;:13::i;:::-;-1:-1:-1;;;;;25136:22:0;::::1;25133:55;;25167:21;;-1:-1:-1::0;;;25167:21:0::1;;;;;;;;;;;25133:55;25199:16;25206:8;25199:6;:16::i;:::-;25195:48;;25224:19;;-1:-1:-1::0;;;25224:19:0::1;;;;;;;;;;;25195:48;-1:-1:-1::0;;;;;25254:14:0::1;25271:5;25254:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;25254:22:0::1;::::0;;25067:215::o;40687:214::-;25957:18;:16;:18::i;:::-;40776:7:::1;40769:4;:14;40766:44;;;40792:18;;-1:-1:-1::0;;;40792:18:0::1;;;;;;;;;;;40766:44;40825:19;40839:4;40825:13;:19::i;:::-;40821:45;;40853:13;;-1:-1:-1::0;;;40853:13:0::1;;;;;;;;;;;27720:217:::0;27775:7;27803;27794:6;:16;27791:47;;;27819:19;;-1:-1:-1;;;27819:19:0;;;;;;;;;;;27791:47;27845:18;27866:16;27875:7;27866:6;:16;:::i;:::-;27845:37;;27919:12;;27905:10;27897:5;;:18;;;;:::i;:::-;27896:35;;;;:::i;:::-;27889:42;27720:217;-1:-1:-1;;;27720:217:0:o;23567:183::-;22547:13;:11;:13::i;:::-;-1:-1:-1;;;;;23651:22:0;::::1;23648:55;;23682:21;;-1:-1:-1::0;;;23682:21:0::1;;;;;;;;;;;23648:55;23714:28;23733:8;23714:18;:28::i;38679:128::-:0;25957:18;:16;:18::i;:::-;38742:17:::1;:24:::0;;-1:-1:-1;;38777:22:0;38742:24;38777:22;;;38679:128::o;17817:350::-;-1:-1:-1;;;;;17948:19:0;;17945:52;;17976:21;;-1:-1:-1;;;17976:21:0;;;;;;;;;;;17945:52;-1:-1:-1;;;;;18011:21:0;;18008:54;;18041:21;;-1:-1:-1;;;18041:21:0;;;;;;;;;;;18008:54;-1:-1:-1;;;;;18075:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18127:32;;1391:25:1;;;18127:32:0;;1364:18:1;18127:32:0;;;;;;;17817:350;;;:::o;27943:89::-;28013:12;;27986:40;;27310:42;;27986:40;;;;;;;;;28013:12;27310:42;27986:40;;;;;;;;;;;;;;;;;;;37997:154;-1:-1:-1;;;;;38104:17:0;;;;;;;:7;:17;;;;;:28;;;;;;;37997:154::o;16090:388::-;-1:-1:-1;;;;;16169:21:0;;16166:54;;16199:21;;-1:-1:-1;;;16199:21:0;;;;;;;;;;;16166:54;16311:6;16295:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16328:18:0;;:9;:18;;;;;;;;;;:28;;16350:6;;16328:9;:28;;16350:6;;16328:28;:::i;:::-;;;;-1:-1:-1;;16372:37:0;;1391:25:1;;;-1:-1:-1;;;;;16372:37:0;;;16389:1;;16372:37;;1379:2:1;1364:18;16372:37:0;;;;;;;41418:638;;:::o;18458:448::-;18593:24;18620:25;18630:5;18637:7;18620:9;:25::i;:::-;18593:52;;-1:-1:-1;;18660:16:0;:37;18656:243;;18736:6;18717:16;:25;18714:63;;;18751:26;;-1:-1:-1;;;18751:26:0;;;;;;;;;;;18714:63;18821:51;18830:5;18837:7;18865:6;18846:16;:25;18821:8;:51::i;15178:625::-;-1:-1:-1;;;;;15304:18:0;;15301:51;;15331:21;;-1:-1:-1;;;15331:21:0;;;;;;;;;;;15301:51;-1:-1:-1;;;;;15366:16:0;;15363:49;;15391:21;;-1:-1:-1;;;15391:21:0;;;;;;;;;;;15363:49;-1:-1:-1;;;;;15498:15:0;;15476:19;15498:15;;;;;;;;;;;15527:20;;;15524:58;;;15556:26;;-1:-1:-1;;;15556:26:0;;;;;;;;;;;15524:58;-1:-1:-1;;;;;15618:15:0;;;:9;:15;;;;;;;;;;;15636:20;;;15618:38;;15678:13;;;;;;;;:23;;15650:6;;15618:9;15678:23;;15650:6;;15678:23;:::i;:::-;;;;;;;;15734:2;-1:-1:-1;;;;;15719:26:0;15728:4;-1:-1:-1;;;;;15719:26:0;;15738:6;15719:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;15719:26:0;;;;;;;;15758:37;40909:239;25702:215;22734:6;;-1:-1:-1;;;;;22734:6:0;3820:10;25766:23;;;;25750:13;;25811:20;;25421:183;:::i;25811:20::-;25796:35;;25846:8;:19;;;;25858:7;25846:19;25838:73;;;;-1:-1:-1;;;25838:73:0;;12383:2:1;25838:73:0;;;12365:21:1;12422:2;12402:18;;;12395:30;12461:34;12441:18;;;12434:62;-1:-1:-1;;;12512:18:1;;;12505:39;12561:19;;25838:73:0;;;;;;;;1603:190;1728:4;1781;1752:25;1765:5;1772:4;1752:12;:25::i;:::-;:33;;1603:190;-1:-1:-1;;;;1603:190:0:o;16811:568::-;-1:-1:-1;;;;;16890:21:0;;16887:54;;16920:21;;-1:-1:-1;;;16920:21:0;;;;;;;;;;;16887:54;-1:-1:-1;;;;;17041:18:0;;17016:22;17041:18;;;;;;;;;;;17073:23;;;17070:61;;;17105:26;;-1:-1:-1;;;17105:26:0;;;;;;;;;;;17070:61;-1:-1:-1;;;;;17167:18:0;;:9;:18;;;;;;;;;;17188:23;;;17167:44;;17233:12;:22;;17205:6;;17167:9;17233:22;;17205:6;;17233:22;:::i;:::-;;;;-1:-1:-1;;17273:37:0;;1391:25:1;;;17299:1:0;;-1:-1:-1;;;;;17273:37:0;;;;;1379:2:1;1364:18;17273:37:0;;;;;;;41057:84:::1;40909:239:::0;;:::o;22826:132::-;22734:6;;-1:-1:-1;;;;;22734:6:0;3820:10;22890:23;22882:68;;;;-1:-1:-1;;;22882:68:0;;12923:2:1;22882:68:0;;;12905:21:1;;;12942:18;;;12935:30;13001:34;12981:18;;;12974:62;13053:18;;22882:68:0;12721:356:1;23910:191:0;24003:6;;;-1:-1:-1;;;;;24020:17:0;;;-1:-1:-1;;;;;;24020:17:0;;;;;;;24053:40;;24003:6;;;24020:17;24003:6;;24053:40;;23984:16;;24053:40;23973:128;23910:191;:::o;30183:237::-;30243:6;30239:176;30257:19;;30253:1;:23;30239:176;;;30297:108;30324:16;30341:1;30324:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30324:19:0;30389:3;30371:11;30383:1;30371:14;;;;;;;;:::i;:::-;;;;;;;;;30361:7;:24;;;;:::i;:::-;30360:32;;;;:::i;:::-;30297:10;:108::i;:::-;30278:3;;;;:::i;:::-;;;;30239:176;;2147:675;2230:7;2273:4;2230:7;2288:497;2312:5;:12;2308:1;:16;2288:497;;;2346:20;2369:5;2375:1;2369:8;;;;;;;;:::i;:::-;;;;;;;2346:31;;2412:12;2396;:28;2392:382;;2898:13;2948:15;;;2984:4;2977:15;;;3031:4;3015:21;;2524:57;;2392:382;;;2898:13;2948:15;;;2984:4;2977:15;;;3031:4;3015:21;;2701:57;;2392:382;-1:-1:-1;2326:3:0;;;;:::i;:::-;;;;2288:497;;;-1:-1:-1;2802:12:0;2147:675;-1:-1:-1;;;2147:675:0:o;30428:175::-;30501:12;30519:8;-1:-1:-1;;;;;30519:13:0;30540:7;30519:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30500:52;;;30569:7;30561:36;;;;-1:-1:-1;;;30561:36:0;;13494:2:1;30561:36:0;;;13476:21:1;13533:2;13513:18;;;13506:30;-1:-1:-1;;;13552:18:1;;;13545:46;13608:18;;30561:36:0;13292:340:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:367::-;1490:8;1500:6;1554:3;1547:4;1539:6;1535:17;1531:27;1521:55;;1572:1;1569;1562:12;1521:55;-1:-1:-1;1595:20:1;;1638:18;1627:30;;1624:50;;;1670:1;1667;1660:12;1624:50;1707:4;1699:6;1695:17;1683:29;;1767:3;1760:4;1750:6;1747:1;1743:14;1735:6;1731:27;1727:38;1724:47;1721:67;;;1784:1;1781;1774:12;1721:67;1427:367;;;;;:::o;1799:654::-;1912:6;1920;1928;1936;1944;1997:3;1985:9;1976:7;1972:23;1968:33;1965:53;;;2014:1;2011;2004:12;1965:53;2037:29;2056:9;2037:29;:::i;:::-;2027:39;;2113:2;2102:9;2098:18;2085:32;2075:42;;2168:2;2157:9;2153:18;2140:32;2195:18;2187:6;2184:30;2181:50;;;2227:1;2224;2217:12;2181:50;2266:70;2328:7;2319:6;2308:9;2304:22;2266:70;:::i;:::-;2355:8;;-1:-1:-1;2240:96:1;-1:-1:-1;2409:38:1;;-1:-1:-1;2443:2:1;2428:18;;2409:38;:::i;:::-;2399:48;;1799:654;;;;;;;;:::o;2458:328::-;2535:6;2543;2551;2604:2;2592:9;2583:7;2579:23;2575:32;2572:52;;;2620:1;2617;2610:12;2572:52;2643:29;2662:9;2643:29;:::i;:::-;2633:39;;2691:38;2725:2;2714:9;2710:18;2691:38;:::i;:::-;2681:48;;2776:2;2765:9;2761:18;2748:32;2738:42;;2458:328;;;;;:::o;2791:180::-;2850:6;2903:2;2891:9;2882:7;2878:23;2874:32;2871:52;;;2919:1;2916;2909:12;2871:52;-1:-1:-1;2942:23:1;;2791:180;-1:-1:-1;2791:180:1:o;2976:127::-;3037:10;3032:3;3028:20;3025:1;3018:31;3068:4;3065:1;3058:15;3092:4;3089:1;3082:15;3108:275;3179:2;3173:9;3244:2;3225:13;;-1:-1:-1;;3221:27:1;3209:40;;3279:18;3264:34;;3300:22;;;3261:62;3258:88;;;3326:18;;:::i;:::-;3362:2;3355:22;3108:275;;-1:-1:-1;3108:275:1:o;3388:183::-;3448:4;3481:18;3473:6;3470:30;3467:56;;;3503:18;;:::i;:::-;-1:-1:-1;3548:1:1;3544:14;3560:4;3540:25;;3388:183::o;3576:668::-;3630:5;3683:3;3676:4;3668:6;3664:17;3660:27;3650:55;;3701:1;3698;3691:12;3650:55;3737:6;3724:20;3763:4;3787:60;3803:43;3843:2;3803:43;:::i;:::-;3787:60;:::i;:::-;3881:15;;;3967:1;3963:10;;;;3951:23;;3947:32;;;3912:12;;;;3991:15;;;3988:35;;;4019:1;4016;4009:12;3988:35;4055:2;4047:6;4043:15;4067:148;4083:6;4078:3;4075:15;4067:148;;;4149:23;4168:3;4149:23;:::i;:::-;4137:36;;4193:12;;;;4100;;4067:148;;;-1:-1:-1;4233:5:1;3576:668;-1:-1:-1;;;;;;3576:668:1:o;4249:1138::-;4367:6;4375;4428:2;4416:9;4407:7;4403:23;4399:32;4396:52;;;4444:1;4441;4434:12;4396:52;4484:9;4471:23;4513:18;4554:2;4546:6;4543:14;4540:34;;;4570:1;4567;4560:12;4540:34;4593:61;4646:7;4637:6;4626:9;4622:22;4593:61;:::i;:::-;4583:71;;4673:2;4663:12;;4728:2;4717:9;4713:18;4700:32;4757:2;4747:8;4744:16;4741:36;;;4773:1;4770;4763:12;4741:36;4796:24;;;-1:-1:-1;4851:4:1;4843:13;;4839:27;-1:-1:-1;4829:55:1;;4880:1;4877;4870:12;4829:55;4916:2;4903:16;4939:60;4955:43;4995:2;4955:43;:::i;4939:60::-;5033:15;;;5115:1;5111:10;;;;5103:19;;5099:28;;;5064:12;;;;5139:19;;;5136:39;;;5171:1;5168;5161:12;5136:39;5195:11;;;;5215:142;5231:6;5226:3;5223:15;5215:142;;;5297:17;;5285:30;;5248:12;;;;5335;;;;5215:142;;;5376:5;5366:15;;;;;;;4249:1138;;;;;:::o;5763:511::-;5858:6;5866;5874;5927:2;5915:9;5906:7;5902:23;5898:32;5895:52;;;5943:1;5940;5933:12;5895:52;5966:29;5985:9;5966:29;:::i;:::-;5956:39;;6046:2;6035:9;6031:18;6018:32;6073:18;6065:6;6062:30;6059:50;;;6105:1;6102;6095:12;6059:50;6144:70;6206:7;6197:6;6186:9;6182:22;6144:70;:::i;:::-;5763:511;;6233:8;;-1:-1:-1;6118:96:1;;-1:-1:-1;;;;5763:511:1:o;6279:186::-;6338:6;6391:2;6379:9;6370:7;6366:23;6362:32;6359:52;;;6407:1;6404;6397:12;6359:52;6430:29;6449:9;6430:29;:::i;6863:118::-;6949:5;6942:13;6935:21;6928:5;6925:32;6915:60;;6971:1;6968;6961:12;6986:241;7042:6;7095:2;7083:9;7074:7;7070:23;7066:32;7063:52;;;7111:1;7108;7101:12;7063:52;7150:9;7137:23;7169:28;7191:5;7169:28;:::i;7232:579::-;7336:6;7344;7352;7360;7413:2;7401:9;7392:7;7388:23;7384:32;7381:52;;;7429:1;7426;7419:12;7381:52;7452:29;7471:9;7452:29;:::i;:::-;7442:39;;7528:2;7517:9;7513:18;7500:32;7490:42;;7583:2;7572:9;7568:18;7555:32;7610:18;7602:6;7599:30;7596:50;;;7642:1;7639;7632:12;7596:50;7681:70;7743:7;7734:6;7723:9;7719:22;7681:70;:::i;:::-;7232:579;;;;-1:-1:-1;7770:8:1;-1:-1:-1;;;;7232:579:1:o;7816:416::-;7909:6;7917;7970:2;7958:9;7949:7;7945:23;7941:32;7938:52;;;7986:1;7983;7976:12;7938:52;8026:9;8013:23;8059:18;8051:6;8048:30;8045:50;;;8091:1;8088;8081:12;8045:50;8114:61;8167:7;8158:6;8147:9;8143:22;8114:61;:::i;:::-;8104:71;8222:2;8207:18;;;;8194:32;;-1:-1:-1;;;;7816:416:1:o;8237:328::-;8314:6;8322;8330;8383:2;8371:9;8362:7;8358:23;8354:32;8351:52;;;8399:1;8396;8389:12;8351:52;8422:29;8441:9;8422:29;:::i;:::-;8412:39;;8498:2;8487:9;8483:18;8470:32;8460:42;;8521:38;8555:2;8544:9;8540:18;8521:38;:::i;:::-;8511:48;;8237:328;;;;;:::o;8570:383::-;8644:6;8652;8660;8713:2;8701:9;8692:7;8688:23;8684:32;8681:52;;;8729:1;8726;8719:12;8681:52;8752:29;8771:9;8752:29;:::i;:::-;8742:39;;8831:2;8820:9;8816:18;8803:32;8844:28;8866:5;8844:28;:::i;:::-;8570:383;;8891:5;;-1:-1:-1;;;8943:2:1;8928:18;;;;8915:32;;8570:383::o;8958:260::-;9026:6;9034;9087:2;9075:9;9066:7;9062:23;9058:32;9055:52;;;9103:1;9100;9093:12;9055:52;9126:29;9145:9;9126:29;:::i;:::-;9116:39;;9174:38;9208:2;9197:9;9193:18;9174:38;:::i;:::-;9164:48;;8958:260;;;;;:::o;9223:380::-;9302:1;9298:12;;;;9345;;;9366:61;;9420:4;9412:6;9408:17;9398:27;;9366:61;9473:2;9465:6;9462:14;9442:18;9439:38;9436:161;;;9519:10;9514:3;9510:20;9507:1;9500:31;9554:4;9551:1;9544:15;9582:4;9579:1;9572:15;9436:161;;9223:380;;;:::o;9608:127::-;9669:10;9664:3;9660:20;9657:1;9650:31;9700:4;9697:1;9690:15;9724:4;9721:1;9714:15;9740:128;9780:3;9811:1;9807:6;9804:1;9801:13;9798:39;;;9817:18;;:::i;:::-;-1:-1:-1;9853:9:1;;9740:128::o;9873:168::-;9913:7;9979:1;9975;9971:6;9967:14;9964:1;9961:21;9956:1;9949:9;9942:17;9938:45;9935:71;;;9986:18;;:::i;:::-;-1:-1:-1;10026:9:1;;9873:168::o;10046:184::-;10116:6;10169:2;10157:9;10148:7;10144:23;10140:32;10137:52;;;10185:1;10182;10175:12;10137:52;-1:-1:-1;10208:16:1;;10046:184;-1:-1:-1;10046:184:1:o;10924:245::-;10991:6;11044:2;11032:9;11023:7;11019:23;11015:32;11012:52;;;11060:1;11057;11050:12;11012:52;11092:9;11086:16;11111:28;11133:5;11111:28;:::i;11687:127::-;11748:10;11743:3;11739:20;11736:1;11729:31;11779:4;11776:1;11769:15;11803:4;11800:1;11793:15;11819:135;11858:3;-1:-1:-1;;11879:17:1;;11876:43;;;11899:18;;:::i;:::-;-1:-1:-1;11946:1:1;11935:13;;11819:135::o;11959:217::-;11999:1;12025;12015:132;;12069:10;12064:3;12060:20;12057:1;12050:31;12104:4;12101:1;12094:15;12132:4;12129:1;12122:15;12015:132;-1:-1:-1;12161:9:1;;11959:217::o;12591:125::-;12631:4;12659:1;12656;12653:8;12650:34;;;12664:18;;:::i;:::-;-1:-1:-1;12701:9:1;;12591:125::o

Swarm Source

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