ETH Price: $3,435.97 (+1.64%)
Gas: 2 Gwei

Token

SKULLPUNKs (SKP)
 

Overview

Max Total Supply

1,500 SKP

Holders

1,356

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SKP
0x91a5334135e54dc4f2855a0f146f2ecd3c3730bd
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:
SKULLPUNKs

Compiler Version
v0.8.17+commit.8df45f5f

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-01
*/

/**
 .▄▄ · ▄ •▄ ▄• ▄▌▄▄▌  ▄▄▌   ▄▄▄·▄• ▄▌ ▐ ▄ ▄ •▄ .▄▄ · 
▐█ ▀. █▌▄▌▪█▪██▌██•  ██•  ▐█ ▄██▪██▌•█▌▐██▌▄▌▪▐█ ▀. 
▄▀▀▀█▄▐▀▀▄·█▌▐█▌██▪  ██▪   ██▀·█▌▐█▌▐█▐▐▌▐▀▀▄·▄▀▀▀█▄
▐█▄▪▐█▐█.█▌▐█▄█▌▐█▌▐▌▐█▌▐▌▐█▪·•▐█▄█▌██▐█▌▐█.█▌▐█▄▪▐█
 ▀▀▀▀ ·▀  ▀ ▀▀▀ .▀▀▀ .▀▀▀ .▀    ▀▀▀ ▀▀ █▪·▀  ▀ ▀▀▀▀ 
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function 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);
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


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

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/SKULLPUNKs.sol


pragma solidity ^0.8.15;


contract SKULLPUNKs is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping(address => bool) freeMintMapping;
    string public baseURI = "";  
    string public baseExtension = ".json";
    uint256 public price = 0.003 ether;
    uint256 public maxSupply = 1500;
    uint256 public maxPerTransaction = 15; 
    uint256 public maxFreePerWallet = 1; 

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
    constructor () ERC721A("SKULLPUNKs", "SKP") {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // Mint
    function publicMint(uint256 amount) public payable callerIsUser{
        require(amount <= maxPerTransaction, "Max Per Transaction!");
        require(totalSupply() + amount <= maxSupply, "Sold Out!");
        uint256 mintAmount = amount;
        
        if (!freeMintMapping[msg.sender] ) {
            freeMintMapping[msg.sender] = true;
            mintAmount--;
        }

        require(msg.value > 0 || mintAmount == 0, "Insufficient!");
        if (msg.value >= price * mintAmount) {
            _safeMint(msg.sender, amount);
        }
    }    

    function teamReserve(uint256 numberOfTokens) external onlyOwner {
        _mint(msg.sender, numberOfTokens);
    }

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    } 

    /////////////////////////////
    // 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"numberOfTokens","type":"uint256"}],"name":"teamReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a9081620000249190620006c2565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200006b9190620006c2565b50660aa87bee538000600c556105dc600d55600f600e556001600f553480156200009457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f534b554c4c50554e4b73000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f534b5000000000000000000000000000000000000000000000000000000000008152508160029081620001299190620006c2565b5080600390816200013b9190620006c2565b506200014c6200037160201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003495780156200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d5929190620007ee565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b5050505062000348565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028f929190620007ee565b600060405180830381600087803b158015620002aa57600080fd5b505af1158015620002bf573d6000803e3d6000fd5b5050505062000347565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031291906200081b565b600060405180830381600087803b1580156200032d57600080fd5b505af115801562000342573d6000803e3d6000fd5b505050505b5b5b50506200036b6200035f6200037a60201b60201c565b6200038260201b60201c565b62000838565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ca57607f821691505b602082108103620004e057620004df62000482565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050b565b6200055686836200050b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a36200059d62000597846200056e565b62000578565b6200056e565b9050919050565b6000819050919050565b620005bf8362000582565b620005d7620005ce82620005aa565b84845462000518565b825550505050565b600090565b620005ee620005df565b620005fb818484620005b4565b505050565b5b81811015620006235762000617600082620005e4565b60018101905062000601565b5050565b601f82111562000672576200063c81620004e6565b6200064784620004fb565b8101602085101562000657578190505b6200066f6200066685620004fb565b83018262000600565b50505b505050565b600082821c905092915050565b6000620006976000198460080262000677565b1980831691505092915050565b6000620006b2838362000684565b9150826002028217905092915050565b620006cd8262000448565b67ffffffffffffffff811115620006e957620006e862000453565b5b620006f58254620004b1565b6200070282828562000627565b600060209050601f8311600181146200073a576000841562000725578287015190505b620007318582620006a4565b865550620007a1565b601f1984166200074a86620004e6565b60005b8281101562000774578489015182556001820191506020850194506020810190506200074d565b8683101562000794578489015162000790601f89168262000684565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007d682620007a9565b9050919050565b620007e881620007c9565b82525050565b6000604082019050620008056000830185620007dd565b620008146020830184620007dd565b9392505050565b6000602082019050620008326000830184620007dd565b92915050565b61331f80620008486000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105c7578063d5abeb0114610604578063e985e9c51461062f578063f2fde38b1461066c576101c2565b8063a22cb4651461052c578063a702735714610555578063b88d4fde14610580578063c66828621461059c576101c2565b80638da5cb5b116100d15780638da5cb5b1461048257806391b7f5ed146104ad57806395d89b41146104d6578063a035b1fe14610501576101c2565b80636c0360eb1461040357806370a082311461042e578063715018a61461046b576101c2565b8063347ac6e41161016457806342842e0e1161013e57806342842e0e146103565780634b980d671461037257806355f804b31461039d5780636352211e146103c6576101c2565b8063347ac6e4146102eb5780633ccfd60b1461031457806341f434341461032b576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461028857806323b872dd146102b35780632db11544146102cf576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612439565b610695565b6040516101fb9190612481565b60405180910390f35b34801561021057600080fd5b50610219610727565b604051610226919061252c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612584565b6107b9565b60405161026391906125f2565b60405180910390f35b61028660048036038101906102819190612639565b610838565b005b34801561029457600080fd5b5061029d610942565b6040516102aa9190612688565b60405180910390f35b6102cd60048036038101906102c891906126a3565b610959565b005b6102e960048036038101906102e49190612584565b610aa9565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612584565b610ce1565b005b34801561032057600080fd5b50610329610cf6565b005b34801561033757600080fd5b50610340610d47565b60405161034d9190612755565b60405180910390f35b610370600480360381019061036b91906126a3565b610d59565b005b34801561037e57600080fd5b50610387610ea9565b6040516103949190612688565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906128a5565b610eaf565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612584565b610eca565b6040516103fa91906125f2565b60405180910390f35b34801561040f57600080fd5b50610418610edc565b604051610425919061252c565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906128ee565b610f6a565b6040516104629190612688565b60405180910390f35b34801561047757600080fd5b50610480611022565b005b34801561048e57600080fd5b50610497611036565b6040516104a491906125f2565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612584565b611060565b005b3480156104e257600080fd5b506104eb611072565b6040516104f8919061252c565b60405180910390f35b34801561050d57600080fd5b50610516611104565b6040516105239190612688565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612947565b61110a565b005b34801561056157600080fd5b5061056a611214565b6040516105779190612688565b60405180910390f35b61059a60048036038101906105959190612a28565b61121a565b005b3480156105a857600080fd5b506105b161136d565b6040516105be919061252c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612584565b6113fb565b6040516105fb919061252c565b60405180910390f35b34801561061057600080fd5b50610619611499565b6040516106269190612688565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612aab565b61149f565b6040516106639190612481565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906128ee565b611533565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107205750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073690612b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612b1a565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826115b6565b6107fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610933576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108b0929190612b4b565b602060405180830381865afa1580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612b89565b61093257806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161092991906125f2565b60405180910390fd5b5b61093d8383611615565b505050565b600061094c611759565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a97573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cb576109c6848484611762565b610aa3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a14929190612b4b565b602060405180830381865afa158015610a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a559190612b89565b610a9657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a8d91906125f2565b60405180910390fd5b5b610aa2848484611762565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612c02565b60405180910390fd5b600e54811115610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390612c6e565b60405180910390fd5b600d5481610b68610942565b610b729190612cbd565b1115610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612d3d565b60405180910390fd5b6000819050600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c70576001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c6c90612d5d565b9150505b6000341180610c7f5750600081145b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590612dd2565b60405180910390fd5b80600c54610ccc9190612df2565b3410610cdd57610cdc3383611a84565b5b5050565b610ce9611aa2565b610cf33382611b20565b50565b610cfe611aa2565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d44573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e97573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcb57610dc6848484611cdb565b610ea3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e14929190612b4b565b602060405180830381865afa158015610e31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e559190612b89565b610e9657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e8d91906125f2565b60405180910390fd5b5b610ea2848484611cdb565b5b50505050565b600e5481565b610eb7611aa2565b80600a9081610ec69190612fd6565b5050565b6000610ed582611cfb565b9050919050565b600a8054610ee990612b1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1590612b1a565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102a611aa2565b6110346000611dc7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611068611aa2565b80600c8190555050565b60606003805461108190612b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad90612b1a565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611205576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611182929190612b4b565b602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190612b89565b61120457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111fb91906125f2565b60405180910390fd5b5b61120f8383611e8d565b505050565b600f5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611359573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128d5761128885858585611f98565b611366565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112d6929190612b4b565b602060405180830381865afa1580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113179190612b89565b61135857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161134f91906125f2565b60405180910390fd5b5b61136585858585611f98565b5b5050505050565b600b805461137a90612b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546113a690612b1a565b80156113f35780601f106113c8576101008083540402835291602001916113f3565b820191906000526020600020905b8154815290600101906020018083116113d657829003601f168201915b505050505081565b6060611406826115b6565b61143c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061144661200b565b905060008151036114665760405180602001604052806000815250611491565b806114708461209d565b6040516020016114819291906130e4565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153b611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061317a565b60405180910390fd5b6115b381611dc7565b50565b6000816115c1611759565b111580156115d0575060005482105b801561160e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061162082610eca565b90508073ffffffffffffffffffffffffffffffffffffffff166116416120ed565b73ffffffffffffffffffffffffffffffffffffffff16146116a45761166d816116686120ed565b61149f565b6116a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061176d82611cfb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117e0846120f5565b915091506117f681876117f16120ed565b61211c565b6118425761180b866118066120ed565b61149f565b611841576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118b58686866001612160565b80156118c057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061198e8561196a888887612166565b7c02000000000000000000000000000000000000000000000000000000001761218e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a145760006001850190506000600460008381526020019081526020016000205403611a12576000548114611a11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7c86868660016121b9565b505050505050565b611a9e8282604051806020016040528060008152506121bf565b5050565b611aaa61225c565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611036565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906131e6565b60405180910390fd5b565b60008054905060008203611b60576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b6d6000848385612160565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611be483611bd56000866000612166565b611bde85612264565b1761218e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c8557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c4a565b5060008203611cc0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cd660008483856121b9565b505050565b611cf68383836040518060200160405280600081525061121a565b505050565b60008082905080611d0a611759565b11611d9057600054811015611d8f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d8d575b60008103611d83576004600083600190039350838152602001908152602001600020549050611d59565b8092505050611dc2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611e9a6120ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f476120ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8c9190612481565b60405180910390a35050565b611fa3848484610959565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461200557611fce84848484612274565b612004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461201a90612b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461204690612b1a565b80156120935780601f1061206857610100808354040283529160200191612093565b820191906000526020600020905b81548152906001019060200180831161207657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156120d857600184039350600a81066030018453600a81049050806120b6575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861217d8686846123c4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6121c98383611b20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225757600080549050600083820390505b6122096000868380600101945086612274565b61223f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121f657816000541461225457600080fd5b50505b505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229a6120ed565b8786866040518563ffffffff1660e01b81526004016122bc949392919061325b565b6020604051808303816000875af19250505080156122f857506040513d601f19601f820116820180604052508101906122f591906132bc565b60015b612371573d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b506000815103612369576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612416816123e1565b811461242157600080fd5b50565b6000813590506124338161240d565b92915050565b60006020828403121561244f5761244e6123d7565b5b600061245d84828501612424565b91505092915050565b60008115159050919050565b61247b81612466565b82525050565b60006020820190506124966000830184612472565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124d65780820151818401526020810190506124bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006124fe8261249c565b61250881856124a7565b93506125188185602086016124b8565b612521816124e2565b840191505092915050565b6000602082019050818103600083015261254681846124f3565b905092915050565b6000819050919050565b6125618161254e565b811461256c57600080fd5b50565b60008135905061257e81612558565b92915050565b60006020828403121561259a576125996123d7565b5b60006125a88482850161256f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125dc826125b1565b9050919050565b6125ec816125d1565b82525050565b600060208201905061260760008301846125e3565b92915050565b612616816125d1565b811461262157600080fd5b50565b6000813590506126338161260d565b92915050565b600080604083850312156126505761264f6123d7565b5b600061265e85828601612624565b925050602061266f8582860161256f565b9150509250929050565b6126828161254e565b82525050565b600060208201905061269d6000830184612679565b92915050565b6000806000606084860312156126bc576126bb6123d7565b5b60006126ca86828701612624565b93505060206126db86828701612624565b92505060406126ec8682870161256f565b9150509250925092565b6000819050919050565b600061271b612716612711846125b1565b6126f6565b6125b1565b9050919050565b600061272d82612700565b9050919050565b600061273f82612722565b9050919050565b61274f81612734565b82525050565b600060208201905061276a6000830184612746565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127b2826124e2565b810181811067ffffffffffffffff821117156127d1576127d061277a565b5b80604052505050565b60006127e46123cd565b90506127f082826127a9565b919050565b600067ffffffffffffffff8211156128105761280f61277a565b5b612819826124e2565b9050602081019050919050565b82818337600083830152505050565b6000612848612843846127f5565b6127da565b90508281526020810184848401111561286457612863612775565b5b61286f848285612826565b509392505050565b600082601f83011261288c5761288b612770565b5b813561289c848260208601612835565b91505092915050565b6000602082840312156128bb576128ba6123d7565b5b600082013567ffffffffffffffff8111156128d9576128d86123dc565b5b6128e584828501612877565b91505092915050565b600060208284031215612904576129036123d7565b5b600061291284828501612624565b91505092915050565b61292481612466565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b6000806040838503121561295e5761295d6123d7565b5b600061296c85828601612624565b925050602061297d85828601612932565b9150509250929050565b600067ffffffffffffffff8211156129a2576129a161277a565b5b6129ab826124e2565b9050602081019050919050565b60006129cb6129c684612987565b6127da565b9050828152602081018484840111156129e7576129e6612775565b5b6129f2848285612826565b509392505050565b600082601f830112612a0f57612a0e612770565b5b8135612a1f8482602086016129b8565b91505092915050565b60008060008060808587031215612a4257612a416123d7565b5b6000612a5087828801612624565b9450506020612a6187828801612624565b9350506040612a728782880161256f565b925050606085013567ffffffffffffffff811115612a9357612a926123dc565b5b612a9f878288016129fa565b91505092959194509250565b60008060408385031215612ac257612ac16123d7565b5b6000612ad085828601612624565b9250506020612ae185828601612624565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3257607f821691505b602082108103612b4557612b44612aeb565b5b50919050565b6000604082019050612b6060008301856125e3565b612b6d60208301846125e3565b9392505050565b600081519050612b838161291b565b92915050565b600060208284031215612b9f57612b9e6123d7565b5b6000612bad84828501612b74565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bec601e836124a7565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b6000612c586014836124a7565b9150612c6382612c22565b602082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc88261254e565b9150612cd38361254e565b9250828201905080821115612ceb57612cea612c8e565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612d276009836124a7565b9150612d3282612cf1565b602082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b6000612d688261254e565b915060008203612d7b57612d7a612c8e565b5b600182039050919050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000612dbc600d836124a7565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b6000612dfd8261254e565b9150612e088361254e565b9250828202612e168161254e565b91508282048414831517612e2d57612e2c612c8e565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e59565b612ea08683612e59565b95508019841693508086168417925050509392505050565b6000612ed3612ece612ec98461254e565b6126f6565b61254e565b9050919050565b6000819050919050565b612eed83612eb8565b612f01612ef982612eda565b848454612e66565b825550505050565b600090565b612f16612f09565b612f21818484612ee4565b505050565b5b81811015612f4557612f3a600082612f0e565b600181019050612f27565b5050565b601f821115612f8a57612f5b81612e34565b612f6484612e49565b81016020851015612f73578190505b612f87612f7f85612e49565b830182612f26565b50505b505050565b600082821c905092915050565b6000612fad60001984600802612f8f565b1980831691505092915050565b6000612fc68383612f9c565b9150826002028217905092915050565b612fdf8261249c565b67ffffffffffffffff811115612ff857612ff761277a565b5b6130028254612b1a565b61300d828285612f49565b600060209050601f831160018114613040576000841561302e578287015190505b6130388582612fba565b8655506130a0565b601f19841661304e86612e34565b60005b8281101561307657848901518255600182019150602085019450602081019050613051565b86831015613093578489015161308f601f891682612f9c565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006130be8261249c565b6130c881856130a8565b93506130d88185602086016124b8565b80840191505092915050565b60006130f082856130b3565b91506130fc82846130b3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131646026836124a7565b915061316f82613108565b604082019050919050565b6000602082019050818103600083015261319381613157565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131d06020836124a7565b91506131db8261319a565b602082019050919050565b600060208201905081810360008301526131ff816131c3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061322d82613206565b6132378185613211565b93506132478185602086016124b8565b613250816124e2565b840191505092915050565b600060808201905061327060008301876125e3565b61327d60208301866125e3565b61328a6040830185612679565b818103606083015261329c8184613222565b905095945050505050565b6000815190506132b68161240d565b92915050565b6000602082840312156132d2576132d16123d7565b5b60006132e0848285016132a7565b9150509291505056fea2646970667358221220e2dbd1dfad67a19db9cd4e92f70b2c471cb45a30e52025eb8953159a95537f3864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105c7578063d5abeb0114610604578063e985e9c51461062f578063f2fde38b1461066c576101c2565b8063a22cb4651461052c578063a702735714610555578063b88d4fde14610580578063c66828621461059c576101c2565b80638da5cb5b116100d15780638da5cb5b1461048257806391b7f5ed146104ad57806395d89b41146104d6578063a035b1fe14610501576101c2565b80636c0360eb1461040357806370a082311461042e578063715018a61461046b576101c2565b8063347ac6e41161016457806342842e0e1161013e57806342842e0e146103565780634b980d671461037257806355f804b31461039d5780636352211e146103c6576101c2565b8063347ac6e4146102eb5780633ccfd60b1461031457806341f434341461032b576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461028857806323b872dd146102b35780632db11544146102cf576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612439565b610695565b6040516101fb9190612481565b60405180910390f35b34801561021057600080fd5b50610219610727565b604051610226919061252c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612584565b6107b9565b60405161026391906125f2565b60405180910390f35b61028660048036038101906102819190612639565b610838565b005b34801561029457600080fd5b5061029d610942565b6040516102aa9190612688565b60405180910390f35b6102cd60048036038101906102c891906126a3565b610959565b005b6102e960048036038101906102e49190612584565b610aa9565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612584565b610ce1565b005b34801561032057600080fd5b50610329610cf6565b005b34801561033757600080fd5b50610340610d47565b60405161034d9190612755565b60405180910390f35b610370600480360381019061036b91906126a3565b610d59565b005b34801561037e57600080fd5b50610387610ea9565b6040516103949190612688565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906128a5565b610eaf565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612584565b610eca565b6040516103fa91906125f2565b60405180910390f35b34801561040f57600080fd5b50610418610edc565b604051610425919061252c565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906128ee565b610f6a565b6040516104629190612688565b60405180910390f35b34801561047757600080fd5b50610480611022565b005b34801561048e57600080fd5b50610497611036565b6040516104a491906125f2565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612584565b611060565b005b3480156104e257600080fd5b506104eb611072565b6040516104f8919061252c565b60405180910390f35b34801561050d57600080fd5b50610516611104565b6040516105239190612688565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612947565b61110a565b005b34801561056157600080fd5b5061056a611214565b6040516105779190612688565b60405180910390f35b61059a60048036038101906105959190612a28565b61121a565b005b3480156105a857600080fd5b506105b161136d565b6040516105be919061252c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612584565b6113fb565b6040516105fb919061252c565b60405180910390f35b34801561061057600080fd5b50610619611499565b6040516106269190612688565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612aab565b61149f565b6040516106639190612481565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906128ee565b611533565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107205750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073690612b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612b1a565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826115b6565b6107fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610933576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108b0929190612b4b565b602060405180830381865afa1580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612b89565b61093257806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161092991906125f2565b60405180910390fd5b5b61093d8383611615565b505050565b600061094c611759565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a97573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cb576109c6848484611762565b610aa3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a14929190612b4b565b602060405180830381865afa158015610a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a559190612b89565b610a9657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a8d91906125f2565b60405180910390fd5b5b610aa2848484611762565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612c02565b60405180910390fd5b600e54811115610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390612c6e565b60405180910390fd5b600d5481610b68610942565b610b729190612cbd565b1115610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612d3d565b60405180910390fd5b6000819050600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c70576001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c6c90612d5d565b9150505b6000341180610c7f5750600081145b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590612dd2565b60405180910390fd5b80600c54610ccc9190612df2565b3410610cdd57610cdc3383611a84565b5b5050565b610ce9611aa2565b610cf33382611b20565b50565b610cfe611aa2565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d44573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e97573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcb57610dc6848484611cdb565b610ea3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e14929190612b4b565b602060405180830381865afa158015610e31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e559190612b89565b610e9657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e8d91906125f2565b60405180910390fd5b5b610ea2848484611cdb565b5b50505050565b600e5481565b610eb7611aa2565b80600a9081610ec69190612fd6565b5050565b6000610ed582611cfb565b9050919050565b600a8054610ee990612b1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1590612b1a565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102a611aa2565b6110346000611dc7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611068611aa2565b80600c8190555050565b60606003805461108190612b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad90612b1a565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611205576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611182929190612b4b565b602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190612b89565b61120457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111fb91906125f2565b60405180910390fd5b5b61120f8383611e8d565b505050565b600f5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611359573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128d5761128885858585611f98565b611366565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112d6929190612b4b565b602060405180830381865afa1580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113179190612b89565b61135857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161134f91906125f2565b60405180910390fd5b5b61136585858585611f98565b5b5050505050565b600b805461137a90612b1a565b80601f01602080910402602001604051908101604052809291908181526020018280546113a690612b1a565b80156113f35780601f106113c8576101008083540402835291602001916113f3565b820191906000526020600020905b8154815290600101906020018083116113d657829003601f168201915b505050505081565b6060611406826115b6565b61143c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061144661200b565b905060008151036114665760405180602001604052806000815250611491565b806114708461209d565b6040516020016114819291906130e4565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153b611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061317a565b60405180910390fd5b6115b381611dc7565b50565b6000816115c1611759565b111580156115d0575060005482105b801561160e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061162082610eca565b90508073ffffffffffffffffffffffffffffffffffffffff166116416120ed565b73ffffffffffffffffffffffffffffffffffffffff16146116a45761166d816116686120ed565b61149f565b6116a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061176d82611cfb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117e0846120f5565b915091506117f681876117f16120ed565b61211c565b6118425761180b866118066120ed565b61149f565b611841576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118b58686866001612160565b80156118c057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061198e8561196a888887612166565b7c02000000000000000000000000000000000000000000000000000000001761218e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a145760006001850190506000600460008381526020019081526020016000205403611a12576000548114611a11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7c86868660016121b9565b505050505050565b611a9e8282604051806020016040528060008152506121bf565b5050565b611aaa61225c565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611036565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906131e6565b60405180910390fd5b565b60008054905060008203611b60576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b6d6000848385612160565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611be483611bd56000866000612166565b611bde85612264565b1761218e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c8557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c4a565b5060008203611cc0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cd660008483856121b9565b505050565b611cf68383836040518060200160405280600081525061121a565b505050565b60008082905080611d0a611759565b11611d9057600054811015611d8f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d8d575b60008103611d83576004600083600190039350838152602001908152602001600020549050611d59565b8092505050611dc2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611e9a6120ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f476120ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8c9190612481565b60405180910390a35050565b611fa3848484610959565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461200557611fce84848484612274565b612004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461201a90612b1a565b80601f016020809104026020016040519081016040528092919081815260200182805461204690612b1a565b80156120935780601f1061206857610100808354040283529160200191612093565b820191906000526020600020905b81548152906001019060200180831161207657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156120d857600184039350600a81066030018453600a81049050806120b6575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861217d8686846123c4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6121c98383611b20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225757600080549050600083820390505b6122096000868380600101945086612274565b61223f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121f657816000541461225457600080fd5b50505b505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229a6120ed565b8786866040518563ffffffff1660e01b81526004016122bc949392919061325b565b6020604051808303816000875af19250505080156122f857506040513d601f19601f820116820180604052508101906122f591906132bc565b60015b612371573d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b506000815103612369576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612416816123e1565b811461242157600080fd5b50565b6000813590506124338161240d565b92915050565b60006020828403121561244f5761244e6123d7565b5b600061245d84828501612424565b91505092915050565b60008115159050919050565b61247b81612466565b82525050565b60006020820190506124966000830184612472565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124d65780820151818401526020810190506124bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006124fe8261249c565b61250881856124a7565b93506125188185602086016124b8565b612521816124e2565b840191505092915050565b6000602082019050818103600083015261254681846124f3565b905092915050565b6000819050919050565b6125618161254e565b811461256c57600080fd5b50565b60008135905061257e81612558565b92915050565b60006020828403121561259a576125996123d7565b5b60006125a88482850161256f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125dc826125b1565b9050919050565b6125ec816125d1565b82525050565b600060208201905061260760008301846125e3565b92915050565b612616816125d1565b811461262157600080fd5b50565b6000813590506126338161260d565b92915050565b600080604083850312156126505761264f6123d7565b5b600061265e85828601612624565b925050602061266f8582860161256f565b9150509250929050565b6126828161254e565b82525050565b600060208201905061269d6000830184612679565b92915050565b6000806000606084860312156126bc576126bb6123d7565b5b60006126ca86828701612624565b93505060206126db86828701612624565b92505060406126ec8682870161256f565b9150509250925092565b6000819050919050565b600061271b612716612711846125b1565b6126f6565b6125b1565b9050919050565b600061272d82612700565b9050919050565b600061273f82612722565b9050919050565b61274f81612734565b82525050565b600060208201905061276a6000830184612746565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127b2826124e2565b810181811067ffffffffffffffff821117156127d1576127d061277a565b5b80604052505050565b60006127e46123cd565b90506127f082826127a9565b919050565b600067ffffffffffffffff8211156128105761280f61277a565b5b612819826124e2565b9050602081019050919050565b82818337600083830152505050565b6000612848612843846127f5565b6127da565b90508281526020810184848401111561286457612863612775565b5b61286f848285612826565b509392505050565b600082601f83011261288c5761288b612770565b5b813561289c848260208601612835565b91505092915050565b6000602082840312156128bb576128ba6123d7565b5b600082013567ffffffffffffffff8111156128d9576128d86123dc565b5b6128e584828501612877565b91505092915050565b600060208284031215612904576129036123d7565b5b600061291284828501612624565b91505092915050565b61292481612466565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b6000806040838503121561295e5761295d6123d7565b5b600061296c85828601612624565b925050602061297d85828601612932565b9150509250929050565b600067ffffffffffffffff8211156129a2576129a161277a565b5b6129ab826124e2565b9050602081019050919050565b60006129cb6129c684612987565b6127da565b9050828152602081018484840111156129e7576129e6612775565b5b6129f2848285612826565b509392505050565b600082601f830112612a0f57612a0e612770565b5b8135612a1f8482602086016129b8565b91505092915050565b60008060008060808587031215612a4257612a416123d7565b5b6000612a5087828801612624565b9450506020612a6187828801612624565b9350506040612a728782880161256f565b925050606085013567ffffffffffffffff811115612a9357612a926123dc565b5b612a9f878288016129fa565b91505092959194509250565b60008060408385031215612ac257612ac16123d7565b5b6000612ad085828601612624565b9250506020612ae185828601612624565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3257607f821691505b602082108103612b4557612b44612aeb565b5b50919050565b6000604082019050612b6060008301856125e3565b612b6d60208301846125e3565b9392505050565b600081519050612b838161291b565b92915050565b600060208284031215612b9f57612b9e6123d7565b5b6000612bad84828501612b74565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bec601e836124a7565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b6000612c586014836124a7565b9150612c6382612c22565b602082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc88261254e565b9150612cd38361254e565b9250828201905080821115612ceb57612cea612c8e565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612d276009836124a7565b9150612d3282612cf1565b602082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b6000612d688261254e565b915060008203612d7b57612d7a612c8e565b5b600182039050919050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000612dbc600d836124a7565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b6000612dfd8261254e565b9150612e088361254e565b9250828202612e168161254e565b91508282048414831517612e2d57612e2c612c8e565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e59565b612ea08683612e59565b95508019841693508086168417925050509392505050565b6000612ed3612ece612ec98461254e565b6126f6565b61254e565b9050919050565b6000819050919050565b612eed83612eb8565b612f01612ef982612eda565b848454612e66565b825550505050565b600090565b612f16612f09565b612f21818484612ee4565b505050565b5b81811015612f4557612f3a600082612f0e565b600181019050612f27565b5050565b601f821115612f8a57612f5b81612e34565b612f6484612e49565b81016020851015612f73578190505b612f87612f7f85612e49565b830182612f26565b50505b505050565b600082821c905092915050565b6000612fad60001984600802612f8f565b1980831691505092915050565b6000612fc68383612f9c565b9150826002028217905092915050565b612fdf8261249c565b67ffffffffffffffff811115612ff857612ff761277a565b5b6130028254612b1a565b61300d828285612f49565b600060209050601f831160018114613040576000841561302e578287015190505b6130388582612fba565b8655506130a0565b601f19841661304e86612e34565b60005b8281101561307657848901518255600182019150602085019450602081019050613051565b86831015613093578489015161308f601f891682612f9c565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006130be8261249c565b6130c881856130a8565b93506130d88185602086016124b8565b80840191505092915050565b60006130f082856130b3565b91506130fc82846130b3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131646026836124a7565b915061316f82613108565b604082019050919050565b6000602082019050818103600083015261319381613157565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131d06020836124a7565b91506131db8261319a565b602082019050919050565b600060208201905081810360008301526131ff816131c3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061322d82613206565b6132378185613211565b93506132478185602086016124b8565b613250816124e2565b840191505092915050565b600060808201905061327060008301876125e3565b61327d60208301866125e3565b61328a6040830185612679565b818103606083015261329c8184613222565b905095945050505050565b6000815190506132b68161240d565b92915050565b6000602082840312156132d2576132d16123d7565b5b60006132e0848285016132a7565b9150509291505056fea2646970667358221220e2dbd1dfad67a19db9cd4e92f70b2c471cb45a30e52025eb8953159a95537f3864736f6c63430008110033

Deployed Bytecode Sourcemap

64652:2997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25013:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25915:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32406:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66862:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21666:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67035:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65330:565;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65907:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66344:108;;;;;;;;;;;;;:::i;:::-;;3795:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67214:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64931:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66464:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27308:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64773:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22850:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63766:103;;;;;;;;;;;;;:::i;:::-;;63118:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66132:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26091:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64852:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66678:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64976:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67401:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64808:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26301:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64893:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33355:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64024:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25013:639;25098:4;25437:10;25422:25;;:11;:25;;;;:102;;;;25514:10;25499:25;;:11;:25;;;;25422:102;:179;;;;25591:10;25576:25;;:11;:25;;;;25422:179;25402:199;;25013:639;;;:::o;25915:100::-;25969:13;26002:5;25995:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25915:100;:::o;32406:218::-;32482:7;32507:16;32515:7;32507;:16::i;:::-;32502:64;;32532:34;;;;;;;;;;;;;;32502:64;32586:15;:24;32602:7;32586:24;;;;;;;;;;;:30;;;;;;;;;;;;32579:37;;32406:218;;;:::o;66862:165::-;66966:8;5837:1;3895:42;5789:45;;;:49;5785:225;;;3895:42;5860;;;5911:4;5918:8;5860:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5855:144;;5974:8;5955:28;;;;;;;;;;;:::i;:::-;;;;;;;;5855:144;5785:225;66987:32:::1;67001:8;67011:7;66987:13;:32::i;:::-;66862:165:::0;;;:::o;21666:323::-;21727:7;21955:15;:13;:15::i;:::-;21940:12;;21924:13;;:28;:46;21917:53;;21666:323;:::o;67035:171::-;67144:4;5091:1;3895:42;5043:45;;;:49;5039:539;;;5332:10;5324:18;;:4;:18;;;5320:85;;67161:37:::1;67180:4;67186:2;67190:7;67161:18;:37::i;:::-;5383:7:::0;;5320:85;3895:42;5424;;;5475:4;5482:10;5424:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5419:148;;5540:10;5521:30;;;;;;;;;;;:::i;:::-;;;;;;;;5419:148;5039:539;67161:37:::1;67180:4;67186:2;67190:7;67161:18;:37::i;:::-;67035:171:::0;;;;;:::o;65330:565::-;65077:10;65064:23;;:9;:23;;;65056:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65422:17:::1;;65412:6;:27;;65404:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65509:9;;65499:6;65483:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;65475:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65543:18;65564:6;65543:27;;65596:15;:27;65612:10;65596:27;;;;;;;;;;;;;;;;;;;;;;;;;65591:123;;65671:4;65641:15;:27;65657:10;65641:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;65690:12;;;;;:::i;:::-;;;;65591:123;65746:1;65734:9;:13;:32;;;;65765:1;65751:10;:15;65734:32;65726:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;65820:10;65812:5;;:18;;;;:::i;:::-;65799:9;:31;65795:93;;65847:29;65857:10;65869:6;65847:9;:29::i;:::-;65795:93;65393:502;65330:565:::0;:::o;65907:116::-;63004:13;:11;:13::i;:::-;65982:33:::1;65988:10;66000:14;65982:5;:33::i;:::-;65907:116:::0;:::o;66344:108::-;63004:13;:11;:13::i;:::-;66394:10:::1;66386:28;;:51;66415:21;66386:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66344:108::o:0;3795:143::-;3895:42;3795:143;:::o;67214:179::-;67327:4;5091:1;3895:42;5043:45;;;:49;5039:539;;;5332:10;5324:18;;:4;:18;;;5320:85;;67344:41:::1;67367:4;67373:2;67377:7;67344:22;:41::i;:::-;5383:7:::0;;5320:85;3895:42;5424;;;5475:4;5482:10;5424:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5419:148;;5540:10;5521:30;;;;;;;;;;;:::i;:::-;;;;;;;;5419:148;5039:539;67344:41:::1;67367:4;67373:2;67377:7;67344:22;:41::i;:::-;67214:179:::0;;;;;:::o;64931:37::-;;;;:::o;66464:100::-;63004:13;:11;:13::i;:::-;66548:8:::1;66538:7;:18;;;;;;:::i;:::-;;66464:100:::0;:::o;27308:152::-;27380:7;27423:27;27442:7;27423:18;:27::i;:::-;27400:52;;27308:152;;;:::o;64773:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22850:233::-;22922:7;22963:1;22946:19;;:5;:19;;;22942:60;;22974:28;;;;;;;;;;;;;;22942:60;17009:13;23020:18;:25;23039:5;23020:25;;;;;;;;;;;;;;;;:55;23013:62;;22850:233;;;:::o;63766:103::-;63004:13;:11;:13::i;:::-;63831:30:::1;63858:1;63831:18;:30::i;:::-;63766:103::o:0;63118:87::-;63164:7;63191:6;;;;;;;;;;;63184:13;;63118:87;:::o;66132:88::-;63004:13;:11;:13::i;:::-;66204:8:::1;66196:5;:16;;;;66132:88:::0;:::o;26091:104::-;26147:13;26180:7;26173:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26091:104;:::o;64852:34::-;;;;:::o;66678:176::-;66782:8;5837:1;3895:42;5789:45;;;:49;5785:225;;;3895:42;5860;;;5911:4;5918:8;5860:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5855:144;;5974:8;5955:28;;;;;;;;;;;:::i;:::-;;;;;;;;5855:144;5785:225;66803:43:::1;66827:8;66837;66803:23;:43::i;:::-;66678:176:::0;;;:::o;64976:35::-;;;;:::o;67401:245::-;67569:4;5091:1;3895:42;5043:45;;;:49;5039:539;;;5332:10;5324:18;;:4;:18;;;5320:85;;67591:47:::1;67614:4;67620:2;67624:7;67633:4;67591:22;:47::i;:::-;5383:7:::0;;5320:85;3895:42;5424;;;5475:4;5482:10;5424:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5419:148;;5540:10;5521:30;;;;;;;;;;;:::i;:::-;;;;;;;;5419:148;5039:539;67591:47:::1;67614:4;67620:2;67624:7;67633:4;67591:22;:47::i;:::-;67401:245:::0;;;;;;:::o;64808:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26301:318::-;26374:13;26405:16;26413:7;26405;:16::i;:::-;26400:59;;26430:29;;;;;;;;;;;;;;26400:59;26472:21;26496:10;:8;:10::i;:::-;26472:34;;26549:1;26530:7;26524:21;:26;:87;;;;;;;;;;;;;;;;;26577:7;26586:18;26596:7;26586:9;:18::i;:::-;26560:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26524:87;26517:94;;;26301:318;;;:::o;64893:31::-;;;;:::o;33355:164::-;33452:4;33476:18;:25;33495:5;33476:25;;;;;;;;;;;;;;;:35;33502:8;33476:35;;;;;;;;;;;;;;;;;;;;;;;;;33469:42;;33355:164;;;;:::o;64024:201::-;63004:13;:11;:13::i;:::-;64133:1:::1;64113:22;;:8;:22;;::::0;64105:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64189:28;64208:8;64189:18;:28::i;:::-;64024:201:::0;:::o;33777:282::-;33842:4;33898:7;33879:15;:13;:15::i;:::-;:26;;:66;;;;;33932:13;;33922:7;:23;33879:66;:153;;;;;34031:1;17785:8;33983:17;:26;34001:7;33983:26;;;;;;;;;;;;:44;:49;33879:153;33859:173;;33777:282;;;:::o;31839:408::-;31928:13;31944:16;31952:7;31944;:16::i;:::-;31928:32;;32000:5;31977:28;;:19;:17;:19::i;:::-;:28;;;31973:175;;32025:44;32042:5;32049:19;:17;:19::i;:::-;32025:16;:44::i;:::-;32020:128;;32097:35;;;;;;;;;;;;;;32020:128;31973:175;32193:2;32160:15;:24;32176:7;32160:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32231:7;32227:2;32211:28;;32220:5;32211:28;;;;;;;;;;;;31917:330;31839:408;;:::o;65208:101::-;65273:7;65300:1;65293:8;;65208:101;:::o;36045:2825::-;36187:27;36217;36236:7;36217:18;:27::i;:::-;36187:57;;36302:4;36261:45;;36277:19;36261:45;;;36257:86;;36315:28;;;;;;;;;;;;;;36257:86;36357:27;36386:23;36413:35;36440:7;36413:26;:35::i;:::-;36356:92;;;;36548:68;36573:15;36590:4;36596:19;:17;:19::i;:::-;36548:24;:68::i;:::-;36543:180;;36636:43;36653:4;36659:19;:17;:19::i;:::-;36636:16;:43::i;:::-;36631:92;;36688:35;;;;;;;;;;;;;;36631:92;36543:180;36754:1;36740:16;;:2;:16;;;36736:52;;36765:23;;;;;;;;;;;;;;36736:52;36801:43;36823:4;36829:2;36833:7;36842:1;36801:21;:43::i;:::-;36937:15;36934:160;;;37077:1;37056:19;37049:30;36934:160;37474:18;:24;37493:4;37474:24;;;;;;;;;;;;;;;;37472:26;;;;;;;;;;;;37543:18;:22;37562:2;37543:22;;;;;;;;;;;;;;;;37541:24;;;;;;;;;;;37865:146;37902:2;37951:45;37966:4;37972:2;37976:19;37951:14;:45::i;:::-;18065:8;37923:73;37865:18;:146::i;:::-;37836:17;:26;37854:7;37836:26;;;;;;;;;;;:175;;;;38182:1;18065:8;38131:19;:47;:52;38127:627;;38204:19;38236:1;38226:7;:11;38204:33;;38393:1;38359:17;:30;38377:11;38359:30;;;;;;;;;;;;:35;38355:384;;38497:13;;38482:11;:28;38478:242;;38677:19;38644:17;:30;38662:11;38644:30;;;;;;;;;;;:52;;;;38478:242;38355:384;38185:569;38127:627;38801:7;38797:2;38782:27;;38791:4;38782:27;;;;;;;;;;;;38820:42;38841:4;38847:2;38851:7;38860:1;38820:20;:42::i;:::-;36176:2694;;;36045:2825;;;:::o;49917:112::-;49994:27;50004:2;50008:8;49994:27;;;;;;;;;;;;:9;:27::i;:::-;49917:112;;:::o;63283:132::-;63358:12;:10;:12::i;:::-;63347:23;;:7;:5;:7::i;:::-;:23;;;63339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63283:132::o;43426:2966::-;43499:20;43522:13;;43499:36;;43562:1;43550:8;:13;43546:44;;43572:18;;;;;;;;;;;;;;43546:44;43603:61;43633:1;43637:2;43641:12;43655:8;43603:21;:61::i;:::-;44147:1;17147:2;44117:1;:26;;44116:32;44104:8;:45;44078:18;:22;44097:2;44078:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44426:139;44463:2;44517:33;44540:1;44544:2;44548:1;44517:14;:33::i;:::-;44484:30;44505:8;44484:20;:30::i;:::-;:66;44426:18;:139::i;:::-;44392:17;:31;44410:12;44392:31;;;;;;;;;;;:173;;;;44582:16;44613:11;44642:8;44627:12;:23;44613:37;;45163:16;45159:2;45155:25;45143:37;;45535:12;45495:8;45454:1;45392:25;45333:1;45272;45245:335;45906:1;45892:12;45888:20;45846:346;45947:3;45938:7;45935:16;45846:346;;46165:7;46155:8;46152:1;46125:25;46122:1;46119;46114:59;46000:1;45991:7;45987:15;45976:26;;45846:346;;;45850:77;46237:1;46225:8;:13;46221:45;;46247:19;;;;;;;;;;;;;;46221:45;46299:3;46283:13;:19;;;;43852:2462;;46324:60;46353:1;46357:2;46361:12;46375:8;46324:20;:60::i;:::-;43488:2904;43426:2966;;:::o;38966:193::-;39112:39;39129:4;39135:2;39139:7;39112:39;;;;;;;;;;;;:16;:39::i;:::-;38966:193;;;:::o;28463:1275::-;28530:7;28550:12;28565:7;28550:22;;28633:4;28614:15;:13;:15::i;:::-;:23;28610:1061;;28667:13;;28660:4;:20;28656:1015;;;28705:14;28722:17;:23;28740:4;28722:23;;;;;;;;;;;;28705:40;;28839:1;17785:8;28811:6;:24;:29;28807:845;;29476:113;29493:1;29483:6;:11;29476:113;;29536:17;:25;29554:6;;;;;;;29536:25;;;;;;;;;;;;29527:34;;29476:113;;;29622:6;29615:13;;;;;;28807:845;28682:989;28656:1015;28610:1061;29699:31;;;;;;;;;;;;;;28463:1275;;;;:::o;64385:191::-;64459:16;64478:6;;;;;;;;;;;64459:25;;64504:8;64495:6;;:17;;;;;;;;;;;;;;;;;;64559:8;64528:40;;64549:8;64528:40;;;;;;;;;;;;64448:128;64385:191;:::o;32964:234::-;33111:8;33059:18;:39;33078:19;:17;:19::i;:::-;33059:39;;;;;;;;;;;;;;;:49;33099:8;33059:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33171:8;33135:55;;33150:19;:17;:19::i;:::-;33135:55;;;33181:8;33135:55;;;;;;:::i;:::-;;;;;;;;32964:234;;:::o;39757:407::-;39932:31;39945:4;39951:2;39955:7;39932:12;:31::i;:::-;39996:1;39978:2;:14;;;:19;39974:183;;40017:56;40048:4;40054:2;40058:7;40067:5;40017:30;:56::i;:::-;40012:145;;40101:40;;;;;;;;;;;;;;40012:145;39974:183;39757:407;;;;:::o;66228:108::-;66288:13;66321:7;66314:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66228:108;:::o;56292:1745::-;56357:17;56791:4;56784;56778:11;56774:22;56883:1;56877:4;56870:15;56958:4;56955:1;56951:12;56944:19;;57040:1;57035:3;57028:14;57144:3;57383:5;57365:428;57391:1;57365:428;;;57431:1;57426:3;57422:11;57415:18;;57602:2;57596:4;57592:13;57588:2;57584:22;57579:3;57571:36;57696:2;57690:4;57686:13;57678:21;;57763:4;57365:428;57753:25;57365:428;57369:21;57832:3;57827;57823:13;57947:4;57942:3;57938:14;57931:21;;58012:6;58007:3;58000:19;56396:1634;;;56292:1745;;;:::o;56085:105::-;56145:7;56172:10;56165:17;;56085:105;:::o;34940:485::-;35042:27;35071:23;35112:38;35153:15;:24;35169:7;35153:24;;;;;;;;;;;35112:65;;35330:18;35307:41;;35387:19;35381:26;35362:45;;35292:126;34940:485;;;:::o;34168:659::-;34317:11;34482:16;34475:5;34471:28;34462:37;;34642:16;34631:9;34627:32;34614:45;;34792:15;34781:9;34778:30;34770:5;34759:9;34756:20;34753:56;34743:66;;34168:659;;;;;:::o;40826:159::-;;;;;:::o;55394:311::-;55529:7;55549:16;18189:3;55575:19;:41;;55549:68;;18189:3;55643:31;55654:4;55660:2;55664:9;55643:10;:31::i;:::-;55635:40;;:62;;55628:69;;;55394:311;;;;;:::o;30286:450::-;30366:14;30534:16;30527:5;30523:28;30514:37;;30711:5;30697:11;30672:23;30668:41;30665:52;30658:5;30655:63;30645:73;;30286:450;;;;:::o;41650:158::-;;;;;:::o;49144:689::-;49275:19;49281:2;49285:8;49275:5;:19::i;:::-;49354:1;49336:2;:14;;;:19;49332:483;;49376:11;49390:13;;49376:27;;49422:13;49444:8;49438:3;:14;49422:30;;49471:233;49502:62;49541:1;49545:2;49549:7;;;;;;49558:5;49502:30;:62::i;:::-;49497:167;;49600:40;;;;;;;;;;;;;;49497:167;49699:3;49691:5;:11;49471:233;;49786:3;49769:13;;:20;49765:34;;49791:8;;;49765:34;49357:458;;49332:483;49144:689;;;:::o;61669:98::-;61722:7;61749:10;61742:17;;61669:98;:::o;30838:324::-;30908:14;31141:1;31131:8;31128:15;31102:24;31098:46;31088:56;;30838:324;;;:::o;42248:716::-;42411:4;42457:2;42432:45;;;42478:19;:17;:19::i;:::-;42499:4;42505:7;42514:5;42432:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42428:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42732:1;42715:6;:13;:18;42711:235;;42761:40;;;;;;;;;;;;;;42711:235;42904:6;42898:13;42889:6;42885:2;42881:15;42874:38;42428:529;42601:54;;;42591:64;;;:6;:64;;;;42584:71;;;42248:716;;;;;;:::o;55095:147::-;55232:6;55095:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:180::-;14573:32;14569:1;14561:6;14557:14;14550:56;14433:180;:::o;14619:366::-;14761:3;14782:67;14846:2;14841:3;14782:67;:::i;:::-;14775:74;;14858:93;14947:3;14858:93;:::i;:::-;14976:2;14971:3;14967:12;14960:19;;14619:366;;;:::o;14991:419::-;15157:4;15195:2;15184:9;15180:18;15172:26;;15244:9;15238:4;15234:20;15230:1;15219:9;15215:17;15208:47;15272:131;15398:4;15272:131;:::i;:::-;15264:139;;14991:419;;;:::o;15416:170::-;15556:22;15552:1;15544:6;15540:14;15533:46;15416:170;:::o;15592:366::-;15734:3;15755:67;15819:2;15814:3;15755:67;:::i;:::-;15748:74;;15831:93;15920:3;15831:93;:::i;:::-;15949:2;15944:3;15940:12;15933:19;;15592:366;;;:::o;15964:419::-;16130:4;16168:2;16157:9;16153:18;16145:26;;16217:9;16211:4;16207:20;16203:1;16192:9;16188:17;16181:47;16245:131;16371:4;16245:131;:::i;:::-;16237:139;;15964:419;;;:::o;16389:180::-;16437:77;16434:1;16427:88;16534:4;16531:1;16524:15;16558:4;16555:1;16548:15;16575:191;16615:3;16634:20;16652:1;16634:20;:::i;:::-;16629:25;;16668:20;16686:1;16668:20;:::i;:::-;16663:25;;16711:1;16708;16704:9;16697:16;;16732:3;16729:1;16726:10;16723:36;;;16739:18;;:::i;:::-;16723:36;16575:191;;;;:::o;16772:159::-;16912:11;16908:1;16900:6;16896:14;16889:35;16772:159;:::o;16937:365::-;17079:3;17100:66;17164:1;17159:3;17100:66;:::i;:::-;17093:73;;17175:93;17264:3;17175:93;:::i;:::-;17293:2;17288:3;17284:12;17277:19;;16937:365;;;:::o;17308:419::-;17474:4;17512:2;17501:9;17497:18;17489:26;;17561:9;17555:4;17551:20;17547:1;17536:9;17532:17;17525:47;17589:131;17715:4;17589:131;:::i;:::-;17581:139;;17308:419;;;:::o;17733:171::-;17772:3;17795:24;17813:5;17795:24;:::i;:::-;17786:33;;17841:4;17834:5;17831:15;17828:41;;17849:18;;:::i;:::-;17828:41;17896:1;17889:5;17885:13;17878:20;;17733:171;;;:::o;17910:163::-;18050:15;18046:1;18038:6;18034:14;18027:39;17910:163;:::o;18079:366::-;18221:3;18242:67;18306:2;18301:3;18242:67;:::i;:::-;18235:74;;18318:93;18407:3;18318:93;:::i;:::-;18436:2;18431:3;18427:12;18420:19;;18079:366;;;:::o;18451:419::-;18617:4;18655:2;18644:9;18640:18;18632:26;;18704:9;18698:4;18694:20;18690:1;18679:9;18675:17;18668:47;18732:131;18858:4;18732:131;:::i;:::-;18724:139;;18451:419;;;:::o;18876:410::-;18916:7;18939:20;18957:1;18939:20;:::i;:::-;18934:25;;18973:20;18991:1;18973:20;:::i;:::-;18968:25;;19028:1;19025;19021:9;19050:30;19068:11;19050:30;:::i;:::-;19039:41;;19229:1;19220:7;19216:15;19213:1;19210:22;19190:1;19183:9;19163:83;19140:139;;19259:18;;:::i;:::-;19140:139;18924:362;18876:410;;;;:::o;19292:141::-;19341:4;19364:3;19356:11;;19387:3;19384:1;19377:14;19421:4;19418:1;19408:18;19400:26;;19292:141;;;:::o;19439:93::-;19476:6;19523:2;19518;19511:5;19507:14;19503:23;19493:33;;19439:93;;;:::o;19538:107::-;19582:8;19632:5;19626:4;19622:16;19601:37;;19538:107;;;;:::o;19651:393::-;19720:6;19770:1;19758:10;19754:18;19793:97;19823:66;19812:9;19793:97;:::i;:::-;19911:39;19941:8;19930:9;19911:39;:::i;:::-;19899:51;;19983:4;19979:9;19972:5;19968:21;19959:30;;20032:4;20022:8;20018:19;20011:5;20008:30;19998:40;;19727:317;;19651:393;;;;;:::o;20050:142::-;20100:9;20133:53;20151:34;20160:24;20178:5;20160:24;:::i;:::-;20151:34;:::i;:::-;20133:53;:::i;:::-;20120:66;;20050:142;;;:::o;20198:75::-;20241:3;20262:5;20255:12;;20198:75;;;:::o;20279:269::-;20389:39;20420:7;20389:39;:::i;:::-;20450:91;20499:41;20523:16;20499:41;:::i;:::-;20491:6;20484:4;20478:11;20450:91;:::i;:::-;20444:4;20437:105;20355:193;20279:269;;;:::o;20554:73::-;20599:3;20554:73;:::o;20633:189::-;20710:32;;:::i;:::-;20751:65;20809:6;20801;20795:4;20751:65;:::i;:::-;20686:136;20633:189;;:::o;20828:186::-;20888:120;20905:3;20898:5;20895:14;20888:120;;;20959:39;20996:1;20989:5;20959:39;:::i;:::-;20932:1;20925:5;20921:13;20912:22;;20888:120;;;20828:186;;:::o;21020:543::-;21121:2;21116:3;21113:11;21110:446;;;21155:38;21187:5;21155:38;:::i;:::-;21239:29;21257:10;21239:29;:::i;:::-;21229:8;21225:44;21422:2;21410:10;21407:18;21404:49;;;21443:8;21428:23;;21404:49;21466:80;21522:22;21540:3;21522:22;:::i;:::-;21512:8;21508:37;21495:11;21466:80;:::i;:::-;21125:431;;21110:446;21020:543;;;:::o;21569:117::-;21623:8;21673:5;21667:4;21663:16;21642:37;;21569:117;;;;:::o;21692:169::-;21736:6;21769:51;21817:1;21813:6;21805:5;21802:1;21798:13;21769:51;:::i;:::-;21765:56;21850:4;21844;21840:15;21830:25;;21743:118;21692:169;;;;:::o;21866:295::-;21942:4;22088:29;22113:3;22107:4;22088:29;:::i;:::-;22080:37;;22150:3;22147:1;22143:11;22137:4;22134:21;22126:29;;21866:295;;;;:::o;22166:1395::-;22283:37;22316:3;22283:37;:::i;:::-;22385:18;22377:6;22374:30;22371:56;;;22407:18;;:::i;:::-;22371:56;22451:38;22483:4;22477:11;22451:38;:::i;:::-;22536:67;22596:6;22588;22582:4;22536:67;:::i;:::-;22630:1;22654:4;22641:17;;22686:2;22678:6;22675:14;22703:1;22698:618;;;;23360:1;23377:6;23374:77;;;23426:9;23421:3;23417:19;23411:26;23402:35;;23374:77;23477:67;23537:6;23530:5;23477:67;:::i;:::-;23471:4;23464:81;23333:222;22668:887;;22698:618;22750:4;22746:9;22738:6;22734:22;22784:37;22816:4;22784:37;:::i;:::-;22843:1;22857:208;22871:7;22868:1;22865:14;22857:208;;;22950:9;22945:3;22941:19;22935:26;22927:6;22920:42;23001:1;22993:6;22989:14;22979:24;;23048:2;23037:9;23033:18;23020:31;;22894:4;22891:1;22887:12;22882:17;;22857:208;;;23093:6;23084:7;23081:19;23078:179;;;23151:9;23146:3;23142:19;23136:26;23194:48;23236:4;23228:6;23224:17;23213:9;23194:48;:::i;:::-;23186:6;23179:64;23101:156;23078:179;23303:1;23299;23291:6;23287:14;23283:22;23277:4;23270:36;22705:611;;;22668:887;;22258:1303;;;22166:1395;;:::o;23567:148::-;23669:11;23706:3;23691:18;;23567:148;;;;:::o;23721:390::-;23827:3;23855:39;23888:5;23855:39;:::i;:::-;23910:89;23992:6;23987:3;23910:89;:::i;:::-;23903:96;;24008:65;24066:6;24061:3;24054:4;24047:5;24043:16;24008:65;:::i;:::-;24098:6;24093:3;24089:16;24082:23;;23831:280;23721:390;;;;:::o;24117:435::-;24297:3;24319:95;24410:3;24401:6;24319:95;:::i;:::-;24312:102;;24431:95;24522:3;24513:6;24431:95;:::i;:::-;24424:102;;24543:3;24536:10;;24117:435;;;;;:::o;24558:225::-;24698:34;24694:1;24686:6;24682:14;24675:58;24767:8;24762:2;24754:6;24750:15;24743:33;24558:225;:::o;24789:366::-;24931:3;24952:67;25016:2;25011:3;24952:67;:::i;:::-;24945:74;;25028:93;25117:3;25028:93;:::i;:::-;25146:2;25141:3;25137:12;25130:19;;24789:366;;;:::o;25161:419::-;25327:4;25365:2;25354:9;25350:18;25342:26;;25414:9;25408:4;25404:20;25400:1;25389:9;25385:17;25378:47;25442:131;25568:4;25442:131;:::i;:::-;25434:139;;25161:419;;;:::o;25586:182::-;25726:34;25722:1;25714:6;25710:14;25703:58;25586:182;:::o;25774:366::-;25916:3;25937:67;26001:2;25996:3;25937:67;:::i;:::-;25930:74;;26013:93;26102:3;26013:93;:::i;:::-;26131:2;26126:3;26122:12;26115:19;;25774:366;;;:::o;26146:419::-;26312:4;26350:2;26339:9;26335:18;26327:26;;26399:9;26393:4;26389:20;26385:1;26374:9;26370:17;26363:47;26427:131;26553:4;26427:131;:::i;:::-;26419:139;;26146:419;;;:::o;26571:98::-;26622:6;26656:5;26650:12;26640:22;;26571:98;;;:::o;26675:168::-;26758:11;26792:6;26787:3;26780:19;26832:4;26827:3;26823:14;26808:29;;26675:168;;;;:::o;26849:373::-;26935:3;26963:38;26995:5;26963:38;:::i;:::-;27017:70;27080:6;27075:3;27017:70;:::i;:::-;27010:77;;27096:65;27154:6;27149:3;27142:4;27135:5;27131:16;27096:65;:::i;:::-;27186:29;27208:6;27186:29;:::i;:::-;27181:3;27177:39;27170:46;;26939:283;26849:373;;;;:::o;27228:640::-;27423:4;27461:3;27450:9;27446:19;27438:27;;27475:71;27543:1;27532:9;27528:17;27519:6;27475:71;:::i;:::-;27556:72;27624:2;27613:9;27609:18;27600:6;27556:72;:::i;:::-;27638;27706:2;27695:9;27691:18;27682:6;27638:72;:::i;:::-;27757:9;27751:4;27747:20;27742:2;27731:9;27727:18;27720:48;27785:76;27856:4;27847:6;27785:76;:::i;:::-;27777:84;;27228:640;;;;;;;:::o;27874:141::-;27930:5;27961:6;27955:13;27946:22;;27977:32;28003:5;27977:32;:::i;:::-;27874:141;;;;:::o;28021:349::-;28090:6;28139:2;28127:9;28118:7;28114:23;28110:32;28107:119;;;28145:79;;:::i;:::-;28107:119;28265:1;28290:63;28345:7;28336:6;28325:9;28321:22;28290:63;:::i;:::-;28280:73;;28236:127;28021:349;;;;:::o

Swarm Source

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