ETH Price: $2,911.76 (-8.08%)
Gas: 6 Gwei

Token

Discord Avatar (DA)
 

Overview

Max Total Supply

1,204 DA

Holders

401

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brick-30.eth
Balance
3 DA
0xad5893a7e8f0a4cf2e164fe5e21eb64d8f84d832
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DiscordAvatar

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-25
*/

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

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

// 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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: nft.sol


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;



contract DiscordAvatar is Ownable, ERC721A {
    uint256 public maxSupply                    = 3333;
    uint256 public maxFreeSupply                = 0;
    
    uint256 public maxPerTxDuringMint           = 3;
    uint256 public maxPerAddressDuringMint      = 3;
    uint256 public maxPerAddressDuringFreeMint  = 3;
    
    uint256 public price                        = 0.001 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0xA8340A9e27ca51ba4E6960F16d698b167fc74f90;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Discord Avatar", "DA") {
        _safeMint(msg.sender, 1);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Wrong Caller");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610d056009556000600a556003600b556003600c556003600d5566038d7ea4c68000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005157600080fd5b506040518060400160405280600e81526020017f446973636f7264204176617461720000000000000000000000000000000000008152506040518060400160405280600281526020017f4441000000000000000000000000000000000000000000000000000000000000815250620000de620000d26200013360201b60201c565b6200013b60201b60201c565b8160039081620000ef919062000911565b50806004908162000101919062000911565b5062000112620001ff60201b60201c565b60018190555050506200012d3360016200020460201b60201c565b62000bd0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002268282604051806020016040528060008152506200022a60201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000298576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620002d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002e860008583866200050e60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000355600185146200051460201b60201c565b901b60a042901b6200036d866200051e60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200047e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200042a60008784806001019550876200052860201b60201c565b62000461576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003b35782600154146200047857600080fd5b620004ea565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200047f575b8160018190555050506200050860008583866200068960201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005566200068f60201b60201c565b8786866040518563ffffffff1660e01b81526004016200057a949392919062000ae8565b6020604051808303816000875af1925050508015620005b957506040513d601f19601f82011682018060405250810190620005b6919062000b9e565b60015b62000636573d8060008114620005ec576040519150601f19603f3d011682016040523d82523d6000602084013e620005f1565b606091505b5060008151036200062e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071957607f821691505b6020821081036200072f576200072e620006d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075a565b620007a586836200075a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007f2620007ec620007e684620007bd565b620007c7565b620007bd565b9050919050565b6000819050919050565b6200080e83620007d1565b620008266200081d82620007f9565b84845462000767565b825550505050565b600090565b6200083d6200082e565b6200084a81848462000803565b505050565b5b8181101562000872576200086660008262000833565b60018101905062000850565b5050565b601f821115620008c1576200088b8162000735565b62000896846200074a565b81016020851015620008a6578190505b620008be620008b5856200074a565b8301826200084f565b50505b505050565b600082821c905092915050565b6000620008e660001984600802620008c6565b1980831691505092915050565b6000620009018383620008d3565b9150826002028217905092915050565b6200091c8262000697565b67ffffffffffffffff811115620009385762000937620006a2565b5b62000944825462000700565b6200095182828562000876565b600060209050601f83116001811462000989576000841562000974578287015190505b620009808582620008f3565b865550620009f0565b601f198416620009998662000735565b60005b82811015620009c3578489015182556001820191506020850194506020810190506200099c565b86831015620009e35784890151620009df601f891682620008d3565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2582620009f8565b9050919050565b62000a378162000a18565b82525050565b62000a4881620007bd565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a8a57808201518184015260208101905062000a6d565b60008484015250505050565b6000601f19601f8301169050919050565b600062000ab48262000a4e565b62000ac0818562000a59565b935062000ad281856020860162000a6a565b62000add8162000a96565b840191505092915050565b600060808201905062000aff600083018762000a2c565b62000b0e602083018662000a2c565b62000b1d604083018562000a3d565b818103606083015262000b31818462000aa7565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b788162000b41565b811462000b8457600080fd5b50565b60008151905062000b988162000b6d565b92915050565b60006020828403121562000bb75762000bb662000b3c565b5b600062000bc78482850162000b87565b91505092915050565b6138788062000be06000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906127c2565b61083e565b604051610248919061280a565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b60405161027391906128b5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061290d565b610962565b6040516102b0919061297b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906129c2565b6109de565b005b3480156102ee57600080fd5b506103096004803603810190610304919061290d565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612a11565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612a2c565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612a11565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612a2c565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612a11565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612ae4565b610cc6565b005b61040f610d58565b005b34801561041d57600080fd5b506104386004803603810190610433919061290d565b610e97565b604051610445919061297b565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b31565b610ea9565b6040516104829190612a11565b60405180910390f35b34801561049757600080fd5b506104a0610f61565b005b3480156104ae57600080fd5b506104b7610fe9565b005b3480156104c557600080fd5b506104e060048036038101906104db919061290d565b611091565b005b3480156104ee57600080fd5b506105096004803603810190610504919061290d565b611117565b005b34801561051757600080fd5b5061052061131c565b60405161052d9190612a11565b60405180910390f35b34801561054257600080fd5b5061054b611322565b604051610558919061297b565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061290d565b61134b565b005b34801561059657600080fd5b5061059f6113d1565b6040516105ac91906128b5565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612b31565b611463565b6040516105e99190612a11565b60405180910390f35b3480156105fe57600080fd5b5061060761147b565b6040516106149190612a11565b60405180910390f35b6106376004803603810190610632919061290d565b611481565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b8a565b611727565b005b34801561066e57600080fd5b5061068960048036038101906106849190612cfa565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad919061290d565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061290d565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff919061290d565b611a1d565b60405161071191906128b5565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612a11565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612a11565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612d7d565b611ac7565b6040516107a4919061280a565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf919061280a565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b31565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612b31565b611c65565b6040516108359190612a11565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612dec565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612dec565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa611322565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612e69565b60405180910390fd5b610c08610c73565b81600954610c169190612eb8565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90612f5e565b60405180910390fd5b8060096000828254610c699190612eb8565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec611322565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e69565b60405180910390fd5b818160109182610d53929190613135565b505050565b610d60611db0565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611322565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612e69565b60405180910390fd5b600073a8340a9e27ca51ba4e6960f16d698b167fc74f9073ffffffffffffffffffffffffffffffffffffffff1647604051610e0e90613236565b60006040518083038185875af1925050503d8060008114610e4b576040519150601f19603f3d011682016040523d82523d6000602084013e610e50565b606091505b5050905080610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90613297565b60405180910390fd5b50565b6000610ea282611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f69611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f87611322565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612e69565b60405180910390fd5b610fe76000612164565b565b610ff1611db0565b73ffffffffffffffffffffffffffffffffffffffff1661100f611322565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612e69565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611099611db0565b73ffffffffffffffffffffffffffffffffffffffff166110b7611322565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612e69565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613303565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061336f565b60405180910390fd5b806111dd610c73565b6111e7919061338f565b600a54101561122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061340f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261127e919061338f565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906134a1565b60405180910390fd5b81816112cb919061338f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113183383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611353611db0565b73ffffffffffffffffffffffffffffffffffffffff16611371611322565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e69565b60405180910390fd5b80600e8190555050565b6060600480546113e090612dec565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90612dec565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613303565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115359061336f565b60405180910390fd5b80600e5461154c91906134c1565b34101561158e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115859061354f565b60405180910390fd5b80611597610c73565b6115a1919061338f565b60095410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061340f565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c548282611638919061338f565b1115611679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611670906135e1565b60405180910390fd5b60008211801561168b5750600b548211155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061364d565b60405180910390fd5b81816116d6919061338f565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117233383612228565b5050565b61172f611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611892919061280a565b60405180910390a35050565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff16611937611322565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612e69565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd611322565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e69565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa39291906136a9565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b94611322565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612e69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c509061373f565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e94939291906137b4565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c79190613815565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612dec565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612dec565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61279f8161276a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000602082840312156127d8576127d7612760565b5b60006127e6848285016127ad565b91505092915050565b60008115159050919050565b612804816127ef565b82525050565b600060208201905061281f60008301846127fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561285f578082015181840152602081019050612844565b60008484015250505050565b6000601f19601f8301169050919050565b600061288782612825565b6128918185612830565b93506128a1818560208601612841565b6128aa8161286b565b840191505092915050565b600060208201905081810360008301526128cf818461287c565b905092915050565b6000819050919050565b6128ea816128d7565b81146128f557600080fd5b50565b600081359050612907816128e1565b92915050565b60006020828403121561292357612922612760565b5b6000612931848285016128f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129658261293a565b9050919050565b6129758161295a565b82525050565b6000602082019050612990600083018461296c565b92915050565b61299f8161295a565b81146129aa57600080fd5b50565b6000813590506129bc81612996565b92915050565b600080604083850312156129d9576129d8612760565b5b60006129e7858286016129ad565b92505060206129f8858286016128f8565b9150509250929050565b612a0b816128d7565b82525050565b6000602082019050612a266000830184612a02565b92915050565b600080600060608486031215612a4557612a44612760565b5b6000612a53868287016129ad565b9350506020612a64868287016129ad565b9250506040612a75868287016128f8565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612aa457612aa3612a7f565b5b8235905067ffffffffffffffff811115612ac157612ac0612a84565b5b602083019150836001820283011115612add57612adc612a89565b5b9250929050565b60008060208385031215612afb57612afa612760565b5b600083013567ffffffffffffffff811115612b1957612b18612765565b5b612b2585828601612a8e565b92509250509250929050565b600060208284031215612b4757612b46612760565b5b6000612b55848285016129ad565b91505092915050565b612b67816127ef565b8114612b7257600080fd5b50565b600081359050612b8481612b5e565b92915050565b60008060408385031215612ba157612ba0612760565b5b6000612baf858286016129ad565b9250506020612bc085828601612b75565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c078261286b565b810181811067ffffffffffffffff82111715612c2657612c25612bcf565b5b80604052505050565b6000612c39612756565b9050612c458282612bfe565b919050565b600067ffffffffffffffff821115612c6557612c64612bcf565b5b612c6e8261286b565b9050602081019050919050565b82818337600083830152505050565b6000612c9d612c9884612c4a565b612c2f565b905082815260208101848484011115612cb957612cb8612bca565b5b612cc4848285612c7b565b509392505050565b600082601f830112612ce157612ce0612a7f565b5b8135612cf1848260208601612c8a565b91505092915050565b60008060008060808587031215612d1457612d13612760565b5b6000612d22878288016129ad565b9450506020612d33878288016129ad565b9350506040612d44878288016128f8565b925050606085013567ffffffffffffffff811115612d6557612d64612765565b5b612d7187828801612ccc565b91505092959194509250565b60008060408385031215612d9457612d93612760565b5b6000612da2858286016129ad565b9250506020612db3858286016129ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0457607f821691505b602082108103612e1757612e16612dbd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e53602083612830565b9150612e5e82612e1d565b602082019050919050565b60006020820190508181036000830152612e8281612e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ec3826128d7565b9150612ece836128d7565b9250828203905081811115612ee657612ee5612e89565b5b92915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612f48602783612830565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612feb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fae565b612ff58683612fae565b95508019841693508086168417925050509392505050565b6000819050919050565b600061303261302d613028846128d7565b61300d565b6128d7565b9050919050565b6000819050919050565b61304c83613017565b61306061305882613039565b848454612fbb565b825550505050565b600090565b613075613068565b613080818484613043565b505050565b5b818110156130a45761309960008261306d565b600181019050613086565b5050565b601f8211156130e9576130ba81612f89565b6130c384612f9e565b810160208510156130d2578190505b6130e66130de85612f9e565b830182613085565b50505b505050565b600082821c905092915050565b600061310c600019846008026130ee565b1980831691505092915050565b600061312583836130fb565b9150826002028217905092915050565b61313f8383612f7e565b67ffffffffffffffff81111561315857613157612bcf565b5b6131628254612dec565b61316d8282856130a8565b6000601f83116001811461319c576000841561318a578287013590505b6131948582613119565b8655506131fc565b601f1984166131aa86612f89565b60005b828110156131d2578489013582556001820191506020850194506020810190506131ad565b868310156131ef57848901356131eb601f8916826130fb565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b6000613220600083613205565b915061322b82613210565b600082019050919050565b600061324182613213565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613281601083612830565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006132ed601783612830565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f57726f6e672043616c6c65720000000000000000000000000000000000000000600082015250565b6000613359600c83612830565b915061336482613323565b602082019050919050565b600060208201905081810360008301526133888161334c565b9050919050565b600061339a826128d7565b91506133a5836128d7565b92508282019050808211156133bd576133bc612e89565b5b92915050565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b60006133f9601883612830565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b600061348b602883612830565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b60006134cc826128d7565b91506134d7836128d7565b92508282026134e5816128d7565b915082820484148315176134fc576134fb612e89565b5b5092915050565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b6000613539601783612830565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b60006135cb602383612830565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000613637601483612830565b915061364282613601565b602082019050919050565b600060208201905081810360008301526136668161362a565b9050919050565b600081905092915050565b600061368382612825565b61368d818561366d565b935061369d818560208601612841565b80840191505092915050565b60006136b58285613678565b91506136c18284613678565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613729602683612830565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137868261375f565b613790818561376a565b93506137a0818560208601612841565b6137a98161286b565b840191505092915050565b60006080820190506137c9600083018761296c565b6137d6602083018661296c565b6137e36040830185612a02565b81810360608301526137f5818461377b565b905095945050505050565b60008151905061380f81612796565b92915050565b60006020828403121561382b5761382a612760565b5b600061383984828501613800565b9150509291505056fea2646970667358221220a7ee983d4b958fbd8bcdfe84e7790c974c8fd4563963142688db97ad3c40a13e64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906127c2565b61083e565b604051610248919061280a565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b60405161027391906128b5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061290d565b610962565b6040516102b0919061297b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906129c2565b6109de565b005b3480156102ee57600080fd5b506103096004803603810190610304919061290d565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612a11565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612a2c565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612a11565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612a2c565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612a11565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612ae4565b610cc6565b005b61040f610d58565b005b34801561041d57600080fd5b506104386004803603810190610433919061290d565b610e97565b604051610445919061297b565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b31565b610ea9565b6040516104829190612a11565b60405180910390f35b34801561049757600080fd5b506104a0610f61565b005b3480156104ae57600080fd5b506104b7610fe9565b005b3480156104c557600080fd5b506104e060048036038101906104db919061290d565b611091565b005b3480156104ee57600080fd5b506105096004803603810190610504919061290d565b611117565b005b34801561051757600080fd5b5061052061131c565b60405161052d9190612a11565b60405180910390f35b34801561054257600080fd5b5061054b611322565b604051610558919061297b565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061290d565b61134b565b005b34801561059657600080fd5b5061059f6113d1565b6040516105ac91906128b5565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612b31565b611463565b6040516105e99190612a11565b60405180910390f35b3480156105fe57600080fd5b5061060761147b565b6040516106149190612a11565b60405180910390f35b6106376004803603810190610632919061290d565b611481565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b8a565b611727565b005b34801561066e57600080fd5b5061068960048036038101906106849190612cfa565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad919061290d565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061290d565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff919061290d565b611a1d565b60405161071191906128b5565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612a11565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612a11565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612d7d565b611ac7565b6040516107a4919061280a565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf919061280a565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b31565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612b31565b611c65565b6040516108359190612a11565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612dec565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612dec565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa611322565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612e69565b60405180910390fd5b610c08610c73565b81600954610c169190612eb8565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90612f5e565b60405180910390fd5b8060096000828254610c699190612eb8565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec611322565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e69565b60405180910390fd5b818160109182610d53929190613135565b505050565b610d60611db0565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611322565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612e69565b60405180910390fd5b600073a8340a9e27ca51ba4e6960f16d698b167fc74f9073ffffffffffffffffffffffffffffffffffffffff1647604051610e0e90613236565b60006040518083038185875af1925050503d8060008114610e4b576040519150601f19603f3d011682016040523d82523d6000602084013e610e50565b606091505b5050905080610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90613297565b60405180910390fd5b50565b6000610ea282611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f69611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f87611322565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612e69565b60405180910390fd5b610fe76000612164565b565b610ff1611db0565b73ffffffffffffffffffffffffffffffffffffffff1661100f611322565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612e69565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611099611db0565b73ffffffffffffffffffffffffffffffffffffffff166110b7611322565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612e69565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613303565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061336f565b60405180910390fd5b806111dd610c73565b6111e7919061338f565b600a54101561122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061340f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261127e919061338f565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906134a1565b60405180910390fd5b81816112cb919061338f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113183383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611353611db0565b73ffffffffffffffffffffffffffffffffffffffff16611371611322565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e69565b60405180910390fd5b80600e8190555050565b6060600480546113e090612dec565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90612dec565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613303565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115359061336f565b60405180910390fd5b80600e5461154c91906134c1565b34101561158e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115859061354f565b60405180910390fd5b80611597610c73565b6115a1919061338f565b60095410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061340f565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c548282611638919061338f565b1115611679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611670906135e1565b60405180910390fd5b60008211801561168b5750600b548211155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061364d565b60405180910390fd5b81816116d6919061338f565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117233383612228565b5050565b61172f611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611892919061280a565b60405180910390a35050565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff16611937611322565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612e69565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd611322565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e69565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa39291906136a9565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b94611322565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612e69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c509061373f565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e94939291906137b4565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c79190613815565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612dec565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612dec565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61279f8161276a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000602082840312156127d8576127d7612760565b5b60006127e6848285016127ad565b91505092915050565b60008115159050919050565b612804816127ef565b82525050565b600060208201905061281f60008301846127fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561285f578082015181840152602081019050612844565b60008484015250505050565b6000601f19601f8301169050919050565b600061288782612825565b6128918185612830565b93506128a1818560208601612841565b6128aa8161286b565b840191505092915050565b600060208201905081810360008301526128cf818461287c565b905092915050565b6000819050919050565b6128ea816128d7565b81146128f557600080fd5b50565b600081359050612907816128e1565b92915050565b60006020828403121561292357612922612760565b5b6000612931848285016128f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129658261293a565b9050919050565b6129758161295a565b82525050565b6000602082019050612990600083018461296c565b92915050565b61299f8161295a565b81146129aa57600080fd5b50565b6000813590506129bc81612996565b92915050565b600080604083850312156129d9576129d8612760565b5b60006129e7858286016129ad565b92505060206129f8858286016128f8565b9150509250929050565b612a0b816128d7565b82525050565b6000602082019050612a266000830184612a02565b92915050565b600080600060608486031215612a4557612a44612760565b5b6000612a53868287016129ad565b9350506020612a64868287016129ad565b9250506040612a75868287016128f8565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612aa457612aa3612a7f565b5b8235905067ffffffffffffffff811115612ac157612ac0612a84565b5b602083019150836001820283011115612add57612adc612a89565b5b9250929050565b60008060208385031215612afb57612afa612760565b5b600083013567ffffffffffffffff811115612b1957612b18612765565b5b612b2585828601612a8e565b92509250509250929050565b600060208284031215612b4757612b46612760565b5b6000612b55848285016129ad565b91505092915050565b612b67816127ef565b8114612b7257600080fd5b50565b600081359050612b8481612b5e565b92915050565b60008060408385031215612ba157612ba0612760565b5b6000612baf858286016129ad565b9250506020612bc085828601612b75565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c078261286b565b810181811067ffffffffffffffff82111715612c2657612c25612bcf565b5b80604052505050565b6000612c39612756565b9050612c458282612bfe565b919050565b600067ffffffffffffffff821115612c6557612c64612bcf565b5b612c6e8261286b565b9050602081019050919050565b82818337600083830152505050565b6000612c9d612c9884612c4a565b612c2f565b905082815260208101848484011115612cb957612cb8612bca565b5b612cc4848285612c7b565b509392505050565b600082601f830112612ce157612ce0612a7f565b5b8135612cf1848260208601612c8a565b91505092915050565b60008060008060808587031215612d1457612d13612760565b5b6000612d22878288016129ad565b9450506020612d33878288016129ad565b9350506040612d44878288016128f8565b925050606085013567ffffffffffffffff811115612d6557612d64612765565b5b612d7187828801612ccc565b91505092959194509250565b60008060408385031215612d9457612d93612760565b5b6000612da2858286016129ad565b9250506020612db3858286016129ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0457607f821691505b602082108103612e1757612e16612dbd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e53602083612830565b9150612e5e82612e1d565b602082019050919050565b60006020820190508181036000830152612e8281612e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ec3826128d7565b9150612ece836128d7565b9250828203905081811115612ee657612ee5612e89565b5b92915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612f48602783612830565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612feb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fae565b612ff58683612fae565b95508019841693508086168417925050509392505050565b6000819050919050565b600061303261302d613028846128d7565b61300d565b6128d7565b9050919050565b6000819050919050565b61304c83613017565b61306061305882613039565b848454612fbb565b825550505050565b600090565b613075613068565b613080818484613043565b505050565b5b818110156130a45761309960008261306d565b600181019050613086565b5050565b601f8211156130e9576130ba81612f89565b6130c384612f9e565b810160208510156130d2578190505b6130e66130de85612f9e565b830182613085565b50505b505050565b600082821c905092915050565b600061310c600019846008026130ee565b1980831691505092915050565b600061312583836130fb565b9150826002028217905092915050565b61313f8383612f7e565b67ffffffffffffffff81111561315857613157612bcf565b5b6131628254612dec565b61316d8282856130a8565b6000601f83116001811461319c576000841561318a578287013590505b6131948582613119565b8655506131fc565b601f1984166131aa86612f89565b60005b828110156131d2578489013582556001820191506020850194506020810190506131ad565b868310156131ef57848901356131eb601f8916826130fb565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b6000613220600083613205565b915061322b82613210565b600082019050919050565b600061324182613213565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613281601083612830565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006132ed601783612830565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f57726f6e672043616c6c65720000000000000000000000000000000000000000600082015250565b6000613359600c83612830565b915061336482613323565b602082019050919050565b600060208201905081810360008301526133888161334c565b9050919050565b600061339a826128d7565b91506133a5836128d7565b92508282019050808211156133bd576133bc612e89565b5b92915050565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b60006133f9601883612830565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b600061348b602883612830565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b60006134cc826128d7565b91506134d7836128d7565b92508282026134e5816128d7565b915082820484148315176134fc576134fb612e89565b5b5092915050565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b6000613539601783612830565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b60006135cb602383612830565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000613637601483612830565b915061364282613601565b602082019050919050565b600060208201905081810360008301526136668161362a565b9050919050565b600081905092915050565b600061368382612825565b61368d818561366d565b935061369d818560208601612841565b80840191505092915050565b60006136b58285613678565b91506136c18284613678565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613729602683612830565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137868261375f565b613790818561376a565b93506137a0818560208601612841565b6137a98161286b565b840191505092915050565b60006080820190506137c9600083018761296c565b6137d6602083018661296c565b6137e36040830185612a02565b81810360608301526137f5818461377b565b905095945050505050565b60008151905061380f81612796565b92915050565b60006020828403121561382b5761382a612760565b5b600061383984828501613800565b9150509291505056fea2646970667358221220a7ee983d4b958fbd8bcdfe84e7790c974c8fd4563963142688db97ad3c40a13e64736f6c63430008110033

Deployed Bytecode Sourcemap

41999:3535:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16638:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23719:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23179:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44830:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15692:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24605:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42274:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24846:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42106:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45070:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45306:225;;;:::i;:::-;;21440:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17317:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2748:103;;;;;;;;;;;;;:::i;:::-;;44738:84;;;;;;;;;;;;;:::i;:::-;;44486:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43732:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42220:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2097:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44280:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21820:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42587:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42334:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42970:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23995:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25102:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44608:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44374:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21995:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42166:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42049:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24374:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42398:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3006:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42645:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16638:615;16723:4;17038:10;17023:25;;:11;:25;;;;:102;;;;17115:10;17100:25;;:11;:25;;;;17023:102;:179;;;;17192:10;17177:25;;:11;:25;;;;17023:179;17003:199;;16638:615;;;:::o;21651:100::-;21705:13;21738:5;21731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:100;:::o;23719:204::-;23787:7;23812:16;23820:7;23812;:16::i;:::-;23807:64;;23837:34;;;;;;;;;;;;;;23807:64;23891:15;:24;23907:7;23891:24;;;;;;;;;;;;;;;;;;;;;23884:31;;23719:204;;;:::o;23179:474::-;23252:13;23284:27;23303:7;23284:18;:27::i;:::-;23252:61;;23334:5;23328:11;;:2;:11;;;23324:48;;23348:24;;;;;;;;;;;;;;23324:48;23412:5;23389:28;;:19;:17;:19::i;:::-;:28;;;23385:175;;23437:44;23454:5;23461:19;:17;:19::i;:::-;23437:16;:44::i;:::-;23432:128;;23509:35;;;;;;;;;;;;;;23432:128;23385:175;23599:2;23572:15;:24;23588:7;23572:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23637:7;23633:2;23617:28;;23626:5;23617:28;;;;;;;;;;;;23241:412;23179:474;;:::o;44830:232::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44942:13:::1;:11;:13::i;:::-;44931:7;44919:9;;:19;;;;:::i;:::-;:36;;44897:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;45047:7;45034:9;;:20;;;;;;;:::i;:::-;;;;;;;;44830:232:::0;:::o;15692:315::-;15745:7;15973:15;:13;:15::i;:::-;15958:12;;15942:13;;:28;:46;15935:53;;15692:315;:::o;24605:170::-;24739:28;24749:4;24755:2;24759:7;24739:9;:28::i;:::-;24605:170;;;:::o;42274:47::-;;;;:::o;24846:185::-;24984:39;25001:4;25007:2;25011:7;24984:39;;;;;;;;;;;;:16;:39::i;:::-;24846:185;;;:::o;42106:47::-;;;;:::o;45070:106::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45161:7:::1;;45145:13;:23;;;;;;;:::i;:::-;;45070:106:::0;;:::o;45306:225::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45374:12:::1;42499:42;45392:26;;45440:21;45392:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45373:103;;;45495:7;45487:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45360:171;45306:225::o:0;21440:144::-;21504:7;21547:27;21566:7;21547:18;:27::i;:::-;21524:52;;21440:144;;;:::o;17317:224::-;17381:7;17422:1;17405:19;;:5;:19;;;17401:60;;17433:28;;;;;;;;;;;;;;17401:60;12656:13;17479:18;:25;17498:5;17479:25;;;;;;;;;;;;;;;;:54;17472:61;;17317:224;;;:::o;2748:103::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2813:30:::1;2840:1;2813:18;:30::i;:::-;2748:103::o:0;44738:84::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44802:12:::1;;;;;;;;;;;44801:13;44786:12;;:28;;;;;;;;;;;;;;;;;;44738:84::o:0;44486:114::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44585:7:::1;44559:23;:33;;;;44486:114:::0;:::o;43732:540::-;42843:12;;;;;;;;;;;42835:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42915:10;42902:23;;:9;:23;;;42894:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43861:9:::1;43845:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43828:13;;:42;;43806:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;43933:25;43961:16;:28;43978:10;43961:28;;;;;;;;;;;;;;;;43933:56;;44055:27;;44042:9;44022:17;:29;;;;:::i;:::-;:60;;44000:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;44212:9;44192:17;:29;;;;:::i;:::-;44161:16;:28;44178:10;44161:28;;;;;;;;;;;;;;;:60;;;;44232:32;44242:10;44254:9;44232;:32::i;:::-;43795:477;43732:540:::0;:::o;42220:47::-;;;;:::o;2097:87::-;2143:7;2170:6;;;;;;;;;;;2163:13;;2097:87;:::o;44280:86::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44352:6:::1;44344:5;:14;;;;44280:86:::0;:::o;21820:104::-;21876:13;21909:7;21902:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:104;:::o;42587:51::-;;;;;;;;;;;;;;;;;:::o;42334:57::-;;;;:::o;42970:754::-;42843:12;;;;;;;;;;;42835:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42915:10;42902:23;;:9;:23;;;42894:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43091:9:::1;43083:5;;:17;;;;:::i;:::-;43070:9;:30;;43048:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43213:9;43197:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43184:9;;:38;;43162:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43285:21;43309:12;:24;43322:10;43309:24;;;;;;;;;;;;;;;;43285:48;;43395:23;;43382:9;43366:13;:25;;;;:::i;:::-;:52;;43344:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;43526:1;43514:9;:13;:48;;;;;43544:18;;43531:9;:31;;43514:48;43492:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43664:9;43648:13;:25;;;;:::i;:::-;43621:12;:24;43634:10;43621:24;;;;;;;;;;;;;;;:52;;;;43684:32;43694:10;43706:9;43684;:32::i;:::-;43037:687;42970:754:::0;:::o;23995:308::-;24106:19;:17;:19::i;:::-;24094:31;;:8;:31;;;24090:61;;24134:17;;;;;;;;;;;;;;24090:61;24216:8;24164:18;:39;24183:19;:17;:19::i;:::-;24164:39;;;;;;;;;;;;;;;:49;24204:8;24164:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24276:8;24240:55;;24255:19;:17;:19::i;:::-;24240:55;;;24286:8;24240:55;;;;;;:::i;:::-;;;;;;;;23995:308;;:::o;25102:396::-;25269:28;25279:4;25285:2;25289:7;25269:9;:28::i;:::-;25330:1;25312:2;:14;;;:19;25308:183;;25351:56;25382:4;25388:2;25392:7;25401:5;25351:30;:56::i;:::-;25346:145;;25435:40;;;;;;;;;;;;;;25346:145;25308:183;25102:396;;;;:::o;44608:122::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44715:7:::1;44685:27;:37;;;;44608:122:::0;:::o;44374:104::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44463:7:::1;44442:18;:28;;;;44374:104:::0;:::o;21995:318::-;22068:13;22099:16;22107:7;22099;:16::i;:::-;22094:59;;22124:29;;;;;;;;;;;;;;22094:59;22166:21;22190:10;:8;:10::i;:::-;22166:34;;22243:1;22224:7;22218:21;:26;:87;;;;;;;;;;;;;;;;;22271:7;22280:18;22290:7;22280:9;:18::i;:::-;22254:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22218:87;22211:94;;;21995:318;;;:::o;42166:47::-;;;;:::o;42049:50::-;;;;:::o;24374:164::-;24471:4;24495:18;:25;24514:5;24495:25;;;;;;;;;;;;;;;:35;24521:8;24495:35;;;;;;;;;;;;;;;;;;;;;;;;;24488:42;;24374:164;;;;:::o;42398:51::-;;;;;;;;;;;;;:::o;3006:201::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3115:1:::1;3095:22;;:8;:22;;::::0;3087:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3171:28;3190:8;3171:18;:28::i;:::-;3006:201:::0;:::o;42645:47::-;;;;;;;;;;;;;;;;;:::o;25753:273::-;25810:4;25866:7;25847:15;:13;:15::i;:::-;:26;;:66;;;;;25900:13;;25890:7;:23;25847:66;:152;;;;;25998:1;13426:8;25951:17;:26;25969:7;25951:26;;;;;;;;;;;;:43;:48;25847:152;25827:172;;25753:273;;;:::o;18955:1129::-;19022:7;19042:12;19057:7;19042:22;;19125:4;19106:15;:13;:15::i;:::-;:23;19102:915;;19159:13;;19152:4;:20;19148:869;;;19197:14;19214:17;:23;19232:4;19214:23;;;;;;;;;;;;19197:40;;19330:1;13426:8;19303:6;:23;:28;19299:699;;19822:113;19839:1;19829:6;:11;19822:113;;19882:17;:25;19900:6;;;;;;;19882:25;;;;;;;;;;;;19873:34;;19822:113;;;19968:6;19961:13;;;;;;19299:699;19174:843;19148:869;19102:915;20045:31;;;;;;;;;;;;;;18955:1129;;;;:::o;39735:105::-;39795:7;39822:10;39815:17;;39735:105;:::o;821:98::-;874:7;901:10;894:17;;821:98;:::o;15215:92::-;15271:7;15215:92;:::o;30992:2515::-;31107:27;31137;31156:7;31137:18;:27::i;:::-;31107:57;;31222:4;31181:45;;31197:19;31181:45;;;31177:86;;31235:28;;;;;;;;;;;;;;31177:86;31276:22;31325:4;31302:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31346:43;31363:4;31369:19;:17;:19::i;:::-;31346:16;:43::i;:::-;31302:87;:147;;;;31430:19;:17;:19::i;:::-;31406:43;;:20;31418:7;31406:11;:20::i;:::-;:43;;;31302:147;31276:174;;31468:17;31463:66;;31494:35;;;;;;;;;;;;;;31463:66;31558:1;31544:16;;:2;:16;;;31540:52;;31569:23;;;;;;;;;;;;;;31540:52;31605:43;31627:4;31633:2;31637:7;31646:1;31605:21;:43::i;:::-;31721:15;:24;31737:7;31721:24;;;;;;;;;;;;31714:31;;;;;;;;;;;32113:18;:24;32132:4;32113:24;;;;;;;;;;;;;;;;32111:26;;;;;;;;;;;;32182:18;:22;32201:2;32182:22;;;;;;;;;;;;;;;;32180:24;;;;;;;;;;;13708:8;13310:3;32563:15;:41;;32521:21;32539:2;32521:17;:21::i;:::-;:84;:128;32475:17;:26;32493:7;32475:26;;;;;;;;;;;:174;;;;32819:1;13708:8;32769:19;:46;:51;32765:626;;32841:19;32873:1;32863:7;:11;32841:33;;33030:1;32996:17;:30;33014:11;32996:30;;;;;;;;;;;;:35;32992:384;;33134:13;;33119:11;:28;33115:242;;33314:19;33281:17;:30;33299:11;33281:30;;;;;;;;;;;:52;;;;33115:242;32992:384;32822:569;32765:626;33438:7;33434:2;33419:27;;33428:4;33419:27;;;;;;;;;;;;33457:42;33478:4;33484:2;33488:7;33497:1;33457:20;:42::i;:::-;31096:2411;;30992:2515;;;:::o;3367:191::-;3441:16;3460:6;;;;;;;;;;;3441:25;;3486:8;3477:6;;:17;;;;;;;;;;;;;;;;;;3541:8;3510:40;;3531:8;3510:40;;;;;;;;;;;;3430:128;3367:191;:::o;26110:104::-;26179:27;26189:2;26193:8;26179:27;;;;;;;;;;;;:9;:27::i;:::-;26110:104;;:::o;37204:716::-;37367:4;37413:2;37388:45;;;37434:19;:17;:19::i;:::-;37455:4;37461:7;37470:5;37388:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37688:1;37671:6;:13;:18;37667:235;;37717:40;;;;;;;;;;;;;;37667:235;37860:6;37854:13;37845:6;37841:2;37837:15;37830:38;37384:529;37557:54;;;37547:64;;;:6;:64;;;;37540:71;;;37204:716;;;;;;:::o;45184:114::-;45244:13;45277;45270:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45184:114;:::o;39946:1959::-;40003:17;40424:3;40417:4;40411:11;40407:21;40400:28;;40515:3;40509:4;40502:17;40621:3;41078:5;41208:1;41203:3;41199:11;41192:18;;41345:2;41339:4;41335:13;41331:2;41327:22;41322:3;41314:36;41386:2;41380:4;41376:13;41368:21;;40969:682;41405:4;40969:682;;;41580:1;41575:3;41571:11;41564:18;;41631:2;41625:4;41621:13;41617:2;41613:22;41608:3;41600:36;41501:2;41495:4;41491:13;41483:21;;40969:682;;;40973:431;41702:3;41697;41693:13;41817:2;41812:3;41808:12;41801:19;;41880:6;41875:3;41868:19;40042:1856;;39946:1959;;;:::o;38568:159::-;;;;;:::o;22740:148::-;22804:14;22865:5;22855:15;;22740:148;;;:::o;39386:158::-;;;;;:::o;26587:2236::-;26710:20;26733:13;;26710:36;;26775:1;26761:16;;:2;:16;;;26757:48;;26786:19;;;;;;;;;;;;;;26757:48;26832:1;26820:8;:13;26816:44;;26842:18;;;;;;;;;;;;;;26816:44;26873:61;26903:1;26907:2;26911:12;26925:8;26873:21;:61::i;:::-;27477:1;12793:2;27448:1;:25;;27447:31;27435:8;:44;27409:18;:22;27428:2;27409:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13573:3;27878:29;27905:1;27893:8;:13;27878:14;:29::i;:::-;:56;;13310:3;27815:15;:41;;27773:21;27791:2;27773:17;:21::i;:::-;:84;:162;27722:17;:31;27740:12;27722:31;;;;;;;;;;;:213;;;;27952:20;27975:12;27952:35;;28002:11;28031:8;28016:12;:23;28002:37;;28078:1;28060:2;:14;;;:19;28056:635;;28100:313;28156:12;28152:2;28131:38;;28148:1;28131:38;;;;;;;;;;;;28197:69;28236:1;28240:2;28244:14;;;;;;28260:5;28197:30;:69::i;:::-;28192:174;;28302:40;;;;;;;;;;;;;;28192:174;28408:3;28393:12;:18;28100:313;;28494:12;28477:13;;:29;28473:43;;28508:8;;;28473:43;28056:635;;;28557:119;28613:14;;;;;;28609:2;28588:40;;28605:1;28588:40;;;;;;;;;;;;28671:3;28656:12;:18;28557:119;;28056:635;28721:12;28705:13;:28;;;;27186:1559;;28755:60;28784:1;28788:2;28792:12;28806:8;28755:20;:60::i;:::-;26699:2124;26587:2236;;;:::o;22975:142::-;23033:14;23094:5;23084:15;;22975:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:182::-;12477:34;12473:1;12465:6;12461:14;12454:58;12337:182;:::o;12525:366::-;12667:3;12688:67;12752:2;12747:3;12688:67;:::i;:::-;12681:74;;12764:93;12853:3;12764:93;:::i;:::-;12882:2;12877:3;12873:12;12866:19;;12525:366;;;:::o;12897:419::-;13063:4;13101:2;13090:9;13086:18;13078:26;;13150:9;13144:4;13140:20;13136:1;13125:9;13121:17;13114:47;13178:131;13304:4;13178:131;:::i;:::-;13170:139;;12897:419;;;:::o;13322:180::-;13370:77;13367:1;13360:88;13467:4;13464:1;13457:15;13491:4;13488:1;13481:15;13508:194;13548:4;13568:20;13586:1;13568:20;:::i;:::-;13563:25;;13602:20;13620:1;13602:20;:::i;:::-;13597:25;;13646:1;13643;13639:9;13631:17;;13670:1;13664:4;13661:11;13658:37;;;13675:18;;:::i;:::-;13658:37;13508:194;;;;:::o;13708:226::-;13848:34;13844:1;13836:6;13832:14;13825:58;13917:9;13912:2;13904:6;13900:15;13893:34;13708:226;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:97::-;14796:6;14824:3;14814:13;;14737:97;;;;:::o;14840:141::-;14889:4;14912:3;14904:11;;14935:3;14932:1;14925:14;14969:4;14966:1;14956:18;14948:26;;14840:141;;;:::o;14987:93::-;15024:6;15071:2;15066;15059:5;15055:14;15051:23;15041:33;;14987:93;;;:::o;15086:107::-;15130:8;15180:5;15174:4;15170:16;15149:37;;15086:107;;;;:::o;15199:393::-;15268:6;15318:1;15306:10;15302:18;15341:97;15371:66;15360:9;15341:97;:::i;:::-;15459:39;15489:8;15478:9;15459:39;:::i;:::-;15447:51;;15531:4;15527:9;15520:5;15516:21;15507:30;;15580:4;15570:8;15566:19;15559:5;15556:30;15546:40;;15275:317;;15199:393;;;;;:::o;15598:60::-;15626:3;15647:5;15640:12;;15598:60;;;:::o;15664:142::-;15714:9;15747:53;15765:34;15774:24;15792:5;15774:24;:::i;:::-;15765:34;:::i;:::-;15747:53;:::i;:::-;15734:66;;15664:142;;;:::o;15812:75::-;15855:3;15876:5;15869:12;;15812:75;;;:::o;15893:269::-;16003:39;16034:7;16003:39;:::i;:::-;16064:91;16113:41;16137:16;16113:41;:::i;:::-;16105:6;16098:4;16092:11;16064:91;:::i;:::-;16058:4;16051:105;15969:193;15893:269;;;:::o;16168:73::-;16213:3;16168:73;:::o;16247:189::-;16324:32;;:::i;:::-;16365:65;16423:6;16415;16409:4;16365:65;:::i;:::-;16300:136;16247:189;;:::o;16442:186::-;16502:120;16519:3;16512:5;16509:14;16502:120;;;16573:39;16610:1;16603:5;16573:39;:::i;:::-;16546:1;16539:5;16535:13;16526:22;;16502:120;;;16442:186;;:::o;16634:543::-;16735:2;16730:3;16727:11;16724:446;;;16769:38;16801:5;16769:38;:::i;:::-;16853:29;16871:10;16853:29;:::i;:::-;16843:8;16839:44;17036:2;17024:10;17021:18;17018:49;;;17057:8;17042:23;;17018:49;17080:80;17136:22;17154:3;17136:22;:::i;:::-;17126:8;17122:37;17109:11;17080:80;:::i;:::-;16739:431;;16724:446;16634:543;;;:::o;17183:117::-;17237:8;17287:5;17281:4;17277:16;17256:37;;17183:117;;;;:::o;17306:169::-;17350:6;17383:51;17431:1;17427:6;17419:5;17416:1;17412:13;17383:51;:::i;:::-;17379:56;17464:4;17458;17454:15;17444:25;;17357:118;17306:169;;;;:::o;17480:295::-;17556:4;17702:29;17727:3;17721:4;17702:29;:::i;:::-;17694:37;;17764:3;17761:1;17757:11;17751:4;17748:21;17740:29;;17480:295;;;;:::o;17780:1403::-;17904:44;17944:3;17939;17904:44;:::i;:::-;18013:18;18005:6;18002:30;17999:56;;;18035:18;;:::i;:::-;17999:56;18079:38;18111:4;18105:11;18079:38;:::i;:::-;18164:67;18224:6;18216;18210:4;18164:67;:::i;:::-;18258:1;18287:2;18279:6;18276:14;18304:1;18299:632;;;;18975:1;18992:6;18989:84;;;19048:9;19043:3;19039:19;19026:33;19017:42;;18989:84;19099:67;19159:6;19152:5;19099:67;:::i;:::-;19093:4;19086:81;18948:229;18269:908;;18299:632;18351:4;18347:9;18339:6;18335:22;18385:37;18417:4;18385:37;:::i;:::-;18444:1;18458:215;18472:7;18469:1;18466:14;18458:215;;;18558:9;18553:3;18549:19;18536:33;18528:6;18521:49;18609:1;18601:6;18597:14;18587:24;;18656:2;18645:9;18641:18;18628:31;;18495:4;18492:1;18488:12;18483:17;;18458:215;;;18701:6;18692:7;18689:19;18686:186;;;18766:9;18761:3;18757:19;18744:33;18809:48;18851:4;18843:6;18839:17;18828:9;18809:48;:::i;:::-;18801:6;18794:64;18709:163;18686:186;18918:1;18914;18906:6;18902:14;18898:22;18892:4;18885:36;18306:625;;;18269:908;;17879:1304;;;17780:1403;;;:::o;19189:147::-;19290:11;19327:3;19312:18;;19189:147;;;;:::o;19342:114::-;;:::o;19462:398::-;19621:3;19642:83;19723:1;19718:3;19642:83;:::i;:::-;19635:90;;19734:93;19823:3;19734:93;:::i;:::-;19852:1;19847:3;19843:11;19836:18;;19462:398;;;:::o;19866:379::-;20050:3;20072:147;20215:3;20072:147;:::i;:::-;20065:154;;20236:3;20229:10;;19866:379;;;:::o;20251:166::-;20391:18;20387:1;20379:6;20375:14;20368:42;20251:166;:::o;20423:366::-;20565:3;20586:67;20650:2;20645:3;20586:67;:::i;:::-;20579:74;;20662:93;20751:3;20662:93;:::i;:::-;20780:2;20775:3;20771:12;20764:19;;20423:366;;;:::o;20795:419::-;20961:4;20999:2;20988:9;20984:18;20976:26;;21048:9;21042:4;21038:20;21034:1;21023:9;21019:17;21012:47;21076:131;21202:4;21076:131;:::i;:::-;21068:139;;20795:419;;;:::o;21220:173::-;21360:25;21356:1;21348:6;21344:14;21337:49;21220:173;:::o;21399:366::-;21541:3;21562:67;21626:2;21621:3;21562:67;:::i;:::-;21555:74;;21638:93;21727:3;21638:93;:::i;:::-;21756:2;21751:3;21747:12;21740:19;;21399:366;;;:::o;21771:419::-;21937:4;21975:2;21964:9;21960:18;21952:26;;22024:9;22018:4;22014:20;22010:1;21999:9;21995:17;21988:47;22052:131;22178:4;22052:131;:::i;:::-;22044:139;;21771:419;;;:::o;22196:162::-;22336:14;22332:1;22324:6;22320:14;22313:38;22196:162;:::o;22364:366::-;22506:3;22527:67;22591:2;22586:3;22527:67;:::i;:::-;22520:74;;22603:93;22692:3;22603:93;:::i;:::-;22721:2;22716:3;22712:12;22705:19;;22364:366;;;:::o;22736:419::-;22902:4;22940:2;22929:9;22925:18;22917:26;;22989:9;22983:4;22979:20;22975:1;22964:9;22960:17;22953:47;23017:131;23143:4;23017:131;:::i;:::-;23009:139;;22736:419;;;:::o;23161:191::-;23201:3;23220:20;23238:1;23220:20;:::i;:::-;23215:25;;23254:20;23272:1;23254:20;:::i;:::-;23249:25;;23297:1;23294;23290:9;23283:16;;23318:3;23315:1;23312:10;23309:36;;;23325:18;;:::i;:::-;23309:36;23161:191;;;;:::o;23358:174::-;23498:26;23494:1;23486:6;23482:14;23475:50;23358:174;:::o;23538:366::-;23680:3;23701:67;23765:2;23760:3;23701:67;:::i;:::-;23694:74;;23777:93;23866:3;23777:93;:::i;:::-;23895:2;23890:3;23886:12;23879:19;;23538:366;;;:::o;23910:419::-;24076:4;24114:2;24103:9;24099:18;24091:26;;24163:9;24157:4;24153:20;24149:1;24138:9;24134:17;24127:47;24191:131;24317:4;24191:131;:::i;:::-;24183:139;;23910:419;;;:::o;24335:227::-;24475:34;24471:1;24463:6;24459:14;24452:58;24544:10;24539:2;24531:6;24527:15;24520:35;24335:227;:::o;24568:366::-;24710:3;24731:67;24795:2;24790:3;24731:67;:::i;:::-;24724:74;;24807:93;24896:3;24807:93;:::i;:::-;24925:2;24920:3;24916:12;24909:19;;24568:366;;;:::o;24940:419::-;25106:4;25144:2;25133:9;25129:18;25121:26;;25193:9;25187:4;25183:20;25179:1;25168:9;25164:17;25157:47;25221:131;25347:4;25221:131;:::i;:::-;25213:139;;24940:419;;;:::o;25365:410::-;25405:7;25428:20;25446:1;25428:20;:::i;:::-;25423:25;;25462:20;25480:1;25462:20;:::i;:::-;25457:25;;25517:1;25514;25510:9;25539:30;25557:11;25539:30;:::i;:::-;25528:41;;25718:1;25709:7;25705:15;25702:1;25699:22;25679:1;25672:9;25652:83;25629:139;;25748:18;;:::i;:::-;25629:139;25413:362;25365:410;;;;:::o;25781:173::-;25921:25;25917:1;25909:6;25905:14;25898:49;25781:173;:::o;25960:366::-;26102:3;26123:67;26187:2;26182:3;26123:67;:::i;:::-;26116:74;;26199:93;26288:3;26199:93;:::i;:::-;26317:2;26312:3;26308:12;26301:19;;25960:366;;;:::o;26332:419::-;26498:4;26536:2;26525:9;26521:18;26513:26;;26585:9;26579:4;26575:20;26571:1;26560:9;26556:17;26549:47;26613:131;26739:4;26613:131;:::i;:::-;26605:139;;26332:419;;;:::o;26757:222::-;26897:34;26893:1;26885:6;26881:14;26874:58;26966:5;26961:2;26953:6;26949:15;26942:30;26757:222;:::o;26985:366::-;27127:3;27148:67;27212:2;27207:3;27148:67;:::i;:::-;27141:74;;27224:93;27313:3;27224:93;:::i;:::-;27342:2;27337:3;27333:12;27326:19;;26985:366;;;:::o;27357:419::-;27523:4;27561:2;27550:9;27546:18;27538:26;;27610:9;27604:4;27600:20;27596:1;27585:9;27581:17;27574:47;27638:131;27764:4;27638:131;:::i;:::-;27630:139;;27357:419;;;:::o;27782:170::-;27922:22;27918:1;27910:6;27906:14;27899:46;27782:170;:::o;27958:366::-;28100:3;28121:67;28185:2;28180:3;28121:67;:::i;:::-;28114:74;;28197:93;28286:3;28197:93;:::i;:::-;28315:2;28310:3;28306:12;28299:19;;27958:366;;;:::o;28330:419::-;28496:4;28534:2;28523:9;28519:18;28511:26;;28583:9;28577:4;28573:20;28569:1;28558:9;28554:17;28547:47;28611:131;28737:4;28611:131;:::i;:::-;28603:139;;28330:419;;;:::o;28755:148::-;28857:11;28894:3;28879:18;;28755:148;;;;:::o;28909:390::-;29015:3;29043:39;29076:5;29043:39;:::i;:::-;29098:89;29180:6;29175:3;29098:89;:::i;:::-;29091:96;;29196:65;29254:6;29249:3;29242:4;29235:5;29231:16;29196:65;:::i;:::-;29286:6;29281:3;29277:16;29270:23;;29019:280;28909:390;;;;:::o;29305:435::-;29485:3;29507:95;29598:3;29589:6;29507:95;:::i;:::-;29500:102;;29619:95;29710:3;29701:6;29619:95;:::i;:::-;29612:102;;29731:3;29724:10;;29305:435;;;;;:::o;29746:225::-;29886:34;29882:1;29874:6;29870:14;29863:58;29955:8;29950:2;29942:6;29938:15;29931:33;29746:225;:::o;29977:366::-;30119:3;30140:67;30204:2;30199:3;30140:67;:::i;:::-;30133:74;;30216:93;30305:3;30216:93;:::i;:::-;30334:2;30329:3;30325:12;30318:19;;29977:366;;;:::o;30349:419::-;30515:4;30553:2;30542:9;30538:18;30530:26;;30602:9;30596:4;30592:20;30588:1;30577:9;30573:17;30566:47;30630:131;30756:4;30630:131;:::i;:::-;30622:139;;30349:419;;;:::o;30774:98::-;30825:6;30859:5;30853:12;30843:22;;30774:98;;;:::o;30878:168::-;30961:11;30995:6;30990:3;30983:19;31035:4;31030:3;31026:14;31011:29;;30878:168;;;;:::o;31052:373::-;31138:3;31166:38;31198:5;31166:38;:::i;:::-;31220:70;31283:6;31278:3;31220:70;:::i;:::-;31213:77;;31299:65;31357:6;31352:3;31345:4;31338:5;31334:16;31299:65;:::i;:::-;31389:29;31411:6;31389:29;:::i;:::-;31384:3;31380:39;31373:46;;31142:283;31052:373;;;;:::o;31431:640::-;31626:4;31664:3;31653:9;31649:19;31641:27;;31678:71;31746:1;31735:9;31731:17;31722:6;31678:71;:::i;:::-;31759:72;31827:2;31816:9;31812:18;31803:6;31759:72;:::i;:::-;31841;31909:2;31898:9;31894:18;31885:6;31841:72;:::i;:::-;31960:9;31954:4;31950:20;31945:2;31934:9;31930:18;31923:48;31988:76;32059:4;32050:6;31988:76;:::i;:::-;31980:84;;31431:640;;;;;;;:::o;32077:141::-;32133:5;32164:6;32158:13;32149:22;;32180:32;32206:5;32180:32;:::i;:::-;32077:141;;;;:::o;32224:349::-;32293:6;32342:2;32330:9;32321:7;32317:23;32313:32;32310:119;;;32348:79;;:::i;:::-;32310:119;32468:1;32493:63;32548:7;32539:6;32528:9;32524:22;32493:63;:::i;:::-;32483:73;;32439:127;32224:349;;;;:::o

Swarm Source

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