ETH Price: $3,322.34 (+2.54%)
Gas: 3 Gwei

Token

What Is My Head (WIMH)
 

Overview

Max Total Supply

57 WIMH

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
888king.eth
Balance
2 WIMH
0xf1317609b61138592f9bbfc54483eee9a9ace0c4
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:
WhatIsMyHead

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

/**
 __       __  __                    __           
/  |  _  /  |/  |                  /  |          
$$ | / \ $$ |$$ |____    ______   _$$ |_         
$$ |/$  \$$ |$$      \  /      \ / $$   |        
$$ /$$$  $$ |$$$$$$$  | $$$$$$  |$$$$$$/         
$$ $$/$$ $$ |$$ |  $$ | /    $$ |  $$ | __       
$$$$/  $$$$ |$$ |  $$ |/$$$$$$$ |  $$ |/  |      
$$$/    $$$ |$$ |  $$ |$$    $$ |  $$  $$/       
$$/      $$/ $$/   $$/  $$$$$$$/    $$$$/        
                                                 
                                                 
                                                 
 ______                                          
/      |                                         
$$$$$$/   _______                                
  $$ |   /       |                               
  $$ |  /$$$$$$$/                                
  $$ |  $$      \                                
 _$$ |_  $$$$$$  |                               
/ $$   |/     $$/                                
$$$$$$/ $$$$$$$/                                 
                                                 
                                                 
                                                 
 __       __                                     
/  \     /  |                                    
$$  \   /$$ | __    __                           
$$$  \ /$$$ |/  |  /  |                          
$$$$  /$$$$ |$$ |  $$ |                          
$$ $$ $$/$$ |$$ |  $$ |                          
$$ |$$$/ $$ |$$ \__$$ |                          
$$ | $/  $$ |$$    $$ |                          
$$/      $$/  $$$$$$$ |                          
             /  \__$$ |                          
             $$    $$/                           
              $$$$$$/                            
 __    __                            __          
/  |  /  |                          /  |         
$$ |  $$ |  ______    ______    ____$$ |         
$$ |__$$ | /      \  /      \  /    $$ |         
$$    $$ |/$$$$$$  | $$$$$$  |/$$$$$$$ |         
$$$$$$$$ |$$    $$ | /    $$ |$$ |  $$ |         
$$ |  $$ |$$$$$$$$/ /$$$$$$$ |$$ \__$$ |         
$$ |  $$ |$$       |$$    $$ |$$    $$ |         
$$/   $$/  $$$$$$$/  $$$$$$$/  $$$$$$$/          
                                                 
                                                 
                                                 
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

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


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 unregister(address addr) 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);
}


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).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 (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


contract WhatIsMyHead is ERC721A, DefaultOperatorFilterer {
    //uriSuffix    
    string public baseURI = "ipfs://bafybeib5zr72nxkzrmhxxx4vdoskqrjzeq3n2flifcpe2nshzyxnoyos7m/";      

    //maxSupply    
    uint256 public maxSupply = 999; 

    // mint price    
    uint256 public price = 0.001 ether;

    // entry per addr    
    uint256 public maxPerTx = 10;

    // mint gas    
    uint256 private _baseGasLimit = 80000;

    // free mint difficulty
    uint256 private _baseDifficulty = 10;

    // free mint
    uint256 private _difficultyBais = 120;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }     

    function mint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("What Is My Head", "WIMH") {
        owner = msg.sender;
    }
    
    // function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
    //     uint256 royaltyAmount = (_salePrice * 50) / 1000;
    //     return (owner, royaltyAmount);
    // }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"difficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620031ed6043913960089080519060200190620000359291906200037b565b506103e760095566038d7ea4c68000600a55600a600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f57686174204973204d79204865616400000000000000000000000000000000008152506040518060400160405280600481526020017f57494d48000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612cbe806200052f6000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610509578063d5abeb0114610546578063e985e9c514610571578063f968adbe146105ae57610181565b8063a0712d68146104a8578063a22cb465146104c4578063b88d4fde146104ed57610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea5780638da5cb5b1461042757806395d89b4114610452578063a035b1fe1461047d57610181565b806319cae4621161013e5780633ccfd60b116101185780633ccfd60b146102fb57806341f434341461031257806342842e0e1461033d57806355f804b31461035957610181565b806319cae4621461028957806323b872dd146102b457806333c1420a146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124b5565b6105d9565b6040516101ba9190612772565b60405180910390f35b3480156101cf57600080fd5b506101d861066b565b6040516101e591906127a8565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612558565b6106fd565b60405161022291906126e2565b60405180910390f35b61024560048036038101906102409190612448565b61077c565b005b34801561025357600080fd5b5061025c610895565b005b34801561026a57600080fd5b50610273610931565b60405161028091906127ca565b60405180910390f35b34801561029557600080fd5b5061029e610948565b6040516102ab91906127ca565b60405180910390f35b6102ce60048036038101906102c99190612332565b61097e565b005b3480156102dc57600080fd5b506102e5610ade565b6040516102f29190612772565b60405180910390f35b34801561030757600080fd5b50610310610b2b565b005b34801561031e57600080fd5b50610327610bce565b604051610334919061278d565b60405180910390f35b61035760048036038101906103529190612332565b610be0565b005b34801561036557600080fd5b50610380600480360381019061037b919061250f565b610d40565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612558565b610db4565b6040516103b691906126e2565b60405180910390f35b3480156103cb57600080fd5b506103d4610dc6565b6040516103e191906127a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610e54565b60405161041e91906127ca565b60405180910390f35b34801561043357600080fd5b5061043c610f0d565b60405161044991906126e2565b60405180910390f35b34801561045e57600080fd5b50610467610f33565b60405161047491906127a8565b60405180910390f35b34801561048957600080fd5b50610492610fc5565b60405161049f91906127ca565b60405180910390f35b6104c260048036038101906104bd9190612558565b610fcb565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612408565b611022565b005b61050760048036038101906105029190612385565b61113b565b005b34801561051557600080fd5b50610530600480360381019061052b9190612558565b61129e565b60405161053d91906127a8565b60405180910390f35b34801561055257600080fd5b5061055b61133d565b60405161056891906127ca565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906122f2565b611343565b6040516105a59190612772565b60405180910390f35b3480156105ba57600080fd5b506105c36113d7565b6040516105d091906127ca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067a90612a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690612a7c565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b6000610708826113dd565b61073e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610886576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f49291906126fd565b60206040518083038186803b15801561080c57600080fd5b505afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190612488565b61088557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161087c91906126e2565b60405180910390fd5b5b610890838361143c565b505050565b600c545a116108a357600080fd5b6108ab610ade565b6108b45761092f565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ec57600080fd5b60095460016108f9610931565b61090391906128af565b111561090e57600080fd5b600061091933610e54565b1461092357600080fd5b61092e336001611580565b5b565b600061093b61159e565b6001546000540303905090565b6000600954600e54610958610931565b6109629190612936565b61096c9190612905565b600d5461097991906128af565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f1576109ec8484846115a3565b610ad8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a3a9291906126fd565b60206040518083038186803b158015610a5257600080fd5b505afa158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612488565b610acb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac291906126e2565b60405180910390fd5b5b610ad78484846115a3565b5b50505050565b60008060644233604051602001610af69291906126b6565b6040516020818303038152906040528051906020012060001c610b199190612b0d565b9050610b23610948565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b8557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bcb573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d2e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5357610c4e8484846118c8565b610d3a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c9c9291906126fd565b60206040518083038186803b158015610cb457600080fd5b505afa158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec9190612488565b610d2d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2491906126e2565b60405180910390fd5b5b610d398484846118c8565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a57600080fd5b8060089080519060200190610db09291906120c4565b5050565b6000610dbf826118e8565b9050919050565b60088054610dd390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612a7c565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4290612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6e90612a7c565b8015610fbb5780601f10610f9057610100808354040283529160200191610fbb565b820191906000526020600020905b815481529060010190602001808311610f9e57829003601f168201915b5050505050905090565b600a5481565b60095481610fd7610931565b610fe191906128af565b1115610fec57600080fd5b600b54811115610ffb57600080fd5b600a54816110099190612936565b34101561101557600080fd5b61101f3382611580565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561112c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161109a9291906126fd565b60206040518083038186803b1580156110b257600080fd5b505afa1580156110c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ea9190612488565b61112b57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161112291906126e2565b60405180910390fd5b5b61113683836119b6565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576111aa85858585611ac1565b611297565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111f89291906126fd565b60206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612488565b61128957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128091906126e2565b60405180910390fd5b5b61129685858585611ac1565b5b5050505050565b60606112a9826113dd565b6112df576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e9611b34565b905060008151141561130a5760405180602001604052806000815250611335565b8061131484611bc6565b604051602001611325929190612692565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6000816113e861159e565b111580156113f7575060005482105b8015611435575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061144782610db4565b90508073ffffffffffffffffffffffffffffffffffffffff16611468611c1f565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576114948161148f611c1f565b611343565b6114ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61159a828260405180602001604052806000815250611c27565b5050565b600090565b60006115ae826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611615576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061162184611cc4565b915091506116378187611632611c1f565b611ceb565b6116835761164c86611647611c1f565b611343565b611682576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f78686866001611d2f565b801561170257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117d0856117ac888887611d35565b7c020000000000000000000000000000000000000000000000000000000017611d5d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611858576000600185019050600060046000838152602001908152602001600020541415611856576000548114611855578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c08686866001611d88565b505050505050565b6118e38383836040518060200160405280600081525061113b565b505050565b600080829050806118f761159e565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b80600760006119c3611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a70611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab59190612772565b60405180910390a35050565b611acc84848461097e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2e57611af784848484611d8e565b611b2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611b4390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612a7c565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0a57600184039350600a81066030018453600a8104905080611c0557611c0a565b611bdf565b50828103602084039350808452505050919050565b600033905090565b611c318383611eee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cbf57600080549050600083820390505b611c716000868380600101945086611d8e565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c5e578160005414611cbc57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d4c8686846120ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db4611c1f565b8786866040518563ffffffff1660e01b8152600401611dd69493929190612726565b602060405180830381600087803b158015611df057600080fd5b505af1925050508015611e2157506040513d601f19601f82011682018060405250810190611e1e91906124e2565b60015b611e9b573d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50600081511415611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3c6000848385611d2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fb383611fa46000866000611d35565b611fad856120b4565b17611d5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612019565b506000821415612090576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120a66000848385611d88565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120d090612a7c565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a6121758461280a565b6127e5565b90508281526020810184848401111561219657612195612bff565b5b6121a1848285612a3a565b509392505050565b60006121bc6121b78461283b565b6127e5565b9050828152602081018484840111156121d8576121d7612bff565b5b6121e3848285612a3a565b509392505050565b6000813590506121fa81612c2c565b92915050565b60008135905061220f81612c43565b92915050565b60008151905061222481612c43565b92915050565b60008135905061223981612c5a565b92915050565b60008151905061224e81612c5a565b92915050565b600082601f83011261226957612268612bfa565b5b8135612279848260208601612167565b91505092915050565b600082601f83011261229757612296612bfa565b5b81356122a78482602086016121a9565b91505092915050565b6000813590506122bf81612c71565b92915050565b6000602082840312156122db576122da612c09565b5b60006122e9848285016121eb565b91505092915050565b6000806040838503121561230957612308612c09565b5b6000612317858286016121eb565b9250506020612328858286016121eb565b9150509250929050565b60008060006060848603121561234b5761234a612c09565b5b6000612359868287016121eb565b935050602061236a868287016121eb565b925050604061237b868287016122b0565b9150509250925092565b6000806000806080858703121561239f5761239e612c09565b5b60006123ad878288016121eb565b94505060206123be878288016121eb565b93505060406123cf878288016122b0565b925050606085013567ffffffffffffffff8111156123f0576123ef612c04565b5b6123fc87828801612254565b91505092959194509250565b6000806040838503121561241f5761241e612c09565b5b600061242d858286016121eb565b925050602061243e85828601612200565b9150509250929050565b6000806040838503121561245f5761245e612c09565b5b600061246d858286016121eb565b925050602061247e858286016122b0565b9150509250929050565b60006020828403121561249e5761249d612c09565b5b60006124ac84828501612215565b91505092915050565b6000602082840312156124cb576124ca612c09565b5b60006124d98482850161222a565b91505092915050565b6000602082840312156124f8576124f7612c09565b5b60006125068482850161223f565b91505092915050565b60006020828403121561252557612524612c09565b5b600082013567ffffffffffffffff81111561254357612542612c04565b5b61254f84828501612282565b91505092915050565b60006020828403121561256e5761256d612c09565b5b600061257c848285016122b0565b91505092915050565b61258e81612990565b82525050565b6125a56125a082612990565b612adf565b82525050565b6125b4816129a2565b82525050565b60006125c58261286c565b6125cf8185612882565b93506125df818560208601612a49565b6125e881612c0e565b840191505092915050565b6125fc81612a04565b82525050565b600061260d82612877565b6126178185612893565b9350612627818560208601612a49565b61263081612c0e565b840191505092915050565b600061264682612877565b61265081856128a4565b9350612660818560208601612a49565b80840191505092915050565b612675816129fa565b82525050565b61268c612687826129fa565b612b03565b82525050565b600061269e828561263b565b91506126aa828461263b565b91508190509392505050565b60006126c2828561267b565b6020820191506126d28284612594565b6014820191508190509392505050565b60006020820190506126f76000830184612585565b92915050565b60006040820190506127126000830185612585565b61271f6020830184612585565b9392505050565b600060808201905061273b6000830187612585565b6127486020830186612585565b612755604083018561266c565b818103606083015261276781846125ba565b905095945050505050565b600060208201905061278760008301846125ab565b92915050565b60006020820190506127a260008301846125f3565b92915050565b600060208201905081810360008301526127c28184612602565b905092915050565b60006020820190506127df600083018461266c565b92915050565b60006127ef612800565b90506127fb8282612aae565b919050565b6000604051905090565b600067ffffffffffffffff82111561282557612824612bcb565b5b61282e82612c0e565b9050602081019050919050565b600067ffffffffffffffff82111561285657612855612bcb565b5b61285f82612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ba826129fa565b91506128c5836129fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128fa576128f9612b3e565b5b828201905092915050565b6000612910826129fa565b915061291b836129fa565b92508261292b5761292a612b6d565b5b828204905092915050565b6000612941826129fa565b915061294c836129fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298557612984612b3e565b5b828202905092915050565b600061299b826129da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a0f82612a16565b9050919050565b6000612a2182612a28565b9050919050565b6000612a33826129da565b9050919050565b82818337600083830152505050565b60005b83811015612a67578082015181840152602081019050612a4c565b83811115612a76576000848401525b50505050565b60006002820490506001821680612a9457607f821691505b60208210811415612aa857612aa7612b9c565b5b50919050565b612ab782612c0e565b810181811067ffffffffffffffff82111715612ad657612ad5612bcb565b5b80604052505050565b6000612aea82612af1565b9050919050565b6000612afc82612c1f565b9050919050565b6000819050919050565b6000612b18826129fa565b9150612b23836129fa565b925082612b3357612b32612b6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612c3581612990565b8114612c4057600080fd5b50565b612c4c816129a2565b8114612c5757600080fd5b50565b612c63816129ae565b8114612c6e57600080fd5b50565b612c7a816129fa565b8114612c8557600080fd5b5056fea26469706673582212204263e862bb43a0bd63ef59113182d189e4d575e1b965f9abeed33c26eaf839cf64736f6c63430008070033697066733a2f2f6261667962656962357a7237326e786b7a726d687878783476646f736b71726a7a6571336e32666c6966637065326e73687a79786e6f796f73376d2f

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610509578063d5abeb0114610546578063e985e9c514610571578063f968adbe146105ae57610181565b8063a0712d68146104a8578063a22cb465146104c4578063b88d4fde146104ed57610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea5780638da5cb5b1461042757806395d89b4114610452578063a035b1fe1461047d57610181565b806319cae4621161013e5780633ccfd60b116101185780633ccfd60b146102fb57806341f434341461031257806342842e0e1461033d57806355f804b31461035957610181565b806319cae4621461028957806323b872dd146102b457806333c1420a146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124b5565b6105d9565b6040516101ba9190612772565b60405180910390f35b3480156101cf57600080fd5b506101d861066b565b6040516101e591906127a8565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612558565b6106fd565b60405161022291906126e2565b60405180910390f35b61024560048036038101906102409190612448565b61077c565b005b34801561025357600080fd5b5061025c610895565b005b34801561026a57600080fd5b50610273610931565b60405161028091906127ca565b60405180910390f35b34801561029557600080fd5b5061029e610948565b6040516102ab91906127ca565b60405180910390f35b6102ce60048036038101906102c99190612332565b61097e565b005b3480156102dc57600080fd5b506102e5610ade565b6040516102f29190612772565b60405180910390f35b34801561030757600080fd5b50610310610b2b565b005b34801561031e57600080fd5b50610327610bce565b604051610334919061278d565b60405180910390f35b61035760048036038101906103529190612332565b610be0565b005b34801561036557600080fd5b50610380600480360381019061037b919061250f565b610d40565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612558565b610db4565b6040516103b691906126e2565b60405180910390f35b3480156103cb57600080fd5b506103d4610dc6565b6040516103e191906127a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610e54565b60405161041e91906127ca565b60405180910390f35b34801561043357600080fd5b5061043c610f0d565b60405161044991906126e2565b60405180910390f35b34801561045e57600080fd5b50610467610f33565b60405161047491906127a8565b60405180910390f35b34801561048957600080fd5b50610492610fc5565b60405161049f91906127ca565b60405180910390f35b6104c260048036038101906104bd9190612558565b610fcb565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612408565b611022565b005b61050760048036038101906105029190612385565b61113b565b005b34801561051557600080fd5b50610530600480360381019061052b9190612558565b61129e565b60405161053d91906127a8565b60405180910390f35b34801561055257600080fd5b5061055b61133d565b60405161056891906127ca565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906122f2565b611343565b6040516105a59190612772565b60405180910390f35b3480156105ba57600080fd5b506105c36113d7565b6040516105d091906127ca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067a90612a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690612a7c565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b6000610708826113dd565b61073e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610886576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f49291906126fd565b60206040518083038186803b15801561080c57600080fd5b505afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190612488565b61088557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161087c91906126e2565b60405180910390fd5b5b610890838361143c565b505050565b600c545a116108a357600080fd5b6108ab610ade565b6108b45761092f565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ec57600080fd5b60095460016108f9610931565b61090391906128af565b111561090e57600080fd5b600061091933610e54565b1461092357600080fd5b61092e336001611580565b5b565b600061093b61159e565b6001546000540303905090565b6000600954600e54610958610931565b6109629190612936565b61096c9190612905565b600d5461097991906128af565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f1576109ec8484846115a3565b610ad8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a3a9291906126fd565b60206040518083038186803b158015610a5257600080fd5b505afa158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612488565b610acb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac291906126e2565b60405180910390fd5b5b610ad78484846115a3565b5b50505050565b60008060644233604051602001610af69291906126b6565b6040516020818303038152906040528051906020012060001c610b199190612b0d565b9050610b23610948565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b8557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bcb573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d2e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5357610c4e8484846118c8565b610d3a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c9c9291906126fd565b60206040518083038186803b158015610cb457600080fd5b505afa158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec9190612488565b610d2d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2491906126e2565b60405180910390fd5b5b610d398484846118c8565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a57600080fd5b8060089080519060200190610db09291906120c4565b5050565b6000610dbf826118e8565b9050919050565b60088054610dd390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612a7c565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4290612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6e90612a7c565b8015610fbb5780601f10610f9057610100808354040283529160200191610fbb565b820191906000526020600020905b815481529060010190602001808311610f9e57829003601f168201915b5050505050905090565b600a5481565b60095481610fd7610931565b610fe191906128af565b1115610fec57600080fd5b600b54811115610ffb57600080fd5b600a54816110099190612936565b34101561101557600080fd5b61101f3382611580565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561112c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161109a9291906126fd565b60206040518083038186803b1580156110b257600080fd5b505afa1580156110c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ea9190612488565b61112b57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161112291906126e2565b60405180910390fd5b5b61113683836119b6565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576111aa85858585611ac1565b611297565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111f89291906126fd565b60206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612488565b61128957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128091906126e2565b60405180910390fd5b5b61129685858585611ac1565b5b5050505050565b60606112a9826113dd565b6112df576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e9611b34565b905060008151141561130a5760405180602001604052806000815250611335565b8061131484611bc6565b604051602001611325929190612692565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6000816113e861159e565b111580156113f7575060005482105b8015611435575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061144782610db4565b90508073ffffffffffffffffffffffffffffffffffffffff16611468611c1f565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576114948161148f611c1f565b611343565b6114ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61159a828260405180602001604052806000815250611c27565b5050565b600090565b60006115ae826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611615576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061162184611cc4565b915091506116378187611632611c1f565b611ceb565b6116835761164c86611647611c1f565b611343565b611682576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f78686866001611d2f565b801561170257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117d0856117ac888887611d35565b7c020000000000000000000000000000000000000000000000000000000017611d5d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611858576000600185019050600060046000838152602001908152602001600020541415611856576000548114611855578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c08686866001611d88565b505050505050565b6118e38383836040518060200160405280600081525061113b565b505050565b600080829050806118f761159e565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b80600760006119c3611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a70611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab59190612772565b60405180910390a35050565b611acc84848461097e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2e57611af784848484611d8e565b611b2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611b4390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612a7c565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0a57600184039350600a81066030018453600a8104905080611c0557611c0a565b611bdf565b50828103602084039350808452505050919050565b600033905090565b611c318383611eee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cbf57600080549050600083820390505b611c716000868380600101945086611d8e565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c5e578160005414611cbc57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d4c8686846120ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db4611c1f565b8786866040518563ffffffff1660e01b8152600401611dd69493929190612726565b602060405180830381600087803b158015611df057600080fd5b505af1925050508015611e2157506040513d601f19601f82011682018060405250810190611e1e91906124e2565b60015b611e9b573d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50600081511415611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3c6000848385611d2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fb383611fa46000866000611d35565b611fad856120b4565b17611d5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612019565b506000821415612090576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120a66000848385611d88565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120d090612a7c565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a6121758461280a565b6127e5565b90508281526020810184848401111561219657612195612bff565b5b6121a1848285612a3a565b509392505050565b60006121bc6121b78461283b565b6127e5565b9050828152602081018484840111156121d8576121d7612bff565b5b6121e3848285612a3a565b509392505050565b6000813590506121fa81612c2c565b92915050565b60008135905061220f81612c43565b92915050565b60008151905061222481612c43565b92915050565b60008135905061223981612c5a565b92915050565b60008151905061224e81612c5a565b92915050565b600082601f83011261226957612268612bfa565b5b8135612279848260208601612167565b91505092915050565b600082601f83011261229757612296612bfa565b5b81356122a78482602086016121a9565b91505092915050565b6000813590506122bf81612c71565b92915050565b6000602082840312156122db576122da612c09565b5b60006122e9848285016121eb565b91505092915050565b6000806040838503121561230957612308612c09565b5b6000612317858286016121eb565b9250506020612328858286016121eb565b9150509250929050565b60008060006060848603121561234b5761234a612c09565b5b6000612359868287016121eb565b935050602061236a868287016121eb565b925050604061237b868287016122b0565b9150509250925092565b6000806000806080858703121561239f5761239e612c09565b5b60006123ad878288016121eb565b94505060206123be878288016121eb565b93505060406123cf878288016122b0565b925050606085013567ffffffffffffffff8111156123f0576123ef612c04565b5b6123fc87828801612254565b91505092959194509250565b6000806040838503121561241f5761241e612c09565b5b600061242d858286016121eb565b925050602061243e85828601612200565b9150509250929050565b6000806040838503121561245f5761245e612c09565b5b600061246d858286016121eb565b925050602061247e858286016122b0565b9150509250929050565b60006020828403121561249e5761249d612c09565b5b60006124ac84828501612215565b91505092915050565b6000602082840312156124cb576124ca612c09565b5b60006124d98482850161222a565b91505092915050565b6000602082840312156124f8576124f7612c09565b5b60006125068482850161223f565b91505092915050565b60006020828403121561252557612524612c09565b5b600082013567ffffffffffffffff81111561254357612542612c04565b5b61254f84828501612282565b91505092915050565b60006020828403121561256e5761256d612c09565b5b600061257c848285016122b0565b91505092915050565b61258e81612990565b82525050565b6125a56125a082612990565b612adf565b82525050565b6125b4816129a2565b82525050565b60006125c58261286c565b6125cf8185612882565b93506125df818560208601612a49565b6125e881612c0e565b840191505092915050565b6125fc81612a04565b82525050565b600061260d82612877565b6126178185612893565b9350612627818560208601612a49565b61263081612c0e565b840191505092915050565b600061264682612877565b61265081856128a4565b9350612660818560208601612a49565b80840191505092915050565b612675816129fa565b82525050565b61268c612687826129fa565b612b03565b82525050565b600061269e828561263b565b91506126aa828461263b565b91508190509392505050565b60006126c2828561267b565b6020820191506126d28284612594565b6014820191508190509392505050565b60006020820190506126f76000830184612585565b92915050565b60006040820190506127126000830185612585565b61271f6020830184612585565b9392505050565b600060808201905061273b6000830187612585565b6127486020830186612585565b612755604083018561266c565b818103606083015261276781846125ba565b905095945050505050565b600060208201905061278760008301846125ab565b92915050565b60006020820190506127a260008301846125f3565b92915050565b600060208201905081810360008301526127c28184612602565b905092915050565b60006020820190506127df600083018461266c565b92915050565b60006127ef612800565b90506127fb8282612aae565b919050565b6000604051905090565b600067ffffffffffffffff82111561282557612824612bcb565b5b61282e82612c0e565b9050602081019050919050565b600067ffffffffffffffff82111561285657612855612bcb565b5b61285f82612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ba826129fa565b91506128c5836129fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128fa576128f9612b3e565b5b828201905092915050565b6000612910826129fa565b915061291b836129fa565b92508261292b5761292a612b6d565b5b828204905092915050565b6000612941826129fa565b915061294c836129fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298557612984612b3e565b5b828202905092915050565b600061299b826129da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a0f82612a16565b9050919050565b6000612a2182612a28565b9050919050565b6000612a33826129da565b9050919050565b82818337600083830152505050565b60005b83811015612a67578082015181840152602081019050612a4c565b83811115612a76576000848401525b50505050565b60006002820490506001821680612a9457607f821691505b60208210811415612aa857612aa7612b9c565b5b50919050565b612ab782612c0e565b810181811067ffffffffffffffff82111715612ad657612ad5612bcb565b5b80604052505050565b6000612aea82612af1565b9050919050565b6000612afc82612c1f565b9050919050565b6000819050919050565b6000612b18826129fa565b9150612b23836129fa565b925082612b3357612b32612b6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612c3581612990565b8114612c4057600080fd5b50565b612c4c816129a2565b8114612c5757600080fd5b50565b612c63816129ae565b8114612c6e57600080fd5b50565b612c7a816129fa565b8114612c8557600080fd5b5056fea26469706673582212204263e862bb43a0bd63ef59113182d189e4d575e1b965f9abeed33c26eaf839cf64736f6c63430008070033

Deployed Bytecode Sourcemap

59538:3336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21134:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22036:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28527:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62087:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60598:289;;;;;;;;;;;;;:::i;:::-;;17787:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61087:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62260:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60895:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61681:109;;;;;;;;;;;;;:::i;:::-;;56903:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62439:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60485:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23429:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59624:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18971:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61233:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22212:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59816:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60128:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61903:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62626:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22422:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59753:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29476:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59886:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21134:639;21219:4;21558:10;21543:25;;:11;:25;;;;:102;;;;21635:10;21620:25;;:11;:25;;;;21543:102;:179;;;;21712:10;21697:25;;:11;:25;;;;21543:179;21523:199;;21134:639;;;:::o;22036:100::-;22090:13;22123:5;22116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22036:100;:::o;28527:218::-;28603:7;28628:16;28636:7;28628;:16::i;:::-;28623:64;;28653:34;;;;;;;;;;;;;;28623:64;28707:15;:24;28723:7;28707:24;;;;;;;;;;;:30;;;;;;;;;;;;28700:37;;28527:218;;;:::o;62087:165::-;62191:8;58945:1;57003:42;58897:45;;;:49;58893:225;;;57003:42;58968;;;59019:4;59026:8;58968:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58963:144;;59082:8;59063:28;;;;;;;;;;;:::i;:::-;;;;;;;;58963:144;58893:225;62212:32:::1;62226:8;62236:7;62212:13;:32::i;:::-;62087:165:::0;;;:::o;60598:289::-;60652:13;;60640:9;:25;60632:34;;;;;;60689:8;:6;:8::i;:::-;60684:22;;60699:7;;60684:22;60738:9;60724:23;;:10;:23;;;60716:32;;;;;;60788:9;;60783:1;60767:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;60759:39;;;;;;60842:1;60817:21;60827:10;60817:9;:21::i;:::-;:26;60809:35;;;;;;60855:24;60865:10;60877:1;60855:9;:24::i;:::-;60598:289;:::o;17787:323::-;17848:7;18076:15;:13;:15::i;:::-;18061:12;;18045:13;;:28;:46;18038:53;;17787:323;:::o;61087:138::-;61129:7;61208:9;;61190:15;;61174:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;61156:15;;:61;;;;:::i;:::-;61149:68;;61087:138;:::o;62260:171::-;62369:4;58199:1;57003:42;58151:45;;;:49;58147:539;;;58440:10;58432:18;;:4;:18;;;58428:85;;;62386:37:::1;62405:4;62411:2;62415:7;62386:18;:37::i;:::-;58491:7:::0;;58428:85;57003:42;58532;;;58583:4;58590:10;58532:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58527:148;;58648:10;58629:30;;;;;;;;;;;:::i;:::-;;;;;;;;58527:148;58147:539;62386:37:::1;62405:4;62411:2;62415:7;62386:18;:37::i;:::-;62260:171:::0;;;;;:::o;60895:184::-;60933:4;60950:11;61032:3;60999:15;61016:10;60982:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60972:56;;;;;;60964:65;;:71;;;;:::i;:::-;60950:85;;61059:12;:10;:12::i;:::-;61053:3;:18;61046:25;;;60895:184;:::o;61681:109::-;61307:10;61298:19;;:5;;;;;;;;;;;:19;;;61290:28;;;;;;61739:10:::1;61731:28;;:51;61760:21;61731:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61681:109::o:0;56903:143::-;57003:42;56903:143;:::o;62439:179::-;62552:4;58199:1;57003:42;58151:45;;;:49;58147:539;;;58440:10;58432:18;;:4;:18;;;58428:85;;;62569:41:::1;62592:4;62598:2;62602:7;62569:22;:41::i;:::-;58491:7:::0;;58428:85;57003:42;58532;;;58583:4;58590:10;58532:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58527:148;;58648:10;58629:30;;;;;;;;;;;:::i;:::-;;;;;;;;58527:148;58147:539;62569:41:::1;62592:4;62598:2;62602:7;62569:22;:41::i;:::-;62439:179:::0;;;;;:::o;60485:100::-;61307:10;61298:19;;:5;;;;;;;;;;;:19;;;61290:28;;;;;;60569:8:::1;60559:7;:18;;;;;;;;;;;;:::i;:::-;;60485:100:::0;:::o;23429:152::-;23501:7;23544:27;23563:7;23544:18;:27::i;:::-;23521:52;;23429:152;;;:::o;59624:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18971:233::-;19043:7;19084:1;19067:19;;:5;:19;;;19063:60;;;19095:28;;;;;;;;;;;;;;19063:60;13130:13;19141:18;:25;19160:5;19141:25;;;;;;;;;;;;;;;;:55;19134:62;;18971:233;;;:::o;61233:20::-;;;;;;;;;;;;;:::o;22212:104::-;22268:13;22301:7;22294:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22212:104;:::o;59816:34::-;;;;:::o;60128:233::-;60218:9;;60208:6;60192:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60184:44;;;;;;60257:8;;60247:6;:18;;60239:27;;;;;;60307:5;;60298:6;:14;;;;:::i;:::-;60285:9;:27;;60277:36;;;;;;60324:29;60334:10;60346:6;60324:9;:29::i;:::-;60128:233;:::o;61903:176::-;62007:8;58945:1;57003:42;58897:45;;;:49;58893:225;;;57003:42;58968;;;59019:4;59026:8;58968:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58963:144;;59082:8;59063:28;;;;;;;;;;;:::i;:::-;;;;;;;;58963:144;58893:225;62028:43:::1;62052:8;62062;62028:23;:43::i;:::-;61903:176:::0;;;:::o;62626:245::-;62794:4;58199:1;57003:42;58151:45;;;:49;58147:539;;;58440:10;58432:18;;:4;:18;;;58428:85;;;62816:47:::1;62839:4;62845:2;62849:7;62858:4;62816:22;:47::i;:::-;58491:7:::0;;58428:85;57003:42;58532;;;58583:4;58590:10;58532:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58527:148;;58648:10;58629:30;;;;;;;;;;;:::i;:::-;;;;;;;;58527:148;58147:539;62816:47:::1;62839:4;62845:2;62849:7;62858:4;62816:22;:47::i;:::-;62626:245:::0;;;;;;:::o;22422:318::-;22495:13;22526:16;22534:7;22526;:16::i;:::-;22521:59;;22551:29;;;;;;;;;;;;;;22521:59;22593:21;22617:10;:8;:10::i;:::-;22593:34;;22670:1;22651:7;22645:21;:26;;:87;;;;;;;;;;;;;;;;;22698:7;22707:18;22717:7;22707:9;:18::i;:::-;22681:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22645:87;22638:94;;;22422:318;;;:::o;59753:30::-;;;;:::o;29476:164::-;29573:4;29597:18;:25;29616:5;29597:25;;;;;;;;;;;;;;;:35;29623:8;29597:35;;;;;;;;;;;;;;;;;;;;;;;;;29590:42;;29476:164;;;;:::o;59886:28::-;;;;:::o;29898:282::-;29963:4;30019:7;30000:15;:13;:15::i;:::-;:26;;:66;;;;;30053:13;;30043:7;:23;30000:66;:153;;;;;30152:1;13906:8;30104:17;:26;30122:7;30104:26;;;;;;;;;;;;:44;:49;30000:153;29980:173;;29898:282;;;:::o;27960:408::-;28049:13;28065:16;28073:7;28065;:16::i;:::-;28049:32;;28121:5;28098:28;;:19;:17;:19::i;:::-;:28;;;28094:175;;28146:44;28163:5;28170:19;:17;:19::i;:::-;28146:16;:44::i;:::-;28141:128;;28218:35;;;;;;;;;;;;;;28141:128;28094:175;28314:2;28281:15;:24;28297:7;28281:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28352:7;28348:2;28332:28;;28341:5;28332:28;;;;;;;;;;;;28038:330;27960:408;;:::o;46038:112::-;46115:27;46125:2;46129:8;46115:27;;;;;;;;;;;;:9;:27::i;:::-;46038:112;;:::o;17303:92::-;17359:7;17303:92;:::o;32166:2825::-;32308:27;32338;32357:7;32338:18;:27::i;:::-;32308:57;;32423:4;32382:45;;32398:19;32382:45;;;32378:86;;32436:28;;;;;;;;;;;;;;32378:86;32478:27;32507:23;32534:35;32561:7;32534:26;:35::i;:::-;32477:92;;;;32669:68;32694:15;32711:4;32717:19;:17;:19::i;:::-;32669:24;:68::i;:::-;32664:180;;32757:43;32774:4;32780:19;:17;:19::i;:::-;32757:16;:43::i;:::-;32752:92;;32809:35;;;;;;;;;;;;;;32752:92;32664:180;32875:1;32861:16;;:2;:16;;;32857:52;;;32886:23;;;;;;;;;;;;;;32857:52;32922:43;32944:4;32950:2;32954:7;32963:1;32922:21;:43::i;:::-;33058:15;33055:160;;;33198:1;33177:19;33170:30;33055:160;33595:18;:24;33614:4;33595:24;;;;;;;;;;;;;;;;33593:26;;;;;;;;;;;;33664:18;:22;33683:2;33664:22;;;;;;;;;;;;;;;;33662:24;;;;;;;;;;;33986:146;34023:2;34072:45;34087:4;34093:2;34097:19;34072:14;:45::i;:::-;14186:8;34044:73;33986:18;:146::i;:::-;33957:17;:26;33975:7;33957:26;;;;;;;;;;;:175;;;;34303:1;14186:8;34252:19;:47;:52;34248:627;;;34325:19;34357:1;34347:7;:11;34325:33;;34514:1;34480:17;:30;34498:11;34480:30;;;;;;;;;;;;:35;34476:384;;;34618:13;;34603:11;:28;34599:242;;34798:19;34765:17;:30;34783:11;34765:30;;;;;;;;;;;:52;;;;34599:242;34476:384;34306:569;34248:627;34922:7;34918:2;34903:27;;34912:4;34903:27;;;;;;;;;;;;34941:42;34962:4;34968:2;34972:7;34981:1;34941:20;:42::i;:::-;32297:2694;;;32166:2825;;;:::o;35087:193::-;35233:39;35250:4;35256:2;35260:7;35233:39;;;;;;;;;;;;:16;:39::i;:::-;35087:193;;;:::o;24584:1275::-;24651:7;24671:12;24686:7;24671:22;;24754:4;24735:15;:13;:15::i;:::-;:23;24731:1061;;24788:13;;24781:4;:20;24777:1015;;;24826:14;24843:17;:23;24861:4;24843:23;;;;;;;;;;;;24826:40;;24960:1;13906:8;24932:6;:24;:29;24928:845;;;25597:113;25614:1;25604:6;:11;25597:113;;;25657:17;:25;25675:6;;;;;;;25657:25;;;;;;;;;;;;25648:34;;25597:113;;;25743:6;25736:13;;;;;;24928:845;24803:989;24777:1015;24731:1061;25820:31;;;;;;;;;;;;;;24584:1275;;;;:::o;29085:234::-;29232:8;29180:18;:39;29199:19;:17;:19::i;:::-;29180:39;;;;;;;;;;;;;;;:49;29220:8;29180:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29292:8;29256:55;;29271:19;:17;:19::i;:::-;29256:55;;;29302:8;29256:55;;;;;;:::i;:::-;;;;;;;;29085:234;;:::o;35878:407::-;36053:31;36066:4;36072:2;36076:7;36053:12;:31::i;:::-;36117:1;36099:2;:14;;;:19;36095:183;;36138:56;36169:4;36175:2;36179:7;36188:5;36138:30;:56::i;:::-;36133:145;;36222:40;;;;;;;;;;;;;;36133:145;36095:183;35878:407;;;;:::o;60369:108::-;60429:13;60462:7;60455:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60369:108;:::o;52413:1745::-;52478:17;52912:4;52905;52899:11;52895:22;53004:1;52998:4;52991:15;53079:4;53076:1;53072:12;53065:19;;53161:1;53156:3;53149:14;53265:3;53504:5;53486:428;53512:1;53486:428;;;53552:1;53547:3;53543:11;53536:18;;53723:2;53717:4;53713:13;53709:2;53705:22;53700:3;53692:36;53817:2;53811:4;53807:13;53799:21;;53884:4;53874:25;;53892:5;;53874:25;53486:428;;;53490:21;53953:3;53948;53944:13;54068:4;54063:3;54059:14;54052:21;;54133:6;54128:3;54121:19;52517:1634;;;52413:1745;;;:::o;52206:105::-;52266:7;52293:10;52286:17;;52206:105;:::o;45265:689::-;45396:19;45402:2;45406:8;45396:5;:19::i;:::-;45475:1;45457:2;:14;;;:19;45453:483;;45497:11;45511:13;;45497:27;;45543:13;45565:8;45559:3;:14;45543:30;;45592:233;45623:62;45662:1;45666:2;45670:7;;;;;;45679:5;45623:30;:62::i;:::-;45618:167;;45721:40;;;;;;;;;;;;;;45618:167;45820:3;45812:5;:11;45592:233;;45907:3;45890:13;;:20;45886:34;;45912:8;;;45886:34;45478:458;;45453:483;45265:689;;;:::o;31061:485::-;31163:27;31192:23;31233:38;31274:15;:24;31290:7;31274:24;;;;;;;;;;;31233:65;;31451:18;31428:41;;31508:19;31502:26;31483:45;;31413:126;31061:485;;;:::o;30289:659::-;30438:11;30603:16;30596:5;30592:28;30583:37;;30763:16;30752:9;30748:32;30735:45;;30913:15;30902:9;30899:30;30891:5;30880:9;30877:20;30874:56;30864:66;;30289:659;;;;;:::o;36947:159::-;;;;;:::o;51515:311::-;51650:7;51670:16;14310:3;51696:19;:41;;51670:68;;14310:3;51764:31;51775:4;51781:2;51785:9;51764:10;:31::i;:::-;51756:40;;:62;;51749:69;;;51515:311;;;;;:::o;26407:450::-;26487:14;26655:16;26648:5;26644:28;26635:37;;26832:5;26818:11;26793:23;26789:41;26786:52;26779:5;26776:63;26766:73;;26407:450;;;;:::o;37771:158::-;;;;;:::o;38369:716::-;38532:4;38578:2;38553:45;;;38599:19;:17;:19::i;:::-;38620:4;38626:7;38635:5;38553:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38549:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38853:1;38836:6;:13;:18;38832:235;;;38882:40;;;;;;;;;;;;;;38832:235;39025:6;39019:13;39010:6;39006:2;39002:15;38995:38;38549:529;38722:54;;;38712:64;;;:6;:64;;;;38705:71;;;38369:716;;;;;;:::o;39547:2966::-;39620:20;39643:13;;39620:36;;39683:1;39671:8;:13;39667:44;;;39693:18;;;;;;;;;;;;;;39667:44;39724:61;39754:1;39758:2;39762:12;39776:8;39724:21;:61::i;:::-;40268:1;13268:2;40238:1;:26;;40237:32;40225:8;:45;40199:18;:22;40218:2;40199:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40547:139;40584:2;40638:33;40661:1;40665:2;40669:1;40638:14;:33::i;:::-;40605:30;40626:8;40605:20;:30::i;:::-;:66;40547:18;:139::i;:::-;40513:17;:31;40531:12;40513:31;;;;;;;;;;;:173;;;;40703:16;40734:11;40763:8;40748:12;:23;40734:37;;41284:16;41280:2;41276:25;41264:37;;41656:12;41616:8;41575:1;41513:25;41454:1;41393;41366:335;42027:1;42013:12;42009:20;41967:346;42068:3;42059:7;42056:16;41967:346;;42286:7;42276:8;42273:1;42246:25;42243:1;42240;42235:59;42121:1;42112:7;42108:15;42097:26;;41967:346;;;41971:77;42358:1;42346:8;:13;42342:45;;;42368:19;;;;;;;;;;;;;;42342:45;42420:3;42404:13;:19;;;;39973:2462;;42445:60;42474:1;42478:2;42482:12;42496:8;42445:20;:60::i;:::-;39609:2904;39547:2966;;:::o;51216:147::-;51353:6;51216:147;;;;;:::o;26959:324::-;27029:14;27262:1;27252:8;27249:15;27223:24;27219:46;27209:56;;26959:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:118::-;7739:24;7757:5;7739:24;:::i;:::-;7734:3;7727:37;7652:118;;:::o;7776:157::-;7881:45;7901:24;7919:5;7901:24;:::i;:::-;7881:45;:::i;:::-;7876:3;7869:58;7776:157;;:::o;7939:109::-;8020:21;8035:5;8020:21;:::i;:::-;8015:3;8008:34;7939:109;;:::o;8054:360::-;8140:3;8168:38;8200:5;8168:38;:::i;:::-;8222:70;8285:6;8280:3;8222:70;:::i;:::-;8215:77;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:29;8400:6;8378:29;:::i;:::-;8373:3;8369:39;8362:46;;8144:270;8054:360;;;;:::o;8420:195::-;8539:69;8602:5;8539:69;:::i;:::-;8534:3;8527:82;8420:195;;:::o;8621:364::-;8709:3;8737:39;8770:5;8737:39;:::i;:::-;8792:71;8856:6;8851:3;8792:71;:::i;:::-;8785:78;;8872:52;8917:6;8912:3;8905:4;8898:5;8894:16;8872:52;:::i;:::-;8949:29;8971:6;8949:29;:::i;:::-;8944:3;8940:39;8933:46;;8713:272;8621:364;;;;:::o;8991:377::-;9097:3;9125:39;9158:5;9125:39;:::i;:::-;9180:89;9262:6;9257:3;9180:89;:::i;:::-;9173:96;;9278:52;9323:6;9318:3;9311:4;9304:5;9300:16;9278:52;:::i;:::-;9355:6;9350:3;9346:16;9339:23;;9101:267;8991:377;;;;:::o;9374:118::-;9461:24;9479:5;9461:24;:::i;:::-;9456:3;9449:37;9374:118;;:::o;9498:157::-;9603:45;9623:24;9641:5;9623:24;:::i;:::-;9603:45;:::i;:::-;9598:3;9591:58;9498:157;;:::o;9661:435::-;9841:3;9863:95;9954:3;9945:6;9863:95;:::i;:::-;9856:102;;9975:95;10066:3;10057:6;9975:95;:::i;:::-;9968:102;;10087:3;10080:10;;9661:435;;;;;:::o;10102:397::-;10242:3;10257:75;10328:3;10319:6;10257:75;:::i;:::-;10357:2;10352:3;10348:12;10341:19;;10370:75;10441:3;10432:6;10370:75;:::i;:::-;10470:2;10465:3;10461:12;10454:19;;10490:3;10483:10;;10102:397;;;;;:::o;10505:222::-;10598:4;10636:2;10625:9;10621:18;10613:26;;10649:71;10717:1;10706:9;10702:17;10693:6;10649:71;:::i;:::-;10505:222;;;;:::o;10733:332::-;10854:4;10892:2;10881:9;10877:18;10869:26;;10905:71;10973:1;10962:9;10958:17;10949:6;10905:71;:::i;:::-;10986:72;11054:2;11043:9;11039:18;11030:6;10986:72;:::i;:::-;10733:332;;;;;:::o;11071:640::-;11266:4;11304:3;11293:9;11289:19;11281:27;;11318:71;11386:1;11375:9;11371:17;11362:6;11318:71;:::i;:::-;11399:72;11467:2;11456:9;11452:18;11443:6;11399:72;:::i;:::-;11481;11549:2;11538:9;11534:18;11525:6;11481:72;:::i;:::-;11600:9;11594:4;11590:20;11585:2;11574:9;11570:18;11563:48;11628:76;11699:4;11690:6;11628:76;:::i;:::-;11620:84;;11071:640;;;;;;;:::o;11717:210::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11855:65;11917:1;11906:9;11902:17;11893:6;11855:65;:::i;:::-;11717:210;;;;:::o;11933:286::-;12058:4;12096:2;12085:9;12081:18;12073:26;;12109:103;12209:1;12198:9;12194:17;12185:6;12109:103;:::i;:::-;11933:286;;;;:::o;12225:313::-;12338:4;12376:2;12365:9;12361:18;12353:26;;12425:9;12419:4;12415:20;12411:1;12400:9;12396:17;12389:47;12453:78;12526:4;12517:6;12453:78;:::i;:::-;12445:86;;12225:313;;;;:::o;12544:222::-;12637:4;12675:2;12664:9;12660:18;12652:26;;12688:71;12756:1;12745:9;12741:17;12732:6;12688:71;:::i;:::-;12544:222;;;;:::o;12772:129::-;12806:6;12833:20;;:::i;:::-;12823:30;;12862:33;12890:4;12882:6;12862:33;:::i;:::-;12772:129;;;:::o;12907:75::-;12940:6;12973:2;12967:9;12957:19;;12907:75;:::o;12988:307::-;13049:4;13139:18;13131:6;13128:30;13125:56;;;13161:18;;:::i;:::-;13125:56;13199:29;13221:6;13199:29;:::i;:::-;13191:37;;13283:4;13277;13273:15;13265:23;;12988:307;;;:::o;13301:308::-;13363:4;13453:18;13445:6;13442:30;13439:56;;;13475:18;;:::i;:::-;13439:56;13513:29;13535:6;13513:29;:::i;:::-;13505:37;;13597:4;13591;13587:15;13579:23;;13301:308;;;:::o;13615:98::-;13666:6;13700:5;13694:12;13684:22;;13615:98;;;:::o;13719:99::-;13771:6;13805:5;13799:12;13789:22;;13719:99;;;:::o;13824:168::-;13907:11;13941:6;13936:3;13929:19;13981:4;13976:3;13972:14;13957:29;;13824:168;;;;:::o;13998:169::-;14082:11;14116:6;14111:3;14104:19;14156:4;14151:3;14147:14;14132:29;;13998:169;;;;:::o;14173:148::-;14275:11;14312:3;14297:18;;14173:148;;;;:::o;14327:305::-;14367:3;14386:20;14404:1;14386:20;:::i;:::-;14381:25;;14420:20;14438:1;14420:20;:::i;:::-;14415:25;;14574:1;14506:66;14502:74;14499:1;14496:81;14493:107;;;14580:18;;:::i;:::-;14493:107;14624:1;14621;14617:9;14610:16;;14327:305;;;;:::o;14638:185::-;14678:1;14695:20;14713:1;14695:20;:::i;:::-;14690:25;;14729:20;14747:1;14729:20;:::i;:::-;14724:25;;14768:1;14758:35;;14773:18;;:::i;:::-;14758:35;14815:1;14812;14808:9;14803:14;;14638:185;;;;:::o;14829:348::-;14869:7;14892:20;14910:1;14892:20;:::i;:::-;14887:25;;14926:20;14944:1;14926:20;:::i;:::-;14921:25;;15114:1;15046:66;15042:74;15039:1;15036:81;15031:1;15024:9;15017:17;15013:105;15010:131;;;15121:18;;:::i;:::-;15010:131;15169:1;15166;15162:9;15151:20;;14829:348;;;;:::o;15183:96::-;15220:7;15249:24;15267:5;15249:24;:::i;:::-;15238:35;;15183:96;;;:::o;15285:90::-;15319:7;15362:5;15355:13;15348:21;15337:32;;15285:90;;;:::o;15381:149::-;15417:7;15457:66;15450:5;15446:78;15435:89;;15381:149;;;:::o;15536:126::-;15573:7;15613:42;15606:5;15602:54;15591:65;;15536:126;;;:::o;15668:77::-;15705:7;15734:5;15723:16;;15668:77;;;:::o;15751:158::-;15833:9;15866:37;15897:5;15866:37;:::i;:::-;15853:50;;15751:158;;;:::o;15915:126::-;15965:9;15998:37;16029:5;15998:37;:::i;:::-;15985:50;;15915:126;;;:::o;16047:113::-;16097:9;16130:24;16148:5;16130:24;:::i;:::-;16117:37;;16047:113;;;:::o;16166:154::-;16250:6;16245:3;16240;16227:30;16312:1;16303:6;16298:3;16294:16;16287:27;16166:154;;;:::o;16326:307::-;16394:1;16404:113;16418:6;16415:1;16412:13;16404:113;;;16503:1;16498:3;16494:11;16488:18;16484:1;16479:3;16475:11;16468:39;16440:2;16437:1;16433:10;16428:15;;16404:113;;;16535:6;16532:1;16529:13;16526:101;;;16615:1;16606:6;16601:3;16597:16;16590:27;16526:101;16375:258;16326:307;;;:::o;16639:320::-;16683:6;16720:1;16714:4;16710:12;16700:22;;16767:1;16761:4;16757:12;16788:18;16778:81;;16844:4;16836:6;16832:17;16822:27;;16778:81;16906:2;16898:6;16895:14;16875:18;16872:38;16869:84;;;16925:18;;:::i;:::-;16869:84;16690:269;16639:320;;;:::o;16965:281::-;17048:27;17070:4;17048:27;:::i;:::-;17040:6;17036:40;17178:6;17166:10;17163:22;17142:18;17130:10;17127:34;17124:62;17121:88;;;17189:18;;:::i;:::-;17121:88;17229:10;17225:2;17218:22;17008:238;16965:281;;:::o;17252:100::-;17291:7;17320:26;17340:5;17320:26;:::i;:::-;17309:37;;17252:100;;;:::o;17358:94::-;17397:7;17426:20;17440:5;17426:20;:::i;:::-;17415:31;;17358:94;;;:::o;17458:79::-;17497:7;17526:5;17515:16;;17458:79;;;:::o;17543:176::-;17575:1;17592:20;17610:1;17592:20;:::i;:::-;17587:25;;17626:20;17644:1;17626:20;:::i;:::-;17621:25;;17665:1;17655:35;;17670:18;;:::i;:::-;17655:35;17711:1;17708;17704:9;17699:14;;17543:176;;;;:::o;17725:180::-;17773:77;17770:1;17763:88;17870:4;17867:1;17860:15;17894:4;17891:1;17884:15;17911:180;17959:77;17956:1;17949:88;18056:4;18053:1;18046:15;18080:4;18077:1;18070:15;18097:180;18145:77;18142:1;18135:88;18242:4;18239:1;18232:15;18266:4;18263:1;18256:15;18283:180;18331:77;18328:1;18321:88;18428:4;18425:1;18418:15;18452:4;18449:1;18442:15;18469:117;18578:1;18575;18568:12;18592:117;18701:1;18698;18691:12;18715:117;18824:1;18821;18814:12;18838:117;18947:1;18944;18937:12;18961:102;19002:6;19053:2;19049:7;19044:2;19037:5;19033:14;19029:28;19019:38;;18961:102;;;:::o;19069:94::-;19102:8;19150:5;19146:2;19142:14;19121:35;;19069:94;;;:::o;19169:122::-;19242:24;19260:5;19242:24;:::i;:::-;19235:5;19232:35;19222:63;;19281:1;19278;19271:12;19222:63;19169:122;:::o;19297:116::-;19367:21;19382:5;19367:21;:::i;:::-;19360:5;19357:32;19347:60;;19403:1;19400;19393:12;19347:60;19297:116;:::o;19419:120::-;19491:23;19508:5;19491:23;:::i;:::-;19484:5;19481:34;19471:62;;19529:1;19526;19519:12;19471:62;19419:120;:::o;19545:122::-;19618:24;19636:5;19618:24;:::i;:::-;19611:5;19608:35;19598:63;;19657:1;19654;19647:12;19598:63;19545:122;:::o

Swarm Source

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