ETH Price: $2,312.97 (-4.44%)
Gas: 1.4 Gwei

Token

asspix (ASS)
 

Overview

Max Total Supply

972 ASS

Holders

189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*你挂个零啊.eth
Balance
1 ASS
0x876b397df857f73307607c4e092663024e81d1ed
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:
asspix

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-11
*/

// File: contracts/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: 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: 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 virtual 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: contracts/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: contracts/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: contracts/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/asspixwtf.sol



pragma solidity >=0.8.13;






contract asspix is ERC721A, Ownable, ReentrancyGuard, OperatorFilterer {
  using Strings for uint256;

  string public hiddenMetadataUri;
  string public uriPrefix = '';
  string public uriSuffix = '.json';

  uint256 public cost = 0.003 ether;
  uint256 public maxAssNumber = 10;
  uint256 public freeAss = 1;

  uint256 public maxNFTs = 4555;
  uint256 public maxTxn = 10;

  bool public revealed = false;
  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), false) {}

  modifier mintCompliance(uint256 _mintAmount) {

    uint256 actualCost = 0;

    require(!paused, "asspix minting is still closed.");
    require(tx.origin == msg.sender, "no asspix for contracts.");
    require(_mintAmount > 0 && _mintAmount <= maxTxn, "only 10 asspix per transaction.");
    require(totalSupply() + _mintAmount <= maxNFTs, "no more asspix left.");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxAssNumber,
       "you are trying to mint more asspix than allowed, leave some for the rest."
    );
    
    if (numberMinted(msg.sender) < freeAss) {
      uint256 freeAssLeft = freeAss - numberMinted(msg.sender);
      actualCost = cost * freeAssLeft;
    }
   
    require(msg.value >= cost * _mintAmount - actualCost, "insufficient funds for asspix.");
    _;
  }

  function ass(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxNFTs, "max asspix exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

   function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setmaxAssNumber(uint256 _maxAssNumber) public onlyOwner {
    maxAssNumber = _maxAssNumber;
  }

  function setfreeAss(uint256 _freeAss) public onlyOwner {
    freeAss = _freeAss;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool withdrawFunds, ) = payable(owner()).call{value: address(this).balance}("");
    require(withdrawFunds);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
  {
        super.safeTransferFrom(from, to, tokenId, data);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAss","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxAssNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeAss","type":"uint256"}],"name":"setfreeAss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAssNumber","type":"uint256"}],"name":"setmaxAssNumber","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000464565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200007992919062000464565b50660aa87bee538000600d55600a600e556001600f556111cb601055600a6011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040516200481a3803806200481a8339818101604052810190620001039190620006b1565b733cc6cdda760b79bafa08df41ecfa224f810dceb66000838381600290805190602001906200013492919062000464565b5080600390805190602001906200014d92919062000464565b506200015e6200038d60201b60201c565b6000819055505050620001866200017a6200039660201b60201c565b6200039e60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200038357801562000249576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020f9291906200077b565b600060405180830381600087803b1580156200022a57600080fd5b505af11580156200023f573d6000803e3d6000fd5b5050505062000382565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000303576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002c99291906200077b565b600060405180830381600087803b158015620002e457600080fd5b505af1158015620002f9573d6000803e3d6000fd5b5050505062000381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200034c9190620007a8565b600060405180830381600087803b1580156200036757600080fd5b505af11580156200037c573d6000803e3d6000fd5b505050505b5b5b5050505062000829565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200047290620007f4565b90600052602060002090601f016020900481019282620004965760008555620004e2565b82601f10620004b157805160ff1916838001178555620004e2565b82800160010185558215620004e2579182015b82811115620004e1578251825591602001919060010190620004c4565b5b509050620004f19190620004f5565b5090565b5b8082111562000510576000816000905550600101620004f6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200057d8262000532565b810181811067ffffffffffffffff821117156200059f576200059e62000543565b5b80604052505050565b6000620005b462000514565b9050620005c2828262000572565b919050565b600067ffffffffffffffff821115620005e557620005e462000543565b5b620005f08262000532565b9050602081019050919050565b60005b838110156200061d57808201518184015260208101905062000600565b838111156200062d576000848401525b50505050565b60006200064a6200064484620005c7565b620005a8565b9050828152602081018484840111156200066957620006686200052d565b5b62000676848285620005fd565b509392505050565b600082601f83011262000696576200069562000528565b5b8151620006a884826020860162000633565b91505092915050565b60008060408385031215620006cb57620006ca6200051e565b5b600083015167ffffffffffffffff811115620006ec57620006eb62000523565b5b620006fa858286016200067e565b925050602083015167ffffffffffffffff8111156200071e576200071d62000523565b5b6200072c858286016200067e565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007638262000736565b9050919050565b620007758162000756565b82525050565b60006040820190506200079260008301856200076a565b620007a160208301846200076a565b9392505050565b6000602082019050620007bf60008301846200076a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080d57607f821691505b602082108103620008235762000822620007c5565b5b50919050565b613fe180620008396000396000f3fe60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e0a808531161006f578063e0a808531461083e578063e8792c1a14610867578063e985e9c514610892578063efbd73f4146108cf578063f2fde38b146108f85761023b565b8063a22cb46514610747578063a45ba8e714610770578063b88d4fde1461079b578063c87b56dd146107c4578063dc33e681146108015761023b565b80637ec4a659116100f25780637ec4a659146106765780638a00495e1461069f5780638da5cb5b146106c857806394798dbf146106f357806395d89b411461071c5761023b565b80635c975abb1461058f57806362b99ad4146105ba5780636352211e146105e557806370a0823114610622578063715018a61461065f5761023b565b80632fa78570116101bc57806344a0d68a1161018057806344a0d68a146104bc5780634e9e1ec6146104e55780634fdd43cb1461051057806351830227146105395780635503a0e8146105645761023b565b80632fa78570146103fb578063399cae62146104265780633ccfd60b1461045157806341f434341461046857806342842e0e146104935761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806323b872dd146103b657806329c84c54146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e37565b610921565b6040516102749190612e7f565b60405180910390f35b34801561028957600080fd5b506102926109b3565b60405161029f9190612f33565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f8b565b610a45565b6040516102dc9190612ff9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613040565b610ac1565b005b34801561031a57600080fd5b50610323610ada565b604051610330919061308f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906131df565b610ae0565b005b34801561036e57600080fd5b5061038960048036038101906103849190613254565b610b76565b005b34801561039757600080fd5b506103a0610c0f565b6040516103ad919061308f565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613281565b610c26565b005b6103f960048036038101906103f49190612f8b565b610c75565b005b34801561040757600080fd5b50610410610ef1565b60405161041d919061308f565b60405180910390f35b34801561043257600080fd5b5061043b610ef7565b604051610448919061308f565b60405180910390f35b34801561045d57600080fd5b50610466610efd565b005b34801561047457600080fd5b5061047d61104e565b60405161048a9190613333565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613281565b611060565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612f8b565b6110af565b005b3480156104f157600080fd5b506104fa611135565b604051610507919061308f565b60405180910390f35b34801561051c57600080fd5b50610537600480360381019061053291906131df565b61113b565b005b34801561054557600080fd5b5061054e6111d1565b60405161055b9190612e7f565b60405180910390f35b34801561057057600080fd5b506105796111e4565b6040516105869190612f33565b60405180910390f35b34801561059b57600080fd5b506105a4611272565b6040516105b19190612e7f565b60405180910390f35b3480156105c657600080fd5b506105cf611285565b6040516105dc9190612f33565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190612f8b565b611313565b6040516106199190612ff9565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061334e565b611325565b604051610656919061308f565b60405180910390f35b34801561066b57600080fd5b506106746113dd565b005b34801561068257600080fd5b5061069d600480360381019061069891906131df565b611465565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612f8b565b6114fb565b005b3480156106d457600080fd5b506106dd611581565b6040516106ea9190612ff9565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f8b565b6115ab565b005b34801561072857600080fd5b50610731611631565b60405161073e9190612f33565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061337b565b6116c3565b005b34801561077c57600080fd5b506107856116dc565b6040516107929190612f33565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061345c565b61176a565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190612f8b565b6117bb565b6040516107f89190612f33565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061334e565b611913565b604051610835919061308f565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613254565b611925565b005b34801561087357600080fd5b5061087c6119be565b604051610889919061308f565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906134df565b6119c4565b6040516108c69190612e7f565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f1919061351f565b611a58565b005b34801561090457600080fd5b5061091f600480360381019061091a919061334e565b611b39565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c29061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee9061358e565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611c30565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610acb81611c8f565b610ad58383611d8c565b505050565b600d5481565b610ae8611f32565b73ffffffffffffffffffffffffffffffffffffffff16610b06611581565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061360b565b60405180910390fd5b80600c9080519060200190610b72929190612d28565b5050565b610b7e611f32565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611581565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be99061360b565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610c19611f3a565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6457610c6333611c8f565b5b610c6f848484611f43565b50505050565b806000601260019054906101000a900460ff1615610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613677565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906136e3565b60405180910390fd5b600082118015610d4857506011548211155b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061374f565b60405180910390fd5b60105482610d93610c0f565b610d9d919061379e565b1115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613840565b60405180910390fd5b600082118015610e035750600e5482610df633611913565b610e00919061379e565b11155b610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906138f8565b60405180910390fd5b600f54610e4e33611913565b1015610e80576000610e5f33611913565b600f54610e6c9190613918565b905080600d54610e7c919061394c565b9150505b8082600d54610e8f919061394c565b610e999190613918565b341015610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906139f2565b60405180910390fd5b610eec610ee6611f32565b84611f53565b505050565b600f5481565b600e5481565b610f05611f32565b73ffffffffffffffffffffffffffffffffffffffff16610f23611581565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061360b565b60405180910390fd5b600260095403610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613a5e565b60405180910390fd5b60026009819055506000610fd0611581565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ff390613aaf565b60006040518083038185875af1925050503d8060008114611030576040519150601f19603f3d011682016040523d82523d6000602084013e611035565b606091505b505090508061104357600080fd5b506001600981905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109e5761109d33611c8f565b5b6110a9848484611f71565b50505050565b6110b7611f32565b73ffffffffffffffffffffffffffffffffffffffff166110d5611581565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111229061360b565b60405180910390fd5b80600d8190555050565b60105481565b611143611f32565b73ffffffffffffffffffffffffffffffffffffffff16611161611581565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061360b565b60405180910390fd5b80600a90805190602001906111cd929190612d28565b5050565b601260009054906101000a900460ff1681565b600c80546111f19061358e565b80601f016020809104026020016040519081016040528092919081815260200182805461121d9061358e565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600b80546112929061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546112be9061358e565b801561130b5780601f106112e05761010080835404028352916020019161130b565b820191906000526020600020905b8154815290600101906020018083116112ee57829003601f168201915b505050505081565b600061131e82611f91565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113e5611f32565b73ffffffffffffffffffffffffffffffffffffffff16611403611581565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114509061360b565b60405180910390fd5b611463600061205d565b565b61146d611f32565b73ffffffffffffffffffffffffffffffffffffffff1661148b611581565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061360b565b60405180910390fd5b80600b90805190602001906114f7929190612d28565b5050565b611503611f32565b73ffffffffffffffffffffffffffffffffffffffff16611521611581565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061360b565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b3611f32565b73ffffffffffffffffffffffffffffffffffffffff166115d1611581565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e9061360b565b60405180910390fd5b80600e8190555050565b6060600380546116409061358e565b80601f016020809104026020016040519081016040528092919081815260200182805461166c9061358e565b80156116b95780601f1061168e576101008083540402835291602001916116b9565b820191906000526020600020905b81548152906001019060200180831161169c57829003601f168201915b5050505050905090565b816116cd81611c8f565b6116d78383612123565b505050565b600a80546116e99061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546117159061358e565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b505050505081565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117a8576117a733611c8f565b5b6117b48585858561229a565b5050505050565b60606117c682611c30565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90613b36565b60405180910390fd5b60001515601260009054906101000a900460ff161515036118b257600a805461182d9061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546118599061358e565b80156118a65780601f1061187b576101008083540402835291602001916118a6565b820191906000526020600020905b81548152906001019060200180831161188957829003601f168201915b5050505050905061190e565b60006118bc61230d565b905060008151116118dc576040518060200160405280600081525061190a565b806118e68461239f565b600c6040516020016118fa93929190613c26565b6040516020818303038152906040525b9150505b919050565b600061191e826124ff565b9050919050565b61192d611f32565b73ffffffffffffffffffffffffffffffffffffffff1661194b611581565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061360b565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a60611f32565b73ffffffffffffffffffffffffffffffffffffffff16611a7e611581565b73ffffffffffffffffffffffffffffffffffffffff1614611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb9061360b565b60405180910390fd5b60105482611ae0610c0f565b611aea919061379e565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613ca3565b60405180910390fd5b611b358183611f53565b5050565b611b41611f32565b73ffffffffffffffffffffffffffffffffffffffff16611b5f611581565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061360b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613d35565b60405180910390fd5b611c2d8161205d565b50565b600081611c3b611f3a565b11158015611c4a575060005482105b8015611c88575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d89576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d06929190613d55565b602060405180830381865afa158015611d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d479190613d93565b611d8857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d7f9190612ff9565b60405180910390fd5b5b50565b6000611d9782611f91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e1d612556565b73ffffffffffffffffffffffffffffffffffffffff1614611e8057611e4981611e44612556565b6119c4565b611e7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b60006001905090565b611f4e83838361255e565b505050565b611f6d828260405180602001604052806000815250612905565b5050565b611f8c8383836040518060200160405280600081525061176a565b505050565b60008082905080611fa0611f3a565b11612026576000548110156120255760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612023575b60008103612019576004600083600190039350838152602001908152602001600020549050611fef565b8092505050612058565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b612556565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361218f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061219c612556565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612249612556565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228e9190612e7f565b60405180910390a35050565b6122a584848461255e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612307576122d084848484612bb8565b612306576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461231c9061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546123489061358e565b80156123955780601f1061236a57610100808354040283529160200191612395565b820191906000526020600020905b81548152906001019060200180831161237857829003601f168201915b5050505050905090565b6060600082036123e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fa565b600082905060005b6000821461241857808061240190613dc0565b915050600a826124119190613e37565b91506123ee565b60008167ffffffffffffffff811115612434576124336130b4565b5b6040519080825280601f01601f1916602001820160405280156124665781602001600182028036833780820191505090505b5090505b600085146124f35760018261247f9190613918565b9150600a8561248e9190613e68565b603061249a919061379e565b60f81b8183815181106124b0576124af613e99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ec9190613e37565b945061246a565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600061256982611f91565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125d0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125f1612556565b73ffffffffffffffffffffffffffffffffffffffff161480612620575061261f8561261a612556565b6119c4565b5b80612665575061262e612556565b73ffffffffffffffffffffffffffffffffffffffff1661264d84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061269e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612704576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127118585856001612d08565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61280e86612d0e565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036128965760006001840190506000600460008381526020019081526020016000205403612894576000548114612893578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fe8585856001612d18565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612971576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036129ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b86000858386612d08565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a1d60018514612d1e565b901b60a042901b612a2d86612d0e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612b31575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae16000878480600101955087612bb8565b612b17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a72578260005414612b2c57600080fd5b612b9c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b32575b816000819055505050612bb26000858386612d18565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bde612556565b8786866040518563ffffffff1660e01b8152600401612c009493929190613f1d565b6020604051808303816000875af1925050508015612c3c57506040513d601f19601f82011682018060405250810190612c399190613f7e565b60015b612cb5573d8060008114612c6c576040519150601f19603f3d011682016040523d82523d6000602084013e612c71565b606091505b506000815103612cad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612d349061358e565b90600052602060002090601f016020900481019282612d565760008555612d9d565b82601f10612d6f57805160ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9c578251825591602001919060010190612d81565b5b509050612daa9190612dae565b5090565b5b80821115612dc7576000816000905550600101612daf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1481612ddf565b8114612e1f57600080fd5b50565b600081359050612e3181612e0b565b92915050565b600060208284031215612e4d57612e4c612dd5565b5b6000612e5b84828501612e22565b91505092915050565b60008115159050919050565b612e7981612e64565b82525050565b6000602082019050612e946000830184612e70565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed4578082015181840152602081019050612eb9565b83811115612ee3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0582612e9a565b612f0f8185612ea5565b9350612f1f818560208601612eb6565b612f2881612ee9565b840191505092915050565b60006020820190508181036000830152612f4d8184612efa565b905092915050565b6000819050919050565b612f6881612f55565b8114612f7357600080fd5b50565b600081359050612f8581612f5f565b92915050565b600060208284031215612fa157612fa0612dd5565b5b6000612faf84828501612f76565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe382612fb8565b9050919050565b612ff381612fd8565b82525050565b600060208201905061300e6000830184612fea565b92915050565b61301d81612fd8565b811461302857600080fd5b50565b60008135905061303a81613014565b92915050565b6000806040838503121561305757613056612dd5565b5b60006130658582860161302b565b925050602061307685828601612f76565b9150509250929050565b61308981612f55565b82525050565b60006020820190506130a46000830184613080565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ec82612ee9565b810181811067ffffffffffffffff8211171561310b5761310a6130b4565b5b80604052505050565b600061311e612dcb565b905061312a82826130e3565b919050565b600067ffffffffffffffff82111561314a576131496130b4565b5b61315382612ee9565b9050602081019050919050565b82818337600083830152505050565b600061318261317d8461312f565b613114565b90508281526020810184848401111561319e5761319d6130af565b5b6131a9848285613160565b509392505050565b600082601f8301126131c6576131c56130aa565b5b81356131d684826020860161316f565b91505092915050565b6000602082840312156131f5576131f4612dd5565b5b600082013567ffffffffffffffff81111561321357613212612dda565b5b61321f848285016131b1565b91505092915050565b61323181612e64565b811461323c57600080fd5b50565b60008135905061324e81613228565b92915050565b60006020828403121561326a57613269612dd5565b5b60006132788482850161323f565b91505092915050565b60008060006060848603121561329a57613299612dd5565b5b60006132a88682870161302b565b93505060206132b98682870161302b565b92505060406132ca86828701612f76565b9150509250925092565b6000819050919050565b60006132f96132f46132ef84612fb8565b6132d4565b612fb8565b9050919050565b600061330b826132de565b9050919050565b600061331d82613300565b9050919050565b61332d81613312565b82525050565b60006020820190506133486000830184613324565b92915050565b60006020828403121561336457613363612dd5565b5b60006133728482850161302b565b91505092915050565b6000806040838503121561339257613391612dd5565b5b60006133a08582860161302b565b92505060206133b18582860161323f565b9150509250929050565b600067ffffffffffffffff8211156133d6576133d56130b4565b5b6133df82612ee9565b9050602081019050919050565b60006133ff6133fa846133bb565b613114565b90508281526020810184848401111561341b5761341a6130af565b5b613426848285613160565b509392505050565b600082601f830112613443576134426130aa565b5b81356134538482602086016133ec565b91505092915050565b6000806000806080858703121561347657613475612dd5565b5b60006134848782880161302b565b94505060206134958782880161302b565b93505060406134a687828801612f76565b925050606085013567ffffffffffffffff8111156134c7576134c6612dda565b5b6134d38782880161342e565b91505092959194509250565b600080604083850312156134f6576134f5612dd5565b5b60006135048582860161302b565b92505060206135158582860161302b565b9150509250929050565b6000806040838503121561353657613535612dd5565b5b600061354485828601612f76565b92505060206135558582860161302b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135a657607f821691505b6020821081036135b9576135b861355f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135f5602083612ea5565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f617373706978206d696e74696e67206973207374696c6c20636c6f7365642e00600082015250565b6000613661601f83612ea5565b915061366c8261362b565b602082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f6e6f2061737370697820666f7220636f6e7472616374732e0000000000000000600082015250565b60006136cd601883612ea5565b91506136d882613697565b602082019050919050565b600060208201905081810360008301526136fc816136c0565b9050919050565b7f6f6e6c792031302061737370697820706572207472616e73616374696f6e2e00600082015250565b6000613739601f83612ea5565b915061374482613703565b602082019050919050565b600060208201905081810360008301526137688161372c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a982612f55565b91506137b483612f55565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e9576137e861376f565b5b828201905092915050565b7f6e6f206d6f726520617373706978206c6566742e000000000000000000000000600082015250565b600061382a601483612ea5565b9150613835826137f4565b602082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f796f752061726520747279696e6720746f206d696e74206d6f7265206173737060008201527f6978207468616e20616c6c6f7765642c206c6561766520736f6d6520666f722060208201527f74686520726573742e0000000000000000000000000000000000000000000000604082015250565b60006138e2604983612ea5565b91506138ed82613860565b606082019050919050565b60006020820190508181036000830152613911816138d5565b9050919050565b600061392382612f55565b915061392e83612f55565b9250828210156139415761394061376f565b5b828203905092915050565b600061395782612f55565b915061396283612f55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399b5761399a61376f565b5b828202905092915050565b7f696e73756666696369656e742066756e647320666f72206173737069782e0000600082015250565b60006139dc601e83612ea5565b91506139e7826139a6565b602082019050919050565b60006020820190508181036000830152613a0b816139cf565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a48601f83612ea5565b9150613a5382613a12565b602082019050919050565b60006020820190508181036000830152613a7781613a3b565b9050919050565b600081905092915050565b50565b6000613a99600083613a7e565b9150613aa482613a89565b600082019050919050565b6000613aba82613a8c565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b20602f83612ea5565b9150613b2b82613ac4565b604082019050919050565b60006020820190508181036000830152613b4f81613b13565b9050919050565b600081905092915050565b6000613b6c82612e9a565b613b768185613b56565b9350613b86818560208601612eb6565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613bb48161358e565b613bbe8186613b56565b94506001821660008114613bd95760018114613bea57613c1d565b60ff19831686528186019350613c1d565b613bf385613b92565b60005b83811015613c1557815481890152600182019150602081019050613bf6565b838801955050505b50505092915050565b6000613c328286613b61565b9150613c3e8285613b61565b9150613c4a8284613ba7565b9150819050949350505050565b7f6d61782061737370697820657863656564656421000000000000000000000000600082015250565b6000613c8d601483612ea5565b9150613c9882613c57565b602082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d1f602683612ea5565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b6000604082019050613d6a6000830185612fea565b613d776020830184612fea565b9392505050565b600081519050613d8d81613228565b92915050565b600060208284031215613da957613da8612dd5565b5b6000613db784828501613d7e565b91505092915050565b6000613dcb82612f55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dfd57613dfc61376f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e4282612f55565b9150613e4d83612f55565b925082613e5d57613e5c613e08565b5b828204905092915050565b6000613e7382612f55565b9150613e7e83612f55565b925082613e8e57613e8d613e08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613eef82613ec8565b613ef98185613ed3565b9350613f09818560208601612eb6565b613f1281612ee9565b840191505092915050565b6000608082019050613f326000830187612fea565b613f3f6020830186612fea565b613f4c6040830185613080565b8181036060830152613f5e8184613ee4565b905095945050505050565b600081519050613f7881612e0b565b92915050565b600060208284031215613f9457613f93612dd5565b5b6000613fa284828501613f69565b9150509291505056fea2646970667358221220f55d2d699c47e08a61ed7dd8e69b80871af6d51cecd7ff0a5ca880ccc85fe11f64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006617373706978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e0a808531161006f578063e0a808531461083e578063e8792c1a14610867578063e985e9c514610892578063efbd73f4146108cf578063f2fde38b146108f85761023b565b8063a22cb46514610747578063a45ba8e714610770578063b88d4fde1461079b578063c87b56dd146107c4578063dc33e681146108015761023b565b80637ec4a659116100f25780637ec4a659146106765780638a00495e1461069f5780638da5cb5b146106c857806394798dbf146106f357806395d89b411461071c5761023b565b80635c975abb1461058f57806362b99ad4146105ba5780636352211e146105e557806370a0823114610622578063715018a61461065f5761023b565b80632fa78570116101bc57806344a0d68a1161018057806344a0d68a146104bc5780634e9e1ec6146104e55780634fdd43cb1461051057806351830227146105395780635503a0e8146105645761023b565b80632fa78570146103fb578063399cae62146104265780633ccfd60b1461045157806341f434341461046857806342842e0e146104935761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806323b872dd146103b657806329c84c54146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e37565b610921565b6040516102749190612e7f565b60405180910390f35b34801561028957600080fd5b506102926109b3565b60405161029f9190612f33565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f8b565b610a45565b6040516102dc9190612ff9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613040565b610ac1565b005b34801561031a57600080fd5b50610323610ada565b604051610330919061308f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906131df565b610ae0565b005b34801561036e57600080fd5b5061038960048036038101906103849190613254565b610b76565b005b34801561039757600080fd5b506103a0610c0f565b6040516103ad919061308f565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613281565b610c26565b005b6103f960048036038101906103f49190612f8b565b610c75565b005b34801561040757600080fd5b50610410610ef1565b60405161041d919061308f565b60405180910390f35b34801561043257600080fd5b5061043b610ef7565b604051610448919061308f565b60405180910390f35b34801561045d57600080fd5b50610466610efd565b005b34801561047457600080fd5b5061047d61104e565b60405161048a9190613333565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613281565b611060565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612f8b565b6110af565b005b3480156104f157600080fd5b506104fa611135565b604051610507919061308f565b60405180910390f35b34801561051c57600080fd5b50610537600480360381019061053291906131df565b61113b565b005b34801561054557600080fd5b5061054e6111d1565b60405161055b9190612e7f565b60405180910390f35b34801561057057600080fd5b506105796111e4565b6040516105869190612f33565b60405180910390f35b34801561059b57600080fd5b506105a4611272565b6040516105b19190612e7f565b60405180910390f35b3480156105c657600080fd5b506105cf611285565b6040516105dc9190612f33565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190612f8b565b611313565b6040516106199190612ff9565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061334e565b611325565b604051610656919061308f565b60405180910390f35b34801561066b57600080fd5b506106746113dd565b005b34801561068257600080fd5b5061069d600480360381019061069891906131df565b611465565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612f8b565b6114fb565b005b3480156106d457600080fd5b506106dd611581565b6040516106ea9190612ff9565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f8b565b6115ab565b005b34801561072857600080fd5b50610731611631565b60405161073e9190612f33565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061337b565b6116c3565b005b34801561077c57600080fd5b506107856116dc565b6040516107929190612f33565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061345c565b61176a565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190612f8b565b6117bb565b6040516107f89190612f33565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061334e565b611913565b604051610835919061308f565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613254565b611925565b005b34801561087357600080fd5b5061087c6119be565b604051610889919061308f565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906134df565b6119c4565b6040516108c69190612e7f565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f1919061351f565b611a58565b005b34801561090457600080fd5b5061091f600480360381019061091a919061334e565b611b39565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c29061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee9061358e565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611c30565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610acb81611c8f565b610ad58383611d8c565b505050565b600d5481565b610ae8611f32565b73ffffffffffffffffffffffffffffffffffffffff16610b06611581565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061360b565b60405180910390fd5b80600c9080519060200190610b72929190612d28565b5050565b610b7e611f32565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611581565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be99061360b565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610c19611f3a565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6457610c6333611c8f565b5b610c6f848484611f43565b50505050565b806000601260019054906101000a900460ff1615610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613677565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906136e3565b60405180910390fd5b600082118015610d4857506011548211155b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061374f565b60405180910390fd5b60105482610d93610c0f565b610d9d919061379e565b1115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613840565b60405180910390fd5b600082118015610e035750600e5482610df633611913565b610e00919061379e565b11155b610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906138f8565b60405180910390fd5b600f54610e4e33611913565b1015610e80576000610e5f33611913565b600f54610e6c9190613918565b905080600d54610e7c919061394c565b9150505b8082600d54610e8f919061394c565b610e999190613918565b341015610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906139f2565b60405180910390fd5b610eec610ee6611f32565b84611f53565b505050565b600f5481565b600e5481565b610f05611f32565b73ffffffffffffffffffffffffffffffffffffffff16610f23611581565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061360b565b60405180910390fd5b600260095403610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613a5e565b60405180910390fd5b60026009819055506000610fd0611581565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ff390613aaf565b60006040518083038185875af1925050503d8060008114611030576040519150601f19603f3d011682016040523d82523d6000602084013e611035565b606091505b505090508061104357600080fd5b506001600981905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109e5761109d33611c8f565b5b6110a9848484611f71565b50505050565b6110b7611f32565b73ffffffffffffffffffffffffffffffffffffffff166110d5611581565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111229061360b565b60405180910390fd5b80600d8190555050565b60105481565b611143611f32565b73ffffffffffffffffffffffffffffffffffffffff16611161611581565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061360b565b60405180910390fd5b80600a90805190602001906111cd929190612d28565b5050565b601260009054906101000a900460ff1681565b600c80546111f19061358e565b80601f016020809104026020016040519081016040528092919081815260200182805461121d9061358e565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600b80546112929061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546112be9061358e565b801561130b5780601f106112e05761010080835404028352916020019161130b565b820191906000526020600020905b8154815290600101906020018083116112ee57829003601f168201915b505050505081565b600061131e82611f91565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113e5611f32565b73ffffffffffffffffffffffffffffffffffffffff16611403611581565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114509061360b565b60405180910390fd5b611463600061205d565b565b61146d611f32565b73ffffffffffffffffffffffffffffffffffffffff1661148b611581565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061360b565b60405180910390fd5b80600b90805190602001906114f7929190612d28565b5050565b611503611f32565b73ffffffffffffffffffffffffffffffffffffffff16611521611581565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061360b565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b3611f32565b73ffffffffffffffffffffffffffffffffffffffff166115d1611581565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e9061360b565b60405180910390fd5b80600e8190555050565b6060600380546116409061358e565b80601f016020809104026020016040519081016040528092919081815260200182805461166c9061358e565b80156116b95780601f1061168e576101008083540402835291602001916116b9565b820191906000526020600020905b81548152906001019060200180831161169c57829003601f168201915b5050505050905090565b816116cd81611c8f565b6116d78383612123565b505050565b600a80546116e99061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546117159061358e565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b505050505081565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117a8576117a733611c8f565b5b6117b48585858561229a565b5050505050565b60606117c682611c30565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90613b36565b60405180910390fd5b60001515601260009054906101000a900460ff161515036118b257600a805461182d9061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546118599061358e565b80156118a65780601f1061187b576101008083540402835291602001916118a6565b820191906000526020600020905b81548152906001019060200180831161188957829003601f168201915b5050505050905061190e565b60006118bc61230d565b905060008151116118dc576040518060200160405280600081525061190a565b806118e68461239f565b600c6040516020016118fa93929190613c26565b6040516020818303038152906040525b9150505b919050565b600061191e826124ff565b9050919050565b61192d611f32565b73ffffffffffffffffffffffffffffffffffffffff1661194b611581565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061360b565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a60611f32565b73ffffffffffffffffffffffffffffffffffffffff16611a7e611581565b73ffffffffffffffffffffffffffffffffffffffff1614611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb9061360b565b60405180910390fd5b60105482611ae0610c0f565b611aea919061379e565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613ca3565b60405180910390fd5b611b358183611f53565b5050565b611b41611f32565b73ffffffffffffffffffffffffffffffffffffffff16611b5f611581565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061360b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613d35565b60405180910390fd5b611c2d8161205d565b50565b600081611c3b611f3a565b11158015611c4a575060005482105b8015611c88575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d89576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d06929190613d55565b602060405180830381865afa158015611d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d479190613d93565b611d8857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d7f9190612ff9565b60405180910390fd5b5b50565b6000611d9782611f91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e1d612556565b73ffffffffffffffffffffffffffffffffffffffff1614611e8057611e4981611e44612556565b6119c4565b611e7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b60006001905090565b611f4e83838361255e565b505050565b611f6d828260405180602001604052806000815250612905565b5050565b611f8c8383836040518060200160405280600081525061176a565b505050565b60008082905080611fa0611f3a565b11612026576000548110156120255760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612023575b60008103612019576004600083600190039350838152602001908152602001600020549050611fef565b8092505050612058565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b612556565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361218f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061219c612556565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612249612556565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228e9190612e7f565b60405180910390a35050565b6122a584848461255e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612307576122d084848484612bb8565b612306576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461231c9061358e565b80601f01602080910402602001604051908101604052809291908181526020018280546123489061358e565b80156123955780601f1061236a57610100808354040283529160200191612395565b820191906000526020600020905b81548152906001019060200180831161237857829003601f168201915b5050505050905090565b6060600082036123e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fa565b600082905060005b6000821461241857808061240190613dc0565b915050600a826124119190613e37565b91506123ee565b60008167ffffffffffffffff811115612434576124336130b4565b5b6040519080825280601f01601f1916602001820160405280156124665781602001600182028036833780820191505090505b5090505b600085146124f35760018261247f9190613918565b9150600a8561248e9190613e68565b603061249a919061379e565b60f81b8183815181106124b0576124af613e99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ec9190613e37565b945061246a565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600061256982611f91565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125d0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125f1612556565b73ffffffffffffffffffffffffffffffffffffffff161480612620575061261f8561261a612556565b6119c4565b5b80612665575061262e612556565b73ffffffffffffffffffffffffffffffffffffffff1661264d84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061269e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612704576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127118585856001612d08565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61280e86612d0e565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036128965760006001840190506000600460008381526020019081526020016000205403612894576000548114612893578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fe8585856001612d18565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612971576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036129ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b86000858386612d08565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a1d60018514612d1e565b901b60a042901b612a2d86612d0e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612b31575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae16000878480600101955087612bb8565b612b17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a72578260005414612b2c57600080fd5b612b9c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b32575b816000819055505050612bb26000858386612d18565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bde612556565b8786866040518563ffffffff1660e01b8152600401612c009493929190613f1d565b6020604051808303816000875af1925050508015612c3c57506040513d601f19601f82011682018060405250810190612c399190613f7e565b60015b612cb5573d8060008114612c6c576040519150601f19603f3d011682016040523d82523d6000602084013e612c71565b606091505b506000815103612cad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612d349061358e565b90600052602060002090601f016020900481019282612d565760008555612d9d565b82601f10612d6f57805160ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9c578251825591602001919060010190612d81565b5b509050612daa9190612dae565b5090565b5b80821115612dc7576000816000905550600101612daf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1481612ddf565b8114612e1f57600080fd5b50565b600081359050612e3181612e0b565b92915050565b600060208284031215612e4d57612e4c612dd5565b5b6000612e5b84828501612e22565b91505092915050565b60008115159050919050565b612e7981612e64565b82525050565b6000602082019050612e946000830184612e70565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed4578082015181840152602081019050612eb9565b83811115612ee3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0582612e9a565b612f0f8185612ea5565b9350612f1f818560208601612eb6565b612f2881612ee9565b840191505092915050565b60006020820190508181036000830152612f4d8184612efa565b905092915050565b6000819050919050565b612f6881612f55565b8114612f7357600080fd5b50565b600081359050612f8581612f5f565b92915050565b600060208284031215612fa157612fa0612dd5565b5b6000612faf84828501612f76565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe382612fb8565b9050919050565b612ff381612fd8565b82525050565b600060208201905061300e6000830184612fea565b92915050565b61301d81612fd8565b811461302857600080fd5b50565b60008135905061303a81613014565b92915050565b6000806040838503121561305757613056612dd5565b5b60006130658582860161302b565b925050602061307685828601612f76565b9150509250929050565b61308981612f55565b82525050565b60006020820190506130a46000830184613080565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ec82612ee9565b810181811067ffffffffffffffff8211171561310b5761310a6130b4565b5b80604052505050565b600061311e612dcb565b905061312a82826130e3565b919050565b600067ffffffffffffffff82111561314a576131496130b4565b5b61315382612ee9565b9050602081019050919050565b82818337600083830152505050565b600061318261317d8461312f565b613114565b90508281526020810184848401111561319e5761319d6130af565b5b6131a9848285613160565b509392505050565b600082601f8301126131c6576131c56130aa565b5b81356131d684826020860161316f565b91505092915050565b6000602082840312156131f5576131f4612dd5565b5b600082013567ffffffffffffffff81111561321357613212612dda565b5b61321f848285016131b1565b91505092915050565b61323181612e64565b811461323c57600080fd5b50565b60008135905061324e81613228565b92915050565b60006020828403121561326a57613269612dd5565b5b60006132788482850161323f565b91505092915050565b60008060006060848603121561329a57613299612dd5565b5b60006132a88682870161302b565b93505060206132b98682870161302b565b92505060406132ca86828701612f76565b9150509250925092565b6000819050919050565b60006132f96132f46132ef84612fb8565b6132d4565b612fb8565b9050919050565b600061330b826132de565b9050919050565b600061331d82613300565b9050919050565b61332d81613312565b82525050565b60006020820190506133486000830184613324565b92915050565b60006020828403121561336457613363612dd5565b5b60006133728482850161302b565b91505092915050565b6000806040838503121561339257613391612dd5565b5b60006133a08582860161302b565b92505060206133b18582860161323f565b9150509250929050565b600067ffffffffffffffff8211156133d6576133d56130b4565b5b6133df82612ee9565b9050602081019050919050565b60006133ff6133fa846133bb565b613114565b90508281526020810184848401111561341b5761341a6130af565b5b613426848285613160565b509392505050565b600082601f830112613443576134426130aa565b5b81356134538482602086016133ec565b91505092915050565b6000806000806080858703121561347657613475612dd5565b5b60006134848782880161302b565b94505060206134958782880161302b565b93505060406134a687828801612f76565b925050606085013567ffffffffffffffff8111156134c7576134c6612dda565b5b6134d38782880161342e565b91505092959194509250565b600080604083850312156134f6576134f5612dd5565b5b60006135048582860161302b565b92505060206135158582860161302b565b9150509250929050565b6000806040838503121561353657613535612dd5565b5b600061354485828601612f76565b92505060206135558582860161302b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135a657607f821691505b6020821081036135b9576135b861355f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135f5602083612ea5565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f617373706978206d696e74696e67206973207374696c6c20636c6f7365642e00600082015250565b6000613661601f83612ea5565b915061366c8261362b565b602082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f6e6f2061737370697820666f7220636f6e7472616374732e0000000000000000600082015250565b60006136cd601883612ea5565b91506136d882613697565b602082019050919050565b600060208201905081810360008301526136fc816136c0565b9050919050565b7f6f6e6c792031302061737370697820706572207472616e73616374696f6e2e00600082015250565b6000613739601f83612ea5565b915061374482613703565b602082019050919050565b600060208201905081810360008301526137688161372c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a982612f55565b91506137b483612f55565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e9576137e861376f565b5b828201905092915050565b7f6e6f206d6f726520617373706978206c6566742e000000000000000000000000600082015250565b600061382a601483612ea5565b9150613835826137f4565b602082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f796f752061726520747279696e6720746f206d696e74206d6f7265206173737060008201527f6978207468616e20616c6c6f7765642c206c6561766520736f6d6520666f722060208201527f74686520726573742e0000000000000000000000000000000000000000000000604082015250565b60006138e2604983612ea5565b91506138ed82613860565b606082019050919050565b60006020820190508181036000830152613911816138d5565b9050919050565b600061392382612f55565b915061392e83612f55565b9250828210156139415761394061376f565b5b828203905092915050565b600061395782612f55565b915061396283612f55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399b5761399a61376f565b5b828202905092915050565b7f696e73756666696369656e742066756e647320666f72206173737069782e0000600082015250565b60006139dc601e83612ea5565b91506139e7826139a6565b602082019050919050565b60006020820190508181036000830152613a0b816139cf565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a48601f83612ea5565b9150613a5382613a12565b602082019050919050565b60006020820190508181036000830152613a7781613a3b565b9050919050565b600081905092915050565b50565b6000613a99600083613a7e565b9150613aa482613a89565b600082019050919050565b6000613aba82613a8c565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b20602f83612ea5565b9150613b2b82613ac4565b604082019050919050565b60006020820190508181036000830152613b4f81613b13565b9050919050565b600081905092915050565b6000613b6c82612e9a565b613b768185613b56565b9350613b86818560208601612eb6565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613bb48161358e565b613bbe8186613b56565b94506001821660008114613bd95760018114613bea57613c1d565b60ff19831686528186019350613c1d565b613bf385613b92565b60005b83811015613c1557815481890152600182019150602081019050613bf6565b838801955050505b50505092915050565b6000613c328286613b61565b9150613c3e8285613b61565b9150613c4a8284613ba7565b9150819050949350505050565b7f6d61782061737370697820657863656564656421000000000000000000000000600082015250565b6000613c8d601483612ea5565b9150613c9882613c57565b602082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d1f602683612ea5565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b6000604082019050613d6a6000830185612fea565b613d776020830184612fea565b9392505050565b600081519050613d8d81613228565b92915050565b600060208284031215613da957613da8612dd5565b5b6000613db784828501613d7e565b91505092915050565b6000613dcb82612f55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dfd57613dfc61376f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e4282612f55565b9150613e4d83612f55565b925082613e5d57613e5c613e08565b5b828204905092915050565b6000613e7382612f55565b9150613e7e83612f55565b925082613e8e57613e8d613e08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613eef82613ec8565b613ef98185613ed3565b9350613f09818560208601612eb6565b613f1281612ee9565b840191505092915050565b6000608082019050613f326000830187612fea565b613f3f6020830186612fea565b613f4c6040830185613080565b8181036060830152613f5e8184613ee4565b905095945050505050565b600081519050613f7881612e0b565b92915050565b600060208284031215613f9457613f93612dd5565b5b6000613fa284828501613f69565b9150509291505056fea2646970667358221220f55d2d699c47e08a61ed7dd8e69b80871af6d51cecd7ff0a5ca880ccc85fe11f64736f6c634300080e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006617373706978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): asspix
Arg [1] : _tokenSymbol (string): ASS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 6173737069780000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4153530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51648:4516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15789:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20802:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22878:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55432:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51865:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54458:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54564:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14843:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55593:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53149:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51940:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51903:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54851:172;;;;;;;;;;;;;:::i;:::-;;49564:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55760:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54046:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51973:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54214:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52040:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51825:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52073:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51792:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20591:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16468:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43632:103;;;;;;;;;;;;;:::i;:::-;;54352:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54759:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42981:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54647:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20971:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55252:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51756:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55935:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53595:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55029:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54126:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52007:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23533:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53283:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43890:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15789:615;15874:4;16189:10;16174:25;;:11;:25;;;;:102;;;;16266:10;16251:25;;:11;:25;;;;16174:102;:179;;;;16343:10;16328:25;;:11;:25;;;;16174:179;16154:199;;15789:615;;;:::o;20802:100::-;20856:13;20889:5;20882:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20802:100;:::o;22878:204::-;22946:7;22971:16;22979:7;22971;:16::i;:::-;22966:64;;22996:34;;;;;;;;;;;;;;22966:64;23050:15;:24;23066:7;23050:24;;;;;;;;;;;;;;;;;;;;;23043:31;;22878:204;;;:::o;55432:155::-;55528:8;51085:30;51106:8;51085:20;:30::i;:::-;55549:32:::1;55563:8;55573:7;55549:13;:32::i;:::-;55432:155:::0;;;:::o;51865:33::-;;;;:::o;54458:100::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54542:10:::1;54530:9;:22;;;;;;;;;;;;:::i;:::-;;54458:100:::0;:::o;54564:77::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54629:6:::1;54620;;:15;;;;;;;;;;;;;;;;;;54564:77:::0;:::o;14843:315::-;14896:7;15124:15;:13;:15::i;:::-;15109:12;;15093:13;;:28;:46;15086:53;;14843:315;:::o;55593:161::-;55694:4;50913:10;50905:18;;:4;:18;;;50901:83;;50940:32;50961:10;50940:20;:32::i;:::-;50901:83;55711:37:::1;55730:4;55736:2;55740:7;55711:18;:37::i;:::-;55593:161:::0;;;;:::o;53149:126::-;53213:11;52359:18;52399:6;;;;;;;;;;;52398:7;52390:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;52469:10;52456:23;;:9;:23;;;52448:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52537:1;52523:11;:15;:40;;;;;52557:6;;52542:11;:21;;52523:40;52515:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;52645:7;;52630:11;52614:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:38;;52606:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52714:1;52700:11;:15;:73;;;;;52761:12;;52746:11;52719:24;52732:10;52719:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;52700:73;52684:181;;;;;;;;;;;;:::i;:::-;;;;;;;;;52909:7;;52882:24;52895:10;52882:12;:24::i;:::-;:34;52878:153;;;52927:19;52959:24;52972:10;52959:12;:24::i;:::-;52949:7;;:34;;;;:::i;:::-;52927:56;;53012:11;53005:4;;:18;;;;:::i;:::-;52992:31;;52918:113;52878:153;53084:10;53070:11;53063:4;;:18;;;;:::i;:::-;:31;;;;:::i;:::-;53050:9;:44;;53042:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;53233:36:::1;53243:12;:10;:12::i;:::-;53257:11;53233:9;:36::i;:::-;52350:793:::0;53149:126;;:::o;51940:26::-;;;;:::o;51903:32::-;;;;:::o;54851:172::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1789:1:::1;2387:7;;:19:::0;2379:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1789:1;2520:7;:18;;;;54909::::2;54941:7;:5;:7::i;:::-;54933:21;;54962;54933:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54908:80;;;55003:13;54995:22;;;::::0;::::2;;54901:122;1745:1:::1;2699:7;:22;;;;54851:172::o:0;49564:143::-;49664:42;49564:143;:::o;55760:169::-;55865:4;50913:10;50905:18;;:4;:18;;;50901:83;;50940:32;50961:10;50940:20;:32::i;:::-;50901:83;55882:41:::1;55905:4;55911:2;55915:7;55882:22;:41::i;:::-;55760:169:::0;;;;:::o;54046:74::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54109:5:::1;54102:4;:12;;;;54046:74:::0;:::o;51973:29::-;;;;:::o;54214:132::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54322:18:::1;54302:17;:38;;;;;;;;;;;;:::i;:::-;;54214:132:::0;:::o;52040:28::-;;;;;;;;;;;;;:::o;51825:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52073:25::-;;;;;;;;;;;;;:::o;51792:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20591:144::-;20655:7;20698:27;20717:7;20698:18;:27::i;:::-;20675:52;;20591:144;;;:::o;16468:224::-;16532:7;16573:1;16556:19;;:5;:19;;;16552:60;;16584:28;;;;;;;;;;;;;;16552:60;11807:13;16630:18;:25;16649:5;16630:25;;;;;;;;;;;;;;;;:54;16623:61;;16468:224;;;:::o;43632:103::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43697:30:::1;43724:1;43697:18;:30::i;:::-;43632:103::o:0;54352:100::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54436:10:::1;54424:9;:22;;;;;;;;;;;;:::i;:::-;;54352:100:::0;:::o;54759:86::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54831:8:::1;54821:7;:18;;;;54759:86:::0;:::o;42981:87::-;43027:7;43054:6;;;;;;;;;;;43047:13;;42981:87;:::o;54647:106::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54734:13:::1;54719:12;:28;;;;54647:106:::0;:::o;20971:104::-;21027:13;21060:7;21053:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20971:104;:::o;55252:174::-;55356:8;51085:30;51106:8;51085:20;:30::i;:::-;55377:43:::1;55401:8;55411;55377:23;:43::i;:::-;55252:174:::0;;;:::o;51756:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55935:224::-;56086:4;50913:10;50905:18;;:4;:18;;;50901:83;;50940:32;50961:10;50940:20;:32::i;:::-;50901:83;56106:47:::1;56129:4;56135:2;56139:7;56148:4;56106:22;:47::i;:::-;55935:224:::0;;;;;:::o;53595:445::-;53669:13;53699:17;53707:8;53699:7;:17::i;:::-;53691:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53793:5;53781:17;;:8;;;;;;;;;;;:17;;;53777:64;;53816:17;53809:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53777:64;53849:28;53880:10;:8;:10::i;:::-;53849:41;;53935:1;53910:14;53904:28;:32;:130;;;;;;;;;;;;;;;;;53972:14;53988:19;:8;:17;:19::i;:::-;54009:9;53955:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53904:130;53897:137;;;53595:445;;;;:::o;55029:107::-;55087:7;55110:20;55124:5;55110:13;:20::i;:::-;55103:27;;55029:107;;;:::o;54126:81::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54195:6:::1;54184:8;;:17;;;;;;;;;;;;;;;;;;54126:81:::0;:::o;52007:26::-;;;;:::o;23533:164::-;23630:4;23654:18;:25;23673:5;23654:25;;;;;;;;;;;;;;;:35;23680:8;23654:35;;;;;;;;;;;;;;;;;;;;;;;;;23647:42;;23533:164;;;;:::o;53283:205::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53410:7:::1;;53395:11;53379:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:38;;53371:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;53449:33;53459:9;53470:11;53449:9;:33::i;:::-;53283:205:::0;;:::o;43890:201::-;43212:12;:10;:12::i;:::-;43201:23;;:7;:5;:7::i;:::-;:23;;;43193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43999:1:::1;43979:22;;:8;:22;;::::0;43971:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44055:28;44074:8;44055:18;:28::i;:::-;43890:201:::0;:::o;24912:273::-;24969:4;25025:7;25006:15;:13;:15::i;:::-;:26;;:66;;;;;25059:13;;25049:7;:23;25006:66;:152;;;;;25157:1;12577:8;25110:17;:26;25128:7;25110:26;;;;;;;;;;;;:43;:48;25006:152;24986:172;;24912:273;;;:::o;51143:419::-;51382:1;49664:42;51334:45;;;:49;51330:225;;;49664:42;51405;;;51456:4;51463:8;51405:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51400:144;;51519:8;51500:28;;;;;;;;;;;:::i;:::-;;;;;;;;51400:144;51330:225;51143:419;:::o;22330:482::-;22411:13;22443:27;22462:7;22443:18;:27::i;:::-;22411:61;;22493:5;22487:11;;:2;:11;;;22483:48;;22507:24;;;;;;;;;;;;;;22483:48;22571:5;22548:28;;:19;:17;:19::i;:::-;:28;;;22544:175;;22596:44;22613:5;22620:19;:17;:19::i;:::-;22596:16;:44::i;:::-;22591:128;;22668:35;;;;;;;;;;;;;;22591:128;22544:175;22758:2;22731:15;:24;22747:7;22731:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22796:7;22792:2;22776:28;;22785:5;22776:28;;;;;;;;;;;;22400:412;22330:482;;:::o;41728:98::-;41781:7;41808:10;41801:17;;41728:98;:::o;53494:95::-;53559:7;53582:1;53575:8;;53494:95;:::o;23764:170::-;23898:28;23908:4;23914:2;23918:7;23898:9;:28::i;:::-;23764:170;;;:::o;25269:104::-;25338:27;25348:2;25352:8;25338:27;;;;;;;;;;;;:9;:27::i;:::-;25269:104;;:::o;24005:185::-;24143:39;24160:4;24166:2;24170:7;24143:39;;;;;;;;;;;;:16;:39::i;:::-;24005:185;;;:::o;18106:1129::-;18173:7;18193:12;18208:7;18193:22;;18276:4;18257:15;:13;:15::i;:::-;:23;18253:915;;18310:13;;18303:4;:20;18299:869;;;18348:14;18365:17;:23;18383:4;18365:23;;;;;;;;;;;;18348:40;;18481:1;12577:8;18454:6;:23;:28;18450:699;;18973:113;18990:1;18980:6;:11;18973:113;;19033:17;:25;19051:6;;;;;;;19033:25;;;;;;;;;;;;19024:34;;18973:113;;;19119:6;19112:13;;;;;;18450:699;18325:843;18299:869;18253:915;19196:31;;;;;;;;;;;;;;18106:1129;;;;:::o;44251:191::-;44325:16;44344:6;;;;;;;;;;;44325:25;;44370:8;44361:6;;:17;;;;;;;;;;;;;;;;;;44425:8;44394:40;;44415:8;44394:40;;;;;;;;;;;;44314:128;44251:191;:::o;23154:308::-;23265:19;:17;:19::i;:::-;23253:31;;:8;:31;;;23249:61;;23293:17;;;;;;;;;;;;;;23249:61;23375:8;23323:18;:39;23342:19;:17;:19::i;:::-;23323:39;;;;;;;;;;;;;;;:49;23363:8;23323:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;23435:8;23399:55;;23414:19;:17;:19::i;:::-;23399:55;;;23445:8;23399:55;;;;;;:::i;:::-;;;;;;;;23154:308;;:::o;24261:396::-;24428:28;24438:4;24444:2;24448:7;24428:9;:28::i;:::-;24489:1;24471:2;:14;;;:19;24467:183;;24510:56;24541:4;24547:2;24551:7;24560:5;24510:30;:56::i;:::-;24505:145;;24594:40;;;;;;;;;;;;;;24505:145;24467:183;24261:396;;;;:::o;55142:104::-;55202:13;55231:9;55224:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55142:104;:::o;44792:723::-;44848:13;45078:1;45069:5;:10;45065:53;;45096:10;;;;;;;;;;;;;;;;;;;;;45065:53;45128:12;45143:5;45128:20;;45159:14;45184:78;45199:1;45191:4;:9;45184:78;;45217:8;;;;;:::i;:::-;;;;45248:2;45240:10;;;;;:::i;:::-;;;45184:78;;;45272:19;45304:6;45294:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45272:39;;45322:154;45338:1;45329:5;:10;45322:154;;45366:1;45356:11;;;;;:::i;:::-;;;45433:2;45425:5;:10;;;;:::i;:::-;45412:2;:24;;;;:::i;:::-;45399:39;;45382:6;45389;45382:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;45462:2;45453:11;;;;;:::i;:::-;;;45322:154;;;45500:6;45486:21;;;;;44792:723;;;;:::o;16774:176::-;16835:7;11807:13;11944:2;16863:18;:25;16882:5;16863:25;;;;;;;;;;;;;;;;:49;;16862:80;16855:87;;16774:176;;;:::o;38894:105::-;38954:7;38981:10;38974:17;;38894:105;:::o;30151:2515::-;30266:27;30296;30315:7;30296:18;:27::i;:::-;30266:57;;30381:4;30340:45;;30356:19;30340:45;;;30336:86;;30394:28;;;;;;;;;;;;;;30336:86;30435:22;30484:4;30461:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;30505:43;30522:4;30528:19;:17;:19::i;:::-;30505:16;:43::i;:::-;30461:87;:147;;;;30589:19;:17;:19::i;:::-;30565:43;;:20;30577:7;30565:11;:20::i;:::-;:43;;;30461:147;30435:174;;30627:17;30622:66;;30653:35;;;;;;;;;;;;;;30622:66;30717:1;30703:16;;:2;:16;;;30699:52;;30728:23;;;;;;;;;;;;;;30699:52;30764:43;30786:4;30792:2;30796:7;30805:1;30764:21;:43::i;:::-;30880:15;:24;30896:7;30880:24;;;;;;;;;;;;30873:31;;;;;;;;;;;31272:18;:24;31291:4;31272:24;;;;;;;;;;;;;;;;31270:26;;;;;;;;;;;;31341:18;:22;31360:2;31341:22;;;;;;;;;;;;;;;;31339:24;;;;;;;;;;;12859:8;12461:3;31722:15;:41;;31680:21;31698:2;31680:17;:21::i;:::-;:84;:128;31634:17;:26;31652:7;31634:26;;;;;;;;;;;:174;;;;31978:1;12859:8;31928:19;:46;:51;31924:626;;32000:19;32032:1;32022:7;:11;32000:33;;32189:1;32155:17;:30;32173:11;32155:30;;;;;;;;;;;;:35;32151:384;;32293:13;;32278:11;:28;32274:242;;32473:19;32440:17;:30;32458:11;32440:30;;;;;;;;;;;:52;;;;32274:242;32151:384;31981:569;31924:626;32597:7;32593:2;32578:27;;32587:4;32578:27;;;;;;;;;;;;32616:42;32637:4;32643:2;32647:7;32656:1;32616:20;:42::i;:::-;30255:2411;;30151:2515;;;:::o;25746:2236::-;25869:20;25892:13;;25869:36;;25934:1;25920:16;;:2;:16;;;25916:48;;25945:19;;;;;;;;;;;;;;25916:48;25991:1;25979:8;:13;25975:44;;26001:18;;;;;;;;;;;;;;25975:44;26032:61;26062:1;26066:2;26070:12;26084:8;26032:21;:61::i;:::-;26636:1;11944:2;26607:1;:25;;26606:31;26594:8;:44;26568:18;:22;26587:2;26568:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12724:3;27037:29;27064:1;27052:8;:13;27037:14;:29::i;:::-;:56;;12461:3;26974:15;:41;;26932:21;26950:2;26932:17;:21::i;:::-;:84;:162;26881:17;:31;26899:12;26881:31;;;;;;;;;;;:213;;;;27111:20;27134:12;27111:35;;27161:11;27190:8;27175:12;:23;27161:37;;27237:1;27219:2;:14;;;:19;27215:635;;27259:313;27315:12;27311:2;27290:38;;27307:1;27290:38;;;;;;;;;;;;27356:69;27395:1;27399:2;27403:14;;;;;;27419:5;27356:30;:69::i;:::-;27351:174;;27461:40;;;;;;;;;;;;;;27351:174;27567:3;27552:12;:18;27259:313;;27653:12;27636:13;;:29;27632:43;;27667:8;;;27632:43;27215:635;;;27716:119;27772:14;;;;;;27768:2;27747:40;;27764:1;27747:40;;;;;;;;;;;;27830:3;27815:12;:18;27716:119;;27215:635;27880:12;27864:13;:28;;;;26345:1559;;27914:60;27943:1;27947:2;27951:12;27965:8;27914:20;:60::i;:::-;25858:2124;25746:2236;;;:::o;36363:716::-;36526:4;36572:2;36547:45;;;36593:19;:17;:19::i;:::-;36614:4;36620:7;36629:5;36547:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36543:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36847:1;36830:6;:13;:18;36826:235;;36876:40;;;;;;;;;;;;;;36826:235;37019:6;37013:13;37004:6;37000:2;36996:15;36989:38;36543:529;36716:54;;;36706:64;;;:6;:64;;;;36699:71;;;36363:716;;;;;;:::o;37727:159::-;;;;;:::o;21891:148::-;21955:14;22016:5;22006:15;;21891:148;;;:::o;38545:158::-;;;;;:::o;22126:142::-;22184:14;22245:5;22235:15;;22126:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:60::-;9154:3;9175:5;9168:12;;9126:60;;;:::o;9192:142::-;9242:9;9275:53;9293:34;9302:24;9320:5;9302:24;:::i;:::-;9293:34;:::i;:::-;9275:53;:::i;:::-;9262:66;;9192:142;;;:::o;9340:126::-;9390:9;9423:37;9454:5;9423:37;:::i;:::-;9410:50;;9340:126;;;:::o;9472:158::-;9554:9;9587:37;9618:5;9587:37;:::i;:::-;9574:50;;9472:158;;;:::o;9636:195::-;9755:69;9818:5;9755:69;:::i;:::-;9750:3;9743:82;9636:195;;:::o;9837:286::-;9962:4;10000:2;9989:9;9985:18;9977:26;;10013:103;10113:1;10102:9;10098:17;10089:6;10013:103;:::i;:::-;9837:286;;;;:::o;10129:329::-;10188:6;10237:2;10225:9;10216:7;10212:23;10208:32;10205:119;;;10243:79;;:::i;:::-;10205:119;10363:1;10388:53;10433:7;10424:6;10413:9;10409:22;10388:53;:::i;:::-;10378:63;;10334:117;10129:329;;;;:::o;10464:468::-;10529:6;10537;10586:2;10574:9;10565:7;10561:23;10557:32;10554:119;;;10592:79;;:::i;:::-;10554:119;10712:1;10737:53;10782:7;10773:6;10762:9;10758:22;10737:53;:::i;:::-;10727:63;;10683:117;10839:2;10865:50;10907:7;10898:6;10887:9;10883:22;10865:50;:::i;:::-;10855:60;;10810:115;10464:468;;;;;:::o;10938:307::-;10999:4;11089:18;11081:6;11078:30;11075:56;;;11111:18;;:::i;:::-;11075:56;11149:29;11171:6;11149:29;:::i;:::-;11141:37;;11233:4;11227;11223:15;11215:23;;10938:307;;;:::o;11251:410::-;11328:5;11353:65;11369:48;11410:6;11369:48;:::i;:::-;11353:65;:::i;:::-;11344:74;;11441:6;11434:5;11427:21;11479:4;11472:5;11468:16;11517:3;11508:6;11503:3;11499:16;11496:25;11493:112;;;11524:79;;:::i;:::-;11493:112;11614:41;11648:6;11643:3;11638;11614:41;:::i;:::-;11334:327;11251:410;;;;;:::o;11680:338::-;11735:5;11784:3;11777:4;11769:6;11765:17;11761:27;11751:122;;11792:79;;:::i;:::-;11751:122;11909:6;11896:20;11934:78;12008:3;12000:6;11993:4;11985:6;11981:17;11934:78;:::i;:::-;11925:87;;11741:277;11680:338;;;;:::o;12024:943::-;12119:6;12127;12135;12143;12192:3;12180:9;12171:7;12167:23;12163:33;12160:120;;;12199:79;;:::i;:::-;12160:120;12319:1;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12290:117;12446:2;12472:53;12517:7;12508:6;12497:9;12493:22;12472:53;:::i;:::-;12462:63;;12417:118;12574:2;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12545:118;12730:2;12719:9;12715:18;12702:32;12761:18;12753:6;12750:30;12747:117;;;12783:79;;:::i;:::-;12747:117;12888:62;12942:7;12933:6;12922:9;12918:22;12888:62;:::i;:::-;12878:72;;12673:287;12024:943;;;;;;;:::o;12973:474::-;13041:6;13049;13098:2;13086:9;13077:7;13073:23;13069:32;13066:119;;;13104:79;;:::i;:::-;13066:119;13224:1;13249:53;13294:7;13285:6;13274:9;13270:22;13249:53;:::i;:::-;13239:63;;13195:117;13351:2;13377:53;13422:7;13413:6;13402:9;13398:22;13377:53;:::i;:::-;13367:63;;13322:118;12973:474;;;;;:::o;13453:::-;13521:6;13529;13578:2;13566:9;13557:7;13553:23;13549:32;13546:119;;;13584:79;;:::i;:::-;13546:119;13704:1;13729:53;13774:7;13765:6;13754:9;13750:22;13729:53;:::i;:::-;13719:63;;13675:117;13831:2;13857:53;13902:7;13893:6;13882:9;13878:22;13857:53;:::i;:::-;13847:63;;13802:118;13453:474;;;;;:::o;13933:180::-;13981:77;13978:1;13971:88;14078:4;14075:1;14068:15;14102:4;14099:1;14092:15;14119:320;14163:6;14200:1;14194:4;14190:12;14180:22;;14247:1;14241:4;14237:12;14268:18;14258:81;;14324:4;14316:6;14312:17;14302:27;;14258:81;14386:2;14378:6;14375:14;14355:18;14352:38;14349:84;;14405:18;;:::i;:::-;14349:84;14170:269;14119:320;;;:::o;14445:182::-;14585:34;14581:1;14573:6;14569:14;14562:58;14445:182;:::o;14633:366::-;14775:3;14796:67;14860:2;14855:3;14796:67;:::i;:::-;14789:74;;14872:93;14961:3;14872:93;:::i;:::-;14990:2;14985:3;14981:12;14974:19;;14633:366;;;:::o;15005:419::-;15171:4;15209:2;15198:9;15194:18;15186:26;;15258:9;15252:4;15248:20;15244:1;15233:9;15229:17;15222:47;15286:131;15412:4;15286:131;:::i;:::-;15278:139;;15005:419;;;:::o;15430:181::-;15570:33;15566:1;15558:6;15554:14;15547:57;15430:181;:::o;15617:366::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:419::-;16155:4;16193:2;16182:9;16178:18;16170:26;;16242:9;16236:4;16232:20;16228:1;16217:9;16213:17;16206:47;16270:131;16396:4;16270:131;:::i;:::-;16262:139;;15989:419;;;:::o;16414:174::-;16554:26;16550:1;16542:6;16538:14;16531:50;16414:174;:::o;16594:366::-;16736:3;16757:67;16821:2;16816:3;16757:67;:::i;:::-;16750:74;;16833:93;16922:3;16833:93;:::i;:::-;16951:2;16946:3;16942:12;16935:19;;16594:366;;;:::o;16966:419::-;17132:4;17170:2;17159:9;17155:18;17147:26;;17219:9;17213:4;17209:20;17205:1;17194:9;17190:17;17183:47;17247:131;17373:4;17247:131;:::i;:::-;17239:139;;16966:419;;;:::o;17391:181::-;17531:33;17527:1;17519:6;17515:14;17508:57;17391:181;:::o;17578:366::-;17720:3;17741:67;17805:2;17800:3;17741:67;:::i;:::-;17734:74;;17817:93;17906:3;17817:93;:::i;:::-;17935:2;17930:3;17926:12;17919:19;;17578:366;;;:::o;17950:419::-;18116:4;18154:2;18143:9;18139:18;18131:26;;18203:9;18197:4;18193:20;18189:1;18178:9;18174:17;18167:47;18231:131;18357:4;18231:131;:::i;:::-;18223:139;;17950:419;;;:::o;18375:180::-;18423:77;18420:1;18413:88;18520:4;18517:1;18510:15;18544:4;18541:1;18534:15;18561:305;18601:3;18620:20;18638:1;18620:20;:::i;:::-;18615:25;;18654:20;18672:1;18654:20;:::i;:::-;18649:25;;18808:1;18740:66;18736:74;18733:1;18730:81;18727:107;;;18814:18;;:::i;:::-;18727:107;18858:1;18855;18851:9;18844:16;;18561:305;;;;:::o;18872:170::-;19012:22;19008:1;19000:6;18996:14;18989:46;18872:170;:::o;19048:366::-;19190:3;19211:67;19275:2;19270:3;19211:67;:::i;:::-;19204:74;;19287:93;19376:3;19287:93;:::i;:::-;19405:2;19400:3;19396:12;19389:19;;19048:366;;;:::o;19420:419::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19673:9;19667:4;19663:20;19659:1;19648:9;19644:17;19637:47;19701:131;19827:4;19701:131;:::i;:::-;19693:139;;19420:419;;;:::o;19845:297::-;19985:34;19981:1;19973:6;19969:14;19962:58;20054:34;20049:2;20041:6;20037:15;20030:59;20123:11;20118:2;20110:6;20106:15;20099:36;19845:297;:::o;20148:366::-;20290:3;20311:67;20375:2;20370:3;20311:67;:::i;:::-;20304:74;;20387:93;20476:3;20387:93;:::i;:::-;20505:2;20500:3;20496:12;20489:19;;20148:366;;;:::o;20520:419::-;20686:4;20724:2;20713:9;20709:18;20701:26;;20773:9;20767:4;20763:20;20759:1;20748:9;20744:17;20737:47;20801:131;20927:4;20801:131;:::i;:::-;20793:139;;20520:419;;;:::o;20945:191::-;20985:4;21005:20;21023:1;21005:20;:::i;:::-;21000:25;;21039:20;21057:1;21039:20;:::i;:::-;21034:25;;21078:1;21075;21072:8;21069:34;;;21083:18;;:::i;:::-;21069:34;21128:1;21125;21121:9;21113:17;;20945:191;;;;:::o;21142:348::-;21182:7;21205:20;21223:1;21205:20;:::i;:::-;21200:25;;21239:20;21257:1;21239:20;:::i;:::-;21234:25;;21427:1;21359:66;21355:74;21352:1;21349:81;21344:1;21337:9;21330:17;21326:105;21323:131;;;21434:18;;:::i;:::-;21323:131;21482:1;21479;21475:9;21464:20;;21142:348;;;;:::o;21496:180::-;21636:32;21632:1;21624:6;21620:14;21613:56;21496:180;:::o;21682:366::-;21824:3;21845:67;21909:2;21904:3;21845:67;:::i;:::-;21838:74;;21921:93;22010:3;21921:93;:::i;:::-;22039:2;22034:3;22030:12;22023:19;;21682:366;;;:::o;22054:419::-;22220:4;22258:2;22247:9;22243:18;22235:26;;22307:9;22301:4;22297:20;22293:1;22282:9;22278:17;22271:47;22335:131;22461:4;22335:131;:::i;:::-;22327:139;;22054:419;;;:::o;22479:181::-;22619:33;22615:1;22607:6;22603:14;22596:57;22479:181;:::o;22666:366::-;22808:3;22829:67;22893:2;22888:3;22829:67;:::i;:::-;22822:74;;22905:93;22994:3;22905:93;:::i;:::-;23023:2;23018:3;23014:12;23007:19;;22666:366;;;:::o;23038:419::-;23204:4;23242:2;23231:9;23227:18;23219:26;;23291:9;23285:4;23281:20;23277:1;23266:9;23262:17;23255:47;23319:131;23445:4;23319:131;:::i;:::-;23311:139;;23038:419;;;:::o;23463:147::-;23564:11;23601:3;23586:18;;23463:147;;;;:::o;23616:114::-;;:::o;23736:398::-;23895:3;23916:83;23997:1;23992:3;23916:83;:::i;:::-;23909:90;;24008:93;24097:3;24008:93;:::i;:::-;24126:1;24121:3;24117:11;24110:18;;23736:398;;;:::o;24140:379::-;24324:3;24346:147;24489:3;24346:147;:::i;:::-;24339:154;;24510:3;24503:10;;24140:379;;;:::o;24525:234::-;24665:34;24661:1;24653:6;24649:14;24642:58;24734:17;24729:2;24721:6;24717:15;24710:42;24525:234;:::o;24765:366::-;24907:3;24928:67;24992:2;24987:3;24928:67;:::i;:::-;24921:74;;25004:93;25093:3;25004:93;:::i;:::-;25122:2;25117:3;25113:12;25106:19;;24765:366;;;:::o;25137:419::-;25303:4;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25137:419;;;:::o;25562:148::-;25664:11;25701:3;25686:18;;25562:148;;;;:::o;25716:377::-;25822:3;25850:39;25883:5;25850:39;:::i;:::-;25905:89;25987:6;25982:3;25905:89;:::i;:::-;25898:96;;26003:52;26048:6;26043:3;26036:4;26029:5;26025:16;26003:52;:::i;:::-;26080:6;26075:3;26071:16;26064:23;;25826:267;25716:377;;;;:::o;26099:141::-;26148:4;26171:3;26163:11;;26194:3;26191:1;26184:14;26228:4;26225:1;26215:18;26207:26;;26099:141;;;:::o;26270:845::-;26373:3;26410:5;26404:12;26439:36;26465:9;26439:36;:::i;:::-;26491:89;26573:6;26568:3;26491:89;:::i;:::-;26484:96;;26611:1;26600:9;26596:17;26627:1;26622:137;;;;26773:1;26768:341;;;;26589:520;;26622:137;26706:4;26702:9;26691;26687:25;26682:3;26675:38;26742:6;26737:3;26733:16;26726:23;;26622:137;;26768:341;26835:38;26867:5;26835:38;:::i;:::-;26895:1;26909:154;26923:6;26920:1;26917:13;26909:154;;;26997:7;26991:14;26987:1;26982:3;26978:11;26971:35;27047:1;27038:7;27034:15;27023:26;;26945:4;26942:1;26938:12;26933:17;;26909:154;;;27092:6;27087:3;27083:16;27076:23;;26775:334;;26589:520;;26377:738;;26270:845;;;;:::o;27121:589::-;27346:3;27368:95;27459:3;27450:6;27368:95;:::i;:::-;27361:102;;27480:95;27571:3;27562:6;27480:95;:::i;:::-;27473:102;;27592:92;27680:3;27671:6;27592:92;:::i;:::-;27585:99;;27701:3;27694:10;;27121:589;;;;;;:::o;27716:170::-;27856:22;27852:1;27844:6;27840:14;27833:46;27716:170;:::o;27892:366::-;28034:3;28055:67;28119:2;28114:3;28055:67;:::i;:::-;28048:74;;28131:93;28220:3;28131:93;:::i;:::-;28249:2;28244:3;28240:12;28233:19;;27892:366;;;:::o;28264:419::-;28430:4;28468:2;28457:9;28453:18;28445:26;;28517:9;28511:4;28507:20;28503:1;28492:9;28488:17;28481:47;28545:131;28671:4;28545:131;:::i;:::-;28537:139;;28264:419;;;:::o;28689:225::-;28829:34;28825:1;28817:6;28813:14;28806:58;28898:8;28893:2;28885:6;28881:15;28874:33;28689:225;:::o;28920:366::-;29062:3;29083:67;29147:2;29142:3;29083:67;:::i;:::-;29076:74;;29159:93;29248:3;29159:93;:::i;:::-;29277:2;29272:3;29268:12;29261:19;;28920:366;;;:::o;29292:419::-;29458:4;29496:2;29485:9;29481:18;29473:26;;29545:9;29539:4;29535:20;29531:1;29520:9;29516:17;29509:47;29573:131;29699:4;29573:131;:::i;:::-;29565:139;;29292:419;;;:::o;29717:332::-;29838:4;29876:2;29865:9;29861:18;29853:26;;29889:71;29957:1;29946:9;29942:17;29933:6;29889:71;:::i;:::-;29970:72;30038:2;30027:9;30023:18;30014:6;29970:72;:::i;:::-;29717:332;;;;;:::o;30055:137::-;30109:5;30140:6;30134:13;30125:22;;30156:30;30180:5;30156:30;:::i;:::-;30055:137;;;;:::o;30198:345::-;30265:6;30314:2;30302:9;30293:7;30289:23;30285:32;30282:119;;;30320:79;;:::i;:::-;30282:119;30440:1;30465:61;30518:7;30509:6;30498:9;30494:22;30465:61;:::i;:::-;30455:71;;30411:125;30198:345;;;;:::o;30549:233::-;30588:3;30611:24;30629:5;30611:24;:::i;:::-;30602:33;;30657:66;30650:5;30647:77;30644:103;;30727:18;;:::i;:::-;30644:103;30774:1;30767:5;30763:13;30756:20;;30549:233;;;:::o;30788:180::-;30836:77;30833:1;30826:88;30933:4;30930:1;30923:15;30957:4;30954:1;30947:15;30974:185;31014:1;31031:20;31049:1;31031:20;:::i;:::-;31026:25;;31065:20;31083:1;31065:20;:::i;:::-;31060:25;;31104:1;31094:35;;31109:18;;:::i;:::-;31094:35;31151:1;31148;31144:9;31139:14;;30974:185;;;;:::o;31165:176::-;31197:1;31214:20;31232:1;31214:20;:::i;:::-;31209:25;;31248:20;31266:1;31248:20;:::i;:::-;31243:25;;31287:1;31277:35;;31292:18;;:::i;:::-;31277:35;31333:1;31330;31326:9;31321:14;;31165:176;;;;:::o;31347:180::-;31395:77;31392:1;31385:88;31492:4;31489:1;31482:15;31516:4;31513:1;31506:15;31533:98;31584:6;31618:5;31612:12;31602:22;;31533:98;;;:::o;31637:168::-;31720:11;31754:6;31749:3;31742:19;31794:4;31789:3;31785:14;31770:29;;31637:168;;;;:::o;31811:360::-;31897:3;31925:38;31957:5;31925:38;:::i;:::-;31979:70;32042:6;32037:3;31979:70;:::i;:::-;31972:77;;32058:52;32103:6;32098:3;32091:4;32084:5;32080:16;32058:52;:::i;:::-;32135:29;32157:6;32135:29;:::i;:::-;32130:3;32126:39;32119:46;;31901:270;31811:360;;;;:::o;32177:640::-;32372:4;32410:3;32399:9;32395:19;32387:27;;32424:71;32492:1;32481:9;32477:17;32468:6;32424:71;:::i;:::-;32505:72;32573:2;32562:9;32558:18;32549:6;32505:72;:::i;:::-;32587;32655:2;32644:9;32640:18;32631:6;32587:72;:::i;:::-;32706:9;32700:4;32696:20;32691:2;32680:9;32676:18;32669:48;32734:76;32805:4;32796:6;32734:76;:::i;:::-;32726:84;;32177:640;;;;;;;:::o;32823:141::-;32879:5;32910:6;32904:13;32895:22;;32926:32;32952:5;32926:32;:::i;:::-;32823:141;;;;:::o;32970:349::-;33039:6;33088:2;33076:9;33067:7;33063:23;33059:32;33056:119;;;33094:79;;:::i;:::-;33056:119;33214:1;33239:63;33294:7;33285:6;33274:9;33270:22;33239:63;:::i;:::-;33229:73;;33185:127;32970:349;;;;:::o

Swarm Source

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