ETH Price: $3,434.85 (+7.60%)
Gas: 11 Gwei

Token

Strange Cats (SC)
 

Overview

Max Total Supply

4,444 SC

Holders

1,092

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 SC
0x249b70fF021fC4ed665f42b329E307F838a795fa
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:
StrangeCats

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-27
*/

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

// File: contracts/StrangeCats.sol



pragma solidity 0.8.13;


contract StrangeCats is DefaultOperatorFilterer, ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';
  string public hiddenUri = 'https://aquamarine-naval-barracuda-611.mypinata.cloud/ipfs/QmPpTjdfKoR7yKnjWs2yW13hsbpWhYAm3aMCvhe8QMAjNr/hidden';

  uint256 public cost = 0.003 ether;
  uint256 public maxSupply = 4444;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxMintAmountPerWallet = 5;
  mapping(address => uint256) public alreadyMinted;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {}

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

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

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

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, 'The minter is another contract');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(alreadyMinted[msg.sender] + _mintAmount <= maxMintAmountPerWallet, 'Max supply exceeded!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(msg.value >= cost * (_mintAmount - 1), 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function teamMint(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _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)))
        : hiddenUri;
  }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"alreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000424565b506040518060a001604052806070815260200162003d9160709139600b90805190602001906200005d92919062000424565b50660aa87bee538000600c5561115c600d556005600e556005600f556001601160006101000a81548160ff021916908315150217905550348015620000a157600080fd5b5060405162003e0138038062003e018339818101604052810190620000c7919062000671565b8181733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d55780156200019b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001619291906200073b565b600060405180830381600087803b1580156200017c57600080fd5b505af115801562000191573d6000803e3d6000fd5b50505050620002d4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000255576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021b9291906200073b565b600060405180830381600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b50505050620002d3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029e919062000768565b600060405180830381600087803b158015620002b957600080fd5b505af1158015620002ce573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620002ef92919062000424565b5080600390805190602001906200030892919062000424565b50620003196200035160201b60201c565b600081905550505062000341620003356200035660201b60201c565b6200035e60201b60201c565b60016009819055505050620007e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200043290620007b4565b90600052602060002090601f016020900481019282620004565760008555620004a2565b82601f106200047157805160ff1916838001178555620004a2565b82800160010185558215620004a2579182015b82811115620004a157825182559160200191906001019062000484565b5b509050620004b19190620004b5565b5090565b5b80821115620004d0576000816000905550600101620004b6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200053d82620004f2565b810181811067ffffffffffffffff821117156200055f576200055e62000503565b5b80604052505050565b600062000574620004d4565b905062000582828262000532565b919050565b600067ffffffffffffffff821115620005a557620005a462000503565b5b620005b082620004f2565b9050602081019050919050565b60005b83811015620005dd578082015181840152602081019050620005c0565b83811115620005ed576000848401525b50505050565b60006200060a620006048462000587565b62000568565b905082815260208101848484011115620006295762000628620004ed565b5b62000636848285620005bd565b509392505050565b600082601f830112620006565762000655620004e8565b5b815162000668848260208601620005f3565b91505092915050565b600080604083850312156200068b576200068a620004de565b5b600083015167ffffffffffffffff811115620006ac57620006ab620004e3565b5b620006ba858286016200063e565b925050602083015167ffffffffffffffff811115620006de57620006dd620004e3565b5b620006ec858286016200063e565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200072382620006f6565b9050919050565b620007358162000716565b82525050565b60006040820190506200075260008301856200072a565b6200076160208301846200072a565b9392505050565b60006020820190506200077f60008301846200072a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007cd57607f821691505b602082108103620007e357620007e262000785565b5b50919050565b61359880620007f96000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063c87b56dd11610064578063c87b56dd14610643578063d5abeb0114610680578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063b88d4fde146105a8578063bc951b91146105c4578063bfa457bc146105ef578063c5be875014610618576101d8565b806394354fd0116100d157806394354fd01461050d57806395d89b4114610538578063a0712d6814610563578063a22cb4651461057f576101d8565b806370a0823114610465578063715018a6146104a25780637ec4a659146104b95780638da5cb5b146104e2576101d8565b806318160ddd1161017a57806344a0d68a1161014957806344a0d68a146103a95780635c975abb146103d257806362b99ad4146103fd5780636352211e14610428576101d8565b806318160ddd1461032f57806323b872dd1461035a5780633ccfd60b1461037657806342842e0e1461038d576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630a398b881461029e57806313faede6146102db57806316c38b3c14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612735565b610711565b604051610211919061277d565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c9190612831565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612889565b610835565b60405161027991906128f7565b60405180910390f35b61029c6004803603810190610297919061293e565b6108b4565b005b3480156102aa57600080fd5b506102c560048036038101906102c0919061297e565b6109f8565b6040516102d291906129ba565b60405180910390f35b3480156102e757600080fd5b506102f0610a10565b6040516102fd91906129ba565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a01565b610a16565b005b34801561033b57600080fd5b50610344610a3b565b60405161035191906129ba565b60405180910390f35b610374600480360381019061036f9190612a2e565b610a52565b005b34801561038257600080fd5b5061038b610c34565b005b6103a760048036038101906103a29190612a2e565b610ccc565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612889565b610eae565b005b3480156103de57600080fd5b506103e7610ec0565b6040516103f4919061277d565b60405180910390f35b34801561040957600080fd5b50610412610ed3565b60405161041f9190612831565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612889565b610f61565b60405161045c91906128f7565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061297e565b610f73565b60405161049991906129ba565b60405180910390f35b3480156104ae57600080fd5b506104b761102b565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bb6565b61103f565b005b3480156104ee57600080fd5b506104f7611061565b60405161050491906128f7565b60405180910390f35b34801561051957600080fd5b5061052261108b565b60405161052f91906129ba565b60405180910390f35b34801561054457600080fd5b5061054d611091565b60405161055a9190612831565b60405180910390f35b61057d60048036038101906105789190612889565b611123565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612bff565b6113d9565b005b6105c260048036038101906105bd9190612ce0565b6114e4565b005b3480156105d057600080fd5b506105d96116c9565b6040516105e691906129ba565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612d63565b6116cf565b005b34801561062457600080fd5b5061062d61173c565b60405161063a9190612831565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612889565b6117ca565b6040516106779190612831565b60405180910390f35b34801561068c57600080fd5b506106956118ec565b6040516106a291906129ba565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612da3565b6118f2565b6040516106df919061277d565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061297e565b611986565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612e12565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611a09565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610f61565b90508073ffffffffffffffffffffffffffffffffffffffff166108e0611a68565b73ffffffffffffffffffffffffffffffffffffffff16146109435761090c81610907611a68565b6118f2565b610942576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60106020528060005260406000206000915090505481565b600c5481565b610a1e611a70565b80601160006101000a81548160ff02191690831515021790555050565b6000610a45611aee565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c22573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac457610abf848484611af3565b610c2e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b0d929190612e43565b602060405180830381865afa158015610b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4e9190612e81565b8015610be057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b9e929190612e43565b602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf9190612e81565b5b610c2157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c1891906128f7565b60405180910390fd5b5b610c2d848484611af3565b5b50505050565b610c3c611a70565b610c44611e15565b6000610c4e611061565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c7190612edf565b60006040518083038185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50610cca611e64565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3e57610d39848484611e6e565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d87929190612e43565b602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc89190612e81565b8015610e5a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e18929190612e43565b602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190612e81565b5b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e9291906128f7565b60405180910390fd5b5b610ea7848484611e6e565b5b50505050565b610eb6611a70565b80600c8190555050565b601160009054906101000a900460ff1681565b600a8054610ee090612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90612e12565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b6000610f6c82611e8e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611033611a70565b61103d6000611f5a565b565b611047611a70565b80600a908051906020019061105d929190612626565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546110a090612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546110cc90612e12565b80156111195780601f106110ee57610100808354040283529160200191611119565b820191906000526020600020905b8154815290600101906020018083116110fc57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990612f40565b60405180910390fd5b6000811180156111a45750600e548111155b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90612fac565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112319190612ffb565b1115611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061309d565b60405180910390fd5b600d548161127e610a3b565b6112889190612ffb565b11156112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c09061309d565b60405180910390fd5b6001816112d691906130bd565b600c546112e391906130f1565b341015611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613197565b60405180910390fd5b601160009054906101000a900460ff1615611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90613203565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113c49190612ffb565b925050819055506113d53383612020565b5050565b80600760006113e6611a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611493611a68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d8919061277d565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116b5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611557576115528585858561203e565b6116c2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115a0929190612e43565b602060405180830381865afa1580156115bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e19190612e81565b801561167357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611631929190612e43565b602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612e81565b5b6116b457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ab91906128f7565b60405180910390fd5b5b6116c18585858561203e565b5b5050505050565b600f5481565b6116d7611a70565b600d54826116e3610a3b565b6116ed9190612ffb565b111561172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061309d565b60405180910390fd5b6117388183612020565b5050565b600b805461174990612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461177590612e12565b80156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b505050505081565b60606117d582611a09565b611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90613295565b60405180910390fd5b600061181e6120b1565b905060008151116118b957600b805461183690612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461186290612e12565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b50505050506118e4565b806118c384612143565b6040516020016118d49291906132f1565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198e611a70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613387565b60405180910390fd5b611a0681611f5a565b50565b600081611a14611aee565b11158015611a23575060005482105b8015611a61575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611a78612193565b73ffffffffffffffffffffffffffffffffffffffff16611a96611061565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae3906133f3565b60405180910390fd5b565b600090565b6000611afe82611e8e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b718461219b565b91509150611b878187611b82611a68565b6121c2565b611bd357611b9c86611b97611a68565b6118f2565b611bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c468686866001612206565b8015611c5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d1f85611cfb88888761220c565b7c020000000000000000000000000000000000000000000000000000000017612234565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611da55760006001850190506000600460008381526020019081526020016000205403611da3576000548114611da2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0d868686600161225f565b505050505050565b600260095403611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e519061345f565b60405180910390fd5b6002600981905550565b6001600981905550565b611e89838383604051806020016040528060008152506114e4565b505050565b60008082905080611e9d611aee565b11611f2357600054811015611f225760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f20575b60008103611f16576004600083600190039350838152602001908152602001600020549050611eec565b8092505050611f55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203a828260405180602001604052806000815250612265565b5050565b612049848484610a52565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ab5761207484848484612302565b6120aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120c090612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90612e12565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561217e57600184039350600a81066030018453600a810490508061215c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612223868684612452565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61226f838361245b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122fd57600080549050600083820390505b6122af6000868380600101945086612302565b6122e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061229c5781600054146122fa57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612328611a68565b8786866040518563ffffffff1660e01b815260040161234a94939291906134d4565b6020604051808303816000875af192505050801561238657506040513d601f19601f820116820180604052508101906123839190613535565b60015b6123ff573d80600081146123b6576040519150601f19603f3d011682016040523d82523d6000602084013e6123bb565b606091505b5060008151036123f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361249b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124a86000848385612206565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061251f83612510600086600061220c565b61251985612616565b17612234565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612585565b50600082036125fb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612611600084838561225f565b505050565b60006001821460e11b9050919050565b82805461263290612e12565b90600052602060002090601f016020900481019282612654576000855561269b565b82601f1061266d57805160ff191683800117855561269b565b8280016001018555821561269b579182015b8281111561269a57825182559160200191906001019061267f565b5b5090506126a891906126ac565b5090565b5b808211156126c55760008160009055506001016126ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b838111156127e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061280382612798565b61280d81856127a3565b935061281d8185602086016127b4565b612826816127e7565b840191505092915050565b6000602082019050818103600083015261284b81846127f8565b905092915050565b6000819050919050565b61286681612853565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6126d3565b5b60006128ad84828501612874565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e1826128b6565b9050919050565b6128f1816128d6565b82525050565b600060208201905061290c60008301846128e8565b92915050565b61291b816128d6565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b60008060408385031215612955576129546126d3565b5b600061296385828601612929565b925050602061297485828601612874565b9150509250929050565b600060208284031215612994576129936126d3565b5b60006129a284828501612929565b91505092915050565b6129b481612853565b82525050565b60006020820190506129cf60008301846129ab565b92915050565b6129de81612762565b81146129e957600080fd5b50565b6000813590506129fb816129d5565b92915050565b600060208284031215612a1757612a166126d3565b5b6000612a25848285016129ec565b91505092915050565b600080600060608486031215612a4757612a466126d3565b5b6000612a5586828701612929565b9350506020612a6686828701612929565b9250506040612a7786828701612874565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac3826127e7565b810181811067ffffffffffffffff82111715612ae257612ae1612a8b565b5b80604052505050565b6000612af56126c9565b9050612b018282612aba565b919050565b600067ffffffffffffffff821115612b2157612b20612a8b565b5b612b2a826127e7565b9050602081019050919050565b82818337600083830152505050565b6000612b59612b5484612b06565b612aeb565b905082815260208101848484011115612b7557612b74612a86565b5b612b80848285612b37565b509392505050565b600082601f830112612b9d57612b9c612a81565b5b8135612bad848260208601612b46565b91505092915050565b600060208284031215612bcc57612bcb6126d3565b5b600082013567ffffffffffffffff811115612bea57612be96126d8565b5b612bf684828501612b88565b91505092915050565b60008060408385031215612c1657612c156126d3565b5b6000612c2485828601612929565b9250506020612c35858286016129ec565b9150509250929050565b600067ffffffffffffffff821115612c5a57612c59612a8b565b5b612c63826127e7565b9050602081019050919050565b6000612c83612c7e84612c3f565b612aeb565b905082815260208101848484011115612c9f57612c9e612a86565b5b612caa848285612b37565b509392505050565b600082601f830112612cc757612cc6612a81565b5b8135612cd7848260208601612c70565b91505092915050565b60008060008060808587031215612cfa57612cf96126d3565b5b6000612d0887828801612929565b9450506020612d1987828801612929565b9350506040612d2a87828801612874565b925050606085013567ffffffffffffffff811115612d4b57612d4a6126d8565b5b612d5787828801612cb2565b91505092959194509250565b60008060408385031215612d7a57612d796126d3565b5b6000612d8885828601612874565b9250506020612d9985828601612929565b9150509250929050565b60008060408385031215612dba57612db96126d3565b5b6000612dc885828601612929565b9250506020612dd985828601612929565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2a57607f821691505b602082108103612e3d57612e3c612de3565b5b50919050565b6000604082019050612e5860008301856128e8565b612e6560208301846128e8565b9392505050565b600081519050612e7b816129d5565b92915050565b600060208284031215612e9757612e966126d3565b5b6000612ea584828501612e6c565b91505092915050565b600081905092915050565b50565b6000612ec9600083612eae565b9150612ed482612eb9565b600082019050919050565b6000612eea82612ebc565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612f2a601e836127a3565b9150612f3582612ef4565b602082019050919050565b60006020820190508181036000830152612f5981612f1d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f966014836127a3565b9150612fa182612f60565b602082019050919050565b60006020820190508181036000830152612fc581612f89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300682612853565b915061301183612853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304657613045612fcc565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130876014836127a3565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b60006130c882612853565b91506130d383612853565b9250828210156130e6576130e5612fcc565b5b828203905092915050565b60006130fc82612853565b915061310783612853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131405761313f612fcc565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006131816013836127a3565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006131ed6017836127a3565b91506131f8826131b7565b602082019050919050565b6000602082019050818103600083015261321c816131e0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061327f602f836127a3565b915061328a82613223565b604082019050919050565b600060208201905081810360008301526132ae81613272565b9050919050565b600081905092915050565b60006132cb82612798565b6132d581856132b5565b93506132e58185602086016127b4565b80840191505092915050565b60006132fd82856132c0565b915061330982846132c0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133716026836127a3565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133dd6020836127a3565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613449601f836127a3565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134a68261347f565b6134b0818561348a565b93506134c08185602086016127b4565b6134c9816127e7565b840191505092915050565b60006080820190506134e960008301876128e8565b6134f660208301866128e8565b61350360408301856129ab565b8181036060830152613515818461349b565b905095945050505050565b60008151905061352f81612709565b92915050565b60006020828403121561354b5761354a6126d3565b5b600061355984828501613520565b9150509291505056fea26469706673582212206d9dc80547ac388369e8a0f43f47bf3f39b99400f5f5123c25d551cfa55b9ec864736f6c634300080d003368747470733a2f2f617175616d6172696e652d6e6176616c2d6261727261637564612d3631312e6d7970696e6174612e636c6f75642f697066732f516d5070546a64664b6f5237794b6e6a5773327957313368736270576859416d33614d4376686538514d416a4e722f68696464656e00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c537472616e67652043617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025343000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063c87b56dd11610064578063c87b56dd14610643578063d5abeb0114610680578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063b88d4fde146105a8578063bc951b91146105c4578063bfa457bc146105ef578063c5be875014610618576101d8565b806394354fd0116100d157806394354fd01461050d57806395d89b4114610538578063a0712d6814610563578063a22cb4651461057f576101d8565b806370a0823114610465578063715018a6146104a25780637ec4a659146104b95780638da5cb5b146104e2576101d8565b806318160ddd1161017a57806344a0d68a1161014957806344a0d68a146103a95780635c975abb146103d257806362b99ad4146103fd5780636352211e14610428576101d8565b806318160ddd1461032f57806323b872dd1461035a5780633ccfd60b1461037657806342842e0e1461038d576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630a398b881461029e57806313faede6146102db57806316c38b3c14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612735565b610711565b604051610211919061277d565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c9190612831565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612889565b610835565b60405161027991906128f7565b60405180910390f35b61029c6004803603810190610297919061293e565b6108b4565b005b3480156102aa57600080fd5b506102c560048036038101906102c0919061297e565b6109f8565b6040516102d291906129ba565b60405180910390f35b3480156102e757600080fd5b506102f0610a10565b6040516102fd91906129ba565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a01565b610a16565b005b34801561033b57600080fd5b50610344610a3b565b60405161035191906129ba565b60405180910390f35b610374600480360381019061036f9190612a2e565b610a52565b005b34801561038257600080fd5b5061038b610c34565b005b6103a760048036038101906103a29190612a2e565b610ccc565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612889565b610eae565b005b3480156103de57600080fd5b506103e7610ec0565b6040516103f4919061277d565b60405180910390f35b34801561040957600080fd5b50610412610ed3565b60405161041f9190612831565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612889565b610f61565b60405161045c91906128f7565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061297e565b610f73565b60405161049991906129ba565b60405180910390f35b3480156104ae57600080fd5b506104b761102b565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bb6565b61103f565b005b3480156104ee57600080fd5b506104f7611061565b60405161050491906128f7565b60405180910390f35b34801561051957600080fd5b5061052261108b565b60405161052f91906129ba565b60405180910390f35b34801561054457600080fd5b5061054d611091565b60405161055a9190612831565b60405180910390f35b61057d60048036038101906105789190612889565b611123565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612bff565b6113d9565b005b6105c260048036038101906105bd9190612ce0565b6114e4565b005b3480156105d057600080fd5b506105d96116c9565b6040516105e691906129ba565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612d63565b6116cf565b005b34801561062457600080fd5b5061062d61173c565b60405161063a9190612831565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612889565b6117ca565b6040516106779190612831565b60405180910390f35b34801561068c57600080fd5b506106956118ec565b6040516106a291906129ba565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612da3565b6118f2565b6040516106df919061277d565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061297e565b611986565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612e12565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611a09565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610f61565b90508073ffffffffffffffffffffffffffffffffffffffff166108e0611a68565b73ffffffffffffffffffffffffffffffffffffffff16146109435761090c81610907611a68565b6118f2565b610942576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60106020528060005260406000206000915090505481565b600c5481565b610a1e611a70565b80601160006101000a81548160ff02191690831515021790555050565b6000610a45611aee565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c22573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac457610abf848484611af3565b610c2e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b0d929190612e43565b602060405180830381865afa158015610b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4e9190612e81565b8015610be057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b9e929190612e43565b602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf9190612e81565b5b610c2157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c1891906128f7565b60405180910390fd5b5b610c2d848484611af3565b5b50505050565b610c3c611a70565b610c44611e15565b6000610c4e611061565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c7190612edf565b60006040518083038185875af1925050503d8060008114610cae576040519150601f19603f3d011682016040523d82523d6000602084013e610cb3565b606091505b5050905080610cc157600080fd5b50610cca611e64565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3e57610d39848484611e6e565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d87929190612e43565b602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc89190612e81565b8015610e5a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e18929190612e43565b602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190612e81565b5b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e9291906128f7565b60405180910390fd5b5b610ea7848484611e6e565b5b50505050565b610eb6611a70565b80600c8190555050565b601160009054906101000a900460ff1681565b600a8054610ee090612e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90612e12565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b6000610f6c82611e8e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611033611a70565b61103d6000611f5a565b565b611047611a70565b80600a908051906020019061105d929190612626565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546110a090612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546110cc90612e12565b80156111195780601f106110ee57610100808354040283529160200191611119565b820191906000526020600020905b8154815290600101906020018083116110fc57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990612f40565b60405180910390fd5b6000811180156111a45750600e548111155b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90612fac565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112319190612ffb565b1115611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061309d565b60405180910390fd5b600d548161127e610a3b565b6112889190612ffb565b11156112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c09061309d565b60405180910390fd5b6001816112d691906130bd565b600c546112e391906130f1565b341015611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613197565b60405180910390fd5b601160009054906101000a900460ff1615611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90613203565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113c49190612ffb565b925050819055506113d53383612020565b5050565b80600760006113e6611a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611493611a68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d8919061277d565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116b5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611557576115528585858561203e565b6116c2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115a0929190612e43565b602060405180830381865afa1580156115bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e19190612e81565b801561167357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611631929190612e43565b602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612e81565b5b6116b457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ab91906128f7565b60405180910390fd5b5b6116c18585858561203e565b5b5050505050565b600f5481565b6116d7611a70565b600d54826116e3610a3b565b6116ed9190612ffb565b111561172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061309d565b60405180910390fd5b6117388183612020565b5050565b600b805461174990612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461177590612e12565b80156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b505050505081565b60606117d582611a09565b611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90613295565b60405180910390fd5b600061181e6120b1565b905060008151116118b957600b805461183690612e12565b80601f016020809104026020016040519081016040528092919081815260200182805461186290612e12565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b50505050506118e4565b806118c384612143565b6040516020016118d49291906132f1565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198e611a70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613387565b60405180910390fd5b611a0681611f5a565b50565b600081611a14611aee565b11158015611a23575060005482105b8015611a61575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611a78612193565b73ffffffffffffffffffffffffffffffffffffffff16611a96611061565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae3906133f3565b60405180910390fd5b565b600090565b6000611afe82611e8e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b718461219b565b91509150611b878187611b82611a68565b6121c2565b611bd357611b9c86611b97611a68565b6118f2565b611bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c468686866001612206565b8015611c5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d1f85611cfb88888761220c565b7c020000000000000000000000000000000000000000000000000000000017612234565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611da55760006001850190506000600460008381526020019081526020016000205403611da3576000548114611da2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0d868686600161225f565b505050505050565b600260095403611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e519061345f565b60405180910390fd5b6002600981905550565b6001600981905550565b611e89838383604051806020016040528060008152506114e4565b505050565b60008082905080611e9d611aee565b11611f2357600054811015611f225760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f20575b60008103611f16576004600083600190039350838152602001908152602001600020549050611eec565b8092505050611f55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203a828260405180602001604052806000815250612265565b5050565b612049848484610a52565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ab5761207484848484612302565b6120aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120c090612e12565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90612e12565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561217e57600184039350600a81066030018453600a810490508061215c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612223868684612452565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61226f838361245b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122fd57600080549050600083820390505b6122af6000868380600101945086612302565b6122e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061229c5781600054146122fa57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612328611a68565b8786866040518563ffffffff1660e01b815260040161234a94939291906134d4565b6020604051808303816000875af192505050801561238657506040513d601f19601f820116820180604052508101906123839190613535565b60015b6123ff573d80600081146123b6576040519150601f19603f3d011682016040523d82523d6000602084013e6123bb565b606091505b5060008151036123f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361249b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124a86000848385612206565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061251f83612510600086600061220c565b61251985612616565b17612234565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612585565b50600082036125fb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612611600084838561225f565b505050565b60006001821460e11b9050919050565b82805461263290612e12565b90600052602060002090601f016020900481019282612654576000855561269b565b82601f1061266d57805160ff191683800117855561269b565b8280016001018555821561269b579182015b8281111561269a57825182559160200191906001019061267f565b5b5090506126a891906126ac565b5090565b5b808211156126c55760008160009055506001016126ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b838111156127e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061280382612798565b61280d81856127a3565b935061281d8185602086016127b4565b612826816127e7565b840191505092915050565b6000602082019050818103600083015261284b81846127f8565b905092915050565b6000819050919050565b61286681612853565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6126d3565b5b60006128ad84828501612874565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e1826128b6565b9050919050565b6128f1816128d6565b82525050565b600060208201905061290c60008301846128e8565b92915050565b61291b816128d6565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b60008060408385031215612955576129546126d3565b5b600061296385828601612929565b925050602061297485828601612874565b9150509250929050565b600060208284031215612994576129936126d3565b5b60006129a284828501612929565b91505092915050565b6129b481612853565b82525050565b60006020820190506129cf60008301846129ab565b92915050565b6129de81612762565b81146129e957600080fd5b50565b6000813590506129fb816129d5565b92915050565b600060208284031215612a1757612a166126d3565b5b6000612a25848285016129ec565b91505092915050565b600080600060608486031215612a4757612a466126d3565b5b6000612a5586828701612929565b9350506020612a6686828701612929565b9250506040612a7786828701612874565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac3826127e7565b810181811067ffffffffffffffff82111715612ae257612ae1612a8b565b5b80604052505050565b6000612af56126c9565b9050612b018282612aba565b919050565b600067ffffffffffffffff821115612b2157612b20612a8b565b5b612b2a826127e7565b9050602081019050919050565b82818337600083830152505050565b6000612b59612b5484612b06565b612aeb565b905082815260208101848484011115612b7557612b74612a86565b5b612b80848285612b37565b509392505050565b600082601f830112612b9d57612b9c612a81565b5b8135612bad848260208601612b46565b91505092915050565b600060208284031215612bcc57612bcb6126d3565b5b600082013567ffffffffffffffff811115612bea57612be96126d8565b5b612bf684828501612b88565b91505092915050565b60008060408385031215612c1657612c156126d3565b5b6000612c2485828601612929565b9250506020612c35858286016129ec565b9150509250929050565b600067ffffffffffffffff821115612c5a57612c59612a8b565b5b612c63826127e7565b9050602081019050919050565b6000612c83612c7e84612c3f565b612aeb565b905082815260208101848484011115612c9f57612c9e612a86565b5b612caa848285612b37565b509392505050565b600082601f830112612cc757612cc6612a81565b5b8135612cd7848260208601612c70565b91505092915050565b60008060008060808587031215612cfa57612cf96126d3565b5b6000612d0887828801612929565b9450506020612d1987828801612929565b9350506040612d2a87828801612874565b925050606085013567ffffffffffffffff811115612d4b57612d4a6126d8565b5b612d5787828801612cb2565b91505092959194509250565b60008060408385031215612d7a57612d796126d3565b5b6000612d8885828601612874565b9250506020612d9985828601612929565b9150509250929050565b60008060408385031215612dba57612db96126d3565b5b6000612dc885828601612929565b9250506020612dd985828601612929565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2a57607f821691505b602082108103612e3d57612e3c612de3565b5b50919050565b6000604082019050612e5860008301856128e8565b612e6560208301846128e8565b9392505050565b600081519050612e7b816129d5565b92915050565b600060208284031215612e9757612e966126d3565b5b6000612ea584828501612e6c565b91505092915050565b600081905092915050565b50565b6000612ec9600083612eae565b9150612ed482612eb9565b600082019050919050565b6000612eea82612ebc565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612f2a601e836127a3565b9150612f3582612ef4565b602082019050919050565b60006020820190508181036000830152612f5981612f1d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f966014836127a3565b9150612fa182612f60565b602082019050919050565b60006020820190508181036000830152612fc581612f89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061300682612853565b915061301183612853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304657613045612fcc565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130876014836127a3565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b60006130c882612853565b91506130d383612853565b9250828210156130e6576130e5612fcc565b5b828203905092915050565b60006130fc82612853565b915061310783612853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131405761313f612fcc565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006131816013836127a3565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006131ed6017836127a3565b91506131f8826131b7565b602082019050919050565b6000602082019050818103600083015261321c816131e0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061327f602f836127a3565b915061328a82613223565b604082019050919050565b600060208201905081810360008301526132ae81613272565b9050919050565b600081905092915050565b60006132cb82612798565b6132d581856132b5565b93506132e58185602086016127b4565b80840191505092915050565b60006132fd82856132c0565b915061330982846132c0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133716026836127a3565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133dd6020836127a3565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613449601f836127a3565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134a68261347f565b6134b0818561348a565b93506134c08185602086016127b4565b6134c9816127e7565b840191505092915050565b60006080820190506134e960008301876128e8565b6134f660208301866128e8565b61350360408301856129ab565b8181036060830152613515818461349b565b905095945050505050565b60008151905061352f81612709565b92915050565b60006020828403121561354b5761354a6126d3565b5b600061355984828501613520565b9150509291505056fea26469706673582212206d9dc80547ac388369e8a0f43f47bf3f39b99400f5f5123c25d551cfa55b9ec864736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c537472616e67652043617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025343000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Strange Cats
