ETH Price: $3,417.14 (-2.38%)
Gas: 8 Gwei

Token

BLOKKIES (BKS)
 

Overview

Max Total Supply

1,283 BKS

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BKS
0x5c2f72d1ad0ab5bedc1b44c964447a2a6929f6c3
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:
BLOKKIES

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-18
*/

// SPDX-License-Identifier: MIT
// Developer - ReservedSnow(https://linktr.ee/reservedsnow)

/*
___.           __________                                            .____________                     
\_ |__ ___.__. \______   \ ____   ______ ______________  __ ____   __| _/   _____/ ____   ______  _  __
 | __ <   |  |  |       _// __ \ /  ___// __ \_  __ \  \/ // __ \ / __ |\_____  \ /    \ /  _ \ \/ \/ /
 | \_\ \___  |  |    |   \  ___/ \___ \\  ___/|  | \/\   /\  ___// /_/ |/        \   |  (  <_> )     / 
 |___  / ____|  |____|_  /\___  >____  >\___  >__|    \_/  \___  >____ /_______  /___|  /\____/ \/\_/  
     \/\/              \/     \/     \/     \/                 \/     \/       \/     \/               
*/



// 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/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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: @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: operator-filter-registry/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 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: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

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

// File: contracts/BLOKKIES.sol


pragma solidity >=0.8.17 <0.9.0;

