ETH Price: $2,537.82 (+2.96%)

Token

Espressionismo Totos (GENESIS TOTOS)
 

Overview

Max Total Supply

78 GENESIS TOTOS

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 GENESIS TOTOS
0xb4beb8a9b5fdab5b5a271ef8e7eeca5af6786252
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:
GenesisTotos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// GenesisTotosNFT
// Creator: Fredy Oyama

pragma solidity ^0.8.7;

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

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


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

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



// ERC721A Contracts v4.1.0

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


// ERC721A Contracts v4.1.0

/**
 * @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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 1;
    }

    /**
     * @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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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


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);
    }
}

// GenesisTotosNFT
contract GenesisTotos is ERC721A, Ownable {
    
    using Strings for uint256;
    
    string password;
    bool ownership = true;

    uint public maxSupply = 333;
    uint public maxPerTx = 15;
    uint public maxPerWallet = 25;

    mapping(uint => bool) public locked;

    string uri = "https://expressionismototos.mypinata.cloud/ipfs/QmV3xJ3WbJiLdc4PVSRb8ZsWvFe8fMwU9q5Pzwn9W8WUs7/";

    address devAddress = 0xb13BB480567aa0DF0C226397EBb34fDa2c5Ea666;
    
    constructor() ERC721A("Espressionismo Totos", "GENESIS TOTOS") {}


    function mint(address to, uint mintCnt) external payable onlyOwner {
        _mint(to, mintCnt);
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        uri = _uri;
    }

    function setOwnership(bool _ownership) public onlyOwner {
        ownership = _ownership;
    }
    
    function lockToken(uint _tokenId) external {
        require(msg.sender == ownerOf(_tokenId), "You are noe the owner of this token.");
        locked[_tokenId] = true;
    }

    function unlockToken(uint _tokenId) external {
        require(msg.sender == ownerOf(_tokenId), "You are noe the owner of this token.");
        locked[_tokenId] = false;
    }


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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        if (!_exists(_tokenId)) revert URIQueryForNonexistentToken();

        return string(abi.encodePacked(uri, _toString(_tokenId), ".json"));
    }

    function getOwnedTokens(address _owner) external view returns(uint[] memory) {
        uint balance = balanceOf(_owner);
        uint[] memory ownedTokens = new uint[](balance);
        uint i;
        uint j = 0;
        for(i = 1; i <= totalSupply(); i ++) {
            if(ownerOf(i) == _owner) {
                ownedTokens[j++] = i;
                if(j == balance) break;
            }
        }
        return ownedTokens;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override virtual {
        require(locked[startTokenId] == false, "This Token is locked.");
    }

    function withdraw(string memory _password) external onlyOwner() {
        require(keccak256(abi.encodePacked(_password)) == keccak256(abi.encodePacked(password)), "Incorrect Password");
        require(ownership == true, "Incorrect Ownership");

        uint balance = address(this).balance;
        payable(devAddress).transfer(balance * 5 / 100);
        payable(msg.sender).transfer(balance * 95 / 100);
    }

    function withdrawTo(address _to, uint _balance, string memory _password) external onlyOwner() {
        require(keccak256(abi.encodePacked(_password)) == keccak256(abi.encodePacked(password)), "Incorrect Password");
        require(ownership == true, "Incorrect Ownership");
        require(_balance <= address(this).balance, "Not enough");

        payable(devAddress).transfer(_balance * 5 / 100);
        payable(_to).transfer(_balance * 95 / 100);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintCnt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_ownership","type":"bool"}],"name":"setOwnership","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unlockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_password","type":"string"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"},{"internalType":"string","name":"_password","type":"string"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60006101000a81548160ff02191690831515021790555061014d600b55600f600c556019600d556040518060800160405280605f81526020016200371f605f9139600f90805190602001906200006092919062000277565b5073b13bb480567aa0df0c226397ebb34fda2c5ea666601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c357600080fd5b506040518060400160405280601481526020017f45737072657373696f6e69736d6f20546f746f730000000000000000000000008152506040518060400160405280600d81526020017f47454e4553495320544f544f530000000000000000000000000000000000000081525081600290805190602001906200014892919062000277565b5080600390805190602001906200016192919062000277565b5062000172620001a060201b60201c565b60008190555050506200019a6200018e620001a960201b60201c565b620001b160201b60201c565b6200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613383806200039c6000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063dd2e0ac011610064578063dd2e0ac014610641578063e985e9c51461066a578063f2fde38b146106a7578063f968adbe146106d0576101c2565b8063b88d4fde14610573578063c87b56dd1461059c578063d5abeb01146105d9578063d9d6165514610604576101c2565b80638da5cb5b116100d15780638da5cb5b146104b757806395d89b41146104e2578063a22cb4651461050d578063b45a3c0e14610536576101c2565b8063715018a61461044e578063783a57561461046557806380f203631461048e576101c2565b806331fb67c211610164578063453c23101161013e578063453c23101461038057806355f804b3146103ab5780636352211e146103d457806370a0823114610411576101c2565b806331fb67c21461031257806340c10f191461033b57806342842e0e14610357576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd14610295578063230f2eb9146102c057806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061276e565b6106fb565b6040516101fb9190612c10565b60405180910390f35b34801561021057600080fd5b5061021961078d565b6040516102269190612c2b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612811565b61081f565b6040516102639190612b87565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612692565b61089b565b005b3480156102a157600080fd5b506102aa6109dc565b6040516102b79190612d2d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612741565b6109f3565b005b3480156102f557600080fd5b50610310600480360381019061030b919061257c565b610a8c565b005b34801561031e57600080fd5b50610339600480360381019061033491906127c8565b610db1565b005b61035560048036038101906103509190612692565b610ffb565b005b34801561036357600080fd5b5061037e6004803603810190610379919061257c565b611085565b005b34801561038c57600080fd5b506103956110a5565b6040516103a29190612d2d565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906127c8565b6110ab565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612811565b611141565b6040516104089190612b87565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061250f565b611153565b6040516104459190612d2d565b60405180910390f35b34801561045a57600080fd5b5061046361120c565b005b34801561047157600080fd5b5061048c600480360381019061048791906126d2565b611294565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612811565b61151d565b005b3480156104c357600080fd5b506104cc6115c2565b6040516104d99190612b87565b60405180910390f35b3480156104ee57600080fd5b506104f76115ec565b6040516105049190612c2b565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190612652565b61167e565b005b34801561054257600080fd5b5061055d60048036038101906105589190612811565b6117f6565b60405161056a9190612c10565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906125cf565b611816565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612811565b611889565b6040516105d09190612c2b565b60405180910390f35b3480156105e557600080fd5b506105ee6118fc565b6040516105fb9190612d2d565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061250f565b611902565b6040516106389190612bee565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612811565b611a0d565b005b34801561067657600080fd5b50610691600480360381019061068c919061253c565b611ab2565b60405161069e9190612c10565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061250f565b611b46565b005b3480156106dc57600080fd5b506106e5611c3e565b6040516106f29190612d2d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c90612fa1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890612fa1565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a82611c44565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a682611141565b90508073ffffffffffffffffffffffffffffffffffffffff166108c7611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461092a576108f3816108ee611ca3565b611ab2565b610929576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e6611cab565b6001546000540303905090565b6109fb611cb4565b73ffffffffffffffffffffffffffffffffffffffff16610a196115c2565b73ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690612c8d565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000610a9782611cbc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610afe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0a84611d8a565b91509150610b208187610b1b611ca3565b611dac565b610b6c57610b3586610b30611ca3565b611ab2565b610b6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be08686866001611df0565b8015610beb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb985610c95888887611e5d565b7c020000000000000000000000000000000000000000000000000000000017611e85565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d41576000600185019050600060046000838152602001908152602001600020541415610d3f576000548114610d3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da98686866001611eb0565b505050505050565b610db9611cb4565b73ffffffffffffffffffffffffffffffffffffffff16610dd76115c2565b73ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612c8d565b60405180910390fd5b6009604051602001610e3f9190612b41565b6040516020818303038152906040528051906020012081604051602001610e669190612b2a565b6040516020818303038152906040528051906020012014610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612cad565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990612ccd565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610f629190612e91565b610f6c9190612e60565b9081150290604051600060405180830381858888f19350505050158015610f97573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6064605f84610fc19190612e91565b610fcb9190612e60565b9081150290604051600060405180830381858888f19350505050158015610ff6573d6000803e3d6000fd5b505050565b611003611cb4565b73ffffffffffffffffffffffffffffffffffffffff166110216115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90612c8d565b60405180910390fd5b6110818282611eb6565b5050565b6110a083838360405180602001604052806000815250611816565b505050565b600d5481565b6110b3611cb4565b73ffffffffffffffffffffffffffffffffffffffff166110d16115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612c8d565b60405180910390fd5b80600f908051906020019061113d929190612323565b5050565b600061114c82611cbc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611214611cb4565b73ffffffffffffffffffffffffffffffffffffffff166112326115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612c8d565b60405180910390fd5b611292600061208a565b565b61129c611cb4565b73ffffffffffffffffffffffffffffffffffffffff166112ba6115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612c8d565b60405180910390fd5b60096040516020016113229190612b41565b60405160208183030381529060405280519060200120816040516020016113499190612b2a565b604051602081830303815290604052805190602001201461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690612cad565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612ccd565b60405180910390fd5b47821115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612c6d565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005856114839190612e91565b61148d9190612e60565b9081150290604051600060405180830381858888f193505050501580156114b8573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc6064605f856114e29190612e91565b6114ec9190612e60565b9081150290604051600060405180830381858888f19350505050158015611517573d6000803e3d6000fd5b50505050565b61152681611141565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90612ced565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115fb90612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461162790612fa1565b80156116745780601f1061164957610100808354040283529160200191611674565b820191906000526020600020905b81548152906001019060200180831161165757829003601f168201915b5050505050905090565b611686611ca3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116f8611ca3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a5611ca3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ea9190612c10565b60405180910390a35050565b600e6020528060005260406000206000915054906101000a900460ff1681565b611821848484610a8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118835761184c84848484612150565b611882576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189482611c44565b6118ca576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f6118d5836122b0565b6040516020016118e6929190612b58565b6040516020818303038152906040529050919050565b600b5481565b6060600061190f83611153565b905060008167ffffffffffffffff81111561192d5761192c613109565b5b60405190808252806020026020018201604052801561195b5781602001602082028036833780820191505090505b50905060008060009050600191505b6119726109dc565b8211611a01578573ffffffffffffffffffffffffffffffffffffffff1661199883611141565b73ffffffffffffffffffffffffffffffffffffffff1614156119ee57818382806119c190613004565b9350815181106119d4576119d36130da565b5b602002602001018181525050838114156119ed57611a01565b5b81806119f990613004565b92505061196a565b82945050505050919050565b611a1681611141565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612ced565b60405180910390fd5b6000600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4e611cb4565b73ffffffffffffffffffffffffffffffffffffffff16611b6c6115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990612c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990612c4d565b60405180910390fd5b611c3b8161208a565b50565b600c5481565b600081611c4f611cab565b11158015611c5e575060005482105b8015611c9c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600033905090565b60008082905080611ccb611cab565b11611d5357600054811015611d525760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d50575b6000811415611d46576004600083600190039350838152602001908152602001600020549050611d1b565b8092505050611d85565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b60001515600e600084815260200190815260200160002060009054906101000a900460ff16151514611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612d0d565b60405180910390fd5b50505050565b60008060e883901c905060e8611e7486868461230a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611f5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6b6000848385611df0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe283611fd36000866000611e5d565b611fdc85612313565b17611e85565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612006578060008190555050506120856000848385611eb0565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612176611ca3565b8786866040518563ffffffff1660e01b81526004016121989493929190612ba2565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e357506040513d601f19601f820116820180604052508101906121e0919061279b565b60015b61225d573d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b50600081511415612255576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156122f657600183039250600a81066030018353600a810490506122d6565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b82805461232f90612fa1565b90600052602060002090601f0160209004810192826123515760008555612398565b82601f1061236a57805160ff1916838001178555612398565b82800160010185558215612398579182015b8281111561239757825182559160200191906001019061237c565b5b5090506123a591906123a9565b5090565b5b808211156123c25760008160009055506001016123aa565b5090565b60006123d96123d484612d6d565b612d48565b9050828152602081018484840111156123f5576123f461313d565b5b612400848285612f5f565b509392505050565b600061241b61241684612d9e565b612d48565b9050828152602081018484840111156124375761243661313d565b5b612442848285612f5f565b509392505050565b600081359050612459816132f1565b92915050565b60008135905061246e81613308565b92915050565b6000813590506124838161331f565b92915050565b6000815190506124988161331f565b92915050565b600082601f8301126124b3576124b2613138565b5b81356124c38482602086016123c6565b91505092915050565b600082601f8301126124e1576124e0613138565b5b81356124f1848260208601612408565b91505092915050565b60008135905061250981613336565b92915050565b60006020828403121561252557612524613147565b5b60006125338482850161244a565b91505092915050565b6000806040838503121561255357612552613147565b5b60006125618582860161244a565b92505060206125728582860161244a565b9150509250929050565b60008060006060848603121561259557612594613147565b5b60006125a38682870161244a565b93505060206125b48682870161244a565b92505060406125c5868287016124fa565b9150509250925092565b600080600080608085870312156125e9576125e8613147565b5b60006125f78782880161244a565b94505060206126088782880161244a565b9350506040612619878288016124fa565b925050606085013567ffffffffffffffff81111561263a57612639613142565b5b6126468782880161249e565b91505092959194509250565b6000806040838503121561266957612668613147565b5b60006126778582860161244a565b92505060206126888582860161245f565b9150509250929050565b600080604083850312156126a9576126a8613147565b5b60006126b78582860161244a565b92505060206126c8858286016124fa565b9150509250929050565b6000806000606084860312156126eb576126ea613147565b5b60006126f98682870161244a565b935050602061270a868287016124fa565b925050604084013567ffffffffffffffff81111561272b5761272a613142565b5b612737868287016124cc565b9150509250925092565b60006020828403121561275757612756613147565b5b60006127658482850161245f565b91505092915050565b60006020828403121561278457612783613147565b5b600061279284828501612474565b91505092915050565b6000602082840312156127b1576127b0613147565b5b60006127bf84828501612489565b91505092915050565b6000602082840312156127de576127dd613147565b5b600082013567ffffffffffffffff8111156127fc576127fb613142565b5b612808848285016124cc565b91505092915050565b60006020828403121561282757612826613147565b5b6000612835848285016124fa565b91505092915050565b600061284a8383612b0c565b60208301905092915050565b61285f81612eeb565b82525050565b600061287082612df4565b61287a8185612e22565b935061288583612dcf565b8060005b838110156128b657815161289d888261283e565b97506128a883612e15565b925050600181019050612889565b5085935050505092915050565b6128cc81612efd565b82525050565b60006128dd82612dff565b6128e78185612e33565b93506128f7818560208601612f6e565b6129008161314c565b840191505092915050565b600061291682612e0a565b6129208185612e44565b9350612930818560208601612f6e565b6129398161314c565b840191505092915050565b600061294f82612e0a565b6129598185612e55565b9350612969818560208601612f6e565b80840191505092915050565b6000815461298281612fa1565b61298c8186612e55565b945060018216600081146129a757600181146129b8576129eb565b60ff198316865281860193506129eb565b6129c185612ddf565b60005b838110156129e3578154818901526001820191506020810190506129c4565b838801955050505b50505092915050565b6000612a01602683612e44565b9150612a0c8261315d565b604082019050919050565b6000612a24600a83612e44565b9150612a2f826131ac565b602082019050919050565b6000612a47600583612e55565b9150612a52826131d5565b600582019050919050565b6000612a6a602083612e44565b9150612a75826131fe565b602082019050919050565b6000612a8d601283612e44565b9150612a9882613227565b602082019050919050565b6000612ab0601383612e44565b9150612abb82613250565b602082019050919050565b6000612ad3602483612e44565b9150612ade82613279565b604082019050919050565b6000612af6601583612e44565b9150612b01826132c8565b602082019050919050565b612b1581612f55565b82525050565b612b2481612f55565b82525050565b6000612b368284612944565b915081905092915050565b6000612b4d8284612975565b915081905092915050565b6000612b648285612975565b9150612b708284612944565b9150612b7b82612a3a565b91508190509392505050565b6000602082019050612b9c6000830184612856565b92915050565b6000608082019050612bb76000830187612856565b612bc46020830186612856565b612bd16040830185612b1b565b8181036060830152612be381846128d2565b905095945050505050565b60006020820190508181036000830152612c088184612865565b905092915050565b6000602082019050612c2560008301846128c3565b92915050565b60006020820190508181036000830152612c45818461290b565b905092915050565b60006020820190508181036000830152612c66816129f4565b9050919050565b60006020820190508181036000830152612c8681612a17565b9050919050565b60006020820190508181036000830152612ca681612a5d565b9050919050565b60006020820190508181036000830152612cc681612a80565b9050919050565b60006020820190508181036000830152612ce681612aa3565b9050919050565b60006020820190508181036000830152612d0681612ac6565b9050919050565b60006020820190508181036000830152612d2681612ae9565b9050919050565b6000602082019050612d426000830184612b1b565b92915050565b6000612d52612d63565b9050612d5e8282612fd3565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8857612d87613109565b5b612d918261314c565b9050602081019050919050565b600067ffffffffffffffff821115612db957612db8613109565b5b612dc28261314c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6b82612f55565b9150612e7683612f55565b925082612e8657612e8561307c565b5b828204905092915050565b6000612e9c82612f55565b9150612ea783612f55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee057612edf61304d565b5b828202905092915050565b6000612ef682612f35565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f8c578082015181840152602081019050612f71565b83811115612f9b576000848401525b50505050565b60006002820490506001821680612fb957607f821691505b60208210811415612fcd57612fcc6130ab565b5b50919050565b612fdc8261314c565b810181811067ffffffffffffffff82111715612ffb57612ffa613109565b5b80604052505050565b600061300f82612f55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130425761304161304d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e636f72726563742050617373776f72640000000000000000000000000000600082015250565b7f496e636f7272656374204f776e65727368697000000000000000000000000000600082015250565b7f596f7520617265206e6f6520746865206f776e6572206f66207468697320746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320546f6b656e206973206c6f636b65642e0000000000000000000000600082015250565b6132fa81612eeb565b811461330557600080fd5b50565b61331181612efd565b811461331c57600080fd5b50565b61332881612f09565b811461333357600080fd5b50565b61333f81612f55565b811461334a57600080fd5b5056fea264697066735822122096f950efc6e9f1e0edde9609e994ebf1b1b638ba0b700d1c0cacb2da036b572f64736f6c6343000807003368747470733a2f2f65787072657373696f6e69736d6f746f746f732e6d7970696e6174612e636c6f75642f697066732f516d5633784a3357624a694c6463345056535262385a735776466538664d7755397135507a776e395738575573372f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063dd2e0ac011610064578063dd2e0ac014610641578063e985e9c51461066a578063f2fde38b146106a7578063f968adbe146106d0576101c2565b8063b88d4fde14610573578063c87b56dd1461059c578063d5abeb01146105d9578063d9d6165514610604576101c2565b80638da5cb5b116100d15780638da5cb5b146104b757806395d89b41146104e2578063a22cb4651461050d578063b45a3c0e14610536576101c2565b8063715018a61461044e578063783a57561461046557806380f203631461048e576101c2565b806331fb67c211610164578063453c23101161013e578063453c23101461038057806355f804b3146103ab5780636352211e146103d457806370a0823114610411576101c2565b806331fb67c21461031257806340c10f191461033b57806342842e0e14610357576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd14610295578063230f2eb9146102c057806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061276e565b6106fb565b6040516101fb9190612c10565b60405180910390f35b34801561021057600080fd5b5061021961078d565b6040516102269190612c2b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612811565b61081f565b6040516102639190612b87565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612692565b61089b565b005b3480156102a157600080fd5b506102aa6109dc565b6040516102b79190612d2d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612741565b6109f3565b005b3480156102f557600080fd5b50610310600480360381019061030b919061257c565b610a8c565b005b34801561031e57600080fd5b50610339600480360381019061033491906127c8565b610db1565b005b61035560048036038101906103509190612692565b610ffb565b005b34801561036357600080fd5b5061037e6004803603810190610379919061257c565b611085565b005b34801561038c57600080fd5b506103956110a5565b6040516103a29190612d2d565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906127c8565b6110ab565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612811565b611141565b6040516104089190612b87565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061250f565b611153565b6040516104459190612d2d565b60405180910390f35b34801561045a57600080fd5b5061046361120c565b005b34801561047157600080fd5b5061048c600480360381019061048791906126d2565b611294565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612811565b61151d565b005b3480156104c357600080fd5b506104cc6115c2565b6040516104d99190612b87565b60405180910390f35b3480156104ee57600080fd5b506104f76115ec565b6040516105049190612c2b565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190612652565b61167e565b005b34801561054257600080fd5b5061055d60048036038101906105589190612811565b6117f6565b60405161056a9190612c10565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906125cf565b611816565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612811565b611889565b6040516105d09190612c2b565b60405180910390f35b3480156105e557600080fd5b506105ee6118fc565b6040516105fb9190612d2d565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061250f565b611902565b6040516106389190612bee565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612811565b611a0d565b005b34801561067657600080fd5b50610691600480360381019061068c919061253c565b611ab2565b60405161069e9190612c10565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061250f565b611b46565b005b3480156106dc57600080fd5b506106e5611c3e565b6040516106f29190612d2d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c90612fa1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890612fa1565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a82611c44565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a682611141565b90508073ffffffffffffffffffffffffffffffffffffffff166108c7611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461092a576108f3816108ee611ca3565b611ab2565b610929576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e6611cab565b6001546000540303905090565b6109fb611cb4565b73ffffffffffffffffffffffffffffffffffffffff16610a196115c2565b73ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690612c8d565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000610a9782611cbc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610afe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0a84611d8a565b91509150610b208187610b1b611ca3565b611dac565b610b6c57610b3586610b30611ca3565b611ab2565b610b6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be08686866001611df0565b8015610beb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb985610c95888887611e5d565b7c020000000000000000000000000000000000000000000000000000000017611e85565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d41576000600185019050600060046000838152602001908152602001600020541415610d3f576000548114610d3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da98686866001611eb0565b505050505050565b610db9611cb4565b73ffffffffffffffffffffffffffffffffffffffff16610dd76115c2565b73ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612c8d565b60405180910390fd5b6009604051602001610e3f9190612b41565b6040516020818303038152906040528051906020012081604051602001610e669190612b2a565b6040516020818303038152906040528051906020012014610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612cad565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990612ccd565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610f629190612e91565b610f6c9190612e60565b9081150290604051600060405180830381858888f19350505050158015610f97573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6064605f84610fc19190612e91565b610fcb9190612e60565b9081150290604051600060405180830381858888f19350505050158015610ff6573d6000803e3d6000fd5b505050565b611003611cb4565b73ffffffffffffffffffffffffffffffffffffffff166110216115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90612c8d565b60405180910390fd5b6110818282611eb6565b5050565b6110a083838360405180602001604052806000815250611816565b505050565b600d5481565b6110b3611cb4565b73ffffffffffffffffffffffffffffffffffffffff166110d16115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612c8d565b60405180910390fd5b80600f908051906020019061113d929190612323565b5050565b600061114c82611cbc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611214611cb4565b73ffffffffffffffffffffffffffffffffffffffff166112326115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612c8d565b60405180910390fd5b611292600061208a565b565b61129c611cb4565b73ffffffffffffffffffffffffffffffffffffffff166112ba6115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612c8d565b60405180910390fd5b60096040516020016113229190612b41565b60405160208183030381529060405280519060200120816040516020016113499190612b2a565b604051602081830303815290604052805190602001201461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690612cad565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612ccd565b60405180910390fd5b47821115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612c6d565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005856114839190612e91565b61148d9190612e60565b9081150290604051600060405180830381858888f193505050501580156114b8573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc6064605f856114e29190612e91565b6114ec9190612e60565b9081150290604051600060405180830381858888f19350505050158015611517573d6000803e3d6000fd5b50505050565b61152681611141565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90612ced565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115fb90612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461162790612fa1565b80156116745780601f1061164957610100808354040283529160200191611674565b820191906000526020600020905b81548152906001019060200180831161165757829003601f168201915b5050505050905090565b611686611ca3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116f8611ca3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a5611ca3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ea9190612c10565b60405180910390a35050565b600e6020528060005260406000206000915054906101000a900460ff1681565b611821848484610a8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118835761184c84848484612150565b611882576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189482611c44565b6118ca576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f6118d5836122b0565b6040516020016118e6929190612b58565b6040516020818303038152906040529050919050565b600b5481565b6060600061190f83611153565b905060008167ffffffffffffffff81111561192d5761192c613109565b5b60405190808252806020026020018201604052801561195b5781602001602082028036833780820191505090505b50905060008060009050600191505b6119726109dc565b8211611a01578573ffffffffffffffffffffffffffffffffffffffff1661199883611141565b73ffffffffffffffffffffffffffffffffffffffff1614156119ee57818382806119c190613004565b9350815181106119d4576119d36130da565b5b602002602001018181525050838114156119ed57611a01565b5b81806119f990613004565b92505061196a565b82945050505050919050565b611a1681611141565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612ced565b60405180910390fd5b6000600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4e611cb4565b73ffffffffffffffffffffffffffffffffffffffff16611b6c6115c2565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990612c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990612c4d565b60405180910390fd5b611c3b8161208a565b50565b600c5481565b600081611c4f611cab565b11158015611c5e575060005482105b8015611c9c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600033905090565b60008082905080611ccb611cab565b11611d5357600054811015611d525760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d50575b6000811415611d46576004600083600190039350838152602001908152602001600020549050611d1b565b8092505050611d85565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b60001515600e600084815260200190815260200160002060009054906101000a900460ff16151514611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612d0d565b60405180910390fd5b50505050565b60008060e883901c905060e8611e7486868461230a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611f5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6b6000848385611df0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe283611fd36000866000611e5d565b611fdc85612313565b17611e85565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612006578060008190555050506120856000848385611eb0565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612176611ca3565b8786866040518563ffffffff1660e01b81526004016121989493929190612ba2565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e357506040513d601f19601f820116820180604052508101906121e0919061279b565b60015b61225d573d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b50600081511415612255576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156122f657600183039250600a81066030018353600a810490506122d6565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b82805461232f90612fa1565b90600052602060002090601f0160209004810192826123515760008555612398565b82601f1061236a57805160ff1916838001178555612398565b82800160010185558215612398579182015b8281111561239757825182559160200191906001019061237c565b5b5090506123a591906123a9565b5090565b5b808211156123c25760008160009055506001016123aa565b5090565b60006123d96123d484612d6d565b612d48565b9050828152602081018484840111156123f5576123f461313d565b5b612400848285612f5f565b509392505050565b600061241b61241684612d9e565b612d48565b9050828152602081018484840111156124375761243661313d565b5b612442848285612f5f565b509392505050565b600081359050612459816132f1565b92915050565b60008135905061246e81613308565b92915050565b6000813590506124838161331f565b92915050565b6000815190506124988161331f565b92915050565b600082601f8301126124b3576124b2613138565b5b81356124c38482602086016123c6565b91505092915050565b600082601f8301126124e1576124e0613138565b5b81356124f1848260208601612408565b91505092915050565b60008135905061250981613336565b92915050565b60006020828403121561252557612524613147565b5b60006125338482850161244a565b91505092915050565b6000806040838503121561255357612552613147565b5b60006125618582860161244a565b92505060206125728582860161244a565b9150509250929050565b60008060006060848603121561259557612594613147565b5b60006125a38682870161244a565b93505060206125b48682870161244a565b92505060406125c5868287016124fa565b9150509250925092565b600080600080608085870312156125e9576125e8613147565b5b60006125f78782880161244a565b94505060206126088782880161244a565b9350506040612619878288016124fa565b925050606085013567ffffffffffffffff81111561263a57612639613142565b5b6126468782880161249e565b91505092959194509250565b6000806040838503121561266957612668613147565b5b60006126778582860161244a565b92505060206126888582860161245f565b9150509250929050565b600080604083850312156126a9576126a8613147565b5b60006126b78582860161244a565b92505060206126c8858286016124fa565b9150509250929050565b6000806000606084860312156126eb576126ea613147565b5b60006126f98682870161244a565b935050602061270a868287016124fa565b925050604084013567ffffffffffffffff81111561272b5761272a613142565b5b612737868287016124cc565b9150509250925092565b60006020828403121561275757612756613147565b5b60006127658482850161245f565b91505092915050565b60006020828403121561278457612783613147565b5b600061279284828501612474565b91505092915050565b6000602082840312156127b1576127b0613147565b5b60006127bf84828501612489565b91505092915050565b6000602082840312156127de576127dd613147565b5b600082013567ffffffffffffffff8111156127fc576127fb613142565b5b612808848285016124cc565b91505092915050565b60006020828403121561282757612826613147565b5b6000612835848285016124fa565b91505092915050565b600061284a8383612b0c565b60208301905092915050565b61285f81612eeb565b82525050565b600061287082612df4565b61287a8185612e22565b935061288583612dcf565b8060005b838110156128b657815161289d888261283e565b97506128a883612e15565b925050600181019050612889565b5085935050505092915050565b6128cc81612efd565b82525050565b60006128dd82612dff565b6128e78185612e33565b93506128f7818560208601612f6e565b6129008161314c565b840191505092915050565b600061291682612e0a565b6129208185612e44565b9350612930818560208601612f6e565b6129398161314c565b840191505092915050565b600061294f82612e0a565b6129598185612e55565b9350612969818560208601612f6e565b80840191505092915050565b6000815461298281612fa1565b61298c8186612e55565b945060018216600081146129a757600181146129b8576129eb565b60ff198316865281860193506129eb565b6129c185612ddf565b60005b838110156129e3578154818901526001820191506020810190506129c4565b838801955050505b50505092915050565b6000612a01602683612e44565b9150612a0c8261315d565b604082019050919050565b6000612a24600a83612e44565b9150612a2f826131ac565b602082019050919050565b6000612a47600583612e55565b9150612a52826131d5565b600582019050919050565b6000612a6a602083612e44565b9150612a75826131fe565b602082019050919050565b6000612a8d601283612e44565b9150612a9882613227565b602082019050919050565b6000612ab0601383612e44565b9150612abb82613250565b602082019050919050565b6000612ad3602483612e44565b9150612ade82613279565b604082019050919050565b6000612af6601583612e44565b9150612b01826132c8565b602082019050919050565b612b1581612f55565b82525050565b612b2481612f55565b82525050565b6000612b368284612944565b915081905092915050565b6000612b4d8284612975565b915081905092915050565b6000612b648285612975565b9150612b708284612944565b9150612b7b82612a3a565b91508190509392505050565b6000602082019050612b9c6000830184612856565b92915050565b6000608082019050612bb76000830187612856565b612bc46020830186612856565b612bd16040830185612b1b565b8181036060830152612be381846128d2565b905095945050505050565b60006020820190508181036000830152612c088184612865565b905092915050565b6000602082019050612c2560008301846128c3565b92915050565b60006020820190508181036000830152612c45818461290b565b905092915050565b60006020820190508181036000830152612c66816129f4565b9050919050565b60006020820190508181036000830152612c8681612a17565b9050919050565b60006020820190508181036000830152612ca681612a5d565b9050919050565b60006020820190508181036000830152612cc681612a80565b9050919050565b60006020820190508181036000830152612ce681612aa3565b9050919050565b60006020820190508181036000830152612d0681612ac6565b9050919050565b60006020820190508181036000830152612d2681612ae9565b9050919050565b6000602082019050612d426000830184612b1b565b92915050565b6000612d52612d63565b9050612d5e8282612fd3565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8857612d87613109565b5b612d918261314c565b9050602081019050919050565b600067ffffffffffffffff821115612db957612db8613109565b5b612dc28261314c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6b82612f55565b9150612e7683612f55565b925082612e8657612e8561307c565b5b828204905092915050565b6000612e9c82612f55565b9150612ea783612f55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee057612edf61304d565b5b828202905092915050565b6000612ef682612f35565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f8c578082015181840152602081019050612f71565b83811115612f9b576000848401525b50505050565b60006002820490506001821680612fb957607f821691505b60208210811415612fcd57612fcc6130ab565b5b50919050565b612fdc8261314c565b810181811067ffffffffffffffff82111715612ffb57612ffa613109565b5b80604052505050565b600061300f82612f55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130425761304161304d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e636f72726563742050617373776f72640000000000000000000000000000600082015250565b7f496e636f7272656374204f776e65727368697000000000000000000000000000600082015250565b7f596f7520617265206e6f6520746865206f776e6572206f66207468697320746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320546f6b656e206973206c6f636b65642e0000000000000000000000600082015250565b6132fa81612eeb565b811461330557600080fd5b50565b61331181612efd565b811461331c57600080fd5b50565b61332881612f09565b811461333357600080fd5b50565b61333f81612f55565b811461334a57600080fd5b5056fea264697066735822122096f950efc6e9f1e0edde9609e994ebf1b1b638ba0b700d1c0cacb2da036b572f64736f6c63430008070033

Deployed Bytecode Sourcemap

49870:3209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17769:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25362:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24910:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16823:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50641:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34627:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52185:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50433:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26252:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50081:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50545:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23205:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18448:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2546:103;;;;;;;;;;;;;:::i;:::-;;52612:464;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50750:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1895:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25638:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50119:35;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26508:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51227:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50015:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51474:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50934:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26017:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2804:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50049:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17769:615;17854:4;18169:10;18154:25;;:11;:25;;;;:102;;;;18246:10;18231:25;;:11;:25;;;;18154:102;:179;;;;18323:10;18308:25;;:11;:25;;;;18154:179;18134:199;;17769:615;;;:::o;23416:100::-;23470:13;23503:5;23496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23416:100;:::o;25362:204::-;25430:7;25455:16;25463:7;25455;:16::i;:::-;25450:64;;25480:34;;;;;;;;;;;;;;25450:64;25534:15;:24;25550:7;25534:24;;;;;;;;;;;;;;;;;;;;;25527:31;;25362:204;;;:::o;24910:386::-;24983:13;24999:16;25007:7;24999;:16::i;:::-;24983:32;;25055:5;25032:28;;:19;:17;:19::i;:::-;:28;;;25028:175;;25080:44;25097:5;25104:19;:17;:19::i;:::-;25080:16;:44::i;:::-;25075:128;;25152:35;;;;;;;;;;;;;;25075:128;25028:175;25242:2;25215:15;:24;25231:7;25215:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25280:7;25276:2;25260:28;;25269:5;25260:28;;;;;;;;;;;;24972:324;24910:386;;:::o;16823:315::-;16876:7;17104:15;:13;:15::i;:::-;17089:12;;17073:13;;:28;:46;17066:53;;16823:315;:::o;50641:97::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50720:10:::1;50708:9;;:22;;;;;;;;;;;;;;;;;;50641:97:::0;:::o;34627:2800::-;34761:27;34791;34810:7;34791:18;:27::i;:::-;34761:57;;34876:4;34835:45;;34851:19;34835:45;;;34831:86;;34889:28;;;;;;;;;;;;;;34831:86;34931:27;34960:23;34987:28;35007:7;34987:19;:28::i;:::-;34930:85;;;;35115:62;35134:15;35151:4;35157:19;:17;:19::i;:::-;35115:18;:62::i;:::-;35110:174;;35197:43;35214:4;35220:19;:17;:19::i;:::-;35197:16;:43::i;:::-;35192:92;;35249:35;;;;;;;;;;;;;;35192:92;35110:174;35315:1;35301:16;;:2;:16;;;35297:52;;;35326:23;;;;;;;;;;;;;;35297:52;35362:43;35384:4;35390:2;35394:7;35403:1;35362:21;:43::i;:::-;35498:15;35495:160;;;35638:1;35617:19;35610:30;35495:160;36033:18;:24;36052:4;36033:24;;;;;;;;;;;;;;;;36031:26;;;;;;;;;;;;36102:18;:22;36121:2;36102:22;;;;;;;;;;;;;;;;36100:24;;;;;;;;;;;36424:145;36461:2;36509:45;36524:4;36530:2;36534:19;36509:14;:45::i;:::-;14051:8;36482:72;36424:18;:145::i;:::-;36395:17;:26;36413:7;36395:26;;;;;;;;;;;:174;;;;36739:1;14051:8;36689:19;:46;:51;36685:626;;;36761:19;36793:1;36783:7;:11;36761:33;;36950:1;36916:17;:30;36934:11;36916:30;;;;;;;;;;;;:35;36912:384;;;37054:13;;37039:11;:28;37035:242;;37234:19;37201:17;:30;37219:11;37201:30;;;;;;;;;;;:52;;;;37035:242;36912:384;36742:569;36685:626;37358:7;37354:2;37339:27;;37348:4;37339:27;;;;;;;;;;;;37377:42;37398:4;37404:2;37408:7;37417:1;37377:20;:42::i;:::-;34750:2677;;;34627:2800;;;:::o;52185:419::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52337:8:::1;52320:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;52310:37;;;;;;52295:9;52278:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;52268:38;;;;;;:79;52260:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;52402:4;52389:17;;:9;;;;;;;;;;;:17;;;52381:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;52443:12;52458:21;52443:36;;52498:10;;;;;;;;;;;52490:28;;:47;52533:3;52529:1;52519:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;52490:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52556:10;52548:28;;:48;52592:3;52587:2;52577:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;52548:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52249:355;52185:419:::0;:::o;50433:104::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50511:18:::1;50517:2;50521:7;50511:5;:18::i;:::-;50433:104:::0;;:::o;26252:185::-;26390:39;26407:4;26413:2;26417:7;26390:39;;;;;;;;;;;;:16;:39::i;:::-;26252:185;;;:::o;50081:29::-;;;;:::o;50545:88::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50621:4:::1;50615:3;:10;;;;;;;;;;;;:::i;:::-;;50545:88:::0;:::o;23205:144::-;23269:7;23312:27;23331:7;23312:18;:27::i;:::-;23289:52;;23205:144;;;:::o;18448:224::-;18512:7;18553:1;18536:19;;:5;:19;;;18532:60;;;18564:28;;;;;;;;;;;;;;18532:60;13003:13;18610:18;:25;18629:5;18610:25;;;;;;;;;;;;;;;;:54;18603:61;;18448:224;;;:::o;2546:103::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2611:30:::1;2638:1;2611:18;:30::i;:::-;2546:103::o:0;52612:464::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52794:8:::1;52777:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;52767:37;;;;;;52752:9;52735:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;52725:38;;;;;;:79;52717:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;52859:4;52846:17;;:9;;;;;;;;;;;:17;;;52838:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;52918:21;52906:8;:33;;52898:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;52975:10;;;;;;;;;;;52967:28;;:48;53011:3;53007:1;52996:8;:12;;;;:::i;:::-;:18;;;;:::i;:::-;52967:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53034:3;53026:21;;:42;53064:3;53059:2;53048:8;:13;;;;:::i;:::-;:19;;;;:::i;:::-;53026:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52612:464:::0;;;:::o;50750:176::-;50826:17;50834:8;50826:7;:17::i;:::-;50812:31;;:10;:31;;;50804:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50914:4;50895:6;:16;50902:8;50895:16;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;50750:176;:::o;1895:87::-;1941:7;1968:6;;;;;;;;;;;1961:13;;1895:87;:::o;23585:104::-;23641:13;23674:7;23667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23585:104;:::o;25638:308::-;25749:19;:17;:19::i;:::-;25737:31;;:8;:31;;;25733:61;;;25777:17;;;;;;;;;;;;;;25733:61;25859:8;25807:18;:39;25826:19;:17;:19::i;:::-;25807:39;;;;;;;;;;;;;;;:49;25847:8;25807:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25919:8;25883:55;;25898:19;:17;:19::i;:::-;25883:55;;;25929:8;25883:55;;;;;;:::i;:::-;;;;;;;;25638:308;;:::o;50119:35::-;;;;;;;;;;;;;;;;;;;;;;:::o;26508:399::-;26675:31;26688:4;26694:2;26698:7;26675:12;:31::i;:::-;26739:1;26721:2;:14;;;:19;26717:183;;26760:56;26791:4;26797:2;26801:7;26810:5;26760:30;:56::i;:::-;26755:145;;26844:40;;;;;;;;;;;;;;26755:145;26717:183;26508:399;;;;:::o;51227:239::-;51293:13;51324:17;51332:8;51324:7;:17::i;:::-;51319:60;;51350:29;;;;;;;;;;;;;;51319:60;51423:3;51428:19;51438:8;51428:9;:19::i;:::-;51406:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51392:66;;51227:239;;;:::o;50015:27::-;;;;:::o;51474:447::-;51536:13;51562:12;51577:17;51587:6;51577:9;:17::i;:::-;51562:32;;51605:25;51644:7;51633:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51605:47;;51663:6;51680;51689:1;51680:10;;51709:1;51705:5;;51701:184;51717:13;:11;:13::i;:::-;51712:1;:18;51701:184;;51770:6;51756:20;;:10;51764:1;51756:7;:10::i;:::-;:20;;;51753:121;;;51816:1;51797:11;51809:3;;;;;:::i;:::-;;;51797:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;51844:7;51839:1;:12;51836:22;;;51853:5;;51836:22;51753:121;51732:4;;;;;:::i;:::-;;;;51701:184;;;51902:11;51895:18;;;;;;51474:447;;;:::o;50934:179::-;51012:17;51020:8;51012:7;:17::i;:::-;50998:31;;:10;:31;;;50990:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;51100:5;51081:6;:16;51088:8;51081:16;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;50934:179;:::o;26017:164::-;26114:4;26138:18;:25;26157:5;26138:25;;;;;;;;;;;;;;;:35;26164:8;26138:35;;;;;;;;;;;;;;;;;;;;;;;;;26131:42;;26017:164;;;;:::o;2804:201::-;2126:12;:10;:12::i;:::-;2115:23;;:7;:5;:7::i;:::-;:23;;;2107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2913:1:::1;2893:22;;:8;:22;;;;2885:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2969:28;2988:8;2969:18;:28::i;:::-;2804:201:::0;:::o;50049:25::-;;;;:::o;27162:273::-;27219:4;27275:7;27256:15;:13;:15::i;:::-;:26;;:66;;;;;27309:13;;27299:7;:23;27256:66;:152;;;;;27407:1;13773:8;27360:17;:26;27378:7;27360:26;;;;;;;;;;;;:43;:48;27256:152;27236:172;;27162:273;;;:::o;45723:105::-;45783:7;45810:10;45803:17;;45723:105;:::o;16347:92::-;16403:7;16430:1;16423:8;;16347:92;:::o;703:98::-;756:7;783:10;776:17;;703:98;:::o;20122:1129::-;20189:7;20209:12;20224:7;20209:22;;20292:4;20273:15;:13;:15::i;:::-;:23;20269:915;;20326:13;;20319:4;:20;20315:869;;;20364:14;20381:17;:23;20399:4;20381:23;;;;;;;;;;;;20364:40;;20497:1;13773:8;20470:6;:23;:28;20466:699;;;20989:113;21006:1;20996:6;:11;20989:113;;;21049:17;:25;21067:6;;;;;;;21049:25;;;;;;;;;;;;21040:34;;20989:113;;;21135:6;21128:13;;;;;;20466:699;20341:843;20315:869;20269:915;21212:31;;;;;;;;;;;;;;20122:1129;;;;:::o;32963:652::-;33058:27;33087:23;33128:53;33184:15;33128:71;;33370:7;33364:4;33357:21;33405:22;33399:4;33392:36;33481:4;33475;33465:21;33442:44;;33577:19;33571:26;33552:45;;33308:300;32963:652;;;:::o;33728:645::-;33870:11;34032:15;34026:4;34022:26;34014:34;;34191:15;34180:9;34176:31;34163:44;;34338:15;34327:9;34324:30;34317:4;34306:9;34303:19;34300:55;34290:65;;33728:645;;;;;:::o;51929:248::-;52138:5;52114:29;;:6;:20;52121:12;52114:20;;;;;;;;;;;;;;;;;;;;;:29;;;52106:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51929:248;;;;:::o;42868:309::-;43003:7;43023:16;14174:3;43049:19;:40;;43023:67;;14174:3;43116:31;43127:4;43133:2;43137:9;43116:10;:31::i;:::-;43108:40;;:61;;43101:68;;;42868:309;;;;;:::o;22696:447::-;22776:14;22944:15;22937:5;22933:27;22924:36;;23118:5;23104:11;23080:22;23076:40;23073:51;23066:5;23063:62;23053:72;;22696:447;;;;:::o;45374:158::-;;;;;:::o;28993:1529::-;29058:20;29081:13;;29058:36;;29123:1;29109:16;;:2;:16;;;29105:48;;;29134:19;;;;;;;;;;;;;;29105:48;29180:1;29168:8;:13;29164:44;;;29190:18;;;;;;;;;;;;;;29164:44;29221:61;29251:1;29255:2;29259:12;29273:8;29221:21;:61::i;:::-;29764:1;13140:2;29735:1;:25;;29734:31;29722:8;:44;29696:18;:22;29715:2;29696:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30043:139;30080:2;30134:33;30157:1;30161:2;30165:1;30134:14;:33::i;:::-;30101:30;30122:8;30101:20;:30::i;:::-;:66;30043:18;:139::i;:::-;30009:17;:31;30027:12;30009:31;;;;;;;;;;;:173;;;;30199:15;30217:12;30199:30;;30244:11;30273:8;30258:12;:23;30244:37;;30296:101;30348:9;;;;;;30344:2;30323:35;;30340:1;30323:35;;;;;;;;;;;;30392:3;30382:7;:13;30296:101;;30429:3;30413:13;:19;;;;29470:974;;30454:60;30483:1;30487:2;30491:12;30505:8;30454:20;:60::i;:::-;29047:1475;28993:1529;;:::o;3165:191::-;3239:16;3258:6;;;;;;;;;;;3239:25;;3284:8;3275:6;;:17;;;;;;;;;;;;;;;;;;3339:8;3308:40;;3329:8;3308:40;;;;;;;;;;;;3228:128;3165:191;:::o;41378:716::-;41541:4;41587:2;41562:45;;;41608:19;:17;:19::i;:::-;41629:4;41635:7;41644:5;41562:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41558:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41862:1;41845:6;:13;:18;41841:235;;;41891:40;;;;;;;;;;;;;;41841:235;42034:6;42028:13;42019:6;42015:2;42011:15;42004:38;41558:529;41731:54;;;41721:64;;;:6;:64;;;;41714:71;;;41378:716;;;;;;:::o;45934:1960::-;45991:17;46410:3;46403:4;46397:11;46393:21;46386:28;;46501:3;46495:4;46488:17;46607:3;47063:5;47193:1;47188:3;47184:11;47177:18;;47330:2;47324:4;47320:13;47316:2;47312:22;47307:3;47299:36;47371:2;47365:4;47361:13;47353:21;;46955:697;47390:4;46955:697;;;47581:1;47576:3;47572:11;47565:18;;47632:2;47626:4;47622:13;47618:2;47614:22;47609:3;47601:36;47485:2;47479:4;47475:13;47467:21;;46955:697;;;46959:430;47691:3;47686;47682:13;47806:2;47801:3;47797:12;47790:19;;47869:6;47864:3;47857:19;46030:1857;;45934:1960;;;:::o;43753:147::-;43890:6;43753:147;;;;;:::o;24526:322::-;24596:14;24827:1;24817:8;24814:15;24789:23;24785:45;24775:55;;24526:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:799::-;5707:6;5715;5723;5772:2;5760:9;5751:7;5747:23;5743:32;5740:119;;;5778:79;;:::i;:::-;5740:119;5898:1;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5869:117;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;6181:2;6170:9;6166:18;6153:32;6212:18;6204:6;6201:30;6198:117;;;6234:79;;:::i;:::-;6198:117;6339:63;6394:7;6385:6;6374:9;6370:22;6339:63;:::i;:::-;6329:73;;6124:288;5620:799;;;;;:::o;6425:323::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:50;6723:7;6714:6;6703:9;6699:22;6681:50;:::i;:::-;6671:60;;6627:114;6425:323;;;;:::o;6754:327::-;6812:6;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:52;7056:7;7047:6;7036:9;7032:22;7012:52;:::i;:::-;7002:62;;6958:116;6754:327;;;;:::o;7087:349::-;7156:6;7205:2;7193:9;7184:7;7180:23;7176:32;7173:119;;;7211:79;;:::i;:::-;7173:119;7331:1;7356:63;7411:7;7402:6;7391:9;7387:22;7356:63;:::i;:::-;7346:73;;7302:127;7087:349;;;;:::o;7442:509::-;7511:6;7560:2;7548:9;7539:7;7535:23;7531:32;7528:119;;;7566:79;;:::i;:::-;7528:119;7714:1;7703:9;7699:17;7686:31;7744:18;7736:6;7733:30;7730:117;;;7766:79;;:::i;:::-;7730:117;7871:63;7926:7;7917:6;7906:9;7902:22;7871:63;:::i;:::-;7861:73;;7657:287;7442:509;;;;:::o;7957:329::-;8016:6;8065:2;8053:9;8044:7;8040:23;8036:32;8033:119;;;8071:79;;:::i;:::-;8033:119;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;7957:329;;;;:::o;8292:179::-;8361:10;8382:46;8424:3;8416:6;8382:46;:::i;:::-;8460:4;8455:3;8451:14;8437:28;;8292:179;;;;:::o;8477:118::-;8564:24;8582:5;8564:24;:::i;:::-;8559:3;8552:37;8477:118;;:::o;8631:732::-;8750:3;8779:54;8827:5;8779:54;:::i;:::-;8849:86;8928:6;8923:3;8849:86;:::i;:::-;8842:93;;8959:56;9009:5;8959:56;:::i;:::-;9038:7;9069:1;9054:284;9079:6;9076:1;9073:13;9054:284;;;9155:6;9149:13;9182:63;9241:3;9226:13;9182:63;:::i;:::-;9175:70;;9268:60;9321:6;9268:60;:::i;:::-;9258:70;;9114:224;9101:1;9098;9094:9;9089:14;;9054:284;;;9058:14;9354:3;9347:10;;8755:608;;;8631:732;;;;:::o;9369:109::-;9450:21;9465:5;9450:21;:::i;:::-;9445:3;9438:34;9369:109;;:::o;9484:360::-;9570:3;9598:38;9630:5;9598:38;:::i;:::-;9652:70;9715:6;9710:3;9652:70;:::i;:::-;9645:77;;9731:52;9776:6;9771:3;9764:4;9757:5;9753:16;9731:52;:::i;:::-;9808:29;9830:6;9808:29;:::i;:::-;9803:3;9799:39;9792:46;;9574:270;9484:360;;;;:::o;9850:364::-;9938:3;9966:39;9999:5;9966:39;:::i;:::-;10021:71;10085:6;10080:3;10021:71;:::i;:::-;10014:78;;10101:52;10146:6;10141:3;10134:4;10127:5;10123:16;10101:52;:::i;:::-;10178:29;10200:6;10178:29;:::i;:::-;10173:3;10169:39;10162:46;;9942:272;9850:364;;;;:::o;10220:377::-;10326:3;10354:39;10387:5;10354:39;:::i;:::-;10409:89;10491:6;10486:3;10409:89;:::i;:::-;10402:96;;10507:52;10552:6;10547:3;10540:4;10533:5;10529:16;10507:52;:::i;:::-;10584:6;10579:3;10575:16;10568:23;;10330:267;10220:377;;;;:::o;10627:845::-;10730:3;10767:5;10761:12;10796:36;10822:9;10796:36;:::i;:::-;10848:89;10930:6;10925:3;10848:89;:::i;:::-;10841:96;;10968:1;10957:9;10953:17;10984:1;10979:137;;;;11130:1;11125:341;;;;10946:520;;10979:137;11063:4;11059:9;11048;11044:25;11039:3;11032:38;11099:6;11094:3;11090:16;11083:23;;10979:137;;11125:341;11192:38;11224:5;11192:38;:::i;:::-;11252:1;11266:154;11280:6;11277:1;11274:13;11266:154;;;11354:7;11348:14;11344:1;11339:3;11335:11;11328:35;11404:1;11395:7;11391:15;11380:26;;11302:4;11299:1;11295:12;11290:17;;11266:154;;;11449:6;11444:3;11440:16;11433:23;;11132:334;;10946:520;;10734:738;;10627:845;;;;:::o;11478:366::-;11620:3;11641:67;11705:2;11700:3;11641:67;:::i;:::-;11634:74;;11717:93;11806:3;11717:93;:::i;:::-;11835:2;11830:3;11826:12;11819:19;;11478:366;;;:::o;11850:::-;11992:3;12013:67;12077:2;12072:3;12013:67;:::i;:::-;12006:74;;12089:93;12178:3;12089:93;:::i;:::-;12207:2;12202:3;12198:12;12191:19;;11850:366;;;:::o;12222:400::-;12382:3;12403:84;12485:1;12480:3;12403:84;:::i;:::-;12396:91;;12496:93;12585:3;12496:93;:::i;:::-;12614:1;12609:3;12605:11;12598:18;;12222:400;;;:::o;12628:366::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12628:366;;;:::o;13000:::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13372:366;;;:::o;13744:::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13744:366;;;:::o;14116:::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14116:366;;;:::o;14488:108::-;14565:24;14583:5;14565:24;:::i;:::-;14560:3;14553:37;14488:108;;:::o;14602:118::-;14689:24;14707:5;14689:24;:::i;:::-;14684:3;14677:37;14602:118;;:::o;14726:275::-;14858:3;14880:95;14971:3;14962:6;14880:95;:::i;:::-;14873:102;;14992:3;14985:10;;14726:275;;;;:::o;15007:269::-;15136:3;15158:92;15246:3;15237:6;15158:92;:::i;:::-;15151:99;;15267:3;15260:10;;15007:269;;;;:::o;15282:695::-;15560:3;15582:92;15670:3;15661:6;15582:92;:::i;:::-;15575:99;;15691:95;15782:3;15773:6;15691:95;:::i;:::-;15684:102;;15803:148;15947:3;15803:148;:::i;:::-;15796:155;;15968:3;15961:10;;15282:695;;;;;:::o;15983:222::-;16076:4;16114:2;16103:9;16099:18;16091:26;;16127:71;16195:1;16184:9;16180:17;16171:6;16127:71;:::i;:::-;15983:222;;;;:::o;16211:640::-;16406:4;16444:3;16433:9;16429:19;16421:27;;16458:71;16526:1;16515:9;16511:17;16502:6;16458:71;:::i;:::-;16539:72;16607:2;16596:9;16592:18;16583:6;16539:72;:::i;:::-;16621;16689:2;16678:9;16674:18;16665:6;16621:72;:::i;:::-;16740:9;16734:4;16730:20;16725:2;16714:9;16710:18;16703:48;16768:76;16839:4;16830:6;16768:76;:::i;:::-;16760:84;;16211:640;;;;;;;:::o;16857:373::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:108;17218:4;17209:6;17115:108;:::i;:::-;17107:116;;16857:373;;;;:::o;17236:210::-;17323:4;17361:2;17350:9;17346:18;17338:26;;17374:65;17436:1;17425:9;17421:17;17412:6;17374:65;:::i;:::-;17236:210;;;;:::o;17452:313::-;17565:4;17603:2;17592:9;17588:18;17580:26;;17652:9;17646:4;17642:20;17638:1;17627:9;17623:17;17616:47;17680:78;17753:4;17744:6;17680:78;:::i;:::-;17672:86;;17452:313;;;;:::o;17771:419::-;17937:4;17975:2;17964:9;17960:18;17952:26;;18024:9;18018:4;18014:20;18010:1;17999:9;17995:17;17988:47;18052:131;18178:4;18052:131;:::i;:::-;18044:139;;17771:419;;;:::o;18196:::-;18362:4;18400:2;18389:9;18385:18;18377:26;;18449:9;18443:4;18439:20;18435:1;18424:9;18420:17;18413:47;18477:131;18603:4;18477:131;:::i;:::-;18469:139;;18196:419;;;:::o;18621:::-;18787:4;18825:2;18814:9;18810:18;18802:26;;18874:9;18868:4;18864:20;18860:1;18849:9;18845:17;18838:47;18902:131;19028:4;18902:131;:::i;:::-;18894:139;;18621:419;;;:::o;19046:::-;19212:4;19250:2;19239:9;19235:18;19227:26;;19299:9;19293:4;19289:20;19285:1;19274:9;19270:17;19263:47;19327:131;19453:4;19327:131;:::i;:::-;19319:139;;19046:419;;;:::o;19471:::-;19637:4;19675:2;19664:9;19660:18;19652:26;;19724:9;19718:4;19714:20;19710:1;19699:9;19695:17;19688:47;19752:131;19878:4;19752:131;:::i;:::-;19744:139;;19471:419;;;:::o;19896:::-;20062:4;20100:2;20089:9;20085:18;20077:26;;20149:9;20143:4;20139:20;20135:1;20124:9;20120:17;20113:47;20177:131;20303:4;20177:131;:::i;:::-;20169:139;;19896:419;;;:::o;20321:::-;20487:4;20525:2;20514:9;20510:18;20502:26;;20574:9;20568:4;20564:20;20560:1;20549:9;20545:17;20538:47;20602:131;20728:4;20602:131;:::i;:::-;20594:139;;20321:419;;;:::o;20746:222::-;20839:4;20877:2;20866:9;20862:18;20854:26;;20890:71;20958:1;20947:9;20943:17;20934:6;20890:71;:::i;:::-;20746:222;;;;:::o;20974:129::-;21008:6;21035:20;;:::i;:::-;21025:30;;21064:33;21092:4;21084:6;21064:33;:::i;:::-;20974:129;;;:::o;21109:75::-;21142:6;21175:2;21169:9;21159:19;;21109:75;:::o;21190:307::-;21251:4;21341:18;21333:6;21330:30;21327:56;;;21363:18;;:::i;:::-;21327:56;21401:29;21423:6;21401:29;:::i;:::-;21393:37;;21485:4;21479;21475:15;21467:23;;21190:307;;;:::o;21503:308::-;21565:4;21655:18;21647:6;21644:30;21641:56;;;21677:18;;:::i;:::-;21641:56;21715:29;21737:6;21715:29;:::i;:::-;21707:37;;21799:4;21793;21789:15;21781:23;;21503:308;;;:::o;21817:132::-;21884:4;21907:3;21899:11;;21937:4;21932:3;21928:14;21920:22;;21817:132;;;:::o;21955:141::-;22004:4;22027:3;22019:11;;22050:3;22047:1;22040:14;22084:4;22081:1;22071:18;22063:26;;21955:141;;;:::o;22102:114::-;22169:6;22203:5;22197:12;22187:22;;22102:114;;;:::o;22222:98::-;22273:6;22307:5;22301:12;22291:22;;22222:98;;;:::o;22326:99::-;22378:6;22412:5;22406:12;22396:22;;22326:99;;;:::o;22431:113::-;22501:4;22533;22528:3;22524:14;22516:22;;22431:113;;;:::o;22550:184::-;22649:11;22683:6;22678:3;22671:19;22723:4;22718:3;22714:14;22699:29;;22550:184;;;;:::o;22740:168::-;22823:11;22857:6;22852:3;22845:19;22897:4;22892:3;22888:14;22873:29;;22740:168;;;;:::o;22914:169::-;22998:11;23032:6;23027:3;23020:19;23072:4;23067:3;23063:14;23048:29;;22914:169;;;;:::o;23089:148::-;23191:11;23228:3;23213:18;;23089:148;;;;:::o;23243:185::-;23283:1;23300:20;23318:1;23300:20;:::i;:::-;23295:25;;23334:20;23352:1;23334:20;:::i;:::-;23329:25;;23373:1;23363:35;;23378:18;;:::i;:::-;23363:35;23420:1;23417;23413:9;23408:14;;23243:185;;;;:::o;23434:348::-;23474:7;23497:20;23515:1;23497:20;:::i;:::-;23492:25;;23531:20;23549:1;23531:20;:::i;:::-;23526:25;;23719:1;23651:66;23647:74;23644:1;23641:81;23636:1;23629:9;23622:17;23618:105;23615:131;;;23726:18;;:::i;:::-;23615:131;23774:1;23771;23767:9;23756:20;;23434:348;;;;:::o;23788:96::-;23825:7;23854:24;23872:5;23854:24;:::i;:::-;23843:35;;23788:96;;;:::o;23890:90::-;23924:7;23967:5;23960:13;23953:21;23942:32;;23890:90;;;:::o;23986:149::-;24022:7;24062:66;24055:5;24051:78;24040:89;;23986:149;;;:::o;24141:126::-;24178:7;24218:42;24211:5;24207:54;24196:65;;24141:126;;;:::o;24273:77::-;24310:7;24339:5;24328:16;;24273:77;;;:::o;24356:154::-;24440:6;24435:3;24430;24417:30;24502:1;24493:6;24488:3;24484:16;24477:27;24356:154;;;:::o;24516:307::-;24584:1;24594:113;24608:6;24605:1;24602:13;24594:113;;;24693:1;24688:3;24684:11;24678:18;24674:1;24669:3;24665:11;24658:39;24630:2;24627:1;24623:10;24618:15;;24594:113;;;24725:6;24722:1;24719:13;24716:101;;;24805:1;24796:6;24791:3;24787:16;24780:27;24716:101;24565:258;24516:307;;;:::o;24829:320::-;24873:6;24910:1;24904:4;24900:12;24890:22;;24957:1;24951:4;24947:12;24978:18;24968:81;;25034:4;25026:6;25022:17;25012:27;;24968:81;25096:2;25088:6;25085:14;25065:18;25062:38;25059:84;;;25115:18;;:::i;:::-;25059:84;24880:269;24829:320;;;:::o;25155:281::-;25238:27;25260:4;25238:27;:::i;:::-;25230:6;25226:40;25368:6;25356:10;25353:22;25332:18;25320:10;25317:34;25314:62;25311:88;;;25379:18;;:::i;:::-;25311:88;25419:10;25415:2;25408:22;25198:238;25155:281;;:::o;25442:233::-;25481:3;25504:24;25522:5;25504:24;:::i;:::-;25495:33;;25550:66;25543:5;25540:77;25537:103;;;25620:18;;:::i;:::-;25537:103;25667:1;25660:5;25656:13;25649:20;;25442:233;;;:::o;25681:180::-;25729:77;25726:1;25719:88;25826:4;25823:1;25816:15;25850:4;25847:1;25840:15;25867:180;25915:77;25912:1;25905:88;26012:4;26009:1;26002:15;26036:4;26033:1;26026:15;26053:180;26101:77;26098:1;26091:88;26198:4;26195:1;26188:15;26222:4;26219:1;26212:15;26239:180;26287:77;26284:1;26277:88;26384:4;26381:1;26374:15;26408:4;26405:1;26398:15;26425:180;26473:77;26470:1;26463:88;26570:4;26567:1;26560:15;26594:4;26591:1;26584:15;26611:117;26720:1;26717;26710:12;26734:117;26843:1;26840;26833:12;26857:117;26966:1;26963;26956:12;26980:117;27089:1;27086;27079:12;27103:102;27144:6;27195:2;27191:7;27186:2;27179:5;27175:14;27171:28;27161:38;;27103:102;;;:::o;27211:225::-;27351:34;27347:1;27339:6;27335:14;27328:58;27420:8;27415:2;27407:6;27403:15;27396:33;27211:225;:::o;27442:160::-;27582:12;27578:1;27570:6;27566:14;27559:36;27442:160;:::o;27608:155::-;27748:7;27744:1;27736:6;27732:14;27725:31;27608:155;:::o;27769:182::-;27909:34;27905:1;27897:6;27893:14;27886:58;27769:182;:::o;27957:168::-;28097:20;28093:1;28085:6;28081:14;28074:44;27957:168;:::o;28131:169::-;28271:21;28267:1;28259:6;28255:14;28248:45;28131:169;:::o;28306:223::-;28446:34;28442:1;28434:6;28430:14;28423:58;28515:6;28510:2;28502:6;28498:15;28491:31;28306:223;:::o;28535:171::-;28675:23;28671:1;28663:6;28659:14;28652:47;28535:171;:::o;28712:122::-;28785:24;28803:5;28785:24;:::i;:::-;28778:5;28775:35;28765:63;;28824:1;28821;28814:12;28765:63;28712:122;:::o;28840:116::-;28910:21;28925:5;28910:21;:::i;:::-;28903:5;28900:32;28890:60;;28946:1;28943;28936:12;28890:60;28840:116;:::o;28962:120::-;29034:23;29051:5;29034:23;:::i;:::-;29027:5;29024:34;29014:62;;29072:1;29069;29062:12;29014:62;28962:120;:::o;29088:122::-;29161:24;29179:5;29161:24;:::i;:::-;29154:5;29151:35;29141:63;;29200:1;29197;29190:12;29141:63;29088:122;:::o

Swarm Source

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