Arg [1] : _tokenSymbol (string): SC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 537472616e676520436174730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 5343000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62625:3027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29523:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36916:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36349:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63055:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62893:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65306:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26176:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63265:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65389:150;;;;;;;;;;;;;:::i;:::-;;63436:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65120:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63110:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62713:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31818:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10302:103;;;;;;;;;;;;;:::i;:::-;;65200:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62967:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30601:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64310:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37474:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63615:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63009:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64538:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62746:140;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64745:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62931:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37865:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10560:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29523:639;29608:4;29947:10;29932:25;;:11;:25;;;;:102;;;;30024:10;30009:25;;:11;:25;;;;29932:102;:179;;;;30101:10;30086:25;;:11;:25;;;;29932:179;29912:199;;29523:639;;;:::o;30425:100::-;30479:13;30512:5;30505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30425:100;:::o;36916:218::-;36992:7;37017:16;37025:7;37017;:16::i;:::-;37012:64;;37042:34;;;;;;;;;;;;;;37012:64;37096:15;:24;37112:7;37096:24;;;;;;;;;;;:30;;;;;;;;;;;;37089:37;;36916:218;;;:::o;36349:408::-;36438:13;36454:16;36462:7;36454;:16::i;:::-;36438:32;;36510:5;36487:28;;:19;:17;:19::i;:::-;:28;;;36483:175;;36535:44;36552:5;36559:19;:17;:19::i;:::-;36535:16;:44::i;:::-;36530:128;;36607:35;;;;;;;;;;;;;;36530:128;36483:175;36703:2;36670:15;:24;36686:7;36670:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36741:7;36737:2;36721:28;;36730:5;36721:28;;;;;;;;;;;;36427:330;36349:408;;:::o;63055:48::-;;;;;;;;;;;;;;;;;:::o;62893:33::-;;;;:::o;65306:77::-;9540:13;:11;:13::i;:::-;65371:6:::1;65362;;:15;;;;;;;;;;;;;;;;;;65306:77:::0;:::o;26176:323::-;26237:7;26465:15;:13;:15::i;:::-;26450:12;;26434:13;;:28;:46;26427:53;;26176:323;:::o;63265:165::-;63374:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63387:37:::1;63406:4;63412:2;63416:7;63387:18;:37::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63387:37:::1;63406:4;63412:2;63416:7;63387:18;:37::i;:::-;63265:165:::0;;;;;:::o;65389:150::-;9540:13;:11;:13::i;:::-;6925:21:::1;:19;:21::i;:::-;65447:7:::2;65468;:5;:7::i;:::-;65460:21;;65489;65460:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65446:69;;;65530:2;65522:11;;;::::0;::::2;;65439:100;6969:20:::1;:18;:20::i;:::-;65389:150::o:0;63436:173::-;63549:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63562:41:::1;63585:4;63591:2;63595:7;63562:22;:41::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63562:41:::1;63585:4;63591:2;63595:7;63562:22;:41::i;:::-;63436:173:::0;;;;;:::o;65120:74::-;9540:13;:11;:13::i;:::-;65183:5:::1;65176:4;:12;;;;65120:74:::0;:::o;63110:25::-;;;;;;;;;;;;;:::o;62713:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31818:152::-;31890:7;31933:27;31952:7;31933:18;:27::i;:::-;31910:52;;31818:152;;;:::o;27360:233::-;27432:7;27473:1;27456:19;;:5;:19;;;27452:60;;27484:28;;;;;;;;;;;;;;27452:60;21519:13;27530:18;:25;27549:5;27530:25;;;;;;;;;;;;;;;;:55;27523:62;;27360:233;;;:::o;10302:103::-;9540:13;:11;:13::i;:::-;10367:30:::1;10394:1;10367:18;:30::i;:::-;10302:103::o:0;65200:100::-;9540:13;:11;:13::i;:::-;65284:10:::1;65272:9;:22;;;;;;;;;;;;:::i;:::-;;65200:100:::0;:::o;9654:87::-;9700:7;9727:6;;;;;;;;;;;9720:13;;9654:87;:::o;62967:37::-;;;;:::o;30601:104::-;30657:13;30690:7;30683:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30601:104;:::o;64310:222::-;64375:11;63893:9;63879:23;;:10;:23;;;63871:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63966:1;63952:11;:15;:52;;;;;63986:18;;63971:11;:33;;63952:52;63944:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;64087:22;;64072:11;64044:13;:25;64058:10;64044:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:65;;64036:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;64180:9;;64165:11;64149:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;64141:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64264:1;64250:11;:15;;;;:::i;:::-;64242:4;;:24;;;;:::i;:::-;64229:9;:37;;64221:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;64404:6:::1;;;;;;;;;;;64403:7;64395:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64474:11;64445:13;:25;64459:10;64445:25;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;64492:34;64502:10;64514:11;64492:9;:34::i;:::-;64310:222:::0;;:::o;37474:234::-;37621:8;37569:18;:39;37588:19;:17;:19::i;:::-;37569:39;;;;;;;;;;;;;;;:49;37609:8;37569:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37681:8;37645:55;;37660:19;:17;:19::i;:::-;37645:55;;;37691:8;37645:55;;;;;;:::i;:::-;;;;;;;;37474:234;;:::o;63615:198::-;63747:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63760:47:::1;63783:4;63789:2;63793:7;63802:4;63760:22;:47::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63760:47:::1;63783:4;63789:2;63793:7;63802:4;63760:22;:47::i;:::-;63615:198:::0;;;;;;:::o;63009:41::-;;;;:::o;64538:201::-;9540:13;:11;:13::i;:::-;64659:9:::1;;64644:11;64628:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;64620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64700:33;64710:9;64721:11;64700:9;:33::i;:::-;64538:201:::0;;:::o;62746:140::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64745:369::-;64819:13;64849:17;64857:8;64849:7;:17::i;:::-;64841:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64927:28;64958:10;:8;:10::i;:::-;64927:41;;65013:1;64988:14;64982:28;:32;:126;;65099:9;64982:126;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65050:14;65066:19;65076:8;65066:9;:19::i;:::-;65033:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64982:126;64975:133;;;64745:369;;;:::o;62931:31::-;;;;:::o;37865:164::-;37962:4;37986:18;:25;38005:5;37986:25;;;;;;;;;;;;;;;:35;38012:8;37986:35;;;;;;;;;;;;;;;;;;;;;;;;;37979:42;;37865:164;;;;:::o;10560:201::-;9540:13;:11;:13::i;:::-;10669:1:::1;10649:22;;:8;:22;;::::0;10641:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10725:28;10744:8;10725:18;:28::i;:::-;10560:201:::0;:::o;38287:282::-;38352:4;38408:7;38389:15;:13;:15::i;:::-;:26;;:66;;;;;38442:13;;38432:7;:23;38389:66;:153;;;;;38541:1;22295:8;38493:17;:26;38511:7;38493:26;;;;;;;;;;;;:44;:49;38389:153;38369:173;;38287:282;;;:::o;60595:105::-;60655:7;60682:10;60675:17;;60595:105;:::o;9819:132::-;9894:12;:10;:12::i;:::-;9883:23;;:7;:5;:7::i;:::-;:23;;;9875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9819:132::o;25692:92::-;25748:7;25692:92;:::o;40555:2825::-;40697:27;40727;40746:7;40727:18;:27::i;:::-;40697:57;;40812:4;40771:45;;40787:19;40771:45;;;40767:86;;40825:28;;;;;;;;;;;;;;40767:86;40867:27;40896:23;40923:35;40950:7;40923:26;:35::i;:::-;40866:92;;;;41058:68;41083:15;41100:4;41106:19;:17;:19::i;:::-;41058:24;:68::i;:::-;41053:180;;41146:43;41163:4;41169:19;:17;:19::i;:::-;41146:16;:43::i;:::-;41141:92;;41198:35;;;;;;;;;;;;;;41141:92;41053:180;41264:1;41250:16;;:2;:16;;;41246:52;;41275:23;;;;;;;;;;;;;;41246:52;41311:43;41333:4;41339:2;41343:7;41352:1;41311:21;:43::i;:::-;41447:15;41444:160;;;41587:1;41566:19;41559:30;41444:160;41984:18;:24;42003:4;41984:24;;;;;;;;;;;;;;;;41982:26;;;;;;;;;;;;42053:18;:22;42072:2;42053:22;;;;;;;;;;;;;;;;42051:24;;;;;;;;;;;42375:146;42412:2;42461:45;42476:4;42482:2;42486:19;42461:14;:45::i;:::-;22575:8;42433:73;42375:18;:146::i;:::-;42346:17;:26;42364:7;42346:26;;;;;;;;;;;:175;;;;42692:1;22575:8;42641:19;:47;:52;42637:627;;42714:19;42746:1;42736:7;:11;42714:33;;42903:1;42869:17;:30;42887:11;42869:30;;;;;;;;;;;;:35;42865:384;;43007:13;;42992:11;:28;42988:242;;43187:19;43154:17;:30;43172:11;43154:30;;;;;;;;;;;:52;;;;42988:242;42865:384;42695:569;42637:627;43311:7;43307:2;43292:27;;43301:4;43292:27;;;;;;;;;;;;43330:42;43351:4;43357:2;43361:7;43370:1;43330:20;:42::i;:::-;40686:2694;;;40555:2825;;;:::o;7005:293::-;6407:1;7139:7;;:19;7131:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:1;7272:7;:18;;;;7005:293::o;7306:213::-;6363:1;7489:7;:22;;;;7306:213::o;43476:193::-;43622:39;43639:4;43645:2;43649:7;43622:39;;;;;;;;;;;;:16;:39::i;:::-;43476:193;;;:::o;32973:1275::-;33040:7;33060:12;33075:7;33060:22;;33143:4;33124:15;:13;:15::i;:::-;:23;33120:1061;;33177:13;;33170:4;:20;33166:1015;;;33215:14;33232:17;:23;33250:4;33232:23;;;;;;;;;;;;33215:40;;33349:1;22295:8;33321:6;:24;:29;33317:845;;33986:113;34003:1;33993:6;:11;33986:113;;34046:17;:25;34064:6;;;;;;;34046:25;;;;;;;;;;;;34037:34;;33986:113;;;34132:6;34125:13;;;;;;33317:845;33192:989;33166:1015;33120:1061;34209:31;;;;;;;;;;;;;;32973:1275;;;;:::o;10921:191::-;10995:16;11014:6;;;;;;;;;;;10995:25;;11040:8;11031:6;;:17;;;;;;;;;;;;;;;;;;11095:8;11064:40;;11085:8;11064:40;;;;;;;;;;;;10984:128;10921:191;:::o;54427:112::-;54504:27;54514:2;54518:8;54504:27;;;;;;;;;;;;:9;:27::i;:::-;54427:112;;:::o;44267:407::-;44442:31;44455:4;44461:2;44465:7;44442:12;:31::i;:::-;44506:1;44488:2;:14;;;:19;44484:183;;44527:56;44558:4;44564:2;44568:7;44577:5;44527:30;:56::i;:::-;44522:145;;44611:40;;;;;;;;;;;;;;44522:145;44484:183;44267:407;;;;:::o;65545:104::-;65605:13;65634:9;65627:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65545:104;:::o;60802:1745::-;60867:17;61301:4;61294;61288:11;61284:22;61393:1;61387:4;61380:15;61468:4;61465:1;61461:12;61454:19;;61550:1;61545:3;61538:14;61654:3;61893:5;61875:428;61901:1;61875:428;;;61941:1;61936:3;61932:11;61925:18;;62112:2;62106:4;62102:13;62098:2;62094:22;62089:3;62081:36;62206:2;62200:4;62196:13;62188:21;;62273:4;61875:428;62263:25;61875:428;61879:21;62342:3;62337;62333:13;62457:4;62452:3;62448:14;62441:21;;62522:6;62517:3;62510:19;60906:1634;;;60802:1745;;;:::o;8205:98::-;8258:7;8285:10;8278:17;;8205:98;:::o;39450:485::-;39552:27;39581:23;39622:38;39663:15;:24;39679:7;39663:24;;;;;;;;;;;39622:65;;39840:18;39817:41;;39897:19;39891:26;39872:45;;39802:126;39450:485;;;:::o;38678:659::-;38827:11;38992:16;38985:5;38981:28;38972:37;;39152:16;39141:9;39137:32;39124:45;;39302:15;39291:9;39288:30;39280:5;39269:9;39266:20;39263:56;39253:66;;38678:659;;;;;:::o;45336:159::-;;;;;:::o;59904:311::-;60039:7;60059:16;22699:3;60085:19;:41;;60059:68;;22699:3;60153:31;60164:4;60170:2;60174:9;60153:10;:31::i;:::-;60145:40;;:62;;60138:69;;;59904:311;;;;;:::o;34796:450::-;34876:14;35044:16;35037:5;35033:28;35024:37;;35221:5;35207:11;35182:23;35178:41;35175:52;35168:5;35165:63;35155:73;;34796:450;;;;:::o;46160:158::-;;;;;:::o;53654:689::-;53785:19;53791:2;53795:8;53785:5;:19::i;:::-;53864:1;53846:2;:14;;;:19;53842:483;;53886:11;53900:13;;53886:27;;53932:13;53954:8;53948:3;:14;53932:30;;53981:233;54012:62;54051:1;54055:2;54059:7;;;;;;54068:5;54012:30;:62::i;:::-;54007:167;;54110:40;;;;;;;;;;;;;;54007:167;54209:3;54201:5;:11;53981:233;;54296:3;54279:13;;:20;54275:34;;54301:8;;;54275:34;53867:458;;53842:483;53654:689;;;:::o;46758:716::-;46921:4;46967:2;46942:45;;;46988:19;:17;:19::i;:::-;47009:4;47015:7;47024:5;46942:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46938:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47242:1;47225:6;:13;:18;47221:235;;47271:40;;;;;;;;;;;;;;47221:235;47414:6;47408:13;47399:6;47395:2;47391:15;47384:38;46938:529;47111:54;;;47101:64;;;:6;:64;;;;47094:71;;;46758:716;;;;;;:::o;59605:147::-;59742:6;59605:147;;;;;:::o;47936:2966::-;48009:20;48032:13;;48009:36;;48072:1;48060:8;:13;48056:44;;48082:18;;;;;;;;;;;;;;48056:44;48113:61;48143:1;48147:2;48151:12;48165:8;48113:21;:61::i;:::-;48657:1;21657:2;48627:1;:26;;48626:32;48614:8;:45;48588:18;:22;48607:2;48588:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48936:139;48973:2;49027:33;49050:1;49054:2;49058:1;49027:14;:33::i;:::-;48994:30;49015:8;48994:20;:30::i;:::-;:66;48936:18;:139::i;:::-;48902:17;:31;48920:12;48902:31;;;;;;;;;;;:173;;;;49092:16;49123:11;49152:8;49137:12;:23;49123:37;;49673:16;49669:2;49665:25;49653:37;;50045:12;50005:8;49964:1;49902:25;49843:1;49782;49755:335;50416:1;50402:12;50398:20;50356:346;50457:3;50448:7;50445:16;50356:346;;50675:7;50665:8;50662:1;50635:25;50632:1;50629;50624:59;50510:1;50501:7;50497:15;50486:26;;50356:346;;;50360:77;50747:1;50735:8;:13;50731:45;;50757:19;;;;;;;;;;;;;;50731:45;50809:3;50793:13;:19;;;;48362:2462;;50834:60;50863:1;50867:2;50871:12;50885:8;50834:20;:60::i;:::-;47998:2904;47936:2966;;:::o;35348:324::-;35418:14;35651:1;35641:8;35638:15;35612:24;35608:46;35598:56;;35348:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:116::-;5695:21;5710:5;5695:21;:::i;:::-;5688:5;5685:32;5675:60;;5731:1;5728;5721:12;5675:60;5625:116;:::o;5747:133::-;5790:5;5828:6;5815:20;5806:29;;5844:30;5868:5;5844:30;:::i;:::-;5747:133;;;;:::o;5886:323::-;5942:6;5991:2;5979:9;5970:7;5966:23;5962:32;5959:119;;;5997:79;;:::i;:::-;5959:119;6117:1;6142:50;6184:7;6175:6;6164:9;6160:22;6142:50;:::i;:::-;6132:60;;6088:114;5886:323;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:332::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13614:71;13682:1;13671:9;13667:17;13658:6;13614:71;:::i;:::-;13695:72;13763:2;13752:9;13748:18;13739:6;13695:72;:::i;:::-;13442:332;;;;;:::o;13780:137::-;13834:5;13865:6;13859:13;13850:22;;13881:30;13905:5;13881:30;:::i;:::-;13780:137;;;;:::o;13923:345::-;13990:6;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:61;14243:7;14234:6;14223:9;14219:22;14190:61;:::i;:::-;14180:71;;14136:125;13923:345;;;;:::o;14274:147::-;14375:11;14412:3;14397:18;;14274:147;;;;:::o;14427:114::-;;:::o;14547:398::-;14706:3;14727:83;14808:1;14803:3;14727:83;:::i;:::-;14720:90;;14819:93;14908:3;14819:93;:::i;:::-;14937:1;14932:3;14928:11;14921:18;;14547:398;;;:::o;14951:379::-;15135:3;15157:147;15300:3;15157:147;:::i;:::-;15150:154;;15321:3;15314:10;;14951:379;;;:::o;15336:180::-;15476:32;15472:1;15464:6;15460:14;15453:56;15336:180;:::o;15522:366::-;15664:3;15685:67;15749:2;15744:3;15685:67;:::i;:::-;15678:74;;15761:93;15850:3;15761:93;:::i;:::-;15879:2;15874:3;15870:12;15863:19;;15522:366;;;:::o;15894:419::-;16060:4;16098:2;16087:9;16083:18;16075:26;;16147:9;16141:4;16137:20;16133:1;16122:9;16118:17;16111:47;16175:131;16301:4;16175:131;:::i;:::-;16167:139;;15894:419;;;:::o;16319:170::-;16459:22;16455:1;16447:6;16443:14;16436:46;16319:170;:::o;16495:366::-;16637:3;16658:67;16722:2;16717:3;16658:67;:::i;:::-;16651:74;;16734:93;16823:3;16734:93;:::i;:::-;16852:2;16847:3;16843:12;16836:19;;16495:366;;;:::o;16867:419::-;17033:4;17071:2;17060:9;17056:18;17048:26;;17120:9;17114:4;17110:20;17106:1;17095:9;17091:17;17084:47;17148:131;17274:4;17148:131;:::i;:::-;17140:139;;16867:419;;;:::o;17292:180::-;17340:77;17337:1;17330:88;17437:4;17434:1;17427:15;17461:4;17458:1;17451:15;17478:305;17518:3;17537:20;17555:1;17537:20;:::i;:::-;17532:25;;17571:20;17589:1;17571:20;:::i;:::-;17566:25;;17725:1;17657:66;17653:74;17650:1;17647:81;17644:107;;;17731:18;;:::i;:::-;17644:107;17775:1;17772;17768:9;17761:16;;17478:305;;;;:::o;17789:170::-;17929:22;17925:1;17917:6;17913:14;17906:46;17789:170;:::o;17965:366::-;18107:3;18128:67;18192:2;18187:3;18128:67;:::i;:::-;18121:74;;18204:93;18293:3;18204:93;:::i;:::-;18322:2;18317:3;18313:12;18306:19;;17965:366;;;:::o;18337:419::-;18503:4;18541:2;18530:9;18526:18;18518:26;;18590:9;18584:4;18580:20;18576:1;18565:9;18561:17;18554:47;18618:131;18744:4;18618:131;:::i;:::-;18610:139;;18337:419;;;:::o;18762:191::-;18802:4;18822:20;18840:1;18822:20;:::i;:::-;18817:25;;18856:20;18874:1;18856:20;:::i;:::-;18851:25;;18895:1;18892;18889:8;18886:34;;;18900:18;;:::i;:::-;18886:34;18945:1;18942;18938:9;18930:17;;18762:191;;;;:::o;18959:348::-;18999:7;19022:20;19040:1;19022:20;:::i;:::-;19017:25;;19056:20;19074:1;19056:20;:::i;:::-;19051:25;;19244:1;19176:66;19172:74;19169:1;19166:81;19161:1;19154:9;19147:17;19143:105;19140:131;;;19251:18;;:::i;:::-;19140:131;19299:1;19296;19292:9;19281:20;;18959:348;;;;:::o;19313:169::-;19453:21;19449:1;19441:6;19437:14;19430:45;19313:169;:::o;19488:366::-;19630:3;19651:67;19715:2;19710:3;19651:67;:::i;:::-;19644:74;;19727:93;19816:3;19727:93;:::i;:::-;19845:2;19840:3;19836:12;19829:19;;19488:366;;;:::o;19860:419::-;20026:4;20064:2;20053:9;20049:18;20041:26;;20113:9;20107:4;20103:20;20099:1;20088:9;20084:17;20077:47;20141:131;20267:4;20141:131;:::i;:::-;20133:139;;19860:419;;;:::o;20285:173::-;20425:25;20421:1;20413:6;20409:14;20402:49;20285:173;:::o;20464:366::-;20606:3;20627:67;20691:2;20686:3;20627:67;:::i;:::-;20620:74;;20703:93;20792:3;20703:93;:::i;:::-;20821:2;20816:3;20812:12;20805:19;;20464:366;;;:::o;20836:419::-;21002:4;21040:2;21029:9;21025:18;21017:26;;21089:9;21083:4;21079:20;21075:1;21064:9;21060:17;21053:47;21117:131;21243:4;21117:131;:::i;:::-;21109:139;;20836:419;;;:::o;21261:234::-;21401:34;21397:1;21389:6;21385:14;21378:58;21470:17;21465:2;21457:6;21453:15;21446:42;21261:234;:::o;21501:366::-;21643:3;21664:67;21728:2;21723:3;21664:67;:::i;:::-;21657:74;;21740:93;21829:3;21740:93;:::i;:::-;21858:2;21853:3;21849:12;21842:19;;21501:366;;;:::o;21873:419::-;22039:4;22077:2;22066:9;22062:18;22054:26;;22126:9;22120:4;22116:20;22112:1;22101:9;22097:17;22090:47;22154:131;22280:4;22154:131;:::i;:::-;22146:139;;21873:419;;;:::o;22298:148::-;22400:11;22437:3;22422:18;;22298:148;;;;:::o;22452:377::-;22558:3;22586:39;22619:5;22586:39;:::i;:::-;22641:89;22723:6;22718:3;22641:89;:::i;:::-;22634:96;;22739:52;22784:6;22779:3;22772:4;22765:5;22761:16;22739:52;:::i;:::-;22816:6;22811:3;22807:16;22800:23;;22562:267;22452:377;;;;:::o;22835:435::-;23015:3;23037:95;23128:3;23119:6;23037:95;:::i;:::-;23030:102;;23149:95;23240:3;23231:6;23149:95;:::i;:::-;23142:102;;23261:3;23254:10;;22835:435;;;;;:::o;23276:225::-;23416:34;23412:1;23404:6;23400:14;23393:58;23485:8;23480:2;23472:6;23468:15;23461:33;23276:225;:::o;23507:366::-;23649:3;23670:67;23734:2;23729:3;23670:67;:::i;:::-;23663:74;;23746:93;23835:3;23746:93;:::i;:::-;23864:2;23859:3;23855:12;23848:19;;23507:366;;;:::o;23879:419::-;24045:4;24083:2;24072:9;24068:18;24060:26;;24132:9;24126:4;24122:20;24118:1;24107:9;24103:17;24096:47;24160:131;24286:4;24160:131;:::i;:::-;24152:139;;23879:419;;;:::o;24304:182::-;24444:34;24440:1;24432:6;24428:14;24421:58;24304:182;:::o;24492:366::-;24634:3;24655:67;24719:2;24714:3;24655:67;:::i;:::-;24648:74;;24731:93;24820:3;24731:93;:::i;:::-;24849:2;24844:3;24840:12;24833:19;;24492:366;;;:::o;24864:419::-;25030:4;25068:2;25057:9;25053:18;25045:26;;25117:9;25111:4;25107:20;25103:1;25092:9;25088:17;25081:47;25145:131;25271:4;25145:131;:::i;:::-;25137:139;;24864:419;;;:::o;25289:181::-;25429:33;25425:1;25417:6;25413:14;25406:57;25289:181;:::o;25476:366::-;25618:3;25639:67;25703:2;25698:3;25639:67;:::i;:::-;25632:74;;25715:93;25804:3;25715:93;:::i;:::-;25833:2;25828:3;25824:12;25817:19;;25476:366;;;:::o;25848:419::-;26014:4;26052:2;26041:9;26037:18;26029:26;;26101:9;26095:4;26091:20;26087:1;26076:9;26072:17;26065:47;26129:131;26255:4;26129:131;:::i;:::-;26121:139;;25848:419;;;:::o;26273:98::-;26324:6;26358:5;26352:12;26342:22;;26273:98;;;:::o;26377:168::-;26460:11;26494:6;26489:3;26482:19;26534:4;26529:3;26525:14;26510:29;;26377:168;;;;:::o;26551:360::-;26637:3;26665:38;26697:5;26665:38;:::i;:::-;26719:70;26782:6;26777:3;26719:70;:::i;:::-;26712:77;;26798:52;26843:6;26838:3;26831:4;26824:5;26820:16;26798:52;:::i;:::-;26875:29;26897:6;26875:29;:::i;:::-;26870:3;26866:39;26859:46;;26641:270;26551:360;;;;:::o;26917:640::-;27112:4;27150:3;27139:9;27135:19;27127:27;;27164:71;27232:1;27221:9;27217:17;27208:6;27164:71;:::i;:::-;27245:72;27313:2;27302:9;27298:18;27289:6;27245:72;:::i;:::-;27327;27395:2;27384:9;27380:18;27371:6;27327:72;:::i;:::-;27446:9;27440:4;27436:20;27431:2;27420:9;27416:18;27409:48;27474:76;27545:4;27536:6;27474:76;:::i;:::-;27466:84;;26917:640;;;;;;;:::o;27563:141::-;27619:5;27650:6;27644:13;27635:22;;27666:32;27692:5;27666:32;:::i;:::-;27563:141;;;;:::o;27710:349::-;27779:6;27828:2;27816:9;27807:7;27803:23;27799:32;27796:119;;;27834:79;;:::i;:::-;27796:119;27954:1;27979:63;28034:7;28025:6;28014:9;28010:22;27979:63;:::i;:::-;27969:73;;27925:127;27710:349;;;;:::o

Swarm Source

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