contract BLOKKIES is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {

  using Strings for uint256;

// ================== Variables Start =======================

  
  // reveal uri - set it in contructor
  string internal uri;
  string public uriSuffix = ".json";

  // hidden uri - replace it with yours
  string public hiddenMetadataUri = "ipfs://QmXLpLb2aVAxJLjhEoWqcRkn2tLpCexC1yQpZJP3zgE6ot/hidden.json";

  // prices - replace it with yours
  uint256 public price = 0.01 ether;

  // supply - replace it with yours
  uint256 public supplyLimit = 10000;

  // max per tx - replace it with yours
  uint256 public maxMintAmountPerTx = 10;

  // max per wallet - replace it with yours
  uint256 public maxLimitPerWallet = 100;

  // enabled
  bool public publicSale = false;

  // reveal
  bool public revealed = false;

  // mapping to keep track
  mapping(address => uint256) public publicMintCount;

  // total mint trackers
  uint256 public publicMinted;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  // Token NAME and SYMBOL - Replace it with yours
  constructor(
    string memory _uri
  ) ERC721A("BLOKKIES", "BKS")  {
    seturi(_uri);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

  function PublicMint(uint256 _mintAmount) public payable {
    
    // Normal requirements 
    require(publicSale, 'The PublicSale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(publicMintCount[msg.sender] + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    require(msg.value >= price * _mintAmount, 'Insufficient funds!');
     
    // Mint
     _safeMint(_msgSender(), _mintAmount);

    // Mapping update 
    publicMintCount[msg.sender] += _mintAmount;  
    publicMinted += _mintAmount;   
  }  

  function OwnerMint(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

    function MassAirdrop(address[] calldata receivers) external onlyOwner {
    for (uint256 i; i < receivers.length; ++i) {
      require(totalSupply() + 1 <= supplyLimit, 'Max supply exceeded!');
      _mint(receivers[i], 1);
    }
  }
  

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

// reveal
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

// sales toggle
  function setpublicSale(bool _publicSale) public onlyOwner {
    publicSale = _publicSale;
  }

// max per tx
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

// max per wallet
  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }
 

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


// supply limit
  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {
    // This will pay ReservedSnow 2% of the initial sale.
    (bool rs, ) = payable(0xd4578a6692ED53A6A507254f83984B2Ca393b513).call{value: address(this).balance * 2 / 100}('');
    require(rs);

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

// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================

  function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

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

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

// ================== Read Functions End =======================  

// Developer - ReservedSnow(https://linktr.ee/reservedsnow)
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"MassAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setpublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a919062000821565b5060405180608001604052806041815260200162004e1560419139600c908162000075919062000821565b50662386f26fc10000600d55612710600e55600a600f5560646010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000d457600080fd5b5060405162004e5638038062004e568339818101604052810190620000fa919062000a6c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f424c4f4b4b4945530000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424b53000000000000000000000000000000000000000000000000000000000081525081600290816200018e919062000821565b508060039081620001a0919062000821565b50620001b1620003f060201b60201c565b6000819055505050620001d9620001cd620003f960201b60201c565b6200040160201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d65780156200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026292919062000b02565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b50505050620003d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000356576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031c92919062000b02565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b50505050620003d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039f919062000b2f565b600060405180830381600087803b158015620003ba57600080fd5b505af1158015620003cf573d6000803e3d6000fd5b505050505b5b5b5050620003e981620004c760201b60201c565b5062000bcf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d7620004ec60201b60201c565b80600a9081620004e8919062000821565b5050565b620004fc620003f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005226200057d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005729062000bad565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062957607f821691505b6020821081036200063f576200063e620005e1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200066a565b620006b586836200066a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000702620006fc620006f684620006cd565b620006d7565b620006cd565b9050919050565b6000819050919050565b6200071e83620006e1565b620007366200072d8262000709565b84845462000677565b825550505050565b600090565b6200074d6200073e565b6200075a81848462000713565b505050565b5b8181101562000782576200077660008262000743565b60018101905062000760565b5050565b601f821115620007d1576200079b8162000645565b620007a6846200065a565b81016020851015620007b6578190505b620007ce620007c5856200065a565b8301826200075f565b50505b505050565b600082821c905092915050565b6000620007f660001984600802620007d6565b1980831691505092915050565b6000620008118383620007e3565b9150826002028217905092915050565b6200082c82620005a7565b67ffffffffffffffff811115620008485762000847620005b2565b5b62000854825462000610565b6200086182828562000786565b600060209050601f83116001811462000899576000841562000884578287015190505b62000890858262000803565b86555062000900565b601f198416620008a98662000645565b60005b82811015620008d357848901518255600182019150602085019450602081019050620008ac565b86831015620008f35784890151620008ef601f891682620007e3565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620009428262000926565b810181811067ffffffffffffffff82111715620009645762000963620005b2565b5b80604052505050565b60006200097962000908565b905062000987828262000937565b919050565b600067ffffffffffffffff821115620009aa57620009a9620005b2565b5b620009b58262000926565b9050602081019050919050565b60005b83811015620009e2578082015181840152602081019050620009c5565b60008484015250505050565b600062000a05620009ff846200098c565b6200096d565b90508281526020810184848401111562000a245762000a2362000921565b5b62000a31848285620009c2565b509392505050565b600082601f83011262000a515762000a506200091c565b5b815162000a63848260208601620009ee565b91505092915050565b60006020828403121562000a855762000a8462000912565b5b600082015167ffffffffffffffff81111562000aa65762000aa562000917565b5b62000ab48482850162000a39565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aea8262000abd565b9050919050565b62000afc8162000add565b82525050565b600060408201905062000b19600083018562000af1565b62000b28602083018462000af1565b9392505050565b600060208201905062000b46600083018462000af1565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b9560208362000b4c565b915062000ba28262000b5d565b602082019050919050565b6000602082019050818103600083015262000bc88162000b86565b9050919050565b6142368062000bdf6000396000f3fe6080604052600436106102455760003560e01c806370a0823111610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610812578063d9f0a6711461084f578063e0a8085314610878578063e985e9c5146108a1578063f2fde38b146108de578063f64849801461090757610245565b8063a22cb4651461074e578063a45ba8e714610777578063a4f4f8af146107a2578063b071401b146107cd578063b88d4fde146107f657610245565b806394354fd0116100fd57806394354fd01461067457806395d89b411461069f57806396330b5f146106ca5780639fb17e3414610707578063a035b1fe1461072357610245565b806370a082311461058f578063715018a6146105cc5780638462151c146105e35780638da5cb5b1461062057806391b7f5ed1461064b57610245565b806333bc1c5c116101c7578063518302271161018b57806351830227146104a85780635503a0e8146104d35780635a0b8b23146104fe5780635c22abd2146105295780636352211e1461055257610245565b806333bc1c5c146103f85780633ccfd60b1461042357806342842e0e1461043a57806347d9569e146104565780634fdd43cb1461047f57610245565b806316ba10e01161020e57806316ba10e01461033457806318160ddd1461035d57806319d1997a1461038857806323b872dd146103b35780632eba0dce146103cf57610245565b806275770a1461024a57806301ffc9a71461027357806306fdde03146102b0578063081812fc146102db578063095ea7b314610318575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612eb6565b610930565b005b34801561027f57600080fd5b5061029a60048036038101906102959190612f3b565b610942565b6040516102a79190612f83565b60405180910390f35b3480156102bc57600080fd5b506102c56109d4565b6040516102d2919061302e565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190612eb6565b610a66565b60405161030f9190613091565b60405180910390f35b610332600480360381019061032d91906130d8565b610ae5565b005b34801561034057600080fd5b5061035b6004803603810190610356919061324d565b610c29565b005b34801561036957600080fd5b50610372610c44565b60405161037f91906132a5565b60405180910390f35b34801561039457600080fd5b5061039d610c5b565b6040516103aa91906132a5565b60405180910390f35b6103cd60048036038101906103c891906132c0565b610c61565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613313565b610e43565b005b34801561040457600080fd5b5061040d610eb0565b60405161041a9190612f83565b60405180910390f35b34801561042f57600080fd5b50610438610ec3565b005b610454600480360381019061044f91906132c0565b610ffe565b005b34801561046257600080fd5b5061047d600480360381019061047891906133b3565b6111e0565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061324d565b611296565b005b3480156104b457600080fd5b506104bd6112b1565b6040516104ca9190612f83565b60405180910390f35b3480156104df57600080fd5b506104e86112c4565b6040516104f5919061302e565b60405180910390f35b34801561050a57600080fd5b50610513611352565b60405161052091906132a5565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b919061342c565b611358565b005b34801561055e57600080fd5b5061057960048036038101906105749190612eb6565b61137d565b6040516105869190613091565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613459565b61138f565b6040516105c391906132a5565b60405180910390f35b3480156105d857600080fd5b506105e1611447565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190613459565b61145b565b6040516106179190613544565b60405180910390f35b34801561062c57600080fd5b5061063561159f565b6040516106429190613091565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190612eb6565b6115c9565b005b34801561068057600080fd5b506106896115db565b60405161069691906132a5565b60405180910390f35b3480156106ab57600080fd5b506106b46115e1565b6040516106c1919061302e565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190613459565b611673565b6040516106fe91906132a5565b60405180910390f35b610721600480360381019061071c9190612eb6565b61168b565b005b34801561072f57600080fd5b506107386118e4565b60405161074591906132a5565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613566565b6118ea565b005b34801561078357600080fd5b5061078c6119f5565b604051610799919061302e565b60405180910390f35b3480156107ae57600080fd5b506107b7611a83565b6040516107c491906132a5565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612eb6565b611a89565b005b610810600480360381019061080b9190613647565b611a9b565b005b34801561081e57600080fd5b5061083960048036038101906108349190612eb6565b611c80565b604051610846919061302e565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190612eb6565b611dd8565b005b34801561088457600080fd5b5061089f600480360381019061089a919061342c565b611dea565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906136ca565b611e0f565b6040516108d59190612f83565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613459565b611ea3565b005b34801561091357600080fd5b5061092e6004803603810190610929919061324d565b611f26565b005b610938611f41565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e390613739565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0f90613739565b8015610a5c5780601f10610a3157610100808354040283529160200191610a5c565b820191906000526020600020905b815481529060010190602001808311610a3f57829003601f168201915b5050505050905090565b6000610a7182611fbf565b610aa7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af08261137d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1161201e565b73ffffffffffffffffffffffffffffffffffffffff1614610b7457610b3d81610b3861201e565b611e0f565b610b73576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c31611f41565b80600b9081610c409190613916565b5050565b6000610c4e612026565b6001546000540303905090565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e31573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd357610cce84848461202f565b610e3d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d1c9291906139e8565b602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190613a26565b8015610def57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dad9291906139e8565b602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190613a26565b5b610e3057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e279190613091565b60405180910390fd5b5b610e3c84848461202f565b5b50505050565b610e4b611f41565b600e5482610e57610c44565b610e619190613a82565b1115610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613b02565b60405180910390fd5b610eac8183612351565b5050565b601160009054906101000a900460ff1681565b610ecb611f41565b610ed361236f565b600073d4578a6692ed53a6a507254f83984b2ca393b51373ffffffffffffffffffffffffffffffffffffffff166064600247610f0f9190613b22565b610f199190613b93565b604051610f2590613bf5565b60006040518083038185875af1925050503d8060008114610f62576040519150601f19603f3d011682016040523d82523d6000602084013e610f67565b606091505b5050905080610f7557600080fd5b6000610f7f61159f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa290613bf5565b60006040518083038185875af1925050503d8060008114610fdf576040519150601f19603f3d011682016040523d82523d6000602084013e610fe4565b606091505b5050905080610ff257600080fd5b5050610ffc6123be565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110705761106b8484846123c8565b6111da565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110b99291906139e8565b602060405180830381865afa1580156110d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fa9190613a26565b801561118c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161114a9291906139e8565b602060405180830381865afa158015611167573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118b9190613a26565b5b6111cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111c49190613091565b60405180910390fd5b5b6111d98484846123c8565b5b50505050565b6111e8611f41565b60005b8282905081101561129157600e546001611203610c44565b61120d9190613a82565b111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613b02565b60405180910390fd5b61128083838381811061126457611263613c0a565b5b90506020020160208101906112799190613459565b60016123e8565b8061128a90613c39565b90506111eb565b505050565b61129e611f41565b80600c90816112ad9190613916565b5050565b601160019054906101000a900460ff1681565b600b80546112d190613739565b80601f01602080910402602001604051908101604052809291908181526020018280546112fd90613739565b801561134a5780601f1061131f5761010080835404028352916020019161134a565b820191906000526020600020905b81548152906001019060200180831161132d57829003601f168201915b505050505081565b60105481565b611360611f41565b80601160006101000a81548160ff02191690831515021790555050565b6000611388826125a3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61144f611f41565b611459600061266f565b565b606060006114688361138f565b67ffffffffffffffff81111561148157611480613122565b5b6040519080825280602002602001820160405280156114af5781602001602082028036833780820191505090505b50905060006114bc612735565b905060008060005b838110156115925760006114d78261273e565b90508060400151156114e95750611585565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461152957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611583578186858060010196508151811061157657611575613c0a565b5b6020026020010181815250505b505b80806001019150506114c4565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115d1611f41565b80600d8190555050565b600f5481565b6060600380546115f090613739565b80601f016020809104026020016040519081016040528092919081815260200182805461161c90613739565b80156116695780601f1061163e57610100808354040283529160200191611669565b820191906000526020600020905b81548152906001019060200180831161164c57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b601160009054906101000a900460ff166116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613ccd565b60405180910390fd5b6000811180156116ec5750600f548111155b61172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613d39565b60405180910390fd5b600e5481611737610c44565b6117419190613a82565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613b02565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117d09190613a82565b1115611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613da5565b60405180910390fd5b80600d5461181f9190613b22565b341015611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613e11565b60405180910390fd5b61187261186c612769565b82612351565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c19190613a82565b9250508190555080601360008282546118da9190613a82565b9250508190555050565b600d5481565b80600760006118f761201e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a461201e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119e99190612f83565b60405180910390a35050565b600c8054611a0290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2e90613739565b8015611a7b5780601f10611a5057610100808354040283529160200191611a7b565b820191906000526020600020905b815481529060010190602001808311611a5e57829003601f168201915b505050505081565b60135481565b611a91611f41565b80600f8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c6c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0e57611b0985858585612771565b611c79565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b579291906139e8565b602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b989190613a26565b8015611c2a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611be89291906139e8565b602060405180830381865afa158015611c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c299190613a26565b5b611c6b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c629190613091565b60405180910390fd5b5b611c7885858585612771565b5b5050505050565b6060611c8b82611fbf565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613ea3565b60405180910390fd5b60001515601160019054906101000a900460ff16151503611d7757600c8054611cf290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e90613739565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b50505050509050611dd3565b6000611d816127e4565b90506000815111611da15760405180602001604052806000815250611dcf565b80611dab84612876565b600b604051602001611dbf93929190613f82565b6040516020818303038152906040525b9150505b919050565b611de0611f41565b8060108190555050565b611df2611f41565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eab611f41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614025565b60405180910390fd5b611f238161266f565b50565b611f2e611f41565b80600a9081611f3d9190613916565b5050565b611f49612769565b73ffffffffffffffffffffffffffffffffffffffff16611f6761159f565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614091565b60405180910390fd5b565b600081611fca612026565b11158015611fd9575060005482105b8015612017575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061203a826125a3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806120ad84612944565b915091506120c381876120be61201e565b61296b565b61210f576120d8866120d361201e565b611e0f565b61210e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612175576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218286868660016129af565b801561218d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061225b856122378888876129b5565b7c0200000000000000000000000000000000000000000000000000000000176129dd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122e157600060018501905060006004600083815260200190815260200160002054036122df5760005481146122de578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123498686866001612a08565b505050505050565b61236b828260405180602001604052806000815250612a0e565b5050565b6002600954036123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab906140fd565b60405180910390fd5b6002600981905550565b6001600981905550565b6123e383838360405180602001604052806000815250611a9b565b505050565b60008054905060008203612428576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61243560008483856129af565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ac8361249d60008660006129b5565b6124a685612aab565b176129dd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612512565b5060008203612588576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061259e6000848385612a08565b505050565b600080829050806125b2612026565b11612638576000548110156126375760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612635575b6000810361262b576004600083600190039350838152602001908152602001600020549050612601565b809250505061266a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612746612e1d565b6127626004600084815260200190815260200160002054612abb565b9050919050565b600033905090565b61277c848484610c61565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127de576127a784848484612b71565b6127dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546127f390613739565b80601f016020809104026020016040519081016040528092919081815260200182805461281f90613739565b801561286c5780601f106128415761010080835404028352916020019161286c565b820191906000526020600020905b81548152906001019060200180831161284f57829003601f168201915b5050505050905090565b60606000600161288584612cc1565b01905060008167ffffffffffffffff8111156128a4576128a3613122565b5b6040519080825280601f01601f1916602001820160405280156128d65781602001600182028036833780820191505090505b509050600082602001820190505b600115612939578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161292d5761292c613b64565b5b049450600085036128e4575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129cc868684612e14565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612a1883836123e8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612aa657600080549050600083820390505b612a586000868380600101945086612b71565b612a8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a45578160005414612aa357600080fd5b50505b505050565b60006001821460e11b9050919050565b612ac3612e1d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9761201e565b8786866040518563ffffffff1660e01b8152600401612bb99493929190614172565b6020604051808303816000875af1925050508015612bf557506040513d601f19601f82011682018060405250810190612bf291906141d3565b60015b612c6e573d8060008114612c25576040519150601f19603f3d011682016040523d82523d6000602084013e612c2a565b606091505b506000815103612c66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612d1f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612d1557612d14613b64565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612d5c576d04ee2d6d415b85acef81000000008381612d5257612d51613b64565b5b0492506020810190505b662386f26fc100008310612d8b57662386f26fc100008381612d8157612d80613b64565b5b0492506010810190505b6305f5e1008310612db4576305f5e1008381612daa57612da9613b64565b5b0492506008810190505b6127108310612dd9576127108381612dcf57612dce613b64565b5b0492506004810190505b60648310612dfc5760648381612df257612df1613b64565b5b0492506002810190505b600a8310612e0b576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e9381612e80565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612e76565b5b6000612eda84828501612ea1565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f1881612ee3565b8114612f2357600080fd5b50565b600081359050612f3581612f0f565b92915050565b600060208284031215612f5157612f50612e76565b5b6000612f5f84828501612f26565b91505092915050565b60008115159050919050565b612f7d81612f68565b82525050565b6000602082019050612f986000830184612f74565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fd8578082015181840152602081019050612fbd565b60008484015250505050565b6000601f19601f8301169050919050565b600061300082612f9e565b61300a8185612fa9565b935061301a818560208601612fba565b61302381612fe4565b840191505092915050565b600060208201905081810360008301526130488184612ff5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061307b82613050565b9050919050565b61308b81613070565b82525050565b60006020820190506130a66000830184613082565b92915050565b6130b581613070565b81146130c057600080fd5b50565b6000813590506130d2816130ac565b92915050565b600080604083850312156130ef576130ee612e76565b5b60006130fd858286016130c3565b925050602061310e85828601612ea1565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315a82612fe4565b810181811067ffffffffffffffff8211171561317957613178613122565b5b80604052505050565b600061318c612e6c565b90506131988282613151565b919050565b600067ffffffffffffffff8211156131b8576131b7613122565b5b6131c182612fe4565b9050602081019050919050565b82818337600083830152505050565b60006131f06131eb8461319d565b613182565b90508281526020810184848401111561320c5761320b61311d565b5b6132178482856131ce565b509392505050565b600082601f83011261323457613233613118565b5b81356132448482602086016131dd565b91505092915050565b60006020828403121561326357613262612e76565b5b600082013567ffffffffffffffff81111561328157613280612e7b565b5b61328d8482850161321f565b91505092915050565b61329f81612e80565b82525050565b60006020820190506132ba6000830184613296565b92915050565b6000806000606084860312156132d9576132d8612e76565b5b60006132e7868287016130c3565b93505060206132f8868287016130c3565b925050604061330986828701612ea1565b9150509250925092565b6000806040838503121561332a57613329612e76565b5b600061333885828601612ea1565b9250506020613349858286016130c3565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261337357613372613118565b5b8235905067ffffffffffffffff8111156133905761338f613353565b5b6020830191508360208202830111156133ac576133ab613358565b5b9250929050565b600080602083850312156133ca576133c9612e76565b5b600083013567ffffffffffffffff8111156133e8576133e7612e7b565b5b6133f48582860161335d565b92509250509250929050565b61340981612f68565b811461341457600080fd5b50565b60008135905061342681613400565b92915050565b60006020828403121561344257613441612e76565b5b600061345084828501613417565b91505092915050565b60006020828403121561346f5761346e612e76565b5b600061347d848285016130c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134bb81612e80565b82525050565b60006134cd83836134b2565b60208301905092915050565b6000602082019050919050565b60006134f182613486565b6134fb8185613491565b9350613506836134a2565b8060005b8381101561353757815161351e88826134c1565b9750613529836134d9565b92505060018101905061350a565b5085935050505092915050565b6000602082019050818103600083015261355e81846134e6565b905092915050565b6000806040838503121561357d5761357c612e76565b5b600061358b858286016130c3565b925050602061359c85828601613417565b9150509250929050565b600067ffffffffffffffff8211156135c1576135c0613122565b5b6135ca82612fe4565b9050602081019050919050565b60006135ea6135e5846135a6565b613182565b9050828152602081018484840111156136065761360561311d565b5b6136118482856131ce565b509392505050565b600082601f83011261362e5761362d613118565b5b813561363e8482602086016135d7565b91505092915050565b6000806000806080858703121561366157613660612e76565b5b600061366f878288016130c3565b9450506020613680878288016130c3565b935050604061369187828801612ea1565b925050606085013567ffffffffffffffff8111156136b2576136b1612e7b565b5b6136be87828801613619565b91505092959194509250565b600080604083850312156136e1576136e0612e76565b5b60006136ef858286016130c3565b9250506020613700858286016130c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375157607f821691505b6020821081036137645761376361370a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137cc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261378f565b6137d6868361378f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061381361380e61380984612e80565b6137ee565b612e80565b9050919050565b6000819050919050565b61382d836137f8565b6138416138398261381a565b84845461379c565b825550505050565b600090565b613856613849565b613861818484613824565b505050565b5b818110156138855761387a60008261384e565b600181019050613867565b5050565b601f8211156138ca5761389b8161376a565b6138a48461377f565b810160208510156138b3578190505b6138c76138bf8561377f565b830182613866565b50505b505050565b600082821c905092915050565b60006138ed600019846008026138cf565b1980831691505092915050565b600061390683836138dc565b9150826002028217905092915050565b61391f82612f9e565b67ffffffffffffffff81111561393857613937613122565b5b6139428254613739565b61394d828285613889565b600060209050601f831160018114613980576000841561396e578287015190505b61397885826138fa565b8655506139e0565b601f19841661398e8661376a565b60005b828110156139b657848901518255600182019150602085019450602081019050613991565b868310156139d357848901516139cf601f8916826138dc565b8355505b6001600288020188555050505b505050505050565b60006040820190506139fd6000830185613082565b613a0a6020830184613082565b9392505050565b600081519050613a2081613400565b92915050565b600060208284031215613a3c57613a3b612e76565b5b6000613a4a84828501613a11565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a8d82612e80565b9150613a9883612e80565b9250828201905080821115613ab057613aaf613a53565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613aec601483612fa9565b9150613af782613ab6565b602082019050919050565b60006020820190508181036000830152613b1b81613adf565b9050919050565b6000613b2d82612e80565b9150613b3883612e80565b9250828202613b4681612e80565b91508282048414831517613b5d57613b5c613a53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b9e82612e80565b9150613ba983612e80565b925082613bb957613bb8613b64565b5b828204905092915050565b600081905092915050565b50565b6000613bdf600083613bc4565b9150613bea82613bcf565b600082019050919050565b6000613c0082613bd2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c4482612e80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7657613c75613a53565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b6000613cb7601983612fa9565b9150613cc282613c81565b602082019050919050565b60006020820190508181036000830152613ce681613caa565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d23601483612fa9565b9150613d2e82613ced565b602082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613d8f601d83612fa9565b9150613d9a82613d59565b602082019050919050565b60006020820190508181036000830152613dbe81613d82565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613dfb601383612fa9565b9150613e0682613dc5565b602082019050919050565b60006020820190508181036000830152613e2a81613dee565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e8d602f83612fa9565b9150613e9882613e31565b604082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b600081905092915050565b6000613ed982612f9e565b613ee38185613ec3565b9350613ef3818560208601612fba565b80840191505092915050565b60008154613f0c81613739565b613f168186613ec3565b94506001821660008114613f315760018114613f4657613f79565b60ff1983168652811515820286019350613f79565b613f4f8561376a565b60005b83811015613f7157815481890152600182019150602081019050613f52565b838801955050505b50505092915050565b6000613f8e8286613ece565b9150613f9a8285613ece565b9150613fa68284613eff565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400f602683612fa9565b915061401a82613fb3565b604082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061407b602083612fa9565b915061408682614045565b602082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140e7601f83612fa9565b91506140f2826140b1565b602082019050919050565b60006020820190508181036000830152614116816140da565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141448261411d565b61414e8185614128565b935061415e818560208601612fba565b61416781612fe4565b840191505092915050565b60006080820190506141876000830187613082565b6141946020830186613082565b6141a16040830185613296565b81810360608301526141b38184614139565b905095945050505050565b6000815190506141cd81612f0f565b92915050565b6000602082840312156141e9576141e8612e76565b5b60006141f7848285016141be565b9150509291505056fea2646970667358221220e8b1570dfb67060d7bc023eb27e2722165884c75df5b282cc8b154c16c72ec7c64736f6c63430008110033697066733a2f2f516d584c704c6232615641784a4c6a68456f577163526b6e32744c7043657843317951705a4a50337a6745366f742f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102455760003560e01c806370a0823111610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610812578063d9f0a6711461084f578063e0a8085314610878578063e985e9c5146108a1578063f2fde38b146108de578063f64849801461090757610245565b8063a22cb4651461074e578063a45ba8e714610777578063a4f4f8af146107a2578063b071401b146107cd578063b88d4fde146107f657610245565b806394354fd0116100fd57806394354fd01461067457806395d89b411461069f57806396330b5f146106ca5780639fb17e3414610707578063a035b1fe1461072357610245565b806370a082311461058f578063715018a6146105cc5780638462151c146105e35780638da5cb5b1461062057806391b7f5ed1461064b57610245565b806333bc1c5c116101c7578063518302271161018b57806351830227146104a85780635503a0e8146104d35780635a0b8b23146104fe5780635c22abd2146105295780636352211e1461055257610245565b806333bc1c5c146103f85780633ccfd60b1461042357806342842e0e1461043a57806347d9569e146104565780634fdd43cb1461047f57610245565b806316ba10e01161020e57806316ba10e01461033457806318160ddd1461035d57806319d1997a1461038857806323b872dd146103b35780632eba0dce146103cf57610245565b806275770a1461024a57806301ffc9a71461027357806306fdde03146102b0578063081812fc146102db578063095ea7b314610318575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612eb6565b610930565b005b34801561027f57600080fd5b5061029a60048036038101906102959190612f3b565b610942565b6040516102a79190612f83565b60405180910390f35b3480156102bc57600080fd5b506102c56109d4565b6040516102d2919061302e565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190612eb6565b610a66565b60405161030f9190613091565b60405180910390f35b610332600480360381019061032d91906130d8565b610ae5565b005b34801561034057600080fd5b5061035b6004803603810190610356919061324d565b610c29565b005b34801561036957600080fd5b50610372610c44565b60405161037f91906132a5565b60405180910390f35b34801561039457600080fd5b5061039d610c5b565b6040516103aa91906132a5565b60405180910390f35b6103cd60048036038101906103c891906132c0565b610c61565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613313565b610e43565b005b34801561040457600080fd5b5061040d610eb0565b60405161041a9190612f83565b60405180910390f35b34801561042f57600080fd5b50610438610ec3565b005b610454600480360381019061044f91906132c0565b610ffe565b005b34801561046257600080fd5b5061047d600480360381019061047891906133b3565b6111e0565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061324d565b611296565b005b3480156104b457600080fd5b506104bd6112b1565b6040516104ca9190612f83565b60405180910390f35b3480156104df57600080fd5b506104e86112c4565b6040516104f5919061302e565b60405180910390f35b34801561050a57600080fd5b50610513611352565b60405161052091906132a5565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b919061342c565b611358565b005b34801561055e57600080fd5b5061057960048036038101906105749190612eb6565b61137d565b6040516105869190613091565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613459565b61138f565b6040516105c391906132a5565b60405180910390f35b3480156105d857600080fd5b506105e1611447565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190613459565b61145b565b6040516106179190613544565b60405180910390f35b34801561062c57600080fd5b5061063561159f565b6040516106429190613091565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190612eb6565b6115c9565b005b34801561068057600080fd5b506106896115db565b60405161069691906132a5565b60405180910390f35b3480156106ab57600080fd5b506106b46115e1565b6040516106c1919061302e565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190613459565b611673565b6040516106fe91906132a5565b60405180910390f35b610721600480360381019061071c9190612eb6565b61168b565b005b34801561072f57600080fd5b506107386118e4565b60405161074591906132a5565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613566565b6118ea565b005b34801561078357600080fd5b5061078c6119f5565b604051610799919061302e565b60405180910390f35b3480156107ae57600080fd5b506107b7611a83565b6040516107c491906132a5565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612eb6565b611a89565b005b610810600480360381019061080b9190613647565b611a9b565b005b34801561081e57600080fd5b5061083960048036038101906108349190612eb6565b611c80565b604051610846919061302e565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190612eb6565b611dd8565b005b34801561088457600080fd5b5061089f600480360381019061089a919061342c565b611dea565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906136ca565b611e0f565b6040516108d59190612f83565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613459565b611ea3565b005b34801561091357600080fd5b5061092e6004803603810190610929919061324d565b611f26565b005b610938611f41565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e390613739565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0f90613739565b8015610a5c5780601f10610a3157610100808354040283529160200191610a5c565b820191906000526020600020905b815481529060010190602001808311610a3f57829003601f168201915b5050505050905090565b6000610a7182611fbf565b610aa7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af08261137d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1161201e565b73ffffffffffffffffffffffffffffffffffffffff1614610b7457610b3d81610b3861201e565b611e0f565b610b73576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c31611f41565b80600b9081610c409190613916565b5050565b6000610c4e612026565b6001546000540303905090565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e31573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd357610cce84848461202f565b610e3d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d1c9291906139e8565b602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190613a26565b8015610def57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610dad9291906139e8565b602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190613a26565b5b610e3057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e279190613091565b60405180910390fd5b5b610e3c84848461202f565b5b50505050565b610e4b611f41565b600e5482610e57610c44565b610e619190613a82565b1115610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613b02565b60405180910390fd5b610eac8183612351565b5050565b601160009054906101000a900460ff1681565b610ecb611f41565b610ed361236f565b600073d4578a6692ed53a6a507254f83984b2ca393b51373ffffffffffffffffffffffffffffffffffffffff166064600247610f0f9190613b22565b610f199190613b93565b604051610f2590613bf5565b60006040518083038185875af1925050503d8060008114610f62576040519150601f19603f3d011682016040523d82523d6000602084013e610f67565b606091505b5050905080610f7557600080fd5b6000610f7f61159f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa290613bf5565b60006040518083038185875af1925050503d8060008114610fdf576040519150601f19603f3d011682016040523d82523d6000602084013e610fe4565b606091505b5050905080610ff257600080fd5b5050610ffc6123be565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110705761106b8484846123c8565b6111da565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110b99291906139e8565b602060405180830381865afa1580156110d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fa9190613a26565b801561118c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161114a9291906139e8565b602060405180830381865afa158015611167573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118b9190613a26565b5b6111cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111c49190613091565b60405180910390fd5b5b6111d98484846123c8565b5b50505050565b6111e8611f41565b60005b8282905081101561129157600e546001611203610c44565b61120d9190613a82565b111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613b02565b60405180910390fd5b61128083838381811061126457611263613c0a565b5b90506020020160208101906112799190613459565b60016123e8565b8061128a90613c39565b90506111eb565b505050565b61129e611f41565b80600c90816112ad9190613916565b5050565b601160019054906101000a900460ff1681565b600b80546112d190613739565b80601f01602080910402602001604051908101604052809291908181526020018280546112fd90613739565b801561134a5780601f1061131f5761010080835404028352916020019161134a565b820191906000526020600020905b81548152906001019060200180831161132d57829003601f168201915b505050505081565b60105481565b611360611f41565b80601160006101000a81548160ff02191690831515021790555050565b6000611388826125a3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61144f611f41565b611459600061266f565b565b606060006114688361138f565b67ffffffffffffffff81111561148157611480613122565b5b6040519080825280602002602001820160405280156114af5781602001602082028036833780820191505090505b50905060006114bc612735565b905060008060005b838110156115925760006114d78261273e565b90508060400151156114e95750611585565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461152957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611583578186858060010196508151811061157657611575613c0a565b5b6020026020010181815250505b505b80806001019150506114c4565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115d1611f41565b80600d8190555050565b600f5481565b6060600380546115f090613739565b80601f016020809104026020016040519081016040528092919081815260200182805461161c90613739565b80156116695780601f1061163e57610100808354040283529160200191611669565b820191906000526020600020905b81548152906001019060200180831161164c57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b601160009054906101000a900460ff166116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613ccd565b60405180910390fd5b6000811180156116ec5750600f548111155b61172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613d39565b60405180910390fd5b600e5481611737610c44565b6117419190613a82565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613b02565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117d09190613a82565b1115611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613da5565b60405180910390fd5b80600d5461181f9190613b22565b341015611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613e11565b60405180910390fd5b61187261186c612769565b82612351565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c19190613a82565b9250508190555080601360008282546118da9190613a82565b9250508190555050565b600d5481565b80600760006118f761201e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a461201e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119e99190612f83565b60405180910390a35050565b600c8054611a0290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2e90613739565b8015611a7b5780601f10611a5057610100808354040283529160200191611a7b565b820191906000526020600020905b815481529060010190602001808311611a5e57829003601f168201915b505050505081565b60135481565b611a91611f41565b80600f8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c6c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0e57611b0985858585612771565b611c79565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b579291906139e8565b602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b989190613a26565b8015611c2a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611be89291906139e8565b602060405180830381865afa158015611c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c299190613a26565b5b611c6b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c629190613091565b60405180910390fd5b5b611c7885858585612771565b5b5050505050565b6060611c8b82611fbf565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613ea3565b60405180910390fd5b60001515601160019054906101000a900460ff16151503611d7757600c8054611cf290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e90613739565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b50505050509050611dd3565b6000611d816127e4565b90506000815111611da15760405180602001604052806000815250611dcf565b80611dab84612876565b600b604051602001611dbf93929190613f82565b6040516020818303038152906040525b9150505b919050565b611de0611f41565b8060108190555050565b611df2611f41565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eab611f41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614025565b60405180910390fd5b611f238161266f565b50565b611f2e611f41565b80600a9081611f3d9190613916565b5050565b611f49612769565b73ffffffffffffffffffffffffffffffffffffffff16611f6761159f565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614091565b60405180910390fd5b565b600081611fca612026565b11158015611fd9575060005482105b8015612017575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061203a826125a3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806120ad84612944565b915091506120c381876120be61201e565b61296b565b61210f576120d8866120d361201e565b611e0f565b61210e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612175576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218286868660016129af565b801561218d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061225b856122378888876129b5565b7c0200000000000000000000000000000000000000000000000000000000176129dd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122e157600060018501905060006004600083815260200190815260200160002054036122df5760005481146122de578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123498686866001612a08565b505050505050565b61236b828260405180602001604052806000815250612a0e565b5050565b6002600954036123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab906140fd565b60405180910390fd5b6002600981905550565b6001600981905550565b6123e383838360405180602001604052806000815250611a9b565b505050565b60008054905060008203612428576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61243560008483856129af565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ac8361249d60008660006129b5565b6124a685612aab565b176129dd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612512565b5060008203612588576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061259e6000848385612a08565b505050565b600080829050806125b2612026565b11612638576000548110156126375760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612635575b6000810361262b576004600083600190039350838152602001908152602001600020549050612601565b809250505061266a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612746612e1d565b6127626004600084815260200190815260200160002054612abb565b9050919050565b600033905090565b61277c848484610c61565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127de576127a784848484612b71565b6127dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546127f390613739565b80601f016020809104026020016040519081016040528092919081815260200182805461281f90613739565b801561286c5780601f106128415761010080835404028352916020019161286c565b820191906000526020600020905b81548152906001019060200180831161284f57829003601f168201915b5050505050905090565b60606000600161288584612cc1565b01905060008167ffffffffffffffff8111156128a4576128a3613122565b5b6040519080825280601f01601f1916602001820160405280156128d65781602001600182028036833780820191505090505b509050600082602001820190505b600115612939578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161292d5761292c613b64565b5b049450600085036128e4575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129cc868684612e14565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612a1883836123e8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612aa657600080549050600083820390505b612a586000868380600101945086612b71565b612a8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a45578160005414612aa357600080fd5b50505b505050565b60006001821460e11b9050919050565b612ac3612e1d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9761201e565b8786866040518563ffffffff1660e01b8152600401612bb99493929190614172565b6020604051808303816000875af1925050508015612bf557506040513d601f19601f82011682018060405250810190612bf291906141d3565b60015b612c6e573d8060008114612c25576040519150601f19603f3d011682016040523d82523d6000602084013e612c2a565b606091505b506000815103612c66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612d1f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612d1557612d14613b64565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612d5c576d04ee2d6d415b85acef81000000008381612d5257612d51613b64565b5b0492506020810190505b662386f26fc100008310612d8b57662386f26fc100008381612d8157612d80613b64565b5b0492506010810190505b6305f5e1008310612db4576305f5e1008381612daa57612da9613b64565b5b0492506008810190505b6127108310612dd9576127108381612dcf57612dce613b64565b5b0492506004810190505b60648310612dfc5760648381612df257612df1613b64565b5b0492506002810190505b600a8310612e0b576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e9381612e80565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612e76565b5b6000612eda84828501612ea1565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f1881612ee3565b8114612f2357600080fd5b50565b600081359050612f3581612f0f565b92915050565b600060208284031215612f5157612f50612e76565b5b6000612f5f84828501612f26565b91505092915050565b60008115159050919050565b612f7d81612f68565b82525050565b6000602082019050612f986000830184612f74565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fd8578082015181840152602081019050612fbd565b60008484015250505050565b6000601f19601f8301169050919050565b600061300082612f9e565b61300a8185612fa9565b935061301a818560208601612fba565b61302381612fe4565b840191505092915050565b600060208201905081810360008301526130488184612ff5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061307b82613050565b9050919050565b61308b81613070565b82525050565b60006020820190506130a66000830184613082565b92915050565b6130b581613070565b81146130c057600080fd5b50565b6000813590506130d2816130ac565b92915050565b600080604083850312156130ef576130ee612e76565b5b60006130fd858286016130c3565b925050602061310e85828601612ea1565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315a82612fe4565b810181811067ffffffffffffffff8211171561317957613178613122565b5b80604052505050565b600061318c612e6c565b90506131988282613151565b919050565b600067ffffffffffffffff8211156131b8576131b7613122565b5b6131c182612fe4565b9050602081019050919050565b82818337600083830152505050565b60006131f06131eb8461319d565b613182565b90508281526020810184848401111561320c5761320b61311d565b5b6132178482856131ce565b509392505050565b600082601f83011261323457613233613118565b5b81356132448482602086016131dd565b91505092915050565b60006020828403121561326357613262612e76565b5b600082013567ffffffffffffffff81111561328157613280612e7b565b5b61328d8482850161321f565b91505092915050565b61329f81612e80565b82525050565b60006020820190506132ba6000830184613296565b92915050565b6000806000606084860312156132d9576132d8612e76565b5b60006132e7868287016130c3565b93505060206132f8868287016130c3565b925050604061330986828701612ea1565b9150509250925092565b6000806040838503121561332a57613329612e76565b5b600061333885828601612ea1565b9250506020613349858286016130c3565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261337357613372613118565b5b8235905067ffffffffffffffff8111156133905761338f613353565b5b6020830191508360208202830111156133ac576133ab613358565b5b9250929050565b600080602083850312156133ca576133c9612e76565b5b600083013567ffffffffffffffff8111156133e8576133e7612e7b565b5b6133f48582860161335d565b92509250509250929050565b61340981612f68565b811461341457600080fd5b50565b60008135905061342681613400565b92915050565b60006020828403121561344257613441612e76565b5b600061345084828501613417565b91505092915050565b60006020828403121561346f5761346e612e76565b5b600061347d848285016130c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134bb81612e80565b82525050565b60006134cd83836134b2565b60208301905092915050565b6000602082019050919050565b60006134f182613486565b6134fb8185613491565b9350613506836134a2565b8060005b8381101561353757815161351e88826134c1565b9750613529836134d9565b92505060018101905061350a565b5085935050505092915050565b6000602082019050818103600083015261355e81846134e6565b905092915050565b6000806040838503121561357d5761357c612e76565b5b600061358b858286016130c3565b925050602061359c85828601613417565b9150509250929050565b600067ffffffffffffffff8211156135c1576135c0613122565b5b6135ca82612fe4565b9050602081019050919050565b60006135ea6135e5846135a6565b613182565b9050828152602081018484840111156136065761360561311d565b5b6136118482856131ce565b509392505050565b600082601f83011261362e5761362d613118565b5b813561363e8482602086016135d7565b91505092915050565b6000806000806080858703121561366157613660612e76565b5b600061366f878288016130c3565b9450506020613680878288016130c3565b935050604061369187828801612ea1565b925050606085013567ffffffffffffffff8111156136b2576136b1612e7b565b5b6136be87828801613619565b91505092959194509250565b600080604083850312156136e1576136e0612e76565b5b60006136ef858286016130c3565b9250506020613700858286016130c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375157607f821691505b6020821081036137645761376361370a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137cc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261378f565b6137d6868361378f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061381361380e61380984612e80565b6137ee565b612e80565b9050919050565b6000819050919050565b61382d836137f8565b6138416138398261381a565b84845461379c565b825550505050565b600090565b613856613849565b613861818484613824565b505050565b5b818110156138855761387a60008261384e565b600181019050613867565b5050565b601f8211156138ca5761389b8161376a565b6138a48461377f565b810160208510156138b3578190505b6138c76138bf8561377f565b830182613866565b50505b505050565b600082821c905092915050565b60006138ed600019846008026138cf565b1980831691505092915050565b600061390683836138dc565b9150826002028217905092915050565b61391f82612f9e565b67ffffffffffffffff81111561393857613937613122565b5b6139428254613739565b61394d828285613889565b600060209050601f831160018114613980576000841561396e578287015190505b61397885826138fa565b8655506139e0565b601f19841661398e8661376a565b60005b828110156139b657848901518255600182019150602085019450602081019050613991565b868310156139d357848901516139cf601f8916826138dc565b8355505b6001600288020188555050505b505050505050565b60006040820190506139fd6000830185613082565b613a0a6020830184613082565b9392505050565b600081519050613a2081613400565b92915050565b600060208284031215613a3c57613a3b612e76565b5b6000613a4a84828501613a11565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a8d82612e80565b9150613a9883612e80565b9250828201905080821115613ab057613aaf613a53565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613aec601483612fa9565b9150613af782613ab6565b602082019050919050565b60006020820190508181036000830152613b1b81613adf565b9050919050565b6000613b2d82612e80565b9150613b3883612e80565b9250828202613b4681612e80565b91508282048414831517613b5d57613b5c613a53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b9e82612e80565b9150613ba983612e80565b925082613bb957613bb8613b64565b5b828204905092915050565b600081905092915050565b50565b6000613bdf600083613bc4565b9150613bea82613bcf565b600082019050919050565b6000613c0082613bd2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c4482612e80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7657613c75613a53565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b6000613cb7601983612fa9565b9150613cc282613c81565b602082019050919050565b60006020820190508181036000830152613ce681613caa565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d23601483612fa9565b9150613d2e82613ced565b602082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613d8f601d83612fa9565b9150613d9a82613d59565b602082019050919050565b60006020820190508181036000830152613dbe81613d82565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613dfb601383612fa9565b9150613e0682613dc5565b602082019050919050565b60006020820190508181036000830152613e2a81613dee565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e8d602f83612fa9565b9150613e9882613e31565b604082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b600081905092915050565b6000613ed982612f9e565b613ee38185613ec3565b9350613ef3818560208601612fba565b80840191505092915050565b60008154613f0c81613739565b613f168186613ec3565b94506001821660008114613f315760018114613f4657613f79565b60ff1983168652811515820286019350613f79565b613f4f8561376a565b60005b83811015613f7157815481890152600182019150602081019050613f52565b838801955050505b50505092915050565b6000613f8e8286613ece565b9150613f9a8285613ece565b9150613fa68284613eff565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400f602683612fa9565b915061401a82613fb3565b604082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061407b602083612fa9565b915061408682614045565b602082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140e7601f83612fa9565b91506140f2826140b1565b602082019050919050565b60006020820190508181036000830152614116816140da565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141448261411d565b61414e8185614128565b935061415e818560208601612fba565b61416781612fe4565b840191505092915050565b60006080820190506141876000830187613082565b6141946020830186613082565b6141a16040830185613296565b81810360608301526141b38184614139565b905095945050505050565b6000815190506141cd81612f0f565b92915050565b6000602082840312156141e9576141e8612e76565b5b60006141f7848285016141be565b9150509291505056fea2646970667358221220e8b1570dfb67060d7bc023eb27e2722165884c75df5b282cc8b154c16c72ec7c64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

78629:6527:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82326:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19144:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20046:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26537:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25970:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81546:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15797:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79184:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84470:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80759:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79415:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82576:372;;;;;;;;;;;;;:::i;:::-;;84641:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80971:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81652:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79465:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78881:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79356:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81807:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21439:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16981:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70150:103;;;;;;;;;;;;;:::i;:::-;;83096:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69502:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82223:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79266:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20222:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79528:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80065:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79107:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27095:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78962:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79611:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81923:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84820:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83915:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82078:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81369:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27486:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70408:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81464:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82326:102;69388:13;:11;:13::i;:::-;82410:12:::1;82396:11;:26;;;;82326:102:::0;:::o;19144:639::-;19229:4;19568:10;19553:25;;:11;:25;;;;:102;;;;19645:10;19630:25;;:11;:25;;;;19553:102;:179;;;;19722:10;19707:25;;:11;:25;;;;19553:179;19533:199;;19144:639;;;:::o;20046:100::-;20100:13;20133:5;20126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20046:100;:::o;26537:218::-;26613:7;26638:16;26646:7;26638;:16::i;:::-;26633:64;;26663:34;;;;;;;;;;;;;;26633:64;26717:15;:24;26733:7;26717:24;;;;;;;;;;;:30;;;;;;;;;;;;26710:37;;26537:218;;;:::o;25970:408::-;26059:13;26075:16;26083:7;26075;:16::i;:::-;26059:32;;26131:5;26108:28;;:19;:17;:19::i;:::-;:28;;;26104:175;;26156:44;26173:5;26180:19;:17;:19::i;:::-;26156:16;:44::i;:::-;26151:128;;26228:35;;;;;;;;;;;;;;26151:128;26104:175;26324:2;26291:15;:24;26307:7;26291:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26362:7;26358:2;26342:28;;26351:5;26342:28;;;;;;;;;;;;26048:330;25970:408;;:::o;81546:100::-;69388:13;:11;:13::i;:::-;81630:10:::1;81618:9;:22;;;;;;:::i;:::-;;81546:100:::0;:::o;15797:323::-;15858:7;16086:15;:13;:15::i;:::-;16071:12;;16055:13;;:28;:46;16048:53;;15797:323;:::o;79184:34::-;;;;:::o;84470:165::-;84579:4;77543:1;76357:42;77497:43;;;:47;77493:699;;;77784:10;77776:18;;:4;:18;;;77772:85;;84592:37:::1;84611:4;84617:2;84621:7;84592:18;:37::i;:::-;77835:7:::0;;77772:85;76357:42;77917:40;;;77966:4;77973:10;77917:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;76357:42;78013:40;;;78062:4;78069;78013:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77917:157;77871:310;;78154:10;78135:30;;;;;;;;;;;:::i;:::-;;;;;;;;77871:310;77493:699;84592:37:::1;84611:4;84617:2;84621:7;84592:18;:37::i;:::-;84470:165:::0;;;;;:::o;80759:204::-;69388:13;:11;:13::i;:::-;80881:11:::1;;80866;80850:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;80842:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80924:33;80934:9;80945:11;80924:9;:33::i;:::-;80759:204:::0;;:::o;79415:30::-;;;;;;;;;;;;;:::o;82576:372::-;69388:13;:11;:13::i;:::-;73312:21:::1;:19;:21::i;:::-;82693:7:::2;82714:42;82706:56;;82798:3;82794:1;82770:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;82706:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82692:114;;;82821:2;82813:11;;;::::0;::::2;;82856:7;82877;:5;:7::i;:::-;82869:21;;82898;82869:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82855:69;;;82939:2;82931:11;;;::::0;::::2;;82626:322;;73356:20:::1;:18;:20::i;:::-;82576:372::o:0;84641:173::-;84754:4;77543:1;76357:42;77497:43;;;:47;77493:699;;;77784:10;77776:18;;:4;:18;;;77772:85;;84767:41:::1;84790:4;84796:2;84800:7;84767:22;:41::i;:::-;77835:7:::0;;77772:85;76357:42;77917:40;;;77966:4;77973:10;77917:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;76357:42;78013:40;;;78062:4;78069;78013:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77917:157;77871:310;;78154:10;78135:30;;;;;;;;;;;:::i;:::-;;;;;;;;77871:310;77493:699;84767:41:::1;84790:4;84796:2;84800:7;84767:22;:41::i;:::-;84641:173:::0;;;;;:::o;80971:238::-;69388:13;:11;:13::i;:::-;81053:9:::1;81048:156;81068:9;;:16;;81064:1;:20;81048:156;;;81129:11;;81124:1;81108:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:32;;81100:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;81174:22;81180:9;;81190:1;81180:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;81194:1;81174:5;:22::i;:::-;81086:3;;;;:::i;:::-;;;81048:156;;;;80971:238:::0;;:::o;81652:132::-;69388:13;:11;:13::i;:::-;81760:18:::1;81740:17;:38;;;;;;:::i;:::-;;81652:132:::0;:::o;79465:28::-;;;;;;;;;;;;;:::o;78881:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79356:38::-;;;;:::o;81807:95::-;69388:13;:11;:13::i;:::-;81885:11:::1;81872:10;;:24;;;;;;;;;;;;;;;;;;81807:95:::0;:::o;21439:152::-;21511:7;21554:27;21573:7;21554:18;:27::i;:::-;21531:52;;21439:152;;;:::o;16981:233::-;17053:7;17094:1;17077:19;;:5;:19;;;17073:60;;17105:28;;;;;;;;;;;;;;17073:60;11140:13;17151:18;:25;17170:5;17151:25;;;;;;;;;;;;;;;;:55;17144:62;;16981:233;;;:::o;70150:103::-;69388:13;:11;:13::i;:::-;70215:30:::1;70242:1;70215:18;:30::i;:::-;70150:103::o:0;83096:712::-;83157:16;83203:18;83238:16;83248:5;83238:9;:16::i;:::-;83224:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83203:52;;83267:11;83281:14;:12;:14::i;:::-;83267:28;;83306:19;83336:25;83377:9;83372:403;83392:3;83388:1;:7;83372:403;;;83417:31;83451:15;83464:1;83451:12;:15::i;:::-;83417:49;;83485:9;:16;;;83481:65;;;83522:8;;;83481:65;83590:1;83564:28;;:9;:14;;;:28;;;83560:103;;83633:9;:14;;;83613:34;;83560:103;83702:5;83681:26;;:17;:26;;;83677:87;;83747:1;83728;83730:13;;;;;;83728:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;83677:87;83402:373;83372:403;83397:3;;;;;;;83372:403;;;;83792:1;83785:8;;;;;;83096:712;;;:::o;69502:87::-;69548:7;69575:6;;;;;;;;;;;69568:13;;69502:87;:::o;82223:78::-;69388:13;:11;:13::i;:::-;82289:6:::1;82281:5;:14;;;;82223:78:::0;:::o;79266:38::-;;;;:::o;20222:104::-;20278:13;20311:7;20304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20222:104;:::o;79528:50::-;;;;;;;;;;;;;;;;;:::o;80065:686::-;80171:10;;;;;;;;;;;80163:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;80240:1;80226:11;:15;:52;;;;;80260:18;;80245:11;:33;;80226:52;80218:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80349:11;;80334;80318:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;80310:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80445:17;;80430:11;80400:15;:27;80416:10;80400:27;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:62;;80392:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;80532:11;80524:5;;:19;;;;:::i;:::-;80511:9;:32;;80503:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;80595:36;80605:12;:10;:12::i;:::-;80619:11;80595:9;:36::i;:::-;80695:11;80664:15;:27;80680:10;80664:27;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;80731:11;80715:12;;:27;;;;;;;:::i;:::-;;;;;;;;80065:686;:::o;79107:33::-;;;;:::o;27095:234::-;27242:8;27190:18;:39;27209:19;:17;:19::i;:::-;27190:39;;;;;;;;;;;;;;;:49;27230:8;27190:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27302:8;27266:55;;27281:19;:17;:19::i;:::-;27266:55;;;27312:8;27266:55;;;;;;:::i;:::-;;;;;;;;27095:234;;:::o;78962:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79611:27::-;;;;:::o;81923:130::-;69388:13;:11;:13::i;:::-;82028:19:::1;82007:18;:40;;;;81923:130:::0;:::o;84820:198::-;84952:4;77543:1;76357:42;77497:43;;;:47;77493:699;;;77784:10;77776:18;;:4;:18;;;77772:85;;84965:47:::1;84988:4;84994:2;84998:7;85007:4;84965:22;:47::i;:::-;77835:7:::0;;77772:85;76357:42;77917:40;;;77966:4;77973:10;77917:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;76357:42;78013:40;;;78062:4;78069;78013:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77917:157;77871:310;;78154:10;78135:30;;;;;;;;;;;:::i;:::-;;;;;;;;77871:310;77493:699;84965:47:::1;84988:4;84994:2;84998:7;85007:4;84965:22;:47::i;:::-;84820:198:::0;;;;;;:::o;83915:445::-;83989:13;84019:17;84027:8;84019:7;:17::i;:::-;84011:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;84113:5;84101:17;;:8;;;;;;;;;;;:17;;;84097:64;;84136:17;84129:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84097:64;84169:28;84200:10;:8;:10::i;:::-;84169:41;;84255:1;84230:14;84224:28;:32;:130;;;;;;;;;;;;;;;;;84292:14;84308:19;:8;:17;:19::i;:::-;84329:9;84275:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84224:130;84217:137;;;83915:445;;;;:::o;82078:126::-;69388:13;:11;:13::i;:::-;82180:18:::1;82160:17;:38;;;;82078:126:::0;:::o;81369:81::-;69388:13;:11;:13::i;:::-;81438:6:::1;81427:8;;:17;;;;;;;;;;;;;;;;;;81369:81:::0;:::o;27486:164::-;27583:4;27607:18;:25;27626:5;27607:25;;;;;;;;;;;;;;;:35;27633:8;27607:35;;;;;;;;;;;;;;;;;;;;;;;;;27600:42;;27486:164;;;;:::o;70408:201::-;69388:13;:11;:13::i;:::-;70517:1:::1;70497:22;;:8;:22;;::::0;70489:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;70573:28;70592:8;70573:18;:28::i;:::-;70408:201:::0;:::o;81464:76::-;69388:13;:11;:13::i;:::-;81530:4:::1;81524:3;:10;;;;;;:::i;:::-;;81464:76:::0;:::o;69667:132::-;69742:12;:10;:12::i;:::-;69731:23;;:7;:5;:7::i;:::-;:23;;;69723:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69667:132::o;27908:282::-;27973:4;28029:7;28010:15;:13;:15::i;:::-;:26;;:66;;;;;28063:13;;28053:7;:23;28010:66;:153;;;;;28162:1;11916:8;28114:17;:26;28132:7;28114:26;;;;;;;;;;;;:44;:49;28010:153;27990:173;;27908:282;;;:::o;50216:105::-;50276:7;50303:10;50296:17;;50216:105;:::o;83814:95::-;83879:7;83902:1;83895:8;;83814:95;:::o;30176:2825::-;30318:27;30348;30367:7;30348:18;:27::i;:::-;30318:57;;30433:4;30392:45;;30408:19;30392:45;;;30388:86;;30446:28;;;;;;;;;;;;;;30388:86;30488:27;30517:23;30544:35;30571:7;30544:26;:35::i;:::-;30487:92;;;;30679:68;30704:15;30721:4;30727:19;:17;:19::i;:::-;30679:24;:68::i;:::-;30674:180;;30767:43;30784:4;30790:19;:17;:19::i;:::-;30767:16;:43::i;:::-;30762:92;;30819:35;;;;;;;;;;;;;;30762:92;30674:180;30885:1;30871:16;;:2;:16;;;30867:52;;30896:23;;;;;;;;;;;;;;30867:52;30932:43;30954:4;30960:2;30964:7;30973:1;30932:21;:43::i;:::-;31068:15;31065:160;;;31208:1;31187:19;31180:30;31065:160;31605:18;:24;31624:4;31605:24;;;;;;;;;;;;;;;;31603:26;;;;;;;;;;;;31674:18;:22;31693:2;31674:22;;;;;;;;;;;;;;;;31672:24;;;;;;;;;;;31996:146;32033:2;32082:45;32097:4;32103:2;32107:19;32082:14;:45::i;:::-;12196:8;32054:73;31996:18;:146::i;:::-;31967:17;:26;31985:7;31967:26;;;;;;;;;;;:175;;;;32313:1;12196:8;32262:19;:47;:52;32258:627;;32335:19;32367:1;32357:7;:11;32335:33;;32524:1;32490:17;:30;32508:11;32490:30;;;;;;;;;;;;:35;32486:384;;32628:13;;32613:11;:28;32609:242;;32808:19;32775:17;:30;32793:11;32775:30;;;;;;;;;;;:52;;;;32609:242;32486:384;32316:569;32258:627;32932:7;32928:2;32913:27;;32922:4;32913:27;;;;;;;;;;;;32951:42;32972:4;32978:2;32982:7;32991:1;32951:20;:42::i;:::-;30307:2694;;;30176:2825;;;:::o;44048:112::-;44125:27;44135:2;44139:8;44125:27;;;;;;;;;;;;:9;:27::i;:::-;44048:112;;:::o;73392:293::-;72794:1;73526:7;;:19;73518:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72794:1;73659:7;:18;;;;73392:293::o;73693:213::-;72750:1;73876:7;:22;;;;73693:213::o;33097:193::-;33243:39;33260:4;33266:2;33270:7;33243:39;;;;;;;;;;;;:16;:39::i;:::-;33097:193;;;:::o;37557:2966::-;37630:20;37653:13;;37630:36;;37693:1;37681:8;:13;37677:44;;37703:18;;;;;;;;;;;;;;37677:44;37734:61;37764:1;37768:2;37772:12;37786:8;37734:21;:61::i;:::-;38278:1;11278:2;38248:1;:26;;38247:32;38235:8;:45;38209:18;:22;38228:2;38209:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38557:139;38594:2;38648:33;38671:1;38675:2;38679:1;38648:14;:33::i;:::-;38615:30;38636:8;38615:20;:30::i;:::-;:66;38557:18;:139::i;:::-;38523:17;:31;38541:12;38523:31;;;;;;;;;;;:173;;;;38713:16;38744:11;38773:8;38758:12;:23;38744:37;;39294:16;39290:2;39286:25;39274:37;;39666:12;39626:8;39585:1;39523:25;39464:1;39403;39376:335;40037:1;40023:12;40019:20;39977:346;40078:3;40069:7;40066:16;39977:346;;40296:7;40286:8;40283:1;40256:25;40253:1;40250;40245:59;40131:1;40122:7;40118:15;40107:26;;39977:346;;;39981:77;40368:1;40356:8;:13;40352:45;;40378:19;;;;;;;;;;;;;;40352:45;40430:3;40414:13;:19;;;;37983:2462;;40455:60;40484:1;40488:2;40492:12;40506:8;40455:20;:60::i;:::-;37619:2904;37557:2966;;:::o;22594:1275::-;22661:7;22681:12;22696:7;22681:22;;22764:4;22745:15;:13;:15::i;:::-;:23;22741:1061;;22798:13;;22791:4;:20;22787:1015;;;22836:14;22853:17;:23;22871:4;22853:23;;;;;;;;;;;;22836:40;;22970:1;11916:8;22942:6;:24;:29;22938:845;;23607:113;23624:1;23614:6;:11;23607:113;;23667:17;:25;23685:6;;;;;;;23667:25;;;;;;;;;;;;23658:34;;23607:113;;;23753:6;23746:13;;;;;;22938:845;22813:989;22787:1015;22741:1061;23830:31;;;;;;;;;;;;;;22594:1275;;;;:::o;70769:191::-;70843:16;70862:6;;;;;;;;;;;70843:25;;70888:8;70879:6;;:17;;;;;;;;;;;;;;;;;;70943:8;70912:40;;70933:8;70912:40;;;;;;;;;;;;70832:128;70769:191;:::o;15484:103::-;15539:7;15566:13;;15559:20;;15484:103;:::o;22042:161::-;22110:21;;:::i;:::-;22151:44;22170:17;:24;22188:5;22170:24;;;;;;;;;;;;22151:18;:44::i;:::-;22144:51;;22042:161;;;:::o;68053:98::-;68106:7;68133:10;68126:17;;68053:98;:::o;33888:407::-;34063:31;34076:4;34082:2;34086:7;34063:12;:31::i;:::-;34127:1;34109:2;:14;;;:19;34105:183;;34148:56;34179:4;34185:2;34189:7;34198:5;34148:30;:56::i;:::-;34143:145;;34232:40;;;;;;;;;;;;;;34143:145;34105:183;33888:407;;;;:::o;84366:98::-;84426:13;84455:3;84448:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84366:98;:::o;65480:716::-;65536:13;65587:14;65624:1;65604:17;65615:5;65604:10;:17::i;:::-;:21;65587:38;;65640:20;65674:6;65663:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65640:41;;65696:11;65825:6;65821:2;65817:15;65809:6;65805:28;65798:35;;65862:288;65869:4;65862:288;;;65894:5;;;;;;;;66036:8;66031:2;66024:5;66020:14;66015:30;66010:3;66002:44;66092:2;66083:11;;;;;;:::i;:::-;;;;;66126:1;66117:5;:10;65862:288;66113:21;65862:288;66171:6;66164:13;;;;;65480:716;;;:::o;29071:485::-;29173:27;29202:23;29243:38;29284:15;:24;29300:7;29284:24;;;;;;;;;;;29243:65;;29461:18;29438:41;;29518:19;29512:26;29493:45;;29423:126;29071:485;;;:::o;28299:659::-;28448:11;28613:16;28606:5;28602:28;28593:37;;28773:16;28762:9;28758:32;28745:45;;28923:15;28912:9;28909:30;28901:5;28890:9;28887:20;28884:56;28874:66;;28299:659;;;;;:::o;34957:159::-;;;;;:::o;49525:311::-;49660:7;49680:16;12320:3;49706:19;:41;;49680:68;;12320:3;49774:31;49785:4;49791:2;49795:9;49774:10;:31::i;:::-;49766:40;;:62;;49759:69;;;49525:311;;;;;:::o;24417:450::-;24497:14;24665:16;24658:5;24654:28;24645:37;;24842:5;24828:11;24803:23;24799:41;24796:52;24789:5;24786:63;24776:73;;24417:450;;;;:::o;35781:158::-;;;;;:::o;43275:689::-;43406:19;43412:2;43416:8;43406:5;:19::i;:::-;43485:1;43467:2;:14;;;:19;43463:483;;43507:11;43521:13;;43507:27;;43553:13;43575:8;43569:3;:14;43553:30;;43602:233;43633:62;43672:1;43676:2;43680:7;;;;;;43689:5;43633:30;:62::i;:::-;43628:167;;43731:40;;;;;;;;;;;;;;43628:167;43830:3;43822:5;:11;43602:233;;43917:3;43900:13;;:20;43896:34;;43922:8;;;43896:34;43488:458;;43463:483;43275:689;;;:::o;24969:324::-;25039:14;25272:1;25262:8;25259:15;25233:24;25229:46;25219:56;;24969:324;;;:::o;23968:366::-;24034:31;;:::i;:::-;24111:6;24078:9;:14;;:41;;;;;;;;;;;11799:3;24164:6;:33;;24130:9;:24;;:68;;;;;;;;;;;24256:1;11916:8;24228:6;:24;:29;;24209:9;:16;;:48;;;;;;;;;;;12320:3;24297:6;:28;;24268:9;:19;;:58;;;;;;;;;;;23968:366;;;:::o;36379:716::-;36542:4;36588:2;36563:45;;;36609:19;:17;:19::i;:::-;36630:4;36636:7;36645:5;36563:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36559:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36863:1;36846:6;:13;:18;36842:235;;36892:40;;;;;;;;;;;;;;36842:235;37035:6;37029:13;37020:6;37016:2;37012:15;37005:38;36559:529;36732:54;;;36722:64;;;:6;:64;;;;36715:71;;;36379:716;;;;;;:::o;62346:922::-;62399:7;62419:14;62436:1;62419:18;;62486:6;62477:5;:15;62473:102;;62522:6;62513:15;;;;;;:::i;:::-;;;;;62557:2;62547:12;;;;62473:102;62602:6;62593:5;:15;62589:102;;62638:6;62629:15;;;;;;:::i;:::-;;;;;62673:2;62663:12;;;;62589:102;62718:6;62709:5;:15;62705:102;;62754:6;62745:15;;;;;;:::i;:::-;;;;;62789:2;62779:12;;;;62705:102;62834:5;62825;:14;62821:99;;62869:5;62860:14;;;;;;:::i;:::-;;;;;62903:1;62893:11;;;;62821:99;62947:5;62938;:14;62934:99;;62982:5;62973:14;;;;;;:::i;:::-;;;;;63016:1;63006:11;;;;62934:99;63060:5;63051;:14;63047:99;;63095:5;63086:14;;;;;;:::i;:::-;;;;;63129:1;63119:11;;;;63047:99;63173:5;63164;:14;63160:66;;63209:1;63199:11;;;;63160:66;63254:6;63247:13;;;62346:922;;;:::o;49226:147::-;49363:6;49226:147;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:149::-;1061:7;1101:66;1094:5;1090:78;1079:89;;1025:149;;;:::o;1180:120::-;1252:23;1269:5;1252:23;:::i;:::-;1245:5;1242:34;1232:62;;1290:1;1287;1280:12;1232:62;1180:120;:::o;1306:137::-;1351:5;1389:6;1376:20;1367:29;;1405:32;1431:5;1405:32;:::i;:::-;1306:137;;;;:::o;1449:327::-;1507:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:119;;;1562:79;;:::i;:::-;1524:119;1682:1;1707:52;1751:7;1742:6;1731:9;1727:22;1707:52;:::i;:::-;1697:62;;1653:116;1449:327;;;;:::o;1782:90::-;1816:7;1859:5;1852:13;1845:21;1834:32;;1782:90;;;:::o;1878:109::-;1959:21;1974:5;1959:21;:::i;:::-;1954:3;1947:34;1878:109;;:::o;1993:210::-;2080:4;2118:2;2107:9;2103:18;2095:26;;2131:65;2193:1;2182:9;2178:17;2169:6;2131:65;:::i;:::-;1993:210;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:246::-;2570:1;2580:113;2594:6;2591:1;2588:13;2580:113;;;2679:1;2674:3;2670:11;2664:18;2660:1;2655:3;2651:11;2644:39;2616:2;2613:1;2609:10;2604:15;;2580:113;;;2727:1;2718:6;2713:3;2709:16;2702:27;2551:184;2489:246;;;:::o;2741:102::-;2782:6;2833:2;2829:7;2824:2;2817:5;2813:14;2809:28;2799:38;;2741:102;;;:::o;2849:377::-;2937:3;2965:39;2998:5;2965:39;:::i;:::-;3020:71;3084:6;3079:3;3020:71;:::i;:::-;3013:78;;3100:65;3158:6;3153:3;3146:4;3139:5;3135:16;3100:65;:::i;:::-;3190:29;3212:6;3190:29;:::i;:::-;3185:3;3181:39;3174:46;;2941:285;2849:377;;;;:::o;3232:313::-;3345:4;3383:2;3372:9;3368:18;3360:26;;3432:9;3426:4;3422:20;3418:1;3407:9;3403:17;3396:47;3460:78;3533:4;3524:6;3460:78;:::i;:::-;3452:86;;3232:313;;;;:::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:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:117::-;9082:1;9079;9072:12;9096:117;9205:1;9202;9195:12;9236:568;9309:8;9319:6;9369:3;9362:4;9354:6;9350:17;9346:27;9336:122;;9377:79;;:::i;:::-;9336:122;9490:6;9477:20;9467:30;;9520:18;9512:6;9509:30;9506:117;;;9542:79;;:::i;:::-;9506:117;9656:4;9648:6;9644:17;9632:29;;9710:3;9702:4;9694:6;9690:17;9680:8;9676:32;9673:41;9670:128;;;9717:79;;:::i;:::-;9670:128;9236:568;;;;;:::o;9810:559::-;9896:6;9904;9953:2;9941:9;9932:7;9928:23;9924:32;9921:119;;;9959:79;;:::i;:::-;9921:119;10107:1;10096:9;10092:17;10079:31;10137:18;10129:6;10126:30;10123:117;;;10159:79;;:::i;:::-;10123:117;10272:80;10344:7;10335:6;10324:9;10320:22;10272:80;:::i;:::-;10254:98;;;;10050:312;9810:559;;;;;:::o;10375:116::-;10445:21;10460:5;10445:21;:::i;:::-;10438:5;10435:32;10425:60;;10481:1;10478;10471:12;10425:60;10375:116;:::o;10497:133::-;10540:5;10578:6;10565:20;10556:29;;10594:30;10618:5;10594:30;:::i;:::-;10497:133;;;;:::o;10636:323::-;10692:6;10741:2;10729:9;10720:7;10716:23;10712:32;10709:119;;;10747:79;;:::i;:::-;10709:119;10867:1;10892:50;10934:7;10925:6;10914:9;10910:22;10892:50;:::i;:::-;10882:60;;10838:114;10636:323;;;;:::o;10965:329::-;11024:6;11073:2;11061:9;11052:7;11048:23;11044:32;11041:119;;;11079:79;;:::i;:::-;11041:119;11199:1;11224:53;11269:7;11260:6;11249:9;11245:22;11224:53;:::i;:::-;11214:63;;11170:117;10965:329;;;;:::o;11300:114::-;11367:6;11401:5;11395:12;11385:22;;11300:114;;;:::o;11420:184::-;11519:11;11553:6;11548:3;11541:19;11593:4;11588:3;11584:14;11569:29;;11420:184;;;;:::o;11610:132::-;11677:4;11700:3;11692:11;;11730:4;11725:3;11721:14;11713:22;;11610:132;;;:::o;11748:108::-;11825:24;11843:5;11825:24;:::i;:::-;11820:3;11813:37;11748:108;;:::o;11862:179::-;11931:10;11952:46;11994:3;11986:6;11952:46;:::i;:::-;12030:4;12025:3;12021:14;12007:28;;11862:179;;;;:::o;12047:113::-;12117:4;12149;12144:3;12140:14;12132:22;;12047:113;;;:::o;12196:732::-;12315:3;12344:54;12392:5;12344:54;:::i;:::-;12414:86;12493:6;12488:3;12414:86;:::i;:::-;12407:93;;12524:56;12574:5;12524:56;:::i;:::-;12603:7;12634:1;12619:284;12644:6;12641:1;12638:13;12619:284;;;12720:6;12714:13;12747:63;12806:3;12791:13;12747:63;:::i;:::-;12740:70;;12833:60;12886:6;12833:60;:::i;:::-;12823:70;;12679:224;12666:1;12663;12659:9;12654:14;;12619:284;;;12623:14;12919:3;12912:10;;12320:608;;;12196:732;;;;:::o;12934:373::-;13077:4;13115:2;13104:9;13100:18;13092:26;;13164:9;13158:4;13154:20;13150:1;13139:9;13135:17;13128:47;13192:108;13295:4;13286:6;13192:108;:::i;:::-;13184:116;;12934:373;;;;:::o;13313:468::-;13378:6;13386;13435:2;13423:9;13414:7;13410:23;13406:32;13403:119;;;13441:79;;:::i;:::-;13403:119;13561:1;13586:53;13631:7;13622:6;13611:9;13607:22;13586:53;:::i;:::-;13576:63;;13532:117;13688:2;13714:50;13756:7;13747:6;13736:9;13732:22;13714:50;:::i;:::-;13704:60;;13659:115;13313:468;;;;;:::o;13787:307::-;13848:4;13938:18;13930:6;13927:30;13924:56;;;13960:18;;:::i;:::-;13924:56;13998:29;14020:6;13998:29;:::i;:::-;13990:37;;14082:4;14076;14072:15;14064:23;;13787:307;;;:::o;14100:423::-;14177:5;14202:65;14218:48;14259:6;14218:48;:::i;:::-;14202:65;:::i;:::-;14193:74;;14290:6;14283:5;14276:21;14328:4;14321:5;14317:16;14366:3;14357:6;14352:3;14348:16;14345:25;14342:112;;;14373:79;;:::i;:::-;14342:112;14463:54;14510:6;14505:3;14500;14463:54;:::i;:::-;14183:340;14100:423;;;;;:::o;14542:338::-;14597:5;14646:3;14639:4;14631:6;14627:17;14623:27;14613:122;;14654:79;;:::i;:::-;14613:122;14771:6;14758:20;14796:78;14870:3;14862:6;14855:4;14847:6;14843:17;14796:78;:::i;:::-;14787:87;;14603:277;14542:338;;;;:::o;14886:943::-;14981:6;14989;14997;15005;15054:3;15042:9;15033:7;15029:23;15025:33;15022:120;;;15061:79;;:::i;:::-;15022:120;15181:1;15206:53;15251:7;15242:6;15231:9;15227:22;15206:53;:::i;:::-;15196:63;;15152:117;15308:2;15334:53;15379:7;15370:6;15359:9;15355:22;15334:53;:::i;:::-;15324:63;;15279:118;15436:2;15462:53;15507:7;15498:6;15487:9;15483:22;15462:53;:::i;:::-;15452:63;;15407:118;15592:2;15581:9;15577:18;15564:32;15623:18;15615:6;15612:30;15609:117;;;15645:79;;:::i;:::-;15609:117;15750:62;15804:7;15795:6;15784:9;15780:22;15750:62;:::i;:::-;15740:72;;15535:287;14886:943;;;;;;;:::o;15835:474::-;15903:6;15911;15960:2;15948:9;15939:7;15935:23;15931:32;15928:119;;;15966:79;;:::i;:::-;15928:119;16086:1;16111:53;16156:7;16147:6;16136:9;16132:22;16111:53;:::i;:::-;16101:63;;16057:117;16213:2;16239:53;16284:7;16275:6;16264:9;16260:22;16239:53;:::i;:::-;16229:63;;16184:118;15835:474;;;;;:::o;16315:180::-;16363:77;16360:1;16353:88;16460:4;16457:1;16450:15;16484:4;16481:1;16474:15;16501:320;16545:6;16582:1;16576:4;16572:12;16562:22;;16629:1;16623:4;16619:12;16650:18;16640:81;;16706:4;16698:6;16694:17;16684:27;;16640:81;16768:2;16760:6;16757:14;16737:18;16734:38;16731:84;;16787:18;;:::i;:::-;16731:84;16552:269;16501:320;;;:::o;16827:141::-;16876:4;16899:3;16891:11;;16922:3;16919:1;16912:14;16956:4;16953:1;16943:18;16935:26;;16827:141;;;:::o;16974:93::-;17011:6;17058:2;17053;17046:5;17042:14;17038:23;17028:33;;16974:93;;;:::o;17073:107::-;17117:8;17167:5;17161:4;17157:16;17136:37;;17073:107;;;;:::o;17186:393::-;17255:6;17305:1;17293:10;17289:18;17328:97;17358:66;17347:9;17328:97;:::i;:::-;17446:39;17476:8;17465:9;17446:39;:::i;:::-;17434:51;;17518:4;17514:9;17507:5;17503:21;17494:30;;17567:4;17557:8;17553:19;17546:5;17543:30;17533:40;;17262:317;;17186:393;;;;;:::o;17585:60::-;17613:3;17634:5;17627:12;;17585:60;;;:::o;17651:142::-;17701:9;17734:53;17752:34;17761:24;17779:5;17761:24;:::i;:::-;17752:34;:::i;:::-;17734:53;:::i;:::-;17721:66;;17651:142;;;:::o;17799:75::-;17842:3;17863:5;17856:12;;17799:75;;;:::o;17880:269::-;17990:39;18021:7;17990:39;:::i;:::-;18051:91;18100:41;18124:16;18100:41;:::i;:::-;18092:6;18085:4;18079:11;18051:91;:::i;:::-;18045:4;18038:105;17956:193;17880:269;;;:::o;18155:73::-;18200:3;18155:73;:::o;18234:189::-;18311:32;;:::i;:::-;18352:65;18410:6;18402;18396:4;18352:65;:::i;:::-;18287:136;18234:189;;:::o;18429:186::-;18489:120;18506:3;18499:5;18496:14;18489:120;;;18560:39;18597:1;18590:5;18560:39;:::i;:::-;18533:1;18526:5;18522:13;18513:22;;18489:120;;;18429:186;;:::o;18621:543::-;18722:2;18717:3;18714:11;18711:446;;;18756:38;18788:5;18756:38;:::i;:::-;18840:29;18858:10;18840:29;:::i;:::-;18830:8;18826:44;19023:2;19011:10;19008:18;19005:49;;;19044:8;19029:23;;19005:49;19067:80;19123:22;19141:3;19123:22;:::i;:::-;19113:8;19109:37;19096:11;19067:80;:::i;:::-;18726:431;;18711:446;18621:543;;;:::o;19170:117::-;19224:8;19274:5;19268:4;19264:16;19243:37;;19170:117;;;;:::o;19293:169::-;19337:6;19370:51;19418:1;19414:6;19406:5;19403:1;19399:13;19370:51;:::i;:::-;19366:56;19451:4;19445;19441:15;19431:25;;19344:118;19293:169;;;;:::o;19467:295::-;19543:4;19689:29;19714:3;19708:4;19689:29;:::i;:::-;19681:37;;19751:3;19748:1;19744:11;19738:4;19735:21;19727:29;;19467:295;;;;:::o;19767:1395::-;19884:37;19917:3;19884:37;:::i;:::-;19986:18;19978:6;19975:30;19972:56;;;20008:18;;:::i;:::-;19972:56;20052:38;20084:4;20078:11;20052:38;:::i;:::-;20137:67;20197:6;20189;20183:4;20137:67;:::i;:::-;20231:1;20255:4;20242:17;;20287:2;20279:6;20276:14;20304:1;20299:618;;;;20961:1;20978:6;20975:77;;;21027:9;21022:3;21018:19;21012:26;21003:35;;20975:77;21078:67;21138:6;21131:5;21078:67;:::i;:::-;21072:4;21065:81;20934:222;20269:887;;20299:618;20351:4;20347:9;20339:6;20335:22;20385:37;20417:4;20385:37;:::i;:::-;20444:1;20458:208;20472:7;20469:1;20466:14;20458:208;;;20551:9;20546:3;20542:19;20536:26;20528:6;20521:42;20602:1;20594:6;20590:14;20580:24;;20649:2;20638:9;20634:18;20621:31;;20495:4;20492:1;20488:12;20483:17;;20458:208;;;20694:6;20685:7;20682:19;20679:179;;;20752:9;20747:3;20743:19;20737:26;20795:48;20837:4;20829:6;20825:17;20814:9;20795:48;:::i;:::-;20787:6;20780:64;20702:156;20679:179;20904:1;20900;20892:6;20888:14;20884:22;20878:4;20871:36;20306:611;;;20269:887;;19859:1303;;;19767:1395;;:::o;21168:332::-;21289:4;21327:2;21316:9;21312:18;21304:26;;21340:71;21408:1;21397:9;21393:17;21384:6;21340:71;:::i;:::-;21421:72;21489:2;21478:9;21474:18;21465:6;21421:72;:::i;:::-;21168:332;;;;;:::o;21506:137::-;21560:5;21591:6;21585:13;21576:22;;21607:30;21631:5;21607:30;:::i;:::-;21506:137;;;;:::o;21649:345::-;21716:6;21765:2;21753:9;21744:7;21740:23;21736:32;21733:119;;;21771:79;;:::i;:::-;21733:119;21891:1;21916:61;21969:7;21960:6;21949:9;21945:22;21916:61;:::i;:::-;21906:71;;21862:125;21649:345;;;;:::o;22000:180::-;22048:77;22045:1;22038:88;22145:4;22142:1;22135:15;22169:4;22166:1;22159:15;22186:191;22226:3;22245:20;22263:1;22245:20;:::i;:::-;22240:25;;22279:20;22297:1;22279:20;:::i;:::-;22274:25;;22322:1;22319;22315:9;22308:16;;22343:3;22340:1;22337:10;22334:36;;;22350:18;;:::i;:::-;22334:36;22186:191;;;;:::o;22383:170::-;22523:22;22519:1;22511:6;22507:14;22500:46;22383:170;:::o;22559:366::-;22701:3;22722:67;22786:2;22781:3;22722:67;:::i;:::-;22715:74;;22798:93;22887:3;22798:93;:::i;:::-;22916:2;22911:3;22907:12;22900:19;;22559:366;;;:::o;22931:419::-;23097:4;23135:2;23124:9;23120:18;23112:26;;23184:9;23178:4;23174:20;23170:1;23159:9;23155:17;23148:47;23212:131;23338:4;23212:131;:::i;:::-;23204:139;;22931:419;;;:::o;23356:410::-;23396:7;23419:20;23437:1;23419:20;:::i;:::-;23414:25;;23453:20;23471:1;23453:20;:::i;:::-;23448:25;;23508:1;23505;23501:9;23530:30;23548:11;23530:30;:::i;:::-;23519:41;;23709:1;23700:7;23696:15;23693:1;23690:22;23670:1;23663:9;23643:83;23620:139;;23739:18;;:::i;:::-;23620:139;23404:362;23356:410;;;;:::o;23772:180::-;23820:77;23817:1;23810:88;23917:4;23914:1;23907:15;23941:4;23938:1;23931:15;23958:185;23998:1;24015:20;24033:1;24015:20;:::i;:::-;24010:25;;24049:20;24067:1;24049:20;:::i;:::-;24044:25;;24088:1;24078:35;;24093:18;;:::i;:::-;24078:35;24135:1;24132;24128:9;24123:14;;23958:185;;;;:::o;24149:147::-;24250:11;24287:3;24272:18;;24149:147;;;;:::o;24302:114::-;;:::o;24422:398::-;24581:3;24602:83;24683:1;24678:3;24602:83;:::i;:::-;24595:90;;24694:93;24783:3;24694:93;:::i;:::-;24812:1;24807:3;24803:11;24796:18;;24422:398;;;:::o;24826:379::-;25010:3;25032:147;25175:3;25032:147;:::i;:::-;25025:154;;25196:3;25189:10;;24826:379;;;:::o;25211:180::-;25259:77;25256:1;25249:88;25356:4;25353:1;25346:15;25380:4;25377:1;25370:15;25397:233;25436:3;25459:24;25477:5;25459:24;:::i;:::-;25450:33;;25505:66;25498:5;25495:77;25492:103;;25575:18;;:::i;:::-;25492:103;25622:1;25615:5;25611:13;25604:20;;25397:233;;;:::o;25636:175::-;25776:27;25772:1;25764:6;25760:14;25753:51;25636:175;:::o;25817:366::-;25959:3;25980:67;26044:2;26039:3;25980:67;:::i;:::-;25973:74;;26056:93;26145:3;26056:93;:::i;:::-;26174:2;26169:3;26165:12;26158:19;;25817:366;;;:::o;26189:419::-;26355:4;26393:2;26382:9;26378:18;26370:26;;26442:9;26436:4;26432:20;26428:1;26417:9;26413:17;26406:47;26470:131;26596:4;26470:131;:::i;:::-;26462:139;;26189:419;;;:::o;26614:170::-;26754:22;26750:1;26742:6;26738:14;26731:46;26614:170;:::o;26790:366::-;26932:3;26953:67;27017:2;27012:3;26953:67;:::i;:::-;26946:74;;27029:93;27118:3;27029:93;:::i;:::-;27147:2;27142:3;27138:12;27131:19;;26790:366;;;:::o;27162:419::-;27328:4;27366:2;27355:9;27351:18;27343:26;;27415:9;27409:4;27405:20;27401:1;27390:9;27386:17;27379:47;27443:131;27569:4;27443:131;:::i;:::-;27435:139;;27162:419;;;:::o;27587:179::-;27727:31;27723:1;27715:6;27711:14;27704:55;27587:179;:::o;27772:366::-;27914:3;27935:67;27999:2;27994:3;27935:67;:::i;:::-;27928:74;;28011:93;28100:3;28011:93;:::i;:::-;28129:2;28124:3;28120:12;28113:19;;27772:366;;;:::o;28144:419::-;28310:4;28348:2;28337:9;28333:18;28325:26;;28397:9;28391:4;28387:20;28383:1;28372:9;28368:17;28361:47;28425:131;28551:4;28425:131;:::i;:::-;28417:139;;28144:419;;;:::o;28569:169::-;28709:21;28705:1;28697:6;28693:14;28686:45;28569:169;:::o;28744:366::-;28886:3;28907:67;28971:2;28966:3;28907:67;:::i;:::-;28900:74;;28983:93;29072:3;28983:93;:::i;:::-;29101:2;29096:3;29092:12;29085:19;;28744:366;;;:::o;29116:419::-;29282:4;29320:2;29309:9;29305:18;29297:26;;29369:9;29363:4;29359:20;29355:1;29344:9;29340:17;29333:47;29397:131;29523:4;29397:131;:::i;:::-;29389:139;;29116:419;;;:::o;29541:234::-;29681:34;29677:1;29669:6;29665:14;29658:58;29750:17;29745:2;29737:6;29733:15;29726:42;29541:234;:::o;29781:366::-;29923:3;29944:67;30008:2;30003:3;29944:67;:::i;:::-;29937:74;;30020:93;30109:3;30020:93;:::i;:::-;30138:2;30133:3;30129:12;30122:19;;29781:366;;;:::o;30153:419::-;30319:4;30357:2;30346:9;30342:18;30334:26;;30406:9;30400:4;30396:20;30392:1;30381:9;30377:17;30370:47;30434:131;30560:4;30434:131;:::i;:::-;30426:139;;30153:419;;;:::o;30578:148::-;30680:11;30717:3;30702:18;;30578:148;;;;:::o;30732:390::-;30838:3;30866:39;30899:5;30866:39;:::i;:::-;30921:89;31003:6;30998:3;30921:89;:::i;:::-;30914:96;;31019:65;31077:6;31072:3;31065:4;31058:5;31054:16;31019:65;:::i;:::-;31109:6;31104:3;31100:16;31093:23;;30842:280;30732:390;;;;:::o;31152:874::-;31255:3;31292:5;31286:12;31321:36;31347:9;31321:36;:::i;:::-;31373:89;31455:6;31450:3;31373:89;:::i;:::-;31366:96;;31493:1;31482:9;31478:17;31509:1;31504:166;;;;31684:1;31679:341;;;;31471:549;;31504:166;31588:4;31584:9;31573;31569:25;31564:3;31557:38;31650:6;31643:14;31636:22;31628:6;31624:35;31619:3;31615:45;31608:52;;31504:166;;31679:341;31746:38;31778:5;31746:38;:::i;:::-;31806:1;31820:154;31834:6;31831:1;31828:13;31820:154;;;31908:7;31902:14;31898:1;31893:3;31889:11;31882:35;31958:1;31949:7;31945:15;31934:26;;31856:4;31853:1;31849:12;31844:17;;31820:154;;;32003:6;31998:3;31994:16;31987:23;;31686:334;;31471:549;;31259:767;;31152:874;;;;:::o;32032:589::-;32257:3;32279:95;32370:3;32361:6;32279:95;:::i;:::-;32272:102;;32391:95;32482:3;32473:6;32391:95;:::i;:::-;32384:102;;32503:92;32591:3;32582:6;32503:92;:::i;:::-;32496:99;;32612:3;32605:10;;32032:589;;;;;;:::o;32627:225::-;32767:34;32763:1;32755:6;32751:14;32744:58;32836:8;32831:2;32823:6;32819:15;32812:33;32627:225;:::o;32858:366::-;33000:3;33021:67;33085:2;33080:3;33021:67;:::i;:::-;33014:74;;33097:93;33186:3;33097:93;:::i;:::-;33215:2;33210:3;33206:12;33199:19;;32858:366;;;:::o;33230:419::-;33396:4;33434:2;33423:9;33419:18;33411:26;;33483:9;33477:4;33473:20;33469:1;33458:9;33454:17;33447:47;33511:131;33637:4;33511:131;:::i;:::-;33503:139;;33230:419;;;:::o;33655:182::-;33795:34;33791:1;33783:6;33779:14;33772:58;33655:182;:::o;33843:366::-;33985:3;34006:67;34070:2;34065:3;34006:67;:::i;:::-;33999:74;;34082:93;34171:3;34082:93;:::i;:::-;34200:2;34195:3;34191:12;34184:19;;33843:366;;;:::o;34215:419::-;34381:4;34419:2;34408:9;34404:18;34396:26;;34468:9;34462:4;34458:20;34454:1;34443:9;34439:17;34432:47;34496:131;34622:4;34496:131;:::i;:::-;34488:139;;34215:419;;;:::o;34640:181::-;34780:33;34776:1;34768:6;34764:14;34757:57;34640:181;:::o;34827:366::-;34969:3;34990:67;35054:2;35049:3;34990:67;:::i;:::-;34983:74;;35066:93;35155:3;35066:93;:::i;:::-;35184:2;35179:3;35175:12;35168:19;;34827:366;;;:::o;35199:419::-;35365:4;35403:2;35392:9;35388:18;35380:26;;35452:9;35446:4;35442:20;35438:1;35427:9;35423:17;35416:47;35480:131;35606:4;35480:131;:::i;:::-;35472:139;;35199:419;;;:::o;35624:98::-;35675:6;35709:5;35703:12;35693:22;;35624:98;;;:::o;35728:168::-;35811:11;35845:6;35840:3;35833:19;35885:4;35880:3;35876:14;35861:29;;35728:168;;;;:::o;35902:373::-;35988:3;36016:38;36048:5;36016:38;:::i;:::-;36070:70;36133:6;36128:3;36070:70;:::i;:::-;36063:77;;36149:65;36207:6;36202:3;36195:4;36188:5;36184:16;36149:65;:::i;:::-;36239:29;36261:6;36239:29;:::i;:::-;36234:3;36230:39;36223:46;;35992:283;35902:373;;;;:::o;36281:640::-;36476:4;36514:3;36503:9;36499:19;36491:27;;36528:71;36596:1;36585:9;36581:17;36572:6;36528:71;:::i;:::-;36609:72;36677:2;36666:9;36662:18;36653:6;36609:72;:::i;:::-;36691;36759:2;36748:9;36744:18;36735:6;36691:72;:::i;:::-;36810:9;36804:4;36800:20;36795:2;36784:9;36780:18;36773:48;36838:76;36909:4;36900:6;36838:76;:::i;:::-;36830:84;;36281:640;;;;;;;:::o;36927:141::-;36983:5;37014:6;37008:13;36999:22;;37030:32;37056:5;37030:32;:::i;:::-;36927:141;;;;:::o;37074:349::-;37143:6;37192:2;37180:9;37171:7;37167:23;37163:32;37160:119;;;37198:79;;:::i;:::-;37160:119;37318:1;37343:63;37398:7;37389:6;37378:9;37374:22;37343:63;:::i;:::-;37333:73;;37289:127;37074:349;;;;:::o

Swarm Source

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