ETH Price: $3,088.19 (+1.82%)
Gas: 2 Gwei

Token

BoredSkullYachtClub (BSYC)
 

Overview

Max Total Supply

6,666 BSYC

Holders

1,495

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BSYC
0x8e0c3e2bc5003a710402428d18640ee31f9a5a88
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:
BoredSkullYachtClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/BoredSkullYachtClub.sol


pragma solidity ^0.8.4;




contract BoredSkullYachtClub is ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';

  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmountPerTx = 10;
  uint8   public maxFreePerWallet = 1;
  mapping(address => uint256) public _mintedFreeAmount;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
    _safeMint(msg.sender, 66);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  modifier freeMintCountCompliance(uint256 _mintAmount) {
    require(_mintAmount == 1, 'Free mint amount must be equal to 1');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(_mintedFreeAmount[msg.sender] < maxFreePerWallet, 'Max free supply exceeded!');
    _;
  }

  function freeMint(uint256 _mintAmount) public payable freeMintCountCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    _mintedFreeAmount[msg.sender] = maxFreePerWallet;
    _safeMint(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

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

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620006c8565b5066071afd498d0000600b55611a0a600c55600a600d556001600e60006101000a81548160ff021916908360ff1602179055506001601060006101000a81548160ff0219169083151502179055503480156200008657600080fd5b5060405162003beb38038062003beb8339818101604052810190620000ac91906200083f565b81818160029080519060200190620000c6929190620006c8565b508060039080519060200190620000df929190620006c8565b50620000f06200013b60201b60201c565b6000819055505050620001186200010c6200014060201b60201c565b6200014860201b60201c565b6001600981905550620001333360426200020e60201b60201c565b505062000b9f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002308282604051806020016040528060008152506200023460201b60201c565b5050565b620002468383620002e560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002e057600080549050600083820390505b6200028f6000868380600101945086620004ce60201b60201c565b620002c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000274578160005414620002dd57600080fd5b50505b505050565b600080549050600082141562000327576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033c60008483856200064060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003cb83620003ad60008660006200064660201b60201c565b620003be856200067660201b60201c565b176200068660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200046e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000431565b506000821415620004ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004c96000848385620006b160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004fc620006b760201b60201c565b8786866040518563ffffffff1660e01b815260040162000520949392919062000927565b602060405180830381600087803b1580156200053b57600080fd5b505af19250505080156200056f57506040513d601f19601f820116820180604052508101906200056c91906200080d565b60015b620005ed573d8060008114620005a2576040519150601f19603f3d011682016040523d82523d6000602084013e620005a7565b606091505b50600081511415620005e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000665868684620006bf60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006d69062000a96565b90600052602060002090601f016020900481019282620006fa576000855562000746565b82601f106200071557805160ff191683800117855562000746565b8280016001018555821562000746579182015b828111156200074557825182559160200191906001019062000728565b5b50905062000755919062000759565b5090565b5b80821115620007745760008160009055506001016200075a565b5090565b60006200078f6200078984620009a4565b6200097b565b905082815260208101848484011115620007ae57620007ad62000b65565b5b620007bb84828562000a60565b509392505050565b600081519050620007d48162000b85565b92915050565b600082601f830112620007f257620007f162000b60565b5b81516200080484826020860162000778565b91505092915050565b60006020828403121562000826576200082562000b6f565b5b60006200083684828501620007c3565b91505092915050565b6000806040838503121562000859576200085862000b6f565b5b600083015167ffffffffffffffff8111156200087a576200087962000b6a565b5b6200088885828601620007da565b925050602083015167ffffffffffffffff811115620008ac57620008ab62000b6a565b5b620008ba85828601620007da565b9150509250929050565b620008cf81620009f6565b82525050565b6000620008e282620009da565b620008ee8185620009e5565b93506200090081856020860162000a60565b6200090b8162000b74565b840191505092915050565b620009218162000a56565b82525050565b60006080820190506200093e6000830187620008c4565b6200094d6020830186620008c4565b6200095c604083018562000916565b8181036060830152620009708184620008d5565b905095945050505050565b6000620009876200099a565b905062000995828262000acc565b919050565b6000604051905090565b600067ffffffffffffffff821115620009c257620009c162000b31565b5b620009cd8262000b74565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a038262000a36565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8057808201518184015260208101905062000a63565b8381111562000a90576000848401525b50505050565b6000600282049050600182168062000aaf57607f821691505b6020821081141562000ac65762000ac562000b02565b5b50919050565b62000ad78262000b74565b810181811067ffffffffffffffff8211171562000af95762000af862000b31565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000b908162000a0a565b811462000b9c57600080fd5b50565b61303c8062000baf6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c51461066a578063efbd73f4146106a7578063f2fde38b146106d0578063f4db2acb146106f9576101e3565b8063a7027357146105bb578063b88d4fde146105e6578063c87b56dd14610602578063d5abeb011461063f576101e3565b806394354fd0116100d157806394354fd01461052057806395d89b411461054b578063a0712d6814610576578063a22cb46514610592576101e3565b8063715018a6146104995780637c928fe9146104b05780637ec4a659146104cc5780638da5cb5b146104f5576101e3565b80633ccfd60b1161017a57806362b99ad41161014957806362b99ad4146103cb5780636352211e146103f65780636f8b44b01461043357806370a082311461045c576101e3565b80633ccfd60b1461034457806342842e0e1461035b57806344a0d68a146103775780635c975abb146103a0576101e3565b806313faede6116101b657806313faede6146102a957806316c38b3c146102d457806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247b565b610736565b60405161021c919061288b565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906128a6565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061251e565b61085a565b6040516102849190612824565b60405180910390f35b6102a760048036038101906102a2919061240e565b6108d9565b005b3480156102b557600080fd5b506102be610a1d565b6040516102cb9190612a08565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061244e565b610a23565b005b34801561030957600080fd5b50610312610a48565b60405161031f9190612a08565b60405180910390f35b610342600480360381019061033d91906122f8565b610a5f565b005b34801561035057600080fd5b50610359610d84565b005b610375600480360381019061037091906122f8565b610e62565b005b34801561038357600080fd5b5061039e6004803603810190610399919061251e565b610e82565b005b3480156103ac57600080fd5b506103b5610e94565b6040516103c2919061288b565b60405180910390f35b3480156103d757600080fd5b506103e0610ea7565b6040516103ed91906128a6565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061251e565b610f35565b60405161042a9190612824565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061251e565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061228b565b610f59565b6040516104909190612a08565b60405180910390f35b3480156104a557600080fd5b506104ae611012565b005b6104ca60048036038101906104c5919061251e565b611026565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906124d5565b611208565b005b34801561050157600080fd5b5061050a61122a565b6040516105179190612824565b60405180910390f35b34801561052c57600080fd5b50610535611254565b6040516105429190612a08565b60405180910390f35b34801561055757600080fd5b5061056061125a565b60405161056d91906128a6565b60405180910390f35b610590600480360381019061058b919061251e565b6112ec565b005b34801561059e57600080fd5b506105b960048036038101906105b491906123ce565b611445565b005b3480156105c757600080fd5b506105d0611550565b6040516105dd9190612a23565b60405180910390f35b61060060048036038101906105fb919061234b565b611563565b005b34801561060e57600080fd5b506106296004803603810190610624919061251e565b6115d6565b60405161063691906128a6565b60405180910390f35b34801561064b57600080fd5b5061065461167d565b6040516106619190612a08565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906122b8565b611683565b60405161069e919061288b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061254b565b611717565b005b3480156106dc57600080fd5b506106f760048036038101906106f2919061228b565b6117d7565b005b34801561070557600080fd5b50610720600480360381019061071b919061228b565b61185b565b60405161072d9190612a08565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d790612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c86565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611873565b61089b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e482610f35565b90508073ffffffffffffffffffffffffffffffffffffffff166109056118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610968576109318161092c6118d2565b611683565b610967576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610a2b6118da565b80601060006101000a81548160ff02191690831515021790555050565b6000610a52611958565b6001546000540303905090565b6000610a6a8261195d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610add84611a2b565b91509150610af38187610aee6118d2565b611a52565b610b3f57610b0886610b036118d2565b611683565b610b3e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb38686866001611a96565b8015610bbe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8c85610c68888887611a9c565b7c020000000000000000000000000000000000000000000000000000000017611ac4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d14576000600185019050600060046000838152602001908152602001600020541415610d12576000548114610d11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7c8686866001611aef565b505050505050565b610d8c6118da565b60026009541415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906129c8565b60405180910390fd5b60026009819055506000610de461122a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e079061280f565b60006040518083038185875af1925050503d8060008114610e44576040519150601f19603f3d011682016040523d82523d6000602084013e610e49565b606091505b5050905080610e5757600080fd5b506001600981905550565b610e7d83838360405180602001604052806000815250611563565b505050565b610e8a6118da565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610eb490612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090612c86565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000610f408261195d565b9050919050565b610f4f6118da565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6118da565b6110246000611af5565b565b806001811461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612908565b60405180910390fd5b600c5481611076610a48565b6110809190612b13565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906129a8565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612988565b60405180910390fd5b601060009054906101000a900460ff16156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612948565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112043383611bbb565b5050565b6112106118da565b80600a908051906020019061122692919061209f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461126990612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612c86565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b806000811180156112ff5750600d548111155b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906128e8565b60405180910390fd5b600c548161134a610a48565b6113549190612b13565b1115611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906129a8565b60405180910390fd5b8180600b546113a49190612b69565b3410156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906129e8565b60405180910390fd5b601060009054906101000a900460ff1615611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612948565b60405180910390fd5b6114403384611bbb565b505050565b80600760006114526118d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ff6118d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611544919061288b565b60405180910390a35050565b600e60009054906101000a900460ff1681565b61156e848484610a5f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d05761159984848484611bd9565b6115cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e182611873565b611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612968565b60405180910390fd5b600061162a611d39565b9050600081511161164a5760405180602001604052806000815250611675565b8061165484611dcb565b6040516020016116659291906127eb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561172a5750600d548111155b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906128e8565b60405180910390fd5b600c5481611775610a48565b61177f9190612b13565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906129a8565b60405180910390fd5b6117c86118da565b6117d28284611bbb565b505050565b6117df6118da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906128c8565b60405180910390fd5b61185881611af5565b50565b600f6020528060005260406000206000915090505481565b60008161187e611958565b1115801561188d575060005482105b80156118cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6118e2611e24565b73ffffffffffffffffffffffffffffffffffffffff1661190061122a565b73ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612928565b60405180910390fd5b565b600090565b6000808290508061196c611958565b116119f4576000548110156119f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119f1575b60008114156119e75760046000836001900393508381526020019081526020016000205490506119bc565b8092505050611a26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab3868684611e2c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bd5828260405180602001604052806000815250611e35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bff6118d2565b8786866040518563ffffffff1660e01b8152600401611c21949392919061283f565b602060405180830381600087803b158015611c3b57600080fd5b505af1925050508015611c6c57506040513d601f19601f82011682018060405250810190611c6991906124a8565b60015b611ce6573d8060008114611c9c576040519150601f19603f3d011682016040523d82523d6000602084013e611ca1565b606091505b50600081511415611cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d4890612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7490612c86565b8015611dc15780601f10611d9657610100808354040283529160200191611dc1565b820191906000526020600020905b815481529060010190602001808311611da457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0f57600184039350600a81066030018453600a8104905080611e0a57611e0f565b611de4565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e3f8383611ed2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ecd57600080549050600083820390505b611e7f6000868380600101945086611bd9565b611eb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6c578160005414611eca57600080fd5b50505b505050565b6000805490506000821415611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a9c565b611f918561208f565b17611ac4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b506000821415612074576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061208a6000848385611aef565b505050565b60006001821460e11b9050919050565b8280546120ab90612c86565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657805160ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782518255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612a63565b612a3e565b90508281526020810184848401111561217157612170612d7b565b5b61217c848285612c44565b509392505050565b600061219761219284612a94565b612a3e565b9050828152602081018484840111156121b3576121b2612d7b565b5b6121be848285612c44565b509392505050565b6000813590506121d581612faa565b92915050565b6000813590506121ea81612fc1565b92915050565b6000813590506121ff81612fd8565b92915050565b60008151905061221481612fd8565b92915050565b600082601f83011261222f5761222e612d76565b5b813561223f848260208601612142565b91505092915050565b600082601f83011261225d5761225c612d76565b5b813561226d848260208601612184565b91505092915050565b60008135905061228581612fef565b92915050565b6000602082840312156122a1576122a0612d85565b5b60006122af848285016121c6565b91505092915050565b600080604083850312156122cf576122ce612d85565b5b60006122dd858286016121c6565b92505060206122ee858286016121c6565b9150509250929050565b60008060006060848603121561231157612310612d85565b5b600061231f868287016121c6565b9350506020612330868287016121c6565b925050604061234186828701612276565b9150509250925092565b6000806000806080858703121561236557612364612d85565b5b6000612373878288016121c6565b9450506020612384878288016121c6565b935050604061239587828801612276565b925050606085013567ffffffffffffffff8111156123b6576123b5612d80565b5b6123c28782880161221a565b91505092959194509250565b600080604083850312156123e5576123e4612d85565b5b60006123f3858286016121c6565b9250506020612404858286016121db565b9150509250929050565b6000806040838503121561242557612424612d85565b5b6000612433858286016121c6565b925050602061244485828601612276565b9150509250929050565b60006020828403121561246457612463612d85565b5b6000612472848285016121db565b91505092915050565b60006020828403121561249157612490612d85565b5b600061249f848285016121f0565b91505092915050565b6000602082840312156124be576124bd612d85565b5b60006124cc84828501612205565b91505092915050565b6000602082840312156124eb576124ea612d85565b5b600082013567ffffffffffffffff81111561250957612508612d80565b5b61251584828501612248565b91505092915050565b60006020828403121561253457612533612d85565b5b600061254284828501612276565b91505092915050565b6000806040838503121561256257612561612d85565b5b600061257085828601612276565b9250506020612581858286016121c6565b9150509250929050565b61259481612bc3565b82525050565b6125a381612bd5565b82525050565b60006125b482612ac5565b6125be8185612adb565b93506125ce818560208601612c53565b6125d781612d8a565b840191505092915050565b60006125ed82612ad0565b6125f78185612af7565b9350612607818560208601612c53565b61261081612d8a565b840191505092915050565b600061262682612ad0565b6126308185612b08565b9350612640818560208601612c53565b80840191505092915050565b6000612659602683612af7565b915061266482612d9b565b604082019050919050565b600061267c601483612af7565b915061268782612dea565b602082019050919050565b600061269f602383612af7565b91506126aa82612e13565b604082019050919050565b60006126c2602083612af7565b91506126cd82612e62565b602082019050919050565b60006126e5601783612af7565b91506126f082612e8b565b602082019050919050565b6000612708602f83612af7565b915061271382612eb4565b604082019050919050565b600061272b601983612af7565b915061273682612f03565b602082019050919050565b600061274e600083612aec565b915061275982612f2c565b600082019050919050565b6000612771601483612af7565b915061277c82612f2f565b602082019050919050565b6000612794601f83612af7565b915061279f82612f58565b602082019050919050565b60006127b7601383612af7565b91506127c282612f81565b602082019050919050565b6127d681612c2d565b82525050565b6127e581612c37565b82525050565b60006127f7828561261b565b9150612803828461261b565b91508190509392505050565b600061281a82612741565b9150819050919050565b6000602082019050612839600083018461258b565b92915050565b6000608082019050612854600083018761258b565b612861602083018661258b565b61286e60408301856127cd565b818103606083015261288081846125a9565b905095945050505050565b60006020820190506128a0600083018461259a565b92915050565b600060208201905081810360008301526128c081846125e2565b905092915050565b600060208201905081810360008301526128e18161264c565b9050919050565b600060208201905081810360008301526129018161266f565b9050919050565b6000602082019050818103600083015261292181612692565b9050919050565b60006020820190508181036000830152612941816126b5565b9050919050565b60006020820190508181036000830152612961816126d8565b9050919050565b60006020820190508181036000830152612981816126fb565b9050919050565b600060208201905081810360008301526129a18161271e565b9050919050565b600060208201905081810360008301526129c181612764565b9050919050565b600060208201905081810360008301526129e181612787565b9050919050565b60006020820190508181036000830152612a01816127aa565b9050919050565b6000602082019050612a1d60008301846127cd565b92915050565b6000602082019050612a3860008301846127dc565b92915050565b6000612a48612a59565b9050612a548282612cb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7e57612a7d612d47565b5b612a8782612d8a565b9050602081019050919050565b600067ffffffffffffffff821115612aaf57612aae612d47565b5b612ab882612d8a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b1e82612c2d565b9150612b2983612c2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ce9565b5b828201905092915050565b6000612b7482612c2d565b9150612b7f83612c2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb857612bb7612ce9565b5b828202905092915050565b6000612bce82612c0d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c71578082015181840152602081019050612c56565b83811115612c80576000848401525b50505050565b60006002820490506001821680612c9e57607f821691505b60208210811415612cb257612cb1612d18565b5b50919050565b612cc182612d8a565b810181811067ffffffffffffffff82111715612ce057612cdf612d47565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fb381612bc3565b8114612fbe57600080fd5b50565b612fca81612bd5565b8114612fd557600080fd5b50565b612fe181612be1565b8114612fec57600080fd5b50565b612ff881612c2d565b811461300357600080fd5b5056fea26469706673582212207b53260283824f4251df3edd581d0561c03a61136a17274e2b164525f62b5f4c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013426f726564536b756c6c5961636874436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044253594300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c51461066a578063efbd73f4146106a7578063f2fde38b146106d0578063f4db2acb146106f9576101e3565b8063a7027357146105bb578063b88d4fde146105e6578063c87b56dd14610602578063d5abeb011461063f576101e3565b806394354fd0116100d157806394354fd01461052057806395d89b411461054b578063a0712d6814610576578063a22cb46514610592576101e3565b8063715018a6146104995780637c928fe9146104b05780637ec4a659146104cc5780638da5cb5b146104f5576101e3565b80633ccfd60b1161017a57806362b99ad41161014957806362b99ad4146103cb5780636352211e146103f65780636f8b44b01461043357806370a082311461045c576101e3565b80633ccfd60b1461034457806342842e0e1461035b57806344a0d68a146103775780635c975abb146103a0576101e3565b806313faede6116101b657806313faede6146102a957806316c38b3c146102d457806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247b565b610736565b60405161021c919061288b565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906128a6565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061251e565b61085a565b6040516102849190612824565b60405180910390f35b6102a760048036038101906102a2919061240e565b6108d9565b005b3480156102b557600080fd5b506102be610a1d565b6040516102cb9190612a08565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061244e565b610a23565b005b34801561030957600080fd5b50610312610a48565b60405161031f9190612a08565b60405180910390f35b610342600480360381019061033d91906122f8565b610a5f565b005b34801561035057600080fd5b50610359610d84565b005b610375600480360381019061037091906122f8565b610e62565b005b34801561038357600080fd5b5061039e6004803603810190610399919061251e565b610e82565b005b3480156103ac57600080fd5b506103b5610e94565b6040516103c2919061288b565b60405180910390f35b3480156103d757600080fd5b506103e0610ea7565b6040516103ed91906128a6565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061251e565b610f35565b60405161042a9190612824565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061251e565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061228b565b610f59565b6040516104909190612a08565b60405180910390f35b3480156104a557600080fd5b506104ae611012565b005b6104ca60048036038101906104c5919061251e565b611026565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906124d5565b611208565b005b34801561050157600080fd5b5061050a61122a565b6040516105179190612824565b60405180910390f35b34801561052c57600080fd5b50610535611254565b6040516105429190612a08565b60405180910390f35b34801561055757600080fd5b5061056061125a565b60405161056d91906128a6565b60405180910390f35b610590600480360381019061058b919061251e565b6112ec565b005b34801561059e57600080fd5b506105b960048036038101906105b491906123ce565b611445565b005b3480156105c757600080fd5b506105d0611550565b6040516105dd9190612a23565b60405180910390f35b61060060048036038101906105fb919061234b565b611563565b005b34801561060e57600080fd5b506106296004803603810190610624919061251e565b6115d6565b60405161063691906128a6565b60405180910390f35b34801561064b57600080fd5b5061065461167d565b6040516106619190612a08565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906122b8565b611683565b60405161069e919061288b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061254b565b611717565b005b3480156106dc57600080fd5b506106f760048036038101906106f2919061228b565b6117d7565b005b34801561070557600080fd5b50610720600480360381019061071b919061228b565b61185b565b60405161072d9190612a08565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d790612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c86565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611873565b61089b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e482610f35565b90508073ffffffffffffffffffffffffffffffffffffffff166109056118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610968576109318161092c6118d2565b611683565b610967576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610a2b6118da565b80601060006101000a81548160ff02191690831515021790555050565b6000610a52611958565b6001546000540303905090565b6000610a6a8261195d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610add84611a2b565b91509150610af38187610aee6118d2565b611a52565b610b3f57610b0886610b036118d2565b611683565b610b3e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb38686866001611a96565b8015610bbe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8c85610c68888887611a9c565b7c020000000000000000000000000000000000000000000000000000000017611ac4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d14576000600185019050600060046000838152602001908152602001600020541415610d12576000548114610d11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7c8686866001611aef565b505050505050565b610d8c6118da565b60026009541415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906129c8565b60405180910390fd5b60026009819055506000610de461122a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e079061280f565b60006040518083038185875af1925050503d8060008114610e44576040519150601f19603f3d011682016040523d82523d6000602084013e610e49565b606091505b5050905080610e5757600080fd5b506001600981905550565b610e7d83838360405180602001604052806000815250611563565b505050565b610e8a6118da565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610eb490612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090612c86565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000610f408261195d565b9050919050565b610f4f6118da565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6118da565b6110246000611af5565b565b806001811461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612908565b60405180910390fd5b600c5481611076610a48565b6110809190612b13565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906129a8565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612988565b60405180910390fd5b601060009054906101000a900460ff16156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612948565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112043383611bbb565b5050565b6112106118da565b80600a908051906020019061122692919061209f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461126990612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612c86565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b806000811180156112ff5750600d548111155b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906128e8565b60405180910390fd5b600c548161134a610a48565b6113549190612b13565b1115611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906129a8565b60405180910390fd5b8180600b546113a49190612b69565b3410156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906129e8565b60405180910390fd5b601060009054906101000a900460ff1615611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612948565b60405180910390fd5b6114403384611bbb565b505050565b80600760006114526118d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ff6118d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611544919061288b565b60405180910390a35050565b600e60009054906101000a900460ff1681565b61156e848484610a5f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d05761159984848484611bd9565b6115cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e182611873565b611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612968565b60405180910390fd5b600061162a611d39565b9050600081511161164a5760405180602001604052806000815250611675565b8061165484611dcb565b6040516020016116659291906127eb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561172a5750600d548111155b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906128e8565b60405180910390fd5b600c5481611775610a48565b61177f9190612b13565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906129a8565b60405180910390fd5b6117c86118da565b6117d28284611bbb565b505050565b6117df6118da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906128c8565b60405180910390fd5b61185881611af5565b50565b600f6020528060005260406000206000915090505481565b60008161187e611958565b1115801561188d575060005482105b80156118cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6118e2611e24565b73ffffffffffffffffffffffffffffffffffffffff1661190061122a565b73ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612928565b60405180910390fd5b565b600090565b6000808290508061196c611958565b116119f4576000548110156119f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119f1575b60008114156119e75760046000836001900393508381526020019081526020016000205490506119bc565b8092505050611a26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab3868684611e2c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bd5828260405180602001604052806000815250611e35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bff6118d2565b8786866040518563ffffffff1660e01b8152600401611c21949392919061283f565b602060405180830381600087803b158015611c3b57600080fd5b505af1925050508015611c6c57506040513d601f19601f82011682018060405250810190611c6991906124a8565b60015b611ce6573d8060008114611c9c576040519150601f19603f3d011682016040523d82523d6000602084013e611ca1565b606091505b50600081511415611cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d4890612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7490612c86565b8015611dc15780601f10611d9657610100808354040283529160200191611dc1565b820191906000526020600020905b815481529060010190602001808311611da457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0f57600184039350600a81066030018453600a8104905080611e0a57611e0f565b611de4565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e3f8383611ed2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ecd57600080549050600083820390505b611e7f6000868380600101945086611bd9565b611eb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6c578160005414611eca57600080fd5b50505b505050565b6000805490506000821415611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a9c565b611f918561208f565b17611ac4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b506000821415612074576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061208a6000848385611aef565b505050565b60006001821460e11b9050919050565b8280546120ab90612c86565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657805160ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782518255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612a63565b612a3e565b90508281526020810184848401111561217157612170612d7b565b5b61217c848285612c44565b509392505050565b600061219761219284612a94565b612a3e565b9050828152602081018484840111156121b3576121b2612d7b565b5b6121be848285612c44565b509392505050565b6000813590506121d581612faa565b92915050565b6000813590506121ea81612fc1565b92915050565b6000813590506121ff81612fd8565b92915050565b60008151905061221481612fd8565b92915050565b600082601f83011261222f5761222e612d76565b5b813561223f848260208601612142565b91505092915050565b600082601f83011261225d5761225c612d76565b5b813561226d848260208601612184565b91505092915050565b60008135905061228581612fef565b92915050565b6000602082840312156122a1576122a0612d85565b5b60006122af848285016121c6565b91505092915050565b600080604083850312156122cf576122ce612d85565b5b60006122dd858286016121c6565b92505060206122ee858286016121c6565b9150509250929050565b60008060006060848603121561231157612310612d85565b5b600061231f868287016121c6565b9350506020612330868287016121c6565b925050604061234186828701612276565b9150509250925092565b6000806000806080858703121561236557612364612d85565b5b6000612373878288016121c6565b9450506020612384878288016121c6565b935050604061239587828801612276565b925050606085013567ffffffffffffffff8111156123b6576123b5612d80565b5b6123c28782880161221a565b91505092959194509250565b600080604083850312156123e5576123e4612d85565b5b60006123f3858286016121c6565b9250506020612404858286016121db565b9150509250929050565b6000806040838503121561242557612424612d85565b5b6000612433858286016121c6565b925050602061244485828601612276565b9150509250929050565b60006020828403121561246457612463612d85565b5b6000612472848285016121db565b91505092915050565b60006020828403121561249157612490612d85565b5b600061249f848285016121f0565b91505092915050565b6000602082840312156124be576124bd612d85565b5b60006124cc84828501612205565b91505092915050565b6000602082840312156124eb576124ea612d85565b5b600082013567ffffffffffffffff81111561250957612508612d80565b5b61251584828501612248565b91505092915050565b60006020828403121561253457612533612d85565b5b600061254284828501612276565b91505092915050565b6000806040838503121561256257612561612d85565b5b600061257085828601612276565b9250506020612581858286016121c6565b9150509250929050565b61259481612bc3565b82525050565b6125a381612bd5565b82525050565b60006125b482612ac5565b6125be8185612adb565b93506125ce818560208601612c53565b6125d781612d8a565b840191505092915050565b60006125ed82612ad0565b6125f78185612af7565b9350612607818560208601612c53565b61261081612d8a565b840191505092915050565b600061262682612ad0565b6126308185612b08565b9350612640818560208601612c53565b80840191505092915050565b6000612659602683612af7565b915061266482612d9b565b604082019050919050565b600061267c601483612af7565b915061268782612dea565b602082019050919050565b600061269f602383612af7565b91506126aa82612e13565b604082019050919050565b60006126c2602083612af7565b91506126cd82612e62565b602082019050919050565b60006126e5601783612af7565b91506126f082612e8b565b602082019050919050565b6000612708602f83612af7565b915061271382612eb4565b604082019050919050565b600061272b601983612af7565b915061273682612f03565b602082019050919050565b600061274e600083612aec565b915061275982612f2c565b600082019050919050565b6000612771601483612af7565b915061277c82612f2f565b602082019050919050565b6000612794601f83612af7565b915061279f82612f58565b602082019050919050565b60006127b7601383612af7565b91506127c282612f81565b602082019050919050565b6127d681612c2d565b82525050565b6127e581612c37565b82525050565b60006127f7828561261b565b9150612803828461261b565b91508190509392505050565b600061281a82612741565b9150819050919050565b6000602082019050612839600083018461258b565b92915050565b6000608082019050612854600083018761258b565b612861602083018661258b565b61286e60408301856127cd565b818103606083015261288081846125a9565b905095945050505050565b60006020820190506128a0600083018461259a565b92915050565b600060208201905081810360008301526128c081846125e2565b905092915050565b600060208201905081810360008301526128e18161264c565b9050919050565b600060208201905081810360008301526129018161266f565b9050919050565b6000602082019050818103600083015261292181612692565b9050919050565b60006020820190508181036000830152612941816126b5565b9050919050565b60006020820190508181036000830152612961816126d8565b9050919050565b60006020820190508181036000830152612981816126fb565b9050919050565b600060208201905081810360008301526129a18161271e565b9050919050565b600060208201905081810360008301526129c181612764565b9050919050565b600060208201905081810360008301526129e181612787565b9050919050565b60006020820190508181036000830152612a01816127aa565b9050919050565b6000602082019050612a1d60008301846127cd565b92915050565b6000602082019050612a3860008301846127dc565b92915050565b6000612a48612a59565b9050612a548282612cb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7e57612a7d612d47565b5b612a8782612d8a565b9050602081019050919050565b600067ffffffffffffffff821115612aaf57612aae612d47565b5b612ab882612d8a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b1e82612c2d565b9150612b2983612c2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ce9565b5b828201905092915050565b6000612b7482612c2d565b9150612b7f83612c2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb857612bb7612ce9565b5b828202905092915050565b6000612bce82612c0d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c71578082015181840152602081019050612c56565b83811115612c80576000848401525b50505050565b60006002820490506001821680612c9e57607f821691505b60208210811415612cb257612cb1612d18565b5b50919050565b612cc182612d8a565b810181811067ffffffffffffffff82111715612ce057612cdf612d47565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fb381612bc3565b8114612fbe57600080fd5b50565b612fca81612bd5565b8114612fd557600080fd5b50565b612fe181612be1565b8114612fec57600080fd5b50565b612ff881612c2d565b811461300357600080fd5b5056fea26469706673582212207b53260283824f4251df3edd581d0561c03a61136a17274e2b164525f62b5f4c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013426f726564536b756c6c5961636874436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044253594300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): BoredSkullYachtClub
Arg [1] : _tokenSymbol (string): BSYC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 426f726564536b756c6c5961636874436c756200000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4253594300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57901:2836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31615:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58007:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60291:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21442:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60474:150;;;;;;;;;;;;;:::i;:::-;;38742:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60105:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58223:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57972:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60374:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22626:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;59109:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60185:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58081:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59358:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32740:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58124:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39533:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59737:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58045:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33131:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59576:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58164:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24789:639;24874:4;25213:10;25198:25;;:11;:25;;;;:102;;;;25290:10;25275:25;;:11;:25;;;;25198:102;:179;;;;25367:10;25352:25;;:11;:25;;;;25198:179;25178:199;;24789:639;;;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;32182:218::-;32258:7;32283:16;32291:7;32283;:16::i;:::-;32278:64;;32308:34;;;;;;;;;;;;;;32278:64;32362:15;:24;32378:7;32362:24;;;;;;;;;;;:30;;;;;;;;;;;;32355:37;;32182:218;;;:::o;31615:408::-;31704:13;31720:16;31728:7;31720;:16::i;:::-;31704:32;;31776:5;31753:28;;:19;:17;:19::i;:::-;:28;;;31749:175;;31801:44;31818:5;31825:19;:17;:19::i;:::-;31801:16;:44::i;:::-;31796:128;;31873:35;;;;;;;;;;;;;;31796:128;31749:175;31969:2;31936:15;:24;31952:7;31936:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32007:7;32003:2;31987:28;;31996:5;31987:28;;;;;;;;;;;;31693:330;31615:408;;:::o;58007:33::-;;;;:::o;60291:77::-;4806:13;:11;:13::i;:::-;60356:6:::1;60347;;:15;;;;;;;;;;;;;;;;;;60291:77:::0;:::o;21442:323::-;21503:7;21731:15;:13;:15::i;:::-;21716:12;;21700:13;;:28;:46;21693:53;;21442:323;:::o;35821:2825::-;35963:27;35993;36012:7;35993:18;:27::i;:::-;35963:57;;36078:4;36037:45;;36053:19;36037:45;;;36033:86;;36091:28;;;;;;;;;;;;;;36033:86;36133:27;36162:23;36189:35;36216:7;36189:26;:35::i;:::-;36132:92;;;;36324:68;36349:15;36366:4;36372:19;:17;:19::i;:::-;36324:24;:68::i;:::-;36319:180;;36412:43;36429:4;36435:19;:17;:19::i;:::-;36412:16;:43::i;:::-;36407:92;;36464:35;;;;;;;;;;;;;;36407:92;36319:180;36530:1;36516:16;;:2;:16;;;36512:52;;;36541:23;;;;;;;;;;;;;;36512:52;36577:43;36599:4;36605:2;36609:7;36618:1;36577:21;:43::i;:::-;36713:15;36710:160;;;36853:1;36832:19;36825:30;36710:160;37250:18;:24;37269:4;37250:24;;;;;;;;;;;;;;;;37248:26;;;;;;;;;;;;37319:18;:22;37338:2;37319:22;;;;;;;;;;;;;;;;37317:24;;;;;;;;;;;37641:146;37678:2;37727:45;37742:4;37748:2;37752:19;37727:14;:45::i;:::-;17841:8;37699:73;37641:18;:146::i;:::-;37612:17;:26;37630:7;37612:26;;;;;;;;;;;:175;;;;37958:1;17841:8;37907:19;:47;:52;37903:627;;;37980:19;38012:1;38002:7;:11;37980:33;;38169:1;38135:17;:30;38153:11;38135:30;;;;;;;;;;;;:35;38131:384;;;38273:13;;38258:11;:28;38254:242;;38453:19;38420:17;:30;38438:11;38420:30;;;;;;;;;;;:52;;;;38254:242;38131:384;37961:569;37903:627;38577:7;38573:2;38558:27;;38567:4;38558:27;;;;;;;;;;;;38596:42;38617:4;38623:2;38627:7;38636:1;38596:20;:42::i;:::-;35952:2694;;;35821:2825;;;:::o;60474:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;60532:7:::2;60553;:5;:7::i;:::-;60545:21;;60574;60545:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60531:69;;;60615:2;60607:11;;;::::0;::::2;;60524:100;1801:1:::1;2755:7;:22;;;;60474:150::o:0;38742:193::-;38888:39;38905:4;38911:2;38915:7;38888:39;;;;;;;;;;;;:16;:39::i;:::-;38742:193;;;:::o;60105:74::-;4806:13;:11;:13::i;:::-;60168:5:::1;60161:4;:12;;;;60105:74:::0;:::o;58223:25::-;;;;;;;;;;;;;:::o;57972:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27084:152::-;27156:7;27199:27;27218:7;27199:18;:27::i;:::-;27176:52;;27084:152;;;:::o;60374:94::-;4806:13;:11;:13::i;:::-;60452:10:::1;60440:9;:22;;;;60374:94:::0;:::o;22626:233::-;22698:7;22739:1;22722:19;;:5;:19;;;22718:60;;;22750:28;;;;;;;;;;;;;;22718:60;16785:13;22796:18;:25;22815:5;22796:25;;;;;;;;;;;;;;;;:55;22789:62;;22626:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;59109:243::-;59187:11;58875:1;58860:11;:16;58852:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58962:9;;58947:11;58931:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58923:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59043:16;;;;;;;;;;;59011:48;;:17;:29;59029:10;59011:29;;;;;;;;;;;;;;;;:48;59003:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;59216:6:::1;;;;;;;;;;;59215:7;59207:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59289:16;;;;;;;;;;;59257:48;;:17;:29;59275:10;59257:29;;;;;;;;;;;;;;;:48;;;;59312:34;59322:10;59334:11;59312:9;:34::i;:::-;59109:243:::0;;:::o;60185:100::-;4806:13;:11;:13::i;:::-;60269:10:::1;60257:9;:22;;;;;;;;;;;;:::i;:::-;;60185:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;58081:38::-;;;;:::o;25867:104::-;25923:13;25956:7;25949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:104;:::o;59358:210::-;59423:11;58488:1;58474:11;:15;:52;;;;;58508:18;;58493:11;:33;;58474:52;58466:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58597:9;;58582:11;58566:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58558:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59456:11:::1;58736;58729:4;;:18;;;;:::i;:::-;58716:9;:31;;58708:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59485:6:::2;;;;;;;;;;;59484:7;59476:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59528:34;59538:10;59550:11;59528:9;:34::i;:::-;58638:1:::1;59358:210:::0;;:::o;32740:234::-;32887:8;32835:18;:39;32854:19;:17;:19::i;:::-;32835:39;;;;;;;;;;;;;;;:49;32875:8;32835:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32947:8;32911:55;;32926:19;:17;:19::i;:::-;32911:55;;;32957:8;32911:55;;;;;;:::i;:::-;;;;;;;;32740:234;;:::o;58124:35::-;;;;;;;;;;;;;:::o;39533:407::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39533:407;;;;:::o;59737:362::-;59811:13;59841:17;59849:8;59841:7;:17::i;:::-;59833:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59919:28;59950:10;:8;:10::i;:::-;59919:41;;60005:1;59980:14;59974:28;:32;:119;;;;;;;;;;;;;;;;;60042:14;60058:19;60068:8;60058:9;:19::i;:::-;60025:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59974:119;59967:126;;;59737:362;;;:::o;58045:31::-;;;;:::o;33131:164::-;33228:4;33252:18;:25;33271:5;33252:25;;;;;;;;;;;;;;;:35;33278:8;33252:35;;;;;;;;;;;;;;;;;;;;;;;;;33245:42;;33131:164;;;;:::o;59576:155::-;59662:11;58488:1;58474:11;:15;:52;;;;;58508:18;;58493:11;:33;;58474:52;58466:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58597:9;;58582:11;58566:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58558:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59692:33:::2;59702:9;59713:11;59692:9;:33::i;:::-;59576:155:::0;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;58164:52::-;;;;;;;;;;;;;;;;;:::o;33553:282::-;33618:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:66;;;;;33708:13;;33698:7;:23;33655:66;:153;;;;;33807:1;17561:8;33759:17;:26;33777:7;33759:26;;;;;;;;;;;;:44;:49;33655:153;33635:173;;33553:282;;;:::o;55861:105::-;55921:7;55948:10;55941:17;;55861:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20958:92::-;21014:7;20958:92;:::o;28239:1275::-;28306:7;28326:12;28341:7;28326:22;;28409:4;28390:15;:13;:15::i;:::-;:23;28386:1061;;28443:13;;28436:4;:20;28432:1015;;;28481:14;28498:17;:23;28516:4;28498:23;;;;;;;;;;;;28481:40;;28615:1;17561:8;28587:6;:24;:29;28583:845;;;29252:113;29269:1;29259:6;:11;29252:113;;;29312:17;:25;29330:6;;;;;;;29312:25;;;;;;;;;;;;29303:34;;29252:113;;;29398:6;29391:13;;;;;;28583:845;28458:989;28432:1015;28386:1061;29475:31;;;;;;;;;;;;;;28239:1275;;;;:::o;34716:485::-;34818:27;34847:23;34888:38;34929:15;:24;34945:7;34929:24;;;;;;;;;;;34888:65;;35106:18;35083:41;;35163:19;35157:26;35138:45;;35068:126;34716:485;;;:::o;33944:659::-;34093:11;34258:16;34251:5;34247:28;34238:37;;34418:16;34407:9;34403:32;34390:45;;34568:15;34557:9;34554:30;34546:5;34535:9;34532:20;34529:56;34519:66;;33944:659;;;;;:::o;40602:159::-;;;;;:::o;55170:311::-;55305:7;55325:16;17965:3;55351:19;:41;;55325:68;;17965:3;55419:31;55430:4;55436:2;55440:9;55419:10;:31::i;:::-;55411:40;;:62;;55404:69;;;55170:311;;;;;:::o;30062:450::-;30142:14;30310:16;30303:5;30299:28;30290:37;;30487:5;30473:11;30448:23;30444:41;30441:52;30434:5;30431:63;30421:73;;30062:450;;;;:::o;41426:158::-;;;;;:::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;49693:112::-;49770:27;49780:2;49784:8;49770:27;;;;;;;;;;;;:9;:27::i;:::-;49693:112;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;60630:104::-;60690:13;60719:9;60712:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60630:104;:::o;56068:1745::-;56133:17;56567:4;56560;56554:11;56550:22;56659:1;56653:4;56646:15;56734:4;56731:1;56727:12;56720:19;;56816:1;56811:3;56804:14;56920:3;57159:5;57141:428;57167:1;57141:428;;;57207:1;57202:3;57198:11;57191:18;;57378:2;57372:4;57368:13;57364:2;57360:22;57355:3;57347:36;57472:2;57466:4;57462:13;57454:21;;57539:4;57529:25;;57547:5;;57529:25;57141:428;;;57145:21;57608:3;57603;57599:13;57723:4;57718:3;57714:14;57707:21;;57788:6;57783:3;57776:19;56172:1634;;;56068:1745;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54871:147::-;55008:6;54871:147;;;;;:::o;48920:689::-;49051:19;49057:2;49061:8;49051:5;:19::i;:::-;49130:1;49112:2;:14;;;:19;49108:483;;49152:11;49166:13;;49152:27;;49198:13;49220:8;49214:3;:14;49198:30;;49247:233;49278:62;49317:1;49321:2;49325:7;;;;;;49334:5;49278:30;:62::i;:::-;49273:167;;49376:40;;;;;;;;;;;;;;49273:167;49475:3;49467:5;:11;49247:233;;49562:3;49545:13;;:20;49541:34;;49567:8;;;49541:34;49133:458;;49108:483;48920:689;;;:::o;43202:2966::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16923:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45682:1;45668:12;45664:20;45622:346;45723:3;45714:7;45711:16;45622:346;;45941:7;45931:8;45928:1;45901:25;45898:1;45895;45890:59;45776:1;45767:7;45763:15;45752:26;;45622:346;;;45626:77;46013:1;46001:8;:13;45997:45;;;46023:19;;;;;;;;;;;;;;45997:45;46075:3;46059:13;:19;;;;43628:2462;;46100:60;46129:1;46133:2;46137:12;46151:8;46100:20;:60::i;:::-;43264:2904;43202:2966;;:::o;30614:324::-;30684:14;30917:1;30907:8;30904:15;30878:24;30874:46;30864:56;;30614:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10441:366;;;:::o;10813:::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10813:366;;;:::o;11185:::-;11327:3;11348:67;11412:2;11407:3;11348:67;:::i;:::-;11341:74;;11424:93;11513:3;11424:93;:::i;:::-;11542:2;11537:3;11533:12;11526:19;;11185:366;;;:::o;11557:::-;11699:3;11720:67;11784:2;11779:3;11720:67;:::i;:::-;11713:74;;11796:93;11885:3;11796:93;:::i;:::-;11914:2;11909:3;11905:12;11898:19;;11557:366;;;:::o;11929:398::-;12088:3;12109:83;12190:1;12185:3;12109:83;:::i;:::-;12102:90;;12201:93;12290:3;12201:93;:::i;:::-;12319:1;12314:3;12310:11;12303:18;;11929:398;;;:::o;12333:366::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:::-;12847:3;12868:67;12932:2;12927:3;12868:67;:::i;:::-;12861:74;;12944:93;13033:3;12944:93;:::i;:::-;13062:2;13057:3;13053:12;13046:19;;12705:366;;;:::o;13077:::-;13219:3;13240:67;13304:2;13299:3;13240:67;:::i;:::-;13233:74;;13316:93;13405:3;13316:93;:::i;:::-;13434:2;13429:3;13425:12;13418:19;;13077:366;;;:::o;13449:118::-;13536:24;13554:5;13536:24;:::i;:::-;13531:3;13524:37;13449:118;;:::o;13573:112::-;13656:22;13672:5;13656:22;:::i;:::-;13651:3;13644:35;13573:112;;:::o;13691:435::-;13871:3;13893:95;13984:3;13975:6;13893:95;:::i;:::-;13886:102;;14005:95;14096:3;14087:6;14005:95;:::i;:::-;13998:102;;14117:3;14110:10;;13691:435;;;;;:::o;14132:379::-;14316:3;14338:147;14481:3;14338:147;:::i;:::-;14331:154;;14502:3;14495:10;;14132:379;;;:::o;14517:222::-;14610:4;14648:2;14637:9;14633:18;14625:26;;14661:71;14729:1;14718:9;14714:17;14705:6;14661:71;:::i;:::-;14517:222;;;;:::o;14745:640::-;14940:4;14978:3;14967:9;14963:19;14955:27;;14992:71;15060:1;15049:9;15045:17;15036:6;14992:71;:::i;:::-;15073:72;15141:2;15130:9;15126:18;15117:6;15073:72;:::i;:::-;15155;15223:2;15212:9;15208:18;15199:6;15155:72;:::i;:::-;15274:9;15268:4;15264:20;15259:2;15248:9;15244:18;15237:48;15302:76;15373:4;15364:6;15302:76;:::i;:::-;15294:84;;14745:640;;;;;;;:::o;15391:210::-;15478:4;15516:2;15505:9;15501:18;15493:26;;15529:65;15591:1;15580:9;15576:17;15567:6;15529:65;:::i;:::-;15391:210;;;;:::o;15607:313::-;15720:4;15758:2;15747:9;15743:18;15735:26;;15807:9;15801:4;15797:20;15793:1;15782:9;15778:17;15771:47;15835:78;15908:4;15899:6;15835:78;:::i;:::-;15827:86;;15607:313;;;;:::o;15926:419::-;16092:4;16130:2;16119:9;16115:18;16107:26;;16179:9;16173:4;16169:20;16165:1;16154:9;16150:17;16143:47;16207:131;16333:4;16207:131;:::i;:::-;16199:139;;15926:419;;;:::o;16351:::-;16517:4;16555:2;16544:9;16540:18;16532:26;;16604:9;16598:4;16594:20;16590:1;16579:9;16575:17;16568:47;16632:131;16758:4;16632:131;:::i;:::-;16624:139;;16351:419;;;:::o;16776:::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:::-;17367:4;17405:2;17394:9;17390:18;17382:26;;17454:9;17448:4;17444:20;17440:1;17429:9;17425:17;17418:47;17482:131;17608:4;17482:131;:::i;:::-;17474:139;;17201:419;;;:::o;17626:::-;17792:4;17830:2;17819:9;17815:18;17807:26;;17879:9;17873:4;17869:20;17865:1;17854:9;17850:17;17843:47;17907:131;18033:4;17907:131;:::i;:::-;17899:139;;17626:419;;;:::o;18051:::-;18217:4;18255:2;18244:9;18240:18;18232:26;;18304:9;18298:4;18294:20;18290:1;18279:9;18275:17;18268:47;18332:131;18458:4;18332:131;:::i;:::-;18324:139;;18051:419;;;:::o;18476:::-;18642:4;18680:2;18669:9;18665:18;18657:26;;18729:9;18723:4;18719:20;18715:1;18704:9;18700:17;18693:47;18757:131;18883:4;18757:131;:::i;:::-;18749:139;;18476:419;;;:::o;18901:::-;19067:4;19105:2;19094:9;19090:18;19082:26;;19154:9;19148:4;19144:20;19140:1;19129:9;19125:17;19118:47;19182:131;19308:4;19182:131;:::i;:::-;19174:139;;18901:419;;;:::o;19326:::-;19492:4;19530:2;19519:9;19515:18;19507:26;;19579:9;19573:4;19569:20;19565:1;19554:9;19550:17;19543:47;19607:131;19733:4;19607:131;:::i;:::-;19599:139;;19326:419;;;:::o;19751:::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19751:419;;;:::o;20176:222::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20320:71;20388:1;20377:9;20373:17;20364:6;20320:71;:::i;:::-;20176:222;;;;:::o;20404:214::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20544:67;20608:1;20597:9;20593:17;20584:6;20544:67;:::i;:::-;20404:214;;;;:::o;20624:129::-;20658:6;20685:20;;:::i;:::-;20675:30;;20714:33;20742:4;20734:6;20714:33;:::i;:::-;20624:129;;;:::o;20759:75::-;20792:6;20825:2;20819:9;20809:19;;20759:75;:::o;20840:307::-;20901:4;20991:18;20983:6;20980:30;20977:56;;;21013:18;;:::i;:::-;20977:56;21051:29;21073:6;21051:29;:::i;:::-;21043:37;;21135:4;21129;21125:15;21117:23;;20840:307;;;:::o;21153:308::-;21215:4;21305:18;21297:6;21294:30;21291:56;;;21327:18;;:::i;:::-;21291:56;21365:29;21387:6;21365:29;:::i;:::-;21357:37;;21449:4;21443;21439:15;21431:23;;21153:308;;;:::o;21467:98::-;21518:6;21552:5;21546:12;21536:22;;21467:98;;;:::o;21571:99::-;21623:6;21657:5;21651:12;21641:22;;21571:99;;;:::o;21676:168::-;21759:11;21793:6;21788:3;21781:19;21833:4;21828:3;21824:14;21809:29;;21676:168;;;;:::o;21850:147::-;21951:11;21988:3;21973:18;;21850:147;;;;:::o;22003:169::-;22087:11;22121:6;22116:3;22109:19;22161:4;22156:3;22152:14;22137:29;;22003:169;;;;:::o;22178:148::-;22280:11;22317:3;22302:18;;22178:148;;;;:::o;22332:305::-;22372:3;22391:20;22409:1;22391:20;:::i;:::-;22386:25;;22425:20;22443:1;22425:20;:::i;:::-;22420:25;;22579:1;22511:66;22507:74;22504:1;22501:81;22498:107;;;22585:18;;:::i;:::-;22498:107;22629:1;22626;22622:9;22615:16;;22332:305;;;;:::o;22643:348::-;22683:7;22706:20;22724:1;22706:20;:::i;:::-;22701:25;;22740:20;22758:1;22740:20;:::i;:::-;22735:25;;22928:1;22860:66;22856:74;22853:1;22850:81;22845:1;22838:9;22831:17;22827:105;22824:131;;;22935:18;;:::i;:::-;22824:131;22983:1;22980;22976:9;22965:20;;22643:348;;;;:::o;22997:96::-;23034:7;23063:24;23081:5;23063:24;:::i;:::-;23052:35;;22997:96;;;:::o;23099:90::-;23133:7;23176:5;23169:13;23162:21;23151:32;;23099:90;;;:::o;23195:149::-;23231:7;23271:66;23264:5;23260:78;23249:89;;23195:149;;;:::o;23350:126::-;23387:7;23427:42;23420:5;23416:54;23405:65;;23350:126;;;:::o;23482:77::-;23519:7;23548:5;23537:16;;23482:77;;;:::o;23565:86::-;23600:7;23640:4;23633:5;23629:16;23618:27;;23565:86;;;:::o;23657:154::-;23741:6;23736:3;23731;23718:30;23803:1;23794:6;23789:3;23785:16;23778:27;23657:154;;;:::o;23817:307::-;23885:1;23895:113;23909:6;23906:1;23903:13;23895:113;;;23994:1;23989:3;23985:11;23979:18;23975:1;23970:3;23966:11;23959:39;23931:2;23928:1;23924:10;23919:15;;23895:113;;;24026:6;24023:1;24020:13;24017:101;;;24106:1;24097:6;24092:3;24088:16;24081:27;24017:101;23866:258;23817:307;;;:::o;24130:320::-;24174:6;24211:1;24205:4;24201:12;24191:22;;24258:1;24252:4;24248:12;24279:18;24269:81;;24335:4;24327:6;24323:17;24313:27;;24269:81;24397:2;24389:6;24386:14;24366:18;24363:38;24360:84;;;24416:18;;:::i;:::-;24360:84;24181:269;24130:320;;;:::o;24456:281::-;24539:27;24561:4;24539:27;:::i;:::-;24531:6;24527:40;24669:6;24657:10;24654:22;24633:18;24621:10;24618:34;24615:62;24612:88;;;24680:18;;:::i;:::-;24612:88;24720:10;24716:2;24709:22;24499:238;24456:281;;:::o;24743:180::-;24791:77;24788:1;24781:88;24888:4;24885:1;24878:15;24912:4;24909:1;24902:15;24929:180;24977:77;24974:1;24967:88;25074:4;25071:1;25064:15;25098:4;25095:1;25088:15;25115:180;25163:77;25160:1;25153:88;25260:4;25257:1;25250:15;25284:4;25281:1;25274:15;25301:117;25410:1;25407;25400:12;25424:117;25533:1;25530;25523:12;25547:117;25656:1;25653;25646:12;25670:117;25779:1;25776;25769:12;25793:102;25834:6;25885:2;25881:7;25876:2;25869:5;25865:14;25861:28;25851:38;;25793:102;;;:::o;25901:225::-;26041:34;26037:1;26029:6;26025:14;26018:58;26110:8;26105:2;26097:6;26093:15;26086:33;25901:225;:::o;26132:170::-;26272:22;26268:1;26260:6;26256:14;26249:46;26132:170;:::o;26308:222::-;26448:34;26444:1;26436:6;26432:14;26425:58;26517:5;26512:2;26504:6;26500:15;26493:30;26308:222;:::o;26536:182::-;26676:34;26672:1;26664:6;26660:14;26653:58;26536:182;:::o;26724:173::-;26864:25;26860:1;26852:6;26848:14;26841:49;26724:173;:::o;26903:234::-;27043:34;27039:1;27031:6;27027:14;27020:58;27112:17;27107:2;27099:6;27095:15;27088:42;26903:234;:::o;27143:175::-;27283:27;27279:1;27271:6;27267:14;27260:51;27143:175;:::o;27324:114::-;;:::o;27444:170::-;27584:22;27580:1;27572:6;27568:14;27561:46;27444:170;:::o;27620:181::-;27760:33;27756:1;27748:6;27744:14;27737:57;27620:181;:::o;27807:169::-;27947:21;27943:1;27935:6;27931:14;27924:45;27807:169;:::o;27982:122::-;28055:24;28073:5;28055:24;:::i;:::-;28048:5;28045:35;28035:63;;28094:1;28091;28084:12;28035:63;27982:122;:::o;28110:116::-;28180:21;28195:5;28180:21;:::i;:::-;28173:5;28170:32;28160:60;;28216:1;28213;28206:12;28160:60;28110:116;:::o;28232:120::-;28304:23;28321:5;28304:23;:::i;:::-;28297:5;28294:34;28284:62;;28342:1;28339;28332:12;28284:62;28232:120;:::o;28358:122::-;28431:24;28449:5;28431:24;:::i;:::-;28424:5;28421:35;28411:63;;28470:1;28467;28460:12;28411:63;28358:122;:::o

Swarm Source

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