ETH Price: $2,969.40 (-1.43%)
Gas: 4 Gwei

Token

Bully Bears (BB)
 

Overview

Max Total Supply

2,795 BB

Holders

896

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
2ez4me.eth
Balance
3 BB
0x3a4894f709544e5a3289d55c3b7f988839362712
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:
BullyBears

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The 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 0;
    }

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

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

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

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

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

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

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

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

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

// File: contracts/BullyBears.sol


pragma solidity ^0.8.11;



contract BullyBears is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;
  uint256 public constant mintPrice = 0.004 ether;
  uint256 public constant MAX_SUPPLY = 6666;
  uint256 public constant MAX_FREE_SUPPLY = 2500;
  uint256 public constant MAX_FREE_WALLET = 3;
  uint256 public constant MAX_PER_WALLET = 25;
  uint256 public constant MAX_PER_TX = 10;

  constructor(string memory baseURI) ERC721A("Bully Bears", "BB") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function toggleSale() public onlyAuthorized {
    isActive = !isActive;
  }


  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

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

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(_count <= MAX_PER_TX,"Exceeds maximum allowed tokens");
    require(balanceOf(msg.sender) + _count <= MAX_PER_WALLET, "Exceeds maximum allowed tokens per wallet");

    if(mintIndex > MAX_FREE_SUPPLY) {
      require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent.");
    }

    if(mintIndex < MAX_FREE_SUPPLY) {
      require(balanceOf(msg.sender) + _count <= MAX_FREE_WALLET, "Exceeds Free maximum allowed tokens per wallet");
    }

    _safeMint(msg.sender, _count);

  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620032c1380380620032c18339818101604052810190620000529190620004ee565b6040518060400160405280600b81526020017f42756c6c792042656172730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f42420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d6929190620002a1565b508060039080519060200190620000ef929190620002a1565b50620001006200014060201b60201c565b6000819055505050620001286200011c6200014560201b60201c565b6200014d60201b60201c565b62000139816200021360201b60201c565b50620005a4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200023a6200027760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200025b57600080fd5b806009908051906020019062000273929190620002a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002af906200056e565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ba826200036f565b810181811067ffffffffffffffff82111715620003dc57620003db62000380565b5b80604052505050565b6000620003f162000351565b9050620003ff8282620003af565b919050565b600067ffffffffffffffff82111562000422576200042162000380565b5b6200042d826200036f565b9050602081019050919050565b60005b838110156200045a5780820151818401526020810190506200043d565b838111156200046a576000848401525b50505050565b600062000487620004818462000404565b620003e5565b905082815260208101848484011115620004a657620004a56200036a565b5b620004b38482856200043a565b509392505050565b600082601f830112620004d357620004d262000365565b5b8151620004e584826020860162000470565b91505092915050565b6000602082840312156200050757620005066200035b565b5b600082015167ffffffffffffffff81111562000528576200052762000360565b5b6200053684828501620004bb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058757607f821691505b602082108114156200059e576200059d6200053f565b5b50919050565b612d0d80620005b46000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b5578063e985e9c5146105f2578063f2fde38b1461062f578063f43a22dc14610658576101b7565b8063a0712d6814610547578063a22cb46514610563578063b88d4fde1461058c576101b7565b8063715018a6116100c6578063715018a6146104c35780637d8966e4146104da5780638da5cb5b146104f157806395d89b411461051c576101b7565b80636352211e1461041e5780636817c76c1461045b57806370a0823114610486576101b7565b806322f3e2d41161015957806332cb6b0c1161013357806332cb6b0c1461038a5780633ccfd60b146103b557806342842e0e146103cc57806355f804b3146103f5576101b7565b806322f3e2d41461030b57806323b872dd14610336578063302560481461035f576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c5780630f2cdd6c146102b557806318160ddd146102e0576101b7565b806301ffc9a7146101bc57806302ddb65b146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fd5565b610683565b6040516101f0919061201d565b60405180910390f35b34801561020557600080fd5b5061020e610715565b60405161021b9190612051565b60405180910390f35b34801561023057600080fd5b5061023961071b565b6040516102469190612105565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612153565b6107ad565b60405161028391906121c1565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612208565b610829565b005b3480156102c157600080fd5b506102ca61096a565b6040516102d79190612051565b60405180910390f35b3480156102ec57600080fd5b506102f561096f565b6040516103029190612051565b60405180910390f35b34801561031757600080fd5b50610320610986565b60405161032d919061201d565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612248565b610999565b005b34801561036b57600080fd5b50610374610cbe565b6040516103819190612051565b60405180910390f35b34801561039657600080fd5b5061039f610cc3565b6040516103ac9190612051565b60405180910390f35b3480156103c157600080fd5b506103ca610cc9565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612248565b610d5e565b005b34801561040157600080fd5b5061041c600480360381019061041791906123d0565b610d7e565b005b34801561042a57600080fd5b5061044560048036038101906104409190612153565b610dd7565b60405161045291906121c1565b60405180910390f35b34801561046757600080fd5b50610470610de9565b60405161047d9190612051565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612419565b610df4565b6040516104ba9190612051565b60405180910390f35b3480156104cf57600080fd5b506104d8610ead565b005b3480156104e657600080fd5b506104ef610f35565b005b3480156104fd57600080fd5b50610506610fa0565b60405161051391906121c1565b60405180910390f35b34801561052857600080fd5b50610531610fca565b60405161053e9190612105565b60405180910390f35b610561600480360381019061055c9190612153565b61105c565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612472565b6112f9565b005b34801561059857600080fd5b506105b360048036038101906105ae9190612553565b611471565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612153565b6114e4565b6040516105e99190612105565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906125d6565b611583565b604051610626919061201d565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612419565b611617565b005b34801561066457600080fd5b5061066d61170f565b60405161067a9190612051565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106de57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109c481565b60606002805461072a90612645565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612645565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b882611714565b6107ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff16610855611773565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576108818161087c611773565b611583565b6108b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b600061097961177b565b6001546000540303905090565b600a60009054906101000a900460ff1681565b60006109a482611780565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a178461184e565b91509150610a2d8187610a28611773565b611870565b610a7957610a4286610a3d611773565b611583565b610a78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aed86868660016118b4565b8015610af857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc685610ba28888876118ba565b7c0200000000000000000000000000000000000000000000000000000000176118e2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c4e576000600185019050600060046000838152602001908152602001600020541415610c4c576000548114610c4b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb6868686600161190d565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610ce8610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6000479050610d15610fa0565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d5a573d6000803e3d6000fd5b5050565b610d7983838360405180602001604052806000815250611471565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d9d610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b8060099080519060200190610dd3929190611ec6565b5050565b6000610de282611780565b9050919050565b660e35fa931a000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb5611913565b73ffffffffffffffffffffffffffffffffffffffff16610ed3610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906126c3565b60405180910390fd5b610f33600061191b565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f54610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f7457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fd990612645565b80601f016020809104026020016040519081016040528092919081815260200182805461100590612645565b80156110525780601f1061102757610100808354040283529160200191611052565b820191906000526020600020905b81548152906001019060200180831161103557829003601f168201915b5050505050905090565b611a0a61106761096f565b11156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f9061272f565b60405180910390fd5b60006110b261096f565b90506110bc610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113e57600a60009054906101000a900460ff1661113d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111349061279b565b60405180910390fd5b5b611a0a828261114d91906127ea565b111561118e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111859061288c565b60405180910390fd5b600a8211156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906128f8565b60405180910390fd5b6019826111de33610df4565b6111e891906127ea565b1115611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061298a565b60405180910390fd5b6109c48111156112895781660e35fa931a000061124691906129aa565b341015611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612a50565b60405180910390fd5b5b6109c48110156112eb5760038261129f33610df4565b6112a991906127ea565b11156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612ae2565b60405180910390fd5b5b6112f533836119e1565b5050565b611301611773565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611366576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611373611773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611420611773565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611465919061201d565b60405180910390a35050565b61147c848484610999565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114de576114a7848484846119ff565b6114dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114ef82611714565b611525576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061152f611b50565b9050600081511415611550576040518060200160405280600081525061157b565b8061155a84611be2565b60405160200161156b929190612b3e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61161f611913565b73ffffffffffffffffffffffffffffffffffffffff1661163d610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906126c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612bd4565b60405180910390fd5b61170c8161191b565b50565b600a81565b60008161171f61177b565b1115801561172e575060005482105b801561176c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061178f61177b565b11611817576000548110156118165760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611814575b600081141561180a5760046000836001900393508381526020019081526020016000205490506117df565b8092505050611849565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118d1868684611c3c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fb828260405180602001604052806000815250611c45565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a25611773565b8786866040518563ffffffff1660e01b8152600401611a479493929190612c49565b6020604051808303816000875af1925050508015611a8357506040513d601f19601f82011682018060405250810190611a809190612caa565b60015b611afd573d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b50600081511415611af5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b5f90612645565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b90612645565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c2857600183039250600a81066030018353600a81049050611c08565b508181036020830392508083525050919050565b60009392505050565b611c4f8383611ce2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdd57600080549050600083820390505b611c8f60008683806001019450866119ff565b611cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7c578160005414611cda57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611d8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9760008483856118b4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0e83611dff60008660006118ba565b611e0885611eb6565b176118e2565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e3257806000819055505050611eb1600084838561190d565b505050565b60006001821460e11b9050919050565b828054611ed290612645565b90600052602060002090601f016020900481019282611ef45760008555611f3b565b82601f10611f0d57805160ff1916838001178555611f3b565b82800160010185558215611f3b579182015b82811115611f3a578251825591602001919060010190611f1f565b5b509050611f489190611f4c565b5090565b5b80821115611f65576000816000905550600101611f4d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fb281611f7d565b8114611fbd57600080fd5b50565b600081359050611fcf81611fa9565b92915050565b600060208284031215611feb57611fea611f73565b5b6000611ff984828501611fc0565b91505092915050565b60008115159050919050565b61201781612002565b82525050565b6000602082019050612032600083018461200e565b92915050565b6000819050919050565b61204b81612038565b82525050565b60006020820190506120666000830184612042565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120a657808201518184015260208101905061208b565b838111156120b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006120d78261206c565b6120e18185612077565b93506120f1818560208601612088565b6120fa816120bb565b840191505092915050565b6000602082019050818103600083015261211f81846120cc565b905092915050565b61213081612038565b811461213b57600080fd5b50565b60008135905061214d81612127565b92915050565b60006020828403121561216957612168611f73565b5b60006121778482850161213e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121ab82612180565b9050919050565b6121bb816121a0565b82525050565b60006020820190506121d660008301846121b2565b92915050565b6121e5816121a0565b81146121f057600080fd5b50565b600081359050612202816121dc565b92915050565b6000806040838503121561221f5761221e611f73565b5b600061222d858286016121f3565b925050602061223e8582860161213e565b9150509250929050565b60008060006060848603121561226157612260611f73565b5b600061226f868287016121f3565b9350506020612280868287016121f3565b92505060406122918682870161213e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dd826120bb565b810181811067ffffffffffffffff821117156122fc576122fb6122a5565b5b80604052505050565b600061230f611f69565b905061231b82826122d4565b919050565b600067ffffffffffffffff82111561233b5761233a6122a5565b5b612344826120bb565b9050602081019050919050565b82818337600083830152505050565b600061237361236e84612320565b612305565b90508281526020810184848401111561238f5761238e6122a0565b5b61239a848285612351565b509392505050565b600082601f8301126123b7576123b661229b565b5b81356123c7848260208601612360565b91505092915050565b6000602082840312156123e6576123e5611f73565b5b600082013567ffffffffffffffff81111561240457612403611f78565b5b612410848285016123a2565b91505092915050565b60006020828403121561242f5761242e611f73565b5b600061243d848285016121f3565b91505092915050565b61244f81612002565b811461245a57600080fd5b50565b60008135905061246c81612446565b92915050565b6000806040838503121561248957612488611f73565b5b6000612497858286016121f3565b92505060206124a88582860161245d565b9150509250929050565b600067ffffffffffffffff8211156124cd576124cc6122a5565b5b6124d6826120bb565b9050602081019050919050565b60006124f66124f1846124b2565b612305565b905082815260208101848484011115612512576125116122a0565b5b61251d848285612351565b509392505050565b600082601f83011261253a5761253961229b565b5b813561254a8482602086016124e3565b91505092915050565b6000806000806080858703121561256d5761256c611f73565b5b600061257b878288016121f3565b945050602061258c878288016121f3565b935050604061259d8782880161213e565b925050606085013567ffffffffffffffff8111156125be576125bd611f78565b5b6125ca87828801612525565b91505092959194509250565b600080604083850312156125ed576125ec611f73565b5b60006125fb858286016121f3565b925050602061260c858286016121f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265d57607f821691505b6020821081141561267157612670612616565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126ad602083612077565b91506126b882612677565b602082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612719600f83612077565b9150612724826126e3565b602082019050919050565b600060208201905081810360008301526127488161270c565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612785601d83612077565b91506127908261274f565b602082019050919050565b600060208201905081810360008301526127b481612778565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127f582612038565b915061280083612038565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612835576128346127bb565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612876601683612077565b915061288182612840565b602082019050919050565b600060208201905081810360008301526128a581612869565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006128e2601e83612077565b91506128ed826128ac565b602082019050919050565b60006020820190508181036000830152612911816128d5565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000612974602983612077565b915061297f82612918565b604082019050919050565b600060208201905081810360008301526129a381612967565b9050919050565b60006129b582612038565b91506129c083612038565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f9576129f86127bb565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612a3a601d83612077565b9150612a4582612a04565b602082019050919050565b60006020820190508181036000830152612a6981612a2d565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b6000612acc602e83612077565b9150612ad782612a70565b604082019050919050565b60006020820190508181036000830152612afb81612abf565b9050919050565b600081905092915050565b6000612b188261206c565b612b228185612b02565b9350612b32818560208601612088565b80840191505092915050565b6000612b4a8285612b0d565b9150612b568284612b0d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bbe602683612077565b9150612bc982612b62565b604082019050919050565b60006020820190508181036000830152612bed81612bb1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c1b82612bf4565b612c258185612bff565b9350612c35818560208601612088565b612c3e816120bb565b840191505092915050565b6000608082019050612c5e60008301876121b2565b612c6b60208301866121b2565b612c786040830185612042565b8181036060830152612c8a8184612c10565b905095945050505050565b600081519050612ca481611fa9565b92915050565b600060208284031215612cc057612cbf611f73565b5b6000612cce84828501612c95565b9150509291505056fea264697066735822122079150c27fc89d45f63f46aab8382f71022ce5e1550ce365d22eb97db786aeb2564736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b5578063e985e9c5146105f2578063f2fde38b1461062f578063f43a22dc14610658576101b7565b8063a0712d6814610547578063a22cb46514610563578063b88d4fde1461058c576101b7565b8063715018a6116100c6578063715018a6146104c35780637d8966e4146104da5780638da5cb5b146104f157806395d89b411461051c576101b7565b80636352211e1461041e5780636817c76c1461045b57806370a0823114610486576101b7565b806322f3e2d41161015957806332cb6b0c1161013357806332cb6b0c1461038a5780633ccfd60b146103b557806342842e0e146103cc57806355f804b3146103f5576101b7565b806322f3e2d41461030b57806323b872dd14610336578063302560481461035f576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c5780630f2cdd6c146102b557806318160ddd146102e0576101b7565b806301ffc9a7146101bc57806302ddb65b146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fd5565b610683565b6040516101f0919061201d565b60405180910390f35b34801561020557600080fd5b5061020e610715565b60405161021b9190612051565b60405180910390f35b34801561023057600080fd5b5061023961071b565b6040516102469190612105565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612153565b6107ad565b60405161028391906121c1565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612208565b610829565b005b3480156102c157600080fd5b506102ca61096a565b6040516102d79190612051565b60405180910390f35b3480156102ec57600080fd5b506102f561096f565b6040516103029190612051565b60405180910390f35b34801561031757600080fd5b50610320610986565b60405161032d919061201d565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612248565b610999565b005b34801561036b57600080fd5b50610374610cbe565b6040516103819190612051565b60405180910390f35b34801561039657600080fd5b5061039f610cc3565b6040516103ac9190612051565b60405180910390f35b3480156103c157600080fd5b506103ca610cc9565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612248565b610d5e565b005b34801561040157600080fd5b5061041c600480360381019061041791906123d0565b610d7e565b005b34801561042a57600080fd5b5061044560048036038101906104409190612153565b610dd7565b60405161045291906121c1565b60405180910390f35b34801561046757600080fd5b50610470610de9565b60405161047d9190612051565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612419565b610df4565b6040516104ba9190612051565b60405180910390f35b3480156104cf57600080fd5b506104d8610ead565b005b3480156104e657600080fd5b506104ef610f35565b005b3480156104fd57600080fd5b50610506610fa0565b60405161051391906121c1565b60405180910390f35b34801561052857600080fd5b50610531610fca565b60405161053e9190612105565b60405180910390f35b610561600480360381019061055c9190612153565b61105c565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612472565b6112f9565b005b34801561059857600080fd5b506105b360048036038101906105ae9190612553565b611471565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612153565b6114e4565b6040516105e99190612105565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906125d6565b611583565b604051610626919061201d565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612419565b611617565b005b34801561066457600080fd5b5061066d61170f565b60405161067a9190612051565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106de57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109c481565b60606002805461072a90612645565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612645565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b882611714565b6107ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff16610855611773565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576108818161087c611773565b611583565b6108b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b600061097961177b565b6001546000540303905090565b600a60009054906101000a900460ff1681565b60006109a482611780565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a178461184e565b91509150610a2d8187610a28611773565b611870565b610a7957610a4286610a3d611773565b611583565b610a78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aed86868660016118b4565b8015610af857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc685610ba28888876118ba565b7c0200000000000000000000000000000000000000000000000000000000176118e2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c4e576000600185019050600060046000838152602001908152602001600020541415610c4c576000548114610c4b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb6868686600161190d565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610ce8610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6000479050610d15610fa0565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d5a573d6000803e3d6000fd5b5050565b610d7983838360405180602001604052806000815250611471565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d9d610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b8060099080519060200190610dd3929190611ec6565b5050565b6000610de282611780565b9050919050565b660e35fa931a000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb5611913565b73ffffffffffffffffffffffffffffffffffffffff16610ed3610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906126c3565b60405180910390fd5b610f33600061191b565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f54610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f7457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fd990612645565b80601f016020809104026020016040519081016040528092919081815260200182805461100590612645565b80156110525780601f1061102757610100808354040283529160200191611052565b820191906000526020600020905b81548152906001019060200180831161103557829003601f168201915b5050505050905090565b611a0a61106761096f565b11156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f9061272f565b60405180910390fd5b60006110b261096f565b90506110bc610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113e57600a60009054906101000a900460ff1661113d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111349061279b565b60405180910390fd5b5b611a0a828261114d91906127ea565b111561118e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111859061288c565b60405180910390fd5b600a8211156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906128f8565b60405180910390fd5b6019826111de33610df4565b6111e891906127ea565b1115611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061298a565b60405180910390fd5b6109c48111156112895781660e35fa931a000061124691906129aa565b341015611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612a50565b60405180910390fd5b5b6109c48110156112eb5760038261129f33610df4565b6112a991906127ea565b11156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612ae2565b60405180910390fd5b5b6112f533836119e1565b5050565b611301611773565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611366576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611373611773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611420611773565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611465919061201d565b60405180910390a35050565b61147c848484610999565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114de576114a7848484846119ff565b6114dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114ef82611714565b611525576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061152f611b50565b9050600081511415611550576040518060200160405280600081525061157b565b8061155a84611be2565b60405160200161156b929190612b3e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61161f611913565b73ffffffffffffffffffffffffffffffffffffffff1661163d610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906126c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612bd4565b60405180910390fd5b61170c8161191b565b50565b600a81565b60008161171f61177b565b1115801561172e575060005482105b801561176c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061178f61177b565b11611817576000548110156118165760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611814575b600081141561180a5760046000836001900393508381526020019081526020016000205490506117df565b8092505050611849565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118d1868684611c3c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fb828260405180602001604052806000815250611c45565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a25611773565b8786866040518563ffffffff1660e01b8152600401611a479493929190612c49565b6020604051808303816000875af1925050508015611a8357506040513d601f19601f82011682018060405250810190611a809190612caa565b60015b611afd573d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b50600081511415611af5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b5f90612645565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b90612645565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c2857600183039250600a81066030018353600a81049050611c08565b508181036020830392508083525050919050565b60009392505050565b611c4f8383611ce2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdd57600080549050600083820390505b611c8f60008683806001019450866119ff565b611cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7c578160005414611cda57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611d8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9760008483856118b4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0e83611dff60008660006118ba565b611e0885611eb6565b176118e2565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e3257806000819055505050611eb1600084838561190d565b505050565b60006001821460e11b9050919050565b828054611ed290612645565b90600052602060002090601f016020900481019282611ef45760008555611f3b565b82601f10611f0d57805160ff1916838001178555611f3b565b82800160010185558215611f3b579182015b82811115611f3a578251825591602001919060010190611f1f565b5b509050611f489190611f4c565b5090565b5b80821115611f65576000816000905550600101611f4d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fb281611f7d565b8114611fbd57600080fd5b50565b600081359050611fcf81611fa9565b92915050565b600060208284031215611feb57611fea611f73565b5b6000611ff984828501611fc0565b91505092915050565b60008115159050919050565b61201781612002565b82525050565b6000602082019050612032600083018461200e565b92915050565b6000819050919050565b61204b81612038565b82525050565b60006020820190506120666000830184612042565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120a657808201518184015260208101905061208b565b838111156120b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006120d78261206c565b6120e18185612077565b93506120f1818560208601612088565b6120fa816120bb565b840191505092915050565b6000602082019050818103600083015261211f81846120cc565b905092915050565b61213081612038565b811461213b57600080fd5b50565b60008135905061214d81612127565b92915050565b60006020828403121561216957612168611f73565b5b60006121778482850161213e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121ab82612180565b9050919050565b6121bb816121a0565b82525050565b60006020820190506121d660008301846121b2565b92915050565b6121e5816121a0565b81146121f057600080fd5b50565b600081359050612202816121dc565b92915050565b6000806040838503121561221f5761221e611f73565b5b600061222d858286016121f3565b925050602061223e8582860161213e565b9150509250929050565b60008060006060848603121561226157612260611f73565b5b600061226f868287016121f3565b9350506020612280868287016121f3565b92505060406122918682870161213e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dd826120bb565b810181811067ffffffffffffffff821117156122fc576122fb6122a5565b5b80604052505050565b600061230f611f69565b905061231b82826122d4565b919050565b600067ffffffffffffffff82111561233b5761233a6122a5565b5b612344826120bb565b9050602081019050919050565b82818337600083830152505050565b600061237361236e84612320565b612305565b90508281526020810184848401111561238f5761238e6122a0565b5b61239a848285612351565b509392505050565b600082601f8301126123b7576123b661229b565b5b81356123c7848260208601612360565b91505092915050565b6000602082840312156123e6576123e5611f73565b5b600082013567ffffffffffffffff81111561240457612403611f78565b5b612410848285016123a2565b91505092915050565b60006020828403121561242f5761242e611f73565b5b600061243d848285016121f3565b91505092915050565b61244f81612002565b811461245a57600080fd5b50565b60008135905061246c81612446565b92915050565b6000806040838503121561248957612488611f73565b5b6000612497858286016121f3565b92505060206124a88582860161245d565b9150509250929050565b600067ffffffffffffffff8211156124cd576124cc6122a5565b5b6124d6826120bb565b9050602081019050919050565b60006124f66124f1846124b2565b612305565b905082815260208101848484011115612512576125116122a0565b5b61251d848285612351565b509392505050565b600082601f83011261253a5761253961229b565b5b813561254a8482602086016124e3565b91505092915050565b6000806000806080858703121561256d5761256c611f73565b5b600061257b878288016121f3565b945050602061258c878288016121f3565b935050604061259d8782880161213e565b925050606085013567ffffffffffffffff8111156125be576125bd611f78565b5b6125ca87828801612525565b91505092959194509250565b600080604083850312156125ed576125ec611f73565b5b60006125fb858286016121f3565b925050602061260c858286016121f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265d57607f821691505b6020821081141561267157612670612616565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126ad602083612077565b91506126b882612677565b602082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612719600f83612077565b9150612724826126e3565b602082019050919050565b600060208201905081810360008301526127488161270c565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612785601d83612077565b91506127908261274f565b602082019050919050565b600060208201905081810360008301526127b481612778565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127f582612038565b915061280083612038565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612835576128346127bb565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612876601683612077565b915061288182612840565b602082019050919050565b600060208201905081810360008301526128a581612869565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006128e2601e83612077565b91506128ed826128ac565b602082019050919050565b60006020820190508181036000830152612911816128d5565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000612974602983612077565b915061297f82612918565b604082019050919050565b600060208201905081810360008301526129a381612967565b9050919050565b60006129b582612038565b91506129c083612038565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f9576129f86127bb565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612a3a601d83612077565b9150612a4582612a04565b602082019050919050565b60006020820190508181036000830152612a6981612a2d565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b6000612acc602e83612077565b9150612ad782612a70565b604082019050919050565b60006020820190508181036000830152612afb81612abf565b9050919050565b600081905092915050565b6000612b188261206c565b612b228185612b02565b9350612b32818560208601612088565b80840191505092915050565b6000612b4a8285612b0d565b9150612b568284612b0d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bbe602683612077565b9150612bc982612b62565b604082019050919050565b60006020820190508181036000830152612bed81612bb1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c1b82612bf4565b612c258185612bff565b9350612c35818560208601612088565b612c3e816120bb565b840191505092915050565b6000608082019050612c5e60008301876121b2565b612c6b60208301866121b2565b612c786040830185612042565b8181036060830152612c8a8184612c10565b905095945050505050565b600081519050612ca481611fa9565b92915050565b600060208284031215612cc057612cbf611f73565b5b6000612cce84828501612c95565b9150509291505056fea264697066735822122079150c27fc89d45f63f46aab8382f71022ce5e1550ce365d22eb97db786aeb2564736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48218:1927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48423:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48522:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48292:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48474:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48377:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50008:134;;;;;;;;;;;;;:::i;:::-;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48988:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48325:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;48903:77;;;;;;;;;;;;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49209:793;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48570:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;48423:46::-;48465:4;48423:46;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;48522:43::-;48563:2;48522:43;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;48292:28::-;;;;;;;;;;;;;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;48474:43::-;48516:1;48474:43;:::o;48377:41::-;48414:4;48377:41;:::o;50008:134::-;48872:10;48861:21;;:7;:5;:7::i;:::-;:21;;;48853:30;;;;;;50059:12:::1;50074:21;50059:36;;50110:7;:5;:7::i;:::-;50102:25;;:34;50128:7;50102:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50052:90;50008:134::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;48988:101::-;48872:10;48861:21;;:7;:5;:7::i;:::-;:21;;;48853:30;;;;;;49076:7:::1;49060:13;:23;;;;;;;;;;;;:::i;:::-;;48988:101:::0;:::o;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;48325:47::-;48361:11;48325:47;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;48903:77::-;48872:10;48861:21;;:7;:5;:7::i;:::-;:21;;;48853:30;;;;;;48966:8:::1;;;;;;;;;;;48965:9;48954:8;;:20;;;;;;;;;;;;;;;;;;48903:77::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;49209:793::-;48414:4;48753:13;:11;:13::i;:::-;:27;;48745:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49272:17:::1;49292:13;:11;:13::i;:::-;49272:33;;49332:7;:5;:7::i;:::-;49318:21;;:10;:21;;;49314:94;;49358:8;;;;;;;;;;;49350:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49314:94;48414:4;49436:6;49424:9;:18;;;;:::i;:::-;:32;;49416:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48607:2;49498:6;:20;;49490:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48563:2;49591:6;49567:21;49577:10;49567:9;:21::i;:::-;:30;;;;:::i;:::-;:48;;49559:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;48465:4;49673:9;:27;49670:122;;;49744:6;48361:11;49732:18;;;;:::i;:::-;49719:9;:31;;49711:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49670:122;48465:4;49803:9;:27;49800:157;;;48516:1;49873:6;49849:21;49859:10;49849:9;:21::i;:::-;:30;;;;:::i;:::-;:49;;49841:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;49800:157;49965:29;49975:10;49987:6;49965:9;:29::i;:::-;49265:737;49209:793:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;48570:39::-;48607:2;48570:39;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;;21235:113;21252:1;21242:6;:11;21235:113;;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;49095:108::-;49155:13;49184;49177:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49095:108;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:165::-;13758:17;13754:1;13746:6;13742:14;13735:41;13618:165;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:419::-;14327:4;14365:2;14354:9;14350:18;14342:26;;14414:9;14408:4;14404:20;14400:1;14389:9;14385:17;14378:47;14442:131;14568:4;14442:131;:::i;:::-;14434:139;;14161:419;;;:::o;14586:179::-;14726:31;14722:1;14714:6;14710:14;14703:55;14586:179;:::o;14771:366::-;14913:3;14934:67;14998:2;14993:3;14934:67;:::i;:::-;14927:74;;15010:93;15099:3;15010:93;:::i;:::-;15128:2;15123:3;15119:12;15112:19;;14771:366;;;:::o;15143:419::-;15309:4;15347:2;15336:9;15332:18;15324:26;;15396:9;15390:4;15386:20;15382:1;15371:9;15367:17;15360:47;15424:131;15550:4;15424:131;:::i;:::-;15416:139;;15143:419;;;:::o;15568:180::-;15616:77;15613:1;15606:88;15713:4;15710:1;15703:15;15737:4;15734:1;15727:15;15754:305;15794:3;15813:20;15831:1;15813:20;:::i;:::-;15808:25;;15847:20;15865:1;15847:20;:::i;:::-;15842:25;;16001:1;15933:66;15929:74;15926:1;15923:81;15920:107;;;16007:18;;:::i;:::-;15920:107;16051:1;16048;16044:9;16037:16;;15754:305;;;;:::o;16065:172::-;16205:24;16201:1;16193:6;16189:14;16182:48;16065:172;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:180::-;17180:32;17176:1;17168:6;17164:14;17157:56;17040:180;:::o;17226:366::-;17368:3;17389:67;17453:2;17448:3;17389:67;:::i;:::-;17382:74;;17465:93;17554:3;17465:93;:::i;:::-;17583:2;17578:3;17574:12;17567:19;;17226:366;;;:::o;17598:419::-;17764:4;17802:2;17791:9;17787:18;17779:26;;17851:9;17845:4;17841:20;17837:1;17826:9;17822:17;17815:47;17879:131;18005:4;17879:131;:::i;:::-;17871:139;;17598:419;;;:::o;18023:228::-;18163:34;18159:1;18151:6;18147:14;18140:58;18232:11;18227:2;18219:6;18215:15;18208:36;18023:228;:::o;18257:366::-;18399:3;18420:67;18484:2;18479:3;18420:67;:::i;:::-;18413:74;;18496:93;18585:3;18496:93;:::i;:::-;18614:2;18609:3;18605:12;18598:19;;18257:366;;;:::o;18629:419::-;18795:4;18833:2;18822:9;18818:18;18810:26;;18882:9;18876:4;18872:20;18868:1;18857:9;18853:17;18846:47;18910:131;19036:4;18910:131;:::i;:::-;18902:139;;18629:419;;;:::o;19054:348::-;19094:7;19117:20;19135:1;19117:20;:::i;:::-;19112:25;;19151:20;19169:1;19151:20;:::i;:::-;19146:25;;19339:1;19271:66;19267:74;19264:1;19261:81;19256:1;19249:9;19242:17;19238:105;19235:131;;;19346:18;;:::i;:::-;19235:131;19394:1;19391;19387:9;19376:20;;19054:348;;;;:::o;19408:179::-;19548:31;19544:1;19536:6;19532:14;19525:55;19408:179;:::o;19593:366::-;19735:3;19756:67;19820:2;19815:3;19756:67;:::i;:::-;19749:74;;19832:93;19921:3;19832:93;:::i;:::-;19950:2;19945:3;19941:12;19934:19;;19593:366;;;:::o;19965:419::-;20131:4;20169:2;20158:9;20154:18;20146:26;;20218:9;20212:4;20208:20;20204:1;20193:9;20189:17;20182:47;20246:131;20372:4;20246:131;:::i;:::-;20238:139;;19965:419;;;:::o;20390:233::-;20530:34;20526:1;20518:6;20514:14;20507:58;20599:16;20594:2;20586:6;20582:15;20575:41;20390:233;:::o;20629:366::-;20771:3;20792:67;20856:2;20851:3;20792:67;:::i;:::-;20785:74;;20868:93;20957:3;20868:93;:::i;:::-;20986:2;20981:3;20977:12;20970:19;;20629:366;;;:::o;21001:419::-;21167:4;21205:2;21194:9;21190:18;21182:26;;21254:9;21248:4;21244:20;21240:1;21229:9;21225:17;21218:47;21282:131;21408:4;21282:131;:::i;:::-;21274:139;;21001:419;;;:::o;21426:148::-;21528:11;21565:3;21550:18;;21426:148;;;;:::o;21580:377::-;21686:3;21714:39;21747:5;21714:39;:::i;:::-;21769:89;21851:6;21846:3;21769:89;:::i;:::-;21762:96;;21867:52;21912:6;21907:3;21900:4;21893:5;21889:16;21867:52;:::i;:::-;21944:6;21939:3;21935:16;21928:23;;21690:267;21580:377;;;;:::o;21963:435::-;22143:3;22165:95;22256:3;22247:6;22165:95;:::i;:::-;22158:102;;22277:95;22368:3;22359:6;22277:95;:::i;:::-;22270:102;;22389:3;22382:10;;21963:435;;;;;:::o;22404:225::-;22544:34;22540:1;22532:6;22528:14;22521:58;22613:8;22608:2;22600:6;22596:15;22589:33;22404:225;:::o;22635:366::-;22777:3;22798:67;22862:2;22857:3;22798:67;:::i;:::-;22791:74;;22874:93;22963:3;22874:93;:::i;:::-;22992:2;22987:3;22983:12;22976:19;;22635:366;;;:::o;23007:419::-;23173:4;23211:2;23200:9;23196:18;23188:26;;23260:9;23254:4;23250:20;23246:1;23235:9;23231:17;23224:47;23288:131;23414:4;23288:131;:::i;:::-;23280:139;;23007:419;;;:::o;23432:98::-;23483:6;23517:5;23511:12;23501:22;;23432:98;;;:::o;23536:168::-;23619:11;23653:6;23648:3;23641:19;23693:4;23688:3;23684:14;23669:29;;23536:168;;;;:::o;23710:360::-;23796:3;23824:38;23856:5;23824:38;:::i;:::-;23878:70;23941:6;23936:3;23878:70;:::i;:::-;23871:77;;23957:52;24002:6;23997:3;23990:4;23983:5;23979:16;23957:52;:::i;:::-;24034:29;24056:6;24034:29;:::i;:::-;24029:3;24025:39;24018:46;;23800:270;23710:360;;;;:::o;24076:640::-;24271:4;24309:3;24298:9;24294:19;24286:27;;24323:71;24391:1;24380:9;24376:17;24367:6;24323:71;:::i;:::-;24404:72;24472:2;24461:9;24457:18;24448:6;24404:72;:::i;:::-;24486;24554:2;24543:9;24539:18;24530:6;24486:72;:::i;:::-;24605:9;24599:4;24595:20;24590:2;24579:9;24575:18;24568:48;24633:76;24704:4;24695:6;24633:76;:::i;:::-;24625:84;;24076:640;;;;;;;:::o;24722:141::-;24778:5;24809:6;24803:13;24794:22;;24825:32;24851:5;24825:32;:::i;:::-;24722:141;;;;:::o;24869:349::-;24938:6;24987:2;24975:9;24966:7;24962:23;24958:32;24955:119;;;24993:79;;:::i;:::-;24955:119;25113:1;25138:63;25193:7;25184:6;25173:9;25169:22;25138:63;:::i;:::-;25128:73;;25084:127;24869:349;;;;:::o

Swarm Source

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