ETH Price: $3,105.09 (+1.07%)
Gas: 6 Gwei

Token

Boring Frog (BF)
 

Overview

Max Total Supply

10,000 BF

Holders

1,553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BF
0xbd2c2f2ba4ac64217183f70ae970286282c4d896
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:
BoringFrog

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-09-21
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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/OrangutanWorld.sol



pragma solidity ^0.8.4;




contract BoringFrog is ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';
  string public baseUri = 'ipfs://QmRQtfiW1QxDC4fBdyctGbgVXPJ9GiD9Hwdn29ikK5yFWb';

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

  bool public paused = true;

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

  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 <= maxFreeMintAmountPerTx, 'Invalid mint amount!');
    require(_mintedFreeAmount[msg.sender] + _mintAmount <= maxFreePerWallet, 'Max free supply exceeded!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  function freeMint(uint256 _mintAmount) public payable freeMintCountCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    _mintedFreeAmount[msg.sender] = _mintedFreeAmount[msg.sender] + _mintAmount;
    _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 setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setMaxFreePerWallet(uint256 _maxFreePerWallet) public onlyOwner {
    maxFreePerWallet = _maxFreePerWallet;
  }

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

  function setBaseUri(string memory _uri) public onlyOwner {
    baseUri = _uri;
  }

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

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

  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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerWallet","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620006e8565b5060405180606001604052806035815260200162003d9f60359139600b90805190602001906200005d929190620006e8565b5066071afd498d0000600c55612710600d55600a600e556001600f5560016010556001601260006101000a81548160ff021916908315150217905550348015620000a657600080fd5b5060405162003dd438038062003dd48339818101604052810190620000cc91906200085f565b81818160029080519060200190620000e6929190620006e8565b508060039080519060200190620000ff929190620006e8565b50620001106200015b60201b60201c565b6000819055505050620001386200012c6200016060201b60201c565b6200016860201b60201c565b6001600981905550620001533360326200022e60201b60201c565b505062000bbf565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002508282604051806020016040528060008152506200025460201b60201c565b5050565b6200026683836200030560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200030057600080549050600083820390505b620002af6000868380600101945086620004ee60201b60201c565b620002e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000294578160005414620002fd57600080fd5b50505b505050565b600080549050600082141562000347576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200035c60008483856200066060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003eb83620003cd60008660006200066660201b60201c565b620003de856200069660201b60201c565b17620006a660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200048e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000451565b506000821415620004cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004e96000848385620006d160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200051c620006d760201b60201c565b8786866040518563ffffffff1660e01b815260040162000540949392919062000947565b602060405180830381600087803b1580156200055b57600080fd5b505af19250505080156200058f57506040513d601f19601f820116820180604052508101906200058c91906200082d565b60015b6200060d573d8060008114620005c2576040519150601f19603f3d011682016040523d82523d6000602084013e620005c7565b606091505b5060008151141562000605576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000685868684620006df60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006f69062000ab6565b90600052602060002090601f0160209004810192826200071a576000855562000766565b82601f106200073557805160ff191683800117855562000766565b8280016001018555821562000766579182015b828111156200076557825182559160200191906001019062000748565b5b50905062000775919062000779565b5090565b5b80821115620007945760008160009055506001016200077a565b5090565b6000620007af620007a984620009c4565b6200099b565b905082815260208101848484011115620007ce57620007cd62000b85565b5b620007db84828562000a80565b509392505050565b600081519050620007f48162000ba5565b92915050565b600082601f83011262000812576200081162000b80565b5b81516200082484826020860162000798565b91505092915050565b60006020828403121562000846576200084562000b8f565b5b60006200085684828501620007e3565b91505092915050565b6000806040838503121562000879576200087862000b8f565b5b600083015167ffffffffffffffff8111156200089a576200089962000b8a565b5b620008a885828601620007fa565b925050602083015167ffffffffffffffff811115620008cc57620008cb62000b8a565b5b620008da85828601620007fa565b9150509250929050565b620008ef8162000a16565b82525050565b60006200090282620009fa565b6200090e818562000a05565b93506200092081856020860162000a80565b6200092b8162000b94565b840191505092915050565b620009418162000a76565b82525050565b60006080820190506200095e6000830187620008e4565b6200096d6020830186620008e4565b6200097c604083018562000936565b8181036060830152620009908184620008f5565b905095945050505050565b6000620009a7620009ba565b9050620009b5828262000aec565b919050565b6000604051905090565b600067ffffffffffffffff821115620009e257620009e162000b51565b5b620009ed8262000b94565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a238262000a56565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aa057808201518184015260208101905062000a83565b8381111562000ab0576000848401525b50505050565b6000600282049050600182168062000acf57607f821691505b6020821081141562000ae65762000ae562000b22565b5b50919050565b62000af78262000b94565b810181811067ffffffffffffffff8211171562000b195762000b1862000b51565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000bb08162000a2a565b811462000bbc57600080fd5b50565b6131d08062000bcf6000396000f3fe60806040526004361061020f5760003560e01c80637c928fe911610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb0114610747578063e985e9c514610772578063efbd73f4146107af578063f2fde38b146107d8578063f4db2acb146108015761020f565b8063a70273571461068d578063b071401b146106b8578063b88d4fde146106e1578063c87b56dd1461070a5761020f565b806395d89b41116100e757806395d89b41146105c95780639abc8320146105f4578063a0712d681461061f578063a0bcfc7f1461063b578063a22cb465146106645761020f565b80637c928fe91461052e5780637ec4a6591461054a5780638da5cb5b1461057357806394354fd01461059e5761020f565b806342842e0e1161019b57806362b99ad41161016a57806362b99ad4146104495780636352211e146104745780636d7c4a4b146104b157806370a08231146104da578063715018a6146105175761020f565b806342842e0e146103a157806344a0d68a146103ca5780635c975abb146103f3578063604906dc1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906126d8565b61083e565b6040516102489190612ab6565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612ad1565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061277b565b610962565b6040516102b09190612a4f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061266b565b6109e1565b005b3480156102ee57600080fd5b506102f7610b25565b6040516103049190612c13565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906126ab565b610b2b565b005b34801561034257600080fd5b5061034b610b50565b6040516103589190612c13565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612555565b610b67565b005b34801561039657600080fd5b5061039f610e8c565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612555565b610f6a565b005b3480156103d657600080fd5b506103f160048036038101906103ec919061277b565b610f8a565b005b3480156103ff57600080fd5b50610408610f9c565b6040516104159190612ab6565b60405180910390f35b34801561042a57600080fd5b50610433610faf565b6040516104409190612c13565b60405180910390f35b34801561045557600080fd5b5061045e610fb5565b60405161046b9190612ad1565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061277b565b611043565b6040516104a89190612a4f565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d3919061277b565b611055565b005b3480156104e657600080fd5b5061050160048036038101906104fc91906124e8565b611067565b60405161050e9190612c13565b60405180910390f35b34801561052357600080fd5b5061052c611120565b005b6105486004803603810190610543919061277b565b611134565b005b34801561055657600080fd5b50610571600480360381019061056c9190612732565b61134c565b005b34801561057f57600080fd5b5061058861136e565b6040516105959190612a4f565b60405180910390f35b3480156105aa57600080fd5b506105b3611398565b6040516105c09190612c13565b60405180910390f35b3480156105d557600080fd5b506105de61139e565b6040516105eb9190612ad1565b60405180910390f35b34801561060057600080fd5b50610609611430565b6040516106169190612ad1565b60405180910390f35b6106396004803603810190610634919061277b565b6114be565b005b34801561064757600080fd5b50610662600480360381019061065d9190612732565b611617565b005b34801561067057600080fd5b5061068b6004803603810190610686919061262b565b611639565b005b34801561069957600080fd5b506106a26117b1565b6040516106af9190612c13565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da919061277b565b6117b7565b005b3480156106ed57600080fd5b50610708600480360381019061070391906125a8565b6117c9565b005b34801561071657600080fd5b50610731600480360381019061072c919061277b565b61183c565b60405161073e9190612ad1565b60405180910390f35b34801561075357600080fd5b5061075c6118e3565b6040516107699190612c13565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612515565b6118e9565b6040516107a69190612ab6565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906127a8565b61197d565b005b3480156107e457600080fd5b506107ff60048036038101906107fa91906124e8565b611a3d565b005b34801561080d57600080fd5b50610828600480360381019061082391906124e8565b611ac1565b6040516108359190612c13565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108df90612e69565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612e69565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611ad9565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ec82611043565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0d611b38565b73ffffffffffffffffffffffffffffffffffffffff1614610a7057610a3981610a34611b38565b6118e9565b610a6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b33611b40565b80601260006101000a81548160ff02191690831515021790555050565b6000610b5a611bbe565b6001546000540303905090565b6000610b7282611bc3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be584611c91565b91509150610bfb8187610bf6611b38565b611cb8565b610c4757610c1086610c0b611b38565b6118e9565b610c46576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cbb8686866001611cfc565b8015610cc657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9485610d70888887611d02565b7c020000000000000000000000000000000000000000000000000000000017611d2a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e1c576000600185019050600060046000838152602001908152602001600020541415610e1a576000548114610e19578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e848686866001611d55565b505050505050565b610e94611b40565b60026009541415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190612bd3565b60405180910390fd5b60026009819055506000610eec61136e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90612a3a565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b506001600981905550565b610f85838383604051806020016040528060008152506117c9565b505050565b610f92611b40565b80600c8190555050565b601260009054906101000a900460ff1681565b60105481565b600a8054610fc290612e69565b80601f0160208091040260200160405190810160405280929190818152602001828054610fee90612e69565b801561103b5780601f106110105761010080835404028352916020019161103b565b820191906000526020600020905b81548152906001019060200180831161101e57829003601f168201915b505050505081565b600061104e82611bc3565b9050919050565b61105d611b40565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611128611b40565b6111326000611d5b565b565b8060105481111561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612b13565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c89190612d03565b1115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090612b93565b60405180910390fd5b600d5481611215610b50565b61121f9190612d03565b1115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612bb3565b60405180910390fd5b601260009054906101000a900460ff16156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612b53565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112fb9190612d03565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113483383611e21565b5050565b611354611b40565b80600a908051906020019061136a9291906122fc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546113ad90612e69565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612e69565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b5050505050905090565b600b805461143d90612e69565b80601f016020809104026020016040519081016040528092919081815260200182805461146990612e69565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b505050505081565b806000811180156114d15750600e548111155b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790612b13565b60405180910390fd5b600d548161151c610b50565b6115269190612d03565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90612bb3565b60405180910390fd5b8180600c546115769190612d59565b3410156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90612bf3565b60405180910390fd5b601260009054906101000a900460ff1615611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612b53565b60405180910390fd5b6116123384611e21565b505050565b61161f611b40565b80600b90805190602001906116359291906122fc565b5050565b611641611b38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116b3611b38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611760611b38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a59190612ab6565b60405180910390a35050565b600f5481565b6117bf611b40565b80600e8190555050565b6117d4848484610b67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611836576117ff84848484611e3f565b611835576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061184782611ad9565b611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90612b73565b60405180910390fd5b6000611890611f9f565b905060008151116118b057604051806020016040528060008152506118db565b806118ba84612031565b6040516020016118cb929190612a16565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119905750600e548111155b6119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690612b13565b60405180910390fd5b600d54816119db610b50565b6119e59190612d03565b1115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90612bb3565b60405180910390fd5b611a2e611b40565b611a388284611e21565b505050565b611a45611b40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90612af3565b60405180910390fd5b611abe81611d5b565b50565b60116020528060005260406000206000915090505481565b600081611ae4611bbe565b11158015611af3575060005482105b8015611b31575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b48612081565b73ffffffffffffffffffffffffffffffffffffffff16611b6661136e565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390612b33565b60405180910390fd5b565b600090565b60008082905080611bd2611bbe565b11611c5a57600054811015611c595760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c57575b6000811415611c4d576004600083600190039350838152602001908152602001600020549050611c22565b8092505050611c8c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d19868684612089565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3b828260405180602001604052806000815250612092565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e65611b38565b8786866040518563ffffffff1660e01b8152600401611e879493929190612a6a565b602060405180830381600087803b158015611ea157600080fd5b505af1925050508015611ed257506040513d601f19601f82011682018060405250810190611ecf9190612705565b60015b611f4c573d8060008114611f02576040519150601f19603f3d011682016040523d82523d6000602084013e611f07565b606091505b50600081511415611f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fae90612e69565b80601f0160208091040260200160405190810160405280929190818152602001828054611fda90612e69565b80156120275780601f10611ffc57610100808354040283529160200191612027565b820191906000526020600020905b81548152906001019060200180831161200a57829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561206d57600183039250600a81066030018353600a81049050806120685761206d565b612042565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61209c838361212f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212a57600080549050600083820390505b6120dc6000868380600101945086611e3f565b612112576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120c957816000541461212757600080fd5b50505b505050565b6000805490506000821415612170576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217d6000848385611cfc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f4836121e56000866000611d02565b6121ee856122ec565b17611d2a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061225a565b5060008214156122d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122e76000848385611d55565b505050565b60006001821460e11b9050919050565b82805461230890612e69565b90600052602060002090601f01602090048101928261232a5760008555612371565b82601f1061234357805160ff1916838001178555612371565b82800160010185558215612371579182015b82811115612370578251825591602001919060010190612355565b5b50905061237e9190612382565b5090565b5b8082111561239b576000816000905550600101612383565b5090565b60006123b26123ad84612c53565b612c2e565b9050828152602081018484840111156123ce576123cd612f5e565b5b6123d9848285612e27565b509392505050565b60006123f46123ef84612c84565b612c2e565b9050828152602081018484840111156124105761240f612f5e565b5b61241b848285612e27565b509392505050565b6000813590506124328161313e565b92915050565b60008135905061244781613155565b92915050565b60008135905061245c8161316c565b92915050565b6000815190506124718161316c565b92915050565b600082601f83011261248c5761248b612f59565b5b813561249c84826020860161239f565b91505092915050565b600082601f8301126124ba576124b9612f59565b5b81356124ca8482602086016123e1565b91505092915050565b6000813590506124e281613183565b92915050565b6000602082840312156124fe576124fd612f68565b5b600061250c84828501612423565b91505092915050565b6000806040838503121561252c5761252b612f68565b5b600061253a85828601612423565b925050602061254b85828601612423565b9150509250929050565b60008060006060848603121561256e5761256d612f68565b5b600061257c86828701612423565b935050602061258d86828701612423565b925050604061259e868287016124d3565b9150509250925092565b600080600080608085870312156125c2576125c1612f68565b5b60006125d087828801612423565b94505060206125e187828801612423565b93505060406125f2878288016124d3565b925050606085013567ffffffffffffffff81111561261357612612612f63565b5b61261f87828801612477565b91505092959194509250565b6000806040838503121561264257612641612f68565b5b600061265085828601612423565b925050602061266185828601612438565b9150509250929050565b6000806040838503121561268257612681612f68565b5b600061269085828601612423565b92505060206126a1858286016124d3565b9150509250929050565b6000602082840312156126c1576126c0612f68565b5b60006126cf84828501612438565b91505092915050565b6000602082840312156126ee576126ed612f68565b5b60006126fc8482850161244d565b91505092915050565b60006020828403121561271b5761271a612f68565b5b600061272984828501612462565b91505092915050565b60006020828403121561274857612747612f68565b5b600082013567ffffffffffffffff81111561276657612765612f63565b5b612772848285016124a5565b91505092915050565b60006020828403121561279157612790612f68565b5b600061279f848285016124d3565b91505092915050565b600080604083850312156127bf576127be612f68565b5b60006127cd858286016124d3565b92505060206127de85828601612423565b9150509250929050565b6127f181612db3565b82525050565b61280081612dc5565b82525050565b600061281182612cb5565b61281b8185612ccb565b935061282b818560208601612e36565b61283481612f6d565b840191505092915050565b600061284a82612cc0565b6128548185612ce7565b9350612864818560208601612e36565b61286d81612f6d565b840191505092915050565b600061288382612cc0565b61288d8185612cf8565b935061289d818560208601612e36565b80840191505092915050565b60006128b6602683612ce7565b91506128c182612f7e565b604082019050919050565b60006128d9601483612ce7565b91506128e482612fcd565b602082019050919050565b60006128fc602083612ce7565b915061290782612ff6565b602082019050919050565b600061291f601783612ce7565b915061292a8261301f565b602082019050919050565b6000612942602f83612ce7565b915061294d82613048565b604082019050919050565b6000612965601983612ce7565b915061297082613097565b602082019050919050565b6000612988600083612cdc565b9150612993826130c0565b600082019050919050565b60006129ab601483612ce7565b91506129b6826130c3565b602082019050919050565b60006129ce601f83612ce7565b91506129d9826130ec565b602082019050919050565b60006129f1601383612ce7565b91506129fc82613115565b602082019050919050565b612a1081612e1d565b82525050565b6000612a228285612878565b9150612a2e8284612878565b91508190509392505050565b6000612a458261297b565b9150819050919050565b6000602082019050612a6460008301846127e8565b92915050565b6000608082019050612a7f60008301876127e8565b612a8c60208301866127e8565b612a996040830185612a07565b8181036060830152612aab8184612806565b905095945050505050565b6000602082019050612acb60008301846127f7565b92915050565b60006020820190508181036000830152612aeb818461283f565b905092915050565b60006020820190508181036000830152612b0c816128a9565b9050919050565b60006020820190508181036000830152612b2c816128cc565b9050919050565b60006020820190508181036000830152612b4c816128ef565b9050919050565b60006020820190508181036000830152612b6c81612912565b9050919050565b60006020820190508181036000830152612b8c81612935565b9050919050565b60006020820190508181036000830152612bac81612958565b9050919050565b60006020820190508181036000830152612bcc8161299e565b9050919050565b60006020820190508181036000830152612bec816129c1565b9050919050565b60006020820190508181036000830152612c0c816129e4565b9050919050565b6000602082019050612c286000830184612a07565b92915050565b6000612c38612c49565b9050612c448282612e9b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c6e57612c6d612f2a565b5b612c7782612f6d565b9050602081019050919050565b600067ffffffffffffffff821115612c9f57612c9e612f2a565b5b612ca882612f6d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0e82612e1d565b9150612d1983612e1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4e57612d4d612ecc565b5b828201905092915050565b6000612d6482612e1d565b9150612d6f83612e1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da857612da7612ecc565b5b828202905092915050565b6000612dbe82612dfd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e54578082015181840152602081019050612e39565b83811115612e63576000848401525b50505050565b60006002820490506001821680612e8157607f821691505b60208210811415612e9557612e94612efb565b5b50919050565b612ea482612f6d565b810181811067ffffffffffffffff82111715612ec357612ec2612f2a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61314781612db3565b811461315257600080fd5b50565b61315e81612dc5565b811461316957600080fd5b50565b61317581612dd1565b811461318057600080fd5b50565b61318c81612e1d565b811461319757600080fd5b5056fea2646970667358221220dd59a9cc013e876cbec6d654bc8b84982e5b7f6ff5b0f3ebce05ef4a6949b99464736f6c63430008070033697066733a2f2f516d5251746669573151784443346642647963744762675658504a39476944394877646e3239696b4b357946576200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b426f72696e672046726f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024246000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637c928fe911610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb0114610747578063e985e9c514610772578063efbd73f4146107af578063f2fde38b146107d8578063f4db2acb146108015761020f565b8063a70273571461068d578063b071401b146106b8578063b88d4fde146106e1578063c87b56dd1461070a5761020f565b806395d89b41116100e757806395d89b41146105c95780639abc8320146105f4578063a0712d681461061f578063a0bcfc7f1461063b578063a22cb465146106645761020f565b80637c928fe91461052e5780637ec4a6591461054a5780638da5cb5b1461057357806394354fd01461059e5761020f565b806342842e0e1161019b57806362b99ad41161016a57806362b99ad4146104495780636352211e146104745780636d7c4a4b146104b157806370a08231146104da578063715018a6146105175761020f565b806342842e0e146103a157806344a0d68a146103ca5780635c975abb146103f3578063604906dc1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906126d8565b61083e565b6040516102489190612ab6565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612ad1565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061277b565b610962565b6040516102b09190612a4f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061266b565b6109e1565b005b3480156102ee57600080fd5b506102f7610b25565b6040516103049190612c13565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906126ab565b610b2b565b005b34801561034257600080fd5b5061034b610b50565b6040516103589190612c13565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612555565b610b67565b005b34801561039657600080fd5b5061039f610e8c565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612555565b610f6a565b005b3480156103d657600080fd5b506103f160048036038101906103ec919061277b565b610f8a565b005b3480156103ff57600080fd5b50610408610f9c565b6040516104159190612ab6565b60405180910390f35b34801561042a57600080fd5b50610433610faf565b6040516104409190612c13565b60405180910390f35b34801561045557600080fd5b5061045e610fb5565b60405161046b9190612ad1565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061277b565b611043565b6040516104a89190612a4f565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d3919061277b565b611055565b005b3480156104e657600080fd5b5061050160048036038101906104fc91906124e8565b611067565b60405161050e9190612c13565b60405180910390f35b34801561052357600080fd5b5061052c611120565b005b6105486004803603810190610543919061277b565b611134565b005b34801561055657600080fd5b50610571600480360381019061056c9190612732565b61134c565b005b34801561057f57600080fd5b5061058861136e565b6040516105959190612a4f565b60405180910390f35b3480156105aa57600080fd5b506105b3611398565b6040516105c09190612c13565b60405180910390f35b3480156105d557600080fd5b506105de61139e565b6040516105eb9190612ad1565b60405180910390f35b34801561060057600080fd5b50610609611430565b6040516106169190612ad1565b60405180910390f35b6106396004803603810190610634919061277b565b6114be565b005b34801561064757600080fd5b50610662600480360381019061065d9190612732565b611617565b005b34801561067057600080fd5b5061068b6004803603810190610686919061262b565b611639565b005b34801561069957600080fd5b506106a26117b1565b6040516106af9190612c13565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da919061277b565b6117b7565b005b3480156106ed57600080fd5b50610708600480360381019061070391906125a8565b6117c9565b005b34801561071657600080fd5b50610731600480360381019061072c919061277b565b61183c565b60405161073e9190612ad1565b60405180910390f35b34801561075357600080fd5b5061075c6118e3565b6040516107699190612c13565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612515565b6118e9565b6040516107a69190612ab6565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906127a8565b61197d565b005b3480156107e457600080fd5b506107ff60048036038101906107fa91906124e8565b611a3d565b005b34801561080d57600080fd5b50610828600480360381019061082391906124e8565b611ac1565b6040516108359190612c13565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108df90612e69565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612e69565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611ad9565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ec82611043565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0d611b38565b73ffffffffffffffffffffffffffffffffffffffff1614610a7057610a3981610a34611b38565b6118e9565b610a6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b33611b40565b80601260006101000a81548160ff02191690831515021790555050565b6000610b5a611bbe565b6001546000540303905090565b6000610b7282611bc3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be584611c91565b91509150610bfb8187610bf6611b38565b611cb8565b610c4757610c1086610c0b611b38565b6118e9565b610c46576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cbb8686866001611cfc565b8015610cc657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9485610d70888887611d02565b7c020000000000000000000000000000000000000000000000000000000017611d2a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e1c576000600185019050600060046000838152602001908152602001600020541415610e1a576000548114610e19578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e848686866001611d55565b505050505050565b610e94611b40565b60026009541415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190612bd3565b60405180910390fd5b60026009819055506000610eec61136e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90612a3a565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b506001600981905550565b610f85838383604051806020016040528060008152506117c9565b505050565b610f92611b40565b80600c8190555050565b601260009054906101000a900460ff1681565b60105481565b600a8054610fc290612e69565b80601f0160208091040260200160405190810160405280929190818152602001828054610fee90612e69565b801561103b5780601f106110105761010080835404028352916020019161103b565b820191906000526020600020905b81548152906001019060200180831161101e57829003601f168201915b505050505081565b600061104e82611bc3565b9050919050565b61105d611b40565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611128611b40565b6111326000611d5b565b565b8060105481111561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612b13565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c89190612d03565b1115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090612b93565b60405180910390fd5b600d5481611215610b50565b61121f9190612d03565b1115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612bb3565b60405180910390fd5b601260009054906101000a900460ff16156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612b53565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112fb9190612d03565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113483383611e21565b5050565b611354611b40565b80600a908051906020019061136a9291906122fc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546113ad90612e69565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612e69565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b5050505050905090565b600b805461143d90612e69565b80601f016020809104026020016040519081016040528092919081815260200182805461146990612e69565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b505050505081565b806000811180156114d15750600e548111155b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790612b13565b60405180910390fd5b600d548161151c610b50565b6115269190612d03565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90612bb3565b60405180910390fd5b8180600c546115769190612d59565b3410156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90612bf3565b60405180910390fd5b601260009054906101000a900460ff1615611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612b53565b60405180910390fd5b6116123384611e21565b505050565b61161f611b40565b80600b90805190602001906116359291906122fc565b5050565b611641611b38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116b3611b38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611760611b38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a59190612ab6565b60405180910390a35050565b600f5481565b6117bf611b40565b80600e8190555050565b6117d4848484610b67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611836576117ff84848484611e3f565b611835576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061184782611ad9565b611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90612b73565b60405180910390fd5b6000611890611f9f565b905060008151116118b057604051806020016040528060008152506118db565b806118ba84612031565b6040516020016118cb929190612a16565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119905750600e548111155b6119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690612b13565b60405180910390fd5b600d54816119db610b50565b6119e59190612d03565b1115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90612bb3565b60405180910390fd5b611a2e611b40565b611a388284611e21565b505050565b611a45611b40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90612af3565b60405180910390fd5b611abe81611d5b565b50565b60116020528060005260406000206000915090505481565b600081611ae4611bbe565b11158015611af3575060005482105b8015611b31575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b48612081565b73ffffffffffffffffffffffffffffffffffffffff16611b6661136e565b73ffffffffffffffffffffffffffffffffffffffff1614611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390612b33565b60405180910390fd5b565b600090565b60008082905080611bd2611bbe565b11611c5a57600054811015611c595760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c57575b6000811415611c4d576004600083600190039350838152602001908152602001600020549050611c22565b8092505050611c8c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d19868684612089565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3b828260405180602001604052806000815250612092565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e65611b38565b8786866040518563ffffffff1660e01b8152600401611e879493929190612a6a565b602060405180830381600087803b158015611ea157600080fd5b505af1925050508015611ed257506040513d601f19601f82011682018060405250810190611ecf9190612705565b60015b611f4c573d8060008114611f02576040519150601f19603f3d011682016040523d82523d6000602084013e611f07565b606091505b50600081511415611f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fae90612e69565b80601f0160208091040260200160405190810160405280929190818152602001828054611fda90612e69565b80156120275780601f10611ffc57610100808354040283529160200191612027565b820191906000526020600020905b81548152906001019060200180831161200a57829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561206d57600183039250600a81066030018353600a81049050806120685761206d565b612042565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61209c838361212f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212a57600080549050600083820390505b6120dc6000868380600101945086611e3f565b612112576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120c957816000541461212757600080fd5b50505b505050565b6000805490506000821415612170576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217d6000848385611cfc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f4836121e56000866000611d02565b6121ee856122ec565b17611d2a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061225a565b5060008214156122d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122e76000848385611d55565b505050565b60006001821460e11b9050919050565b82805461230890612e69565b90600052602060002090601f01602090048101928261232a5760008555612371565b82601f1061234357805160ff1916838001178555612371565b82800160010185558215612371579182015b82811115612370578251825591602001919060010190612355565b5b50905061237e9190612382565b5090565b5b8082111561239b576000816000905550600101612383565b5090565b60006123b26123ad84612c53565b612c2e565b9050828152602081018484840111156123ce576123cd612f5e565b5b6123d9848285612e27565b509392505050565b60006123f46123ef84612c84565b612c2e565b9050828152602081018484840111156124105761240f612f5e565b5b61241b848285612e27565b509392505050565b6000813590506124328161313e565b92915050565b60008135905061244781613155565b92915050565b60008135905061245c8161316c565b92915050565b6000815190506124718161316c565b92915050565b600082601f83011261248c5761248b612f59565b5b813561249c84826020860161239f565b91505092915050565b600082601f8301126124ba576124b9612f59565b5b81356124ca8482602086016123e1565b91505092915050565b6000813590506124e281613183565b92915050565b6000602082840312156124fe576124fd612f68565b5b600061250c84828501612423565b91505092915050565b6000806040838503121561252c5761252b612f68565b5b600061253a85828601612423565b925050602061254b85828601612423565b9150509250929050565b60008060006060848603121561256e5761256d612f68565b5b600061257c86828701612423565b935050602061258d86828701612423565b925050604061259e868287016124d3565b9150509250925092565b600080600080608085870312156125c2576125c1612f68565b5b60006125d087828801612423565b94505060206125e187828801612423565b93505060406125f2878288016124d3565b925050606085013567ffffffffffffffff81111561261357612612612f63565b5b61261f87828801612477565b91505092959194509250565b6000806040838503121561264257612641612f68565b5b600061265085828601612423565b925050602061266185828601612438565b9150509250929050565b6000806040838503121561268257612681612f68565b5b600061269085828601612423565b92505060206126a1858286016124d3565b9150509250929050565b6000602082840312156126c1576126c0612f68565b5b60006126cf84828501612438565b91505092915050565b6000602082840312156126ee576126ed612f68565b5b60006126fc8482850161244d565b91505092915050565b60006020828403121561271b5761271a612f68565b5b600061272984828501612462565b91505092915050565b60006020828403121561274857612747612f68565b5b600082013567ffffffffffffffff81111561276657612765612f63565b5b612772848285016124a5565b91505092915050565b60006020828403121561279157612790612f68565b5b600061279f848285016124d3565b91505092915050565b600080604083850312156127bf576127be612f68565b5b60006127cd858286016124d3565b92505060206127de85828601612423565b9150509250929050565b6127f181612db3565b82525050565b61280081612dc5565b82525050565b600061281182612cb5565b61281b8185612ccb565b935061282b818560208601612e36565b61283481612f6d565b840191505092915050565b600061284a82612cc0565b6128548185612ce7565b9350612864818560208601612e36565b61286d81612f6d565b840191505092915050565b600061288382612cc0565b61288d8185612cf8565b935061289d818560208601612e36565b80840191505092915050565b60006128b6602683612ce7565b91506128c182612f7e565b604082019050919050565b60006128d9601483612ce7565b91506128e482612fcd565b602082019050919050565b60006128fc602083612ce7565b915061290782612ff6565b602082019050919050565b600061291f601783612ce7565b915061292a8261301f565b602082019050919050565b6000612942602f83612ce7565b915061294d82613048565b604082019050919050565b6000612965601983612ce7565b915061297082613097565b602082019050919050565b6000612988600083612cdc565b9150612993826130c0565b600082019050919050565b60006129ab601483612ce7565b91506129b6826130c3565b602082019050919050565b60006129ce601f83612ce7565b91506129d9826130ec565b602082019050919050565b60006129f1601383612ce7565b91506129fc82613115565b602082019050919050565b612a1081612e1d565b82525050565b6000612a228285612878565b9150612a2e8284612878565b91508190509392505050565b6000612a458261297b565b9150819050919050565b6000602082019050612a6460008301846127e8565b92915050565b6000608082019050612a7f60008301876127e8565b612a8c60208301866127e8565b612a996040830185612a07565b8181036060830152612aab8184612806565b905095945050505050565b6000602082019050612acb60008301846127f7565b92915050565b60006020820190508181036000830152612aeb818461283f565b905092915050565b60006020820190508181036000830152612b0c816128a9565b9050919050565b60006020820190508181036000830152612b2c816128cc565b9050919050565b60006020820190508181036000830152612b4c816128ef565b9050919050565b60006020820190508181036000830152612b6c81612912565b9050919050565b60006020820190508181036000830152612b8c81612935565b9050919050565b60006020820190508181036000830152612bac81612958565b9050919050565b60006020820190508181036000830152612bcc8161299e565b9050919050565b60006020820190508181036000830152612bec816129c1565b9050919050565b60006020820190508181036000830152612c0c816129e4565b9050919050565b6000602082019050612c286000830184612a07565b92915050565b6000612c38612c49565b9050612c448282612e9b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c6e57612c6d612f2a565b5b612c7782612f6d565b9050602081019050919050565b600067ffffffffffffffff821115612c9f57612c9e612f2a565b5b612ca882612f6d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0e82612e1d565b9150612d1983612e1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4e57612d4d612ecc565b5b828201905092915050565b6000612d6482612e1d565b9150612d6f83612e1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da857612da7612ecc565b5b828202905092915050565b6000612dbe82612dfd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e54578082015181840152602081019050612e39565b83811115612e63576000848401525b50505050565b60006002820490506001821680612e8157607f821691505b60208210811415612e9557612e94612efb565b5b50919050565b612ea482612f6d565b810181811067ffffffffffffffff82111715612ec357612ec2612f2a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61314781612db3565b811461315257600080fd5b50565b61315e81612dc5565b811461316957600080fd5b50565b61317581612dd1565b811461318057600080fd5b50565b61318c81612e1d565b811461319757600080fd5b5056fea2646970667358221220dd59a9cc013e876cbec6d654bc8b84982e5b7f6ff5b0f3ebce05ef4a6949b99464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b426f72696e672046726f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024246000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Boring Frog
Arg [1] : _tokenSymbol (string): BF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 426f72696e672046726f67000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4246000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57289:3260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24820:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32205:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31646:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57470:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60203:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21473:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35912:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60286:150;;;;;;;;;;;;;:::i;:::-;;38825:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59927:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57733:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57628:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57351:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27115:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59799:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22657:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;58640:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60097:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57545:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25898:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57384:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58916:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60007:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32763:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57588:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59663:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39608:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59295:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57508:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33228:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59134:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57674:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24820:639;24905:4;25244:10;25229:25;;:11;:25;;;;:102;;;;25321:10;25306:25;;:11;:25;;;;25229:102;:179;;;;25398:10;25383:25;;:11;:25;;;;25229:179;25209:199;;24820:639;;;:::o;25722:100::-;25776:13;25809:5;25802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25722:100;:::o;32205:218::-;32281:7;32306:16;32314:7;32306;:16::i;:::-;32301:64;;32331:34;;;;;;;;;;;;;;32301:64;32385:15;:24;32401:7;32385:24;;;;;;;;;;;:30;;;;;;;;;;;;32378:37;;32205:218;;;:::o;31646:400::-;31727:13;31743:16;31751:7;31743;:16::i;:::-;31727:32;;31799:5;31776:28;;:19;:17;:19::i;:::-;:28;;;31772:175;;31824:44;31841:5;31848:19;:17;:19::i;:::-;31824:16;:44::i;:::-;31819:128;;31896:35;;;;;;;;;;;;;;31819:128;31772:175;31992:2;31959:15;:24;31975:7;31959:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32030:7;32026:2;32010:28;;32019:5;32010:28;;;;;;;;;;;;31716:330;31646:400;;:::o;57470:33::-;;;;:::o;60203:77::-;4806:13;:11;:13::i;:::-;60268:6:::1;60259;;:15;;;;;;;;;;;;;;;;;;60203:77:::0;:::o;21473:323::-;21534:7;21762:15;:13;:15::i;:::-;21747:12;;21731:13;;:28;:46;21724:53;;21473:323;:::o;35912:2817::-;36046:27;36076;36095:7;36076:18;:27::i;:::-;36046:57;;36161:4;36120:45;;36136:19;36120:45;;;36116:86;;36174:28;;;;;;;;;;;;;;36116:86;36216:27;36245:23;36272:35;36299:7;36272:26;:35::i;:::-;36215:92;;;;36407:68;36432:15;36449:4;36455:19;:17;:19::i;:::-;36407:24;:68::i;:::-;36402:180;;36495:43;36512:4;36518:19;:17;:19::i;:::-;36495:16;:43::i;:::-;36490:92;;36547:35;;;;;;;;;;;;;;36490:92;36402:180;36613:1;36599:16;;:2;:16;;;36595:52;;;36624:23;;;;;;;;;;;;;;36595:52;36660:43;36682:4;36688:2;36692:7;36701:1;36660:21;:43::i;:::-;36796:15;36793:160;;;36936:1;36915:19;36908:30;36793:160;37333:18;:24;37352:4;37333:24;;;;;;;;;;;;;;;;37331:26;;;;;;;;;;;;37402:18;:22;37421:2;37402:22;;;;;;;;;;;;;;;;37400:24;;;;;;;;;;;37724:146;37761:2;37810:45;37825:4;37831:2;37835:19;37810:14;:45::i;:::-;17872:8;37782:73;37724:18;:146::i;:::-;37695:17;:26;37713:7;37695:26;;;;;;;;;;;:175;;;;38041:1;17872:8;37990:19;:47;:52;37986:627;;;38063:19;38095:1;38085:7;:11;38063:33;;38252:1;38218:17;:30;38236:11;38218:30;;;;;;;;;;;;:35;38214:384;;;38356:13;;38341:11;:28;38337:242;;38536:19;38503:17;:30;38521:11;38503:30;;;;;;;;;;;:52;;;;38337:242;38214:384;38044:569;37986:627;38660:7;38656:2;38641:27;;38650:4;38641:27;;;;;;;;;;;;38679:42;38700:4;38706:2;38710:7;38719:1;38679:20;:42::i;:::-;36035:2694;;;35912:2817;;;:::o;60286:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;60344:7:::2;60365;:5;:7::i;:::-;60357:21;;60386;60357:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60343:69;;;60427:2;60419:11;;;::::0;::::2;;60336:100;1801:1:::1;2755:7;:22;;;;60286:150::o:0;38825:185::-;38963:39;38980:4;38986:2;38990:7;38963:39;;;;;;;;;;;;:16;:39::i;:::-;38825:185;;;:::o;59927:74::-;4806:13;:11;:13::i;:::-;59990:5:::1;59983:4;:12;;;;59927:74:::0;:::o;57733:25::-;;;;;;;;;;;;;:::o;57628:41::-;;;;:::o;57351:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27115:152::-;27187:7;27230:27;27249:7;27230:18;:27::i;:::-;27207:52;;27115:152;;;:::o;59799:122::-;4806:13;:11;:13::i;:::-;59898:17:::1;59879:16;:36;;;;59799:122:::0;:::o;22657:233::-;22729:7;22770:1;22753:19;;:5;:19;;;22749:60;;;22781:28;;;;;;;;;;;;;;22749:60;16816:13;22827:18;:25;22846:5;22827:25;;;;;;;;;;;;;;;;:55;22820:62;;22657:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;58640:270::-;58718:11;58385:22;;58370:11;:37;;58362:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58494:16;;58479:11;58447:17;:29;58465:10;58447:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:63;;58439:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;58586:9;;58571:11;58555:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58747:6:::1;;;;;;;;;;;58746:7;58738:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58852:11;58820:17;:29;58838:10;58820:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;58788:17;:29;58806:10;58788:29;;;;;;;;;;;;;;;:75;;;;58870:34;58880:10;58892:11;58870:9;:34::i;:::-;58640:270:::0;;:::o;60097:100::-;4806:13;:11;:13::i;:::-;60181:10:::1;60169:9;:22;;;;;;;;;;;;:::i;:::-;;60097:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;57545:38::-;;;;:::o;25898:104::-;25954:13;25987:7;25980:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25898:104;:::o;57384:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58916:210::-;58981:11;57998:1;57984:11;:15;:52;;;;;58018:18;;58003:11;:33;;57984:52;57976:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58107:9;;58092:11;58076:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58068:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59014:11:::1;58246;58239:4;;:18;;;;:::i;:::-;58226:9;:31;;58218:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59043:6:::2;;;;;;;;;;;59042:7;59034:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59086:34;59096:10;59108:11;59086:9;:34::i;:::-;58148:1:::1;58916:210:::0;;:::o;60007:84::-;4806:13;:11;:13::i;:::-;60081:4:::1;60071:7;:14;;;;;;;;;;;;:::i;:::-;;60007:84:::0;:::o;32763:308::-;32874:19;:17;:19::i;:::-;32862:31;;:8;:31;;;32858:61;;;32902:17;;;;;;;;;;;;;;32858:61;32984:8;32932:18;:39;32951:19;:17;:19::i;:::-;32932:39;;;;;;;;;;;;;;;:49;32972:8;32932:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33044:8;33008:55;;33023:19;:17;:19::i;:::-;33008:55;;;33054:8;33008:55;;;;;;:::i;:::-;;;;;;;;32763:308;;:::o;57588:35::-;;;;:::o;59663:130::-;4806:13;:11;:13::i;:::-;59768:19:::1;59747:18;:40;;;;59663:130:::0;:::o;39608:399::-;39775:31;39788:4;39794:2;39798:7;39775:12;:31::i;:::-;39839:1;39821:2;:14;;;:19;39817:183;;39860:56;39891:4;39897:2;39901:7;39910:5;39860:30;:56::i;:::-;39855:145;;39944:40;;;;;;;;;;;;;;39855:145;39817:183;39608:399;;;;:::o;59295:362::-;59369:13;59399:17;59407:8;59399:7;:17::i;:::-;59391:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59477:28;59508:10;:8;:10::i;:::-;59477:41;;59563:1;59538:14;59532:28;:32;:119;;;;;;;;;;;;;;;;;59600:14;59616:19;59626:8;59616:9;:19::i;:::-;59583:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59532:119;59525:126;;;59295:362;;;:::o;57508:32::-;;;;:::o;33228:164::-;33325:4;33349:18;:25;33368:5;33349:25;;;;;;;;;;;;;;;:35;33375:8;33349:35;;;;;;;;;;;;;;;;;;;;;;;;;33342:42;;33228:164;;;;:::o;59134:155::-;59220:11;57998:1;57984:11;:15;:52;;;;;58018:18;;58003:11;:33;;57984:52;57976:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58107:9;;58092:11;58076:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58068:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59250:33:::2;59260:9;59271:11;59250:9;:33::i;:::-;59134: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;57674:52::-;;;;;;;;;;;;;;;;;:::o;33650:282::-;33715:4;33771:7;33752:15;:13;:15::i;:::-;:26;;:66;;;;;33805:13;;33795:7;:23;33752:66;:153;;;;;33904:1;17592:8;33856:17;:26;33874:7;33856:26;;;;;;;;;;;;:44;:49;33752:153;33732:173;;33650:282;;;:::o;55416:105::-;55476:7;55503:10;55496:17;;55416:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20989:92::-;21045:7;20989:92;:::o;28270:1275::-;28337:7;28357:12;28372:7;28357:22;;28440:4;28421:15;:13;:15::i;:::-;:23;28417:1061;;28474:13;;28467:4;:20;28463:1015;;;28512:14;28529:17;:23;28547:4;28529:23;;;;;;;;;;;;28512:40;;28646:1;17592:8;28618:6;:24;:29;28614:845;;;29283:113;29300:1;29290:6;:11;29283:113;;;29343:17;:25;29361:6;;;;;;;29343:25;;;;;;;;;;;;29334:34;;29283:113;;;29429:6;29422:13;;;;;;28614:845;28489:989;28463:1015;28417:1061;29506:31;;;;;;;;;;;;;;28270:1275;;;;:::o;34813:479::-;34915:27;34944:23;34985:38;35026:15;:24;35042:7;35026:24;;;;;;;;;;;34985:65;;35197:18;35174:41;;35254:19;35248:26;35229:45;;35159:126;34813:479;;;:::o;34041:659::-;34190:11;34355:16;34348:5;34344:28;34335:37;;34515:16;34504:9;34500:32;34487:45;;34665:15;34654:9;34651:30;34643:5;34632:9;34629:20;34626:56;34616:66;;34041:659;;;;;:::o;40669:159::-;;;;;:::o;54725:311::-;54860:7;54880:16;17996:3;54906:19;:41;;54880:68;;17996:3;54974:31;54985:4;54991:2;54995:9;54974:10;:31::i;:::-;54966:40;;:62;;54959:69;;;54725:311;;;;;:::o;30093:450::-;30173:14;30341:16;30334:5;30330:28;30321:37;;30518:5;30504:11;30479:23;30475:41;30472:52;30465:5;30462:63;30452:73;;30093:450;;;;:::o;41493: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;49248:112::-;49325:27;49335:2;49339:8;49325:27;;;;;;;;;;;;:9;:27::i;:::-;49248:112;;:::o;42091:716::-;42254:4;42300:2;42275:45;;;42321:19;:17;:19::i;:::-;42342:4;42348:7;42357:5;42275:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42271:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42575:1;42558:6;:13;:18;42554:235;;;42604:40;;;;;;;;;;;;;;42554:235;42747:6;42741:13;42732:6;42728:2;42724:15;42717:38;42271:529;42444:54;;;42434:64;;;:6;:64;;;;42427:71;;;42091:716;;;;;;:::o;60442:104::-;60502:13;60531:9;60524:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60442:104;:::o;55623:1581::-;55688:17;56113:4;56106;56100:11;56096:22;56089:29;;56205:3;56199:4;56192:17;56311:3;56550:5;56532:428;56558:1;56532:428;;;56598:1;56593:3;56589:11;56582:18;;56769:2;56763:4;56759:13;56755:2;56751:22;56746:3;56738:36;56863:2;56857:4;56853:13;56845:21;;56930:4;56920:25;;56938:5;;56920:25;56532:428;;;56536:21;56999:3;56994;56990:13;57114:4;57109:3;57105:14;57098:21;;57179:6;57174:3;57167:19;55727:1470;;55623:1581;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54426:147::-;54563:6;54426:147;;;;;:::o;48475:689::-;48606:19;48612:2;48616:8;48606:5;:19::i;:::-;48685:1;48667:2;:14;;;:19;48663:483;;48707:11;48721:13;;48707:27;;48753:13;48775:8;48769:3;:14;48753:30;;48802:233;48833:62;48872:1;48876:2;48880:7;;;;;;48889:5;48833:30;:62::i;:::-;48828:167;;48931:40;;;;;;;;;;;;;;48828:167;49030:3;49022:5;:11;48802:233;;49117:3;49100:13;;:20;49096:34;;49122:8;;;49096:34;48688:458;;48663:483;48475:689;;;:::o;43269:2454::-;43342:20;43365:13;;43342:36;;43405:1;43393:8;:13;43389:44;;;43415:18;;;;;;;;;;;;;;43389:44;43446:61;43476:1;43480:2;43484:12;43498:8;43446:21;:61::i;:::-;43990:1;16954:2;43960:1;:26;;43959:32;43947:8;:45;43921:18;:22;43940:2;43921:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44269:139;44306:2;44360:33;44383:1;44387:2;44391:1;44360:14;:33::i;:::-;44327:30;44348:8;44327:20;:30::i;:::-;:66;44269:18;:139::i;:::-;44235:17;:31;44253:12;44235:31;;;;;;;;;;;:173;;;;44425:16;44456:11;44485:8;44470:12;:23;44456:37;;44740:16;44736:2;44732:25;44720:37;;45112:12;45072:8;45031:1;44969:25;44910:1;44849;44822:335;45237:1;45223:12;45219:20;45177:346;45278:3;45269:7;45266:16;45177:346;;45496:7;45486:8;45483:1;45456:25;45453:1;45450;45445:59;45331:1;45322:7;45318:15;45307:26;;45177:346;;;45181:77;45568:1;45556:8;:13;45552:45;;;45578:19;;;;;;;;;;;;;;45552:45;45630:3;45614:13;:19;;;;43695:1950;;45655:60;45684:1;45688:2;45692:12;45706:8;45655:20;:60::i;:::-;43331:2392;43269:2454;;:::o;30645:324::-;30715:14;30948:1;30938:8;30935:15;30909:24;30905:46;30895:56;;30645: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:398::-;11716:3;11737:83;11818:1;11813:3;11737:83;:::i;:::-;11730:90;;11829:93;11918:3;11829:93;:::i;:::-;11947:1;11942:3;11938:11;11931:18;;11557:398;;;:::o;11961:366::-;12103:3;12124:67;12188:2;12183:3;12124:67;:::i;:::-;12117:74;;12200:93;12289:3;12200:93;:::i;:::-;12318:2;12313:3;12309:12;12302:19;;11961:366;;;:::o;12333:::-;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:118::-;13164:24;13182:5;13164:24;:::i;:::-;13159:3;13152:37;13077:118;;:::o;13201:435::-;13381:3;13403:95;13494:3;13485:6;13403:95;:::i;:::-;13396:102;;13515:95;13606:3;13597:6;13515:95;:::i;:::-;13508:102;;13627:3;13620:10;;13201:435;;;;;:::o;13642:379::-;13826:3;13848:147;13991:3;13848:147;:::i;:::-;13841:154;;14012:3;14005:10;;13642:379;;;:::o;14027:222::-;14120:4;14158:2;14147:9;14143:18;14135:26;;14171:71;14239:1;14228:9;14224:17;14215:6;14171:71;:::i;:::-;14027:222;;;;:::o;14255:640::-;14450:4;14488:3;14477:9;14473:19;14465:27;;14502:71;14570:1;14559:9;14555:17;14546:6;14502:71;:::i;:::-;14583:72;14651:2;14640:9;14636:18;14627:6;14583:72;:::i;:::-;14665;14733:2;14722:9;14718:18;14709:6;14665:72;:::i;:::-;14784:9;14778:4;14774:20;14769:2;14758:9;14754:18;14747:48;14812:76;14883:4;14874:6;14812:76;:::i;:::-;14804:84;;14255:640;;;;;;;:::o;14901:210::-;14988:4;15026:2;15015:9;15011:18;15003:26;;15039:65;15101:1;15090:9;15086:17;15077:6;15039:65;:::i;:::-;14901:210;;;;:::o;15117:313::-;15230:4;15268:2;15257:9;15253:18;15245:26;;15317:9;15311:4;15307:20;15303:1;15292:9;15288:17;15281:47;15345:78;15418:4;15409:6;15345:78;:::i;:::-;15337:86;;15117:313;;;;:::o;15436:419::-;15602:4;15640:2;15629:9;15625:18;15617:26;;15689:9;15683:4;15679:20;15675:1;15664:9;15660:17;15653:47;15717:131;15843:4;15717:131;:::i;:::-;15709:139;;15436:419;;;:::o;15861:::-;16027:4;16065:2;16054:9;16050:18;16042:26;;16114:9;16108:4;16104:20;16100:1;16089:9;16085:17;16078:47;16142:131;16268:4;16142:131;:::i;:::-;16134:139;;15861:419;;;:::o;16286:::-;16452:4;16490:2;16479:9;16475:18;16467:26;;16539:9;16533:4;16529:20;16525:1;16514:9;16510:17;16503:47;16567:131;16693:4;16567:131;:::i;:::-;16559:139;;16286:419;;;:::o;16711:::-;16877:4;16915:2;16904:9;16900:18;16892:26;;16964:9;16958:4;16954:20;16950:1;16939:9;16935:17;16928:47;16992:131;17118:4;16992:131;:::i;:::-;16984:139;;16711:419;;;:::o;17136:::-;17302:4;17340:2;17329:9;17325:18;17317:26;;17389:9;17383:4;17379:20;17375:1;17364:9;17360:17;17353:47;17417:131;17543:4;17417:131;:::i;:::-;17409:139;;17136:419;;;:::o;17561:::-;17727:4;17765:2;17754:9;17750:18;17742:26;;17814:9;17808:4;17804:20;17800:1;17789:9;17785:17;17778:47;17842:131;17968:4;17842:131;:::i;:::-;17834:139;;17561:419;;;:::o;17986:::-;18152:4;18190:2;18179:9;18175:18;18167:26;;18239:9;18233:4;18229:20;18225:1;18214:9;18210:17;18203:47;18267:131;18393:4;18267:131;:::i;:::-;18259:139;;17986:419;;;:::o;18411:::-;18577:4;18615:2;18604:9;18600:18;18592:26;;18664:9;18658:4;18654:20;18650:1;18639:9;18635:17;18628:47;18692:131;18818:4;18692:131;:::i;:::-;18684:139;;18411:419;;;:::o;18836:::-;19002:4;19040:2;19029:9;19025:18;19017:26;;19089:9;19083:4;19079:20;19075:1;19064:9;19060:17;19053:47;19117:131;19243:4;19117:131;:::i;:::-;19109:139;;18836:419;;;:::o;19261:222::-;19354:4;19392:2;19381:9;19377:18;19369:26;;19405:71;19473:1;19462:9;19458:17;19449:6;19405:71;:::i;:::-;19261:222;;;;:::o;19489:129::-;19523:6;19550:20;;:::i;:::-;19540:30;;19579:33;19607:4;19599:6;19579:33;:::i;:::-;19489:129;;;:::o;19624:75::-;19657:6;19690:2;19684:9;19674:19;;19624:75;:::o;19705:307::-;19766:4;19856:18;19848:6;19845:30;19842:56;;;19878:18;;:::i;:::-;19842:56;19916:29;19938:6;19916:29;:::i;:::-;19908:37;;20000:4;19994;19990:15;19982:23;;19705:307;;;:::o;20018:308::-;20080:4;20170:18;20162:6;20159:30;20156:56;;;20192:18;;:::i;:::-;20156:56;20230:29;20252:6;20230:29;:::i;:::-;20222:37;;20314:4;20308;20304:15;20296:23;;20018:308;;;:::o;20332:98::-;20383:6;20417:5;20411:12;20401:22;;20332:98;;;:::o;20436:99::-;20488:6;20522:5;20516:12;20506:22;;20436:99;;;:::o;20541:168::-;20624:11;20658:6;20653:3;20646:19;20698:4;20693:3;20689:14;20674:29;;20541:168;;;;:::o;20715:147::-;20816:11;20853:3;20838:18;;20715:147;;;;:::o;20868:169::-;20952:11;20986:6;20981:3;20974:19;21026:4;21021:3;21017:14;21002:29;;20868:169;;;;:::o;21043:148::-;21145:11;21182:3;21167:18;;21043:148;;;;:::o;21197:305::-;21237:3;21256:20;21274:1;21256:20;:::i;:::-;21251:25;;21290:20;21308:1;21290:20;:::i;:::-;21285:25;;21444:1;21376:66;21372:74;21369:1;21366:81;21363:107;;;21450:18;;:::i;:::-;21363:107;21494:1;21491;21487:9;21480:16;;21197:305;;;;:::o;21508:348::-;21548:7;21571:20;21589:1;21571:20;:::i;:::-;21566:25;;21605:20;21623:1;21605:20;:::i;:::-;21600:25;;21793:1;21725:66;21721:74;21718:1;21715:81;21710:1;21703:9;21696:17;21692:105;21689:131;;;21800:18;;:::i;:::-;21689:131;21848:1;21845;21841:9;21830:20;;21508:348;;;;:::o;21862:96::-;21899:7;21928:24;21946:5;21928:24;:::i;:::-;21917:35;;21862:96;;;:::o;21964:90::-;21998:7;22041:5;22034:13;22027:21;22016:32;;21964:90;;;:::o;22060:149::-;22096:7;22136:66;22129:5;22125:78;22114:89;;22060:149;;;:::o;22215:126::-;22252:7;22292:42;22285:5;22281:54;22270:65;;22215:126;;;:::o;22347:77::-;22384:7;22413:5;22402:16;;22347:77;;;:::o;22430:154::-;22514:6;22509:3;22504;22491:30;22576:1;22567:6;22562:3;22558:16;22551:27;22430:154;;;:::o;22590:307::-;22658:1;22668:113;22682:6;22679:1;22676:13;22668:113;;;22767:1;22762:3;22758:11;22752:18;22748:1;22743:3;22739:11;22732:39;22704:2;22701:1;22697:10;22692:15;;22668:113;;;22799:6;22796:1;22793:13;22790:101;;;22879:1;22870:6;22865:3;22861:16;22854:27;22790:101;22639:258;22590:307;;;:::o;22903:320::-;22947:6;22984:1;22978:4;22974:12;22964:22;;23031:1;23025:4;23021:12;23052:18;23042:81;;23108:4;23100:6;23096:17;23086:27;;23042:81;23170:2;23162:6;23159:14;23139:18;23136:38;23133:84;;;23189:18;;:::i;:::-;23133:84;22954:269;22903:320;;;:::o;23229:281::-;23312:27;23334:4;23312:27;:::i;:::-;23304:6;23300:40;23442:6;23430:10;23427:22;23406:18;23394:10;23391:34;23388:62;23385:88;;;23453:18;;:::i;:::-;23385:88;23493:10;23489:2;23482:22;23272:238;23229:281;;:::o;23516:180::-;23564:77;23561:1;23554:88;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23702:180;23750:77;23747:1;23740:88;23847:4;23844:1;23837:15;23871:4;23868:1;23861:15;23888:180;23936:77;23933:1;23926:88;24033:4;24030:1;24023:15;24057:4;24054:1;24047:15;24074:117;24183:1;24180;24173:12;24197:117;24306:1;24303;24296:12;24320:117;24429:1;24426;24419:12;24443:117;24552:1;24549;24542:12;24566:102;24607:6;24658:2;24654:7;24649:2;24642:5;24638:14;24634:28;24624:38;;24566:102;;;:::o;24674:225::-;24814:34;24810:1;24802:6;24798:14;24791:58;24883:8;24878:2;24870:6;24866:15;24859:33;24674:225;:::o;24905:170::-;25045:22;25041:1;25033:6;25029:14;25022:46;24905:170;:::o;25081:182::-;25221:34;25217:1;25209:6;25205:14;25198:58;25081:182;:::o;25269:173::-;25409:25;25405:1;25397:6;25393:14;25386:49;25269:173;:::o;25448:234::-;25588:34;25584:1;25576:6;25572:14;25565:58;25657:17;25652:2;25644:6;25640:15;25633:42;25448:234;:::o;25688:175::-;25828:27;25824:1;25816:6;25812:14;25805:51;25688:175;:::o;25869:114::-;;:::o;25989:170::-;26129:22;26125:1;26117:6;26113:14;26106:46;25989:170;:::o;26165:181::-;26305:33;26301:1;26293:6;26289:14;26282:57;26165:181;:::o;26352:169::-;26492:21;26488:1;26480:6;26476:14;26469:45;26352:169;:::o;26527:122::-;26600:24;26618:5;26600:24;:::i;:::-;26593:5;26590:35;26580:63;;26639:1;26636;26629:12;26580:63;26527:122;:::o;26655:116::-;26725:21;26740:5;26725:21;:::i;:::-;26718:5;26715:32;26705:60;;26761:1;26758;26751:12;26705:60;26655:116;:::o;26777:120::-;26849:23;26866:5;26849:23;:::i;:::-;26842:5;26839:34;26829:62;;26887:1;26884;26877:12;26829:62;26777:120;:::o;26903:122::-;26976:24;26994:5;26976:24;:::i;:::-;26969:5;26966:35;26956:63;;27015:1;27012;27005:12;26956:63;26903:122;:::o

Swarm Source

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