ETH Price: $3,267.59 (+3.05%)
Gas: 2 Gwei

RAX x Robert Neal (RAXxRobertNeal)
 

Overview

TokenID

162

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
Rax

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-26
*/

// File src/IERC721A.sol

// SPDX-License-Identifier: UNLICENSED
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File src/ERC721A.sol

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

pragma solidity ^0.8.4;

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // 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 src/Rax.sol

pragma solidity ^0.8.4;

// ERC721A so we can make approve function virtual

error CallerNotOwner();
error OwnerAlreadySet();
error MaxMintPerTx();
error MaxSupplyReached();
error TransferWhilePaused();
error UnauthorisedOperator();

contract Rax is ERC721A {
    address private _owner;

    // baseURI with trailing slash.
    string public baseURI =
        'https://ipfs.filebase.io/ipfs/QmdByMDuhCCvZ7zP4As3zoapyXoo3MG3Dxo4xgUwusZhfi/';

    // MAX NUMBER OF NFTs PER TRANSACTION
    uint8 MAX_MINT_PER_TRANSACTION = 100;

    // MAX NFTs available
    uint16 MAX_NFTs = 1000;

    // pauses transfers and sales
    // minting and burning are always allowed
    bool private _paused = true;

    // authorised Operators list
    address[] private authorisedOperators;

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

    constructor() ERC721A('RAX x Robert Neal', 'RAXxRobertNeal') {
        _owner = msg.sender;

        emit OwnershipTransferred(address(0), _owner);
    }

    modifier onlyOwner() {
        if (msg.sender != _owner) revert CallerNotOwner();
        _;
    }

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

    function batchMint(address[] memory receivers) external onlyOwner {
        if (totalSupply() + receivers.length > MAX_NFTs)
            revert MaxSupplyReached();
        if (receivers.length > MAX_MINT_PER_TRANSACTION) revert MaxMintPerTx();

        for (uint8 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

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

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

    function transferOwnership(address to) external onlyOwner {
        if (_owner == to) revert OwnerAlreadySet();
        address oldOwner = _owner;
        _owner = to;
        emit OwnershipTransferred(oldOwner, to);
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function isPaused() public view virtual returns (bool) {
        return _paused;
    }

    function setPaused(bool paused) external onlyOwner {
        _paused = paused;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);

        if (from != address(0) && to != address(0)) {
            if (_paused) revert TransferWhilePaused();
        }
    }

    function addAuthorisedOperator(address[] calldata operators)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < operators.length; i++) {
            authorisedOperators.push(operators[i]);
        }
    }

    function removeOperator(address operator) external onlyOwner {
        address[] memory filteredOperators;
        uint256 count = 0;

        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (authorisedOperators[i] != operator) {
                filteredOperators[count] = authorisedOperators[i];
                count++;
            }
        }

        authorisedOperators = filteredOperators;
    }

    function isAuthorisedOperator(address operator)
        public
        view
        onlyOwner
        returns (bool)
    {
        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (operator == authorisedOperators[i]) {
                return true;
            }
        }

        return false;
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (approved) {
            if (!isAuthorisedOperator(operator)) revert UnauthorisedOperator();
        }
        super.setApprovalForAll(operator, approved);
    }

    function approve(address to, uint256 tokenId) public override {
        if (to != address(0)) {
            if (!isAuthorisedOperator(to)) revert UnauthorisedOperator();
        }
        super.approve(to, tokenId);
    }

    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CallerNotOwner","type":"error"},{"inputs":[],"name":"MaxMintPerTx","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerAlreadySet","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":"TransferWhilePaused","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnauthorisedOperator","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":"operators","type":"address[]"}],"name":"addAuthorisedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"isAuthorisedOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604d815260200162003391604d913960099080519060200190620000359291906200021d565b506064600a60006101000a81548160ff021916908360ff1602179055506103e8600a60016101000a81548161ffff021916908361ffff1602179055506001600a60036101000a81548160ff0219169083151502179055503480156200009957600080fd5b506040518060400160405280601181526020017f524158207820526f62657274204e65616c0000000000000000000000000000008152506040518060400160405280600e81526020017f52415878526f626572744e65616c00000000000000000000000000000000000081525081600290805190602001906200011e9291906200021d565b508060039080519060200190620001379291906200021d565b50620001486200021460201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000332565b60006001905090565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61304f80620003426000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063bc30d7641161007c578063bc30d764146103af578063c87b56dd146103df578063d67b06c11461040f578063df0b66371461042b578063e985e9c514610447578063f2fde38b1461047757610158565b806370a08231146102ef57806395d89b411461031f578063a22cb4651461033d578063ac8a584a14610359578063b187bd2614610375578063b88d4fde1461039357610158565b806323b872dd1161011557806323b872dd1461023157806342842e0e1461024d57806342966c681461026957806355f804b3146102855780636352211e146102a15780636c0360eb146102d157610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806316c38b3c146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906129cb565b610493565b6040516101849190612be2565b60405180910390f35b610195610525565b6040516101a29190612bfd565b60405180910390f35b6101c560048036038101906101c09190612a5e565b6105b7565b6040516101d29190612b7b565b60405180910390f35b6101f560048036038101906101f091906128e0565b610636565b005b610211600480360381019061020c91906129a2565b6106b8565b005b61021b61075c565b6040516102289190612c1f565b60405180910390f35b61024b600480360381019061024691906127da565b610773565b005b610267600480360381019061026291906127da565b610a98565b005b610283600480360381019061027e9190612a5e565b610ab8565b005b61029f600480360381019061029a9190612a1d565b610ac6565b005b6102bb60048036038101906102b69190612a5e565b610b67565b6040516102c89190612b7b565b60405180910390f35b6102d9610b79565b6040516102e69190612bfd565b60405180910390f35b61030960048036038101906103049190612775565b610c07565b6040516103169190612c1f565b60405180910390f35b610327610cc0565b6040516103349190612bfd565b60405180910390f35b610357600480360381019061035291906128a4565b610d52565b005b610373600480360381019061036e9190612775565b610da6565b005b61037d610fee565b60405161038a9190612be2565b60405180910390f35b6103ad60048036038101906103a89190612829565b611005565b005b6103c960048036038101906103c49190612775565b611078565b6040516103d69190612be2565b60405180910390f35b6103f960048036038101906103f49190612a5e565b6111d1565b6040516104069190612bfd565b60405180910390f35b61042960048036038101906104249190612961565b611270565b005b6104456004803603810190610440919061291c565b611419565b005b610461600480360381019061045c919061279e565b611576565b60405161046e9190612be2565b60405180910390f35b610491600480360381019061048c9190612775565b61160a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061051e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461053490612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612e49565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c2826117df565b6105f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106aa5761067382611078565b6106a9576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106b4828261183e565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073f576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b6000610766611982565b6001546000540303905090565b600061077e8261198b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107f184611a59565b915091506108078187610802611a80565b611a88565b6108535761081c86610817611a80565b611576565b610852576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c78686866001611acc565b80156108d257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109a08561097c888887611b95565b7c020000000000000000000000000000000000000000000000000000000017611bbd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a28576000600185019050600060046000838152602001908152602001600020541415610a26576000548114610a25578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a908686866001611be8565b505050505050565b610ab383838360405180602001604052806000815250611005565b505050565b610ac3816001611bee565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610b6392919061242f565b5050565b6000610b728261198b565b9050919050565b60098054610b8690612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290612e49565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610ccf90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612e49565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b8015610d9857610d6182611078565b610d97576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610da28282611e42565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610fd1578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbe57600b8181548110610f11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610fba90612eac565b9250505b8080610fc990612eac565b915050610e33565b5081600b9080519060200190610fe89291906124b5565b50505050565b6000600a60039054906101000a900460ff16905090565b611010848484610773565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110725761103b84848484611f4d565b611071576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b805490508110156111c657600b818154811061114b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b35760019150506111cc565b80806111be90612eac565b915050611104565b50600090505b919050565b60606111dc826117df565b611212576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061121c6120ad565b905060008151141561123d5760405180602001604052806000815250611268565b806112478461213f565b604051602001611258929190612b57565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161131661075c565b6113209190612d30565b1115611358576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156113a5576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561141557611402828260ff16815181106113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612198565b808061140d90612ef5565b9150506113a8565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561157157600b8383838181106114e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114fe9190612775565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061156990612eac565b9150506114a3565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611691576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611719576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816117ea611982565b111580156117f9575060005482105b8015611837575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061184982610b67565b90508073ffffffffffffffffffffffffffffffffffffffff1661186a611a80565b73ffffffffffffffffffffffffffffffffffffffff16146118cd5761189681611891611a80565b611576565b6118cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000808290508061199a611982565b11611a2257600054811015611a215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1f575b6000811415611a155760046000836001900393508381526020019081526020016000205490506119ea565b8092505050611a54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b611ad8848484846121b6565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611b425750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b8f57600a60039054906101000a900460ff1615611b8e576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008060e883901c905060e8611bac8686846121bc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611bf98361198b565b90506000819050600080611c0c86611a59565b915091508415611c7557611c288184611c23611a80565b611a88565b611c7457611c3d83611c38611a80565b611576565b611c73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611c83836000886001611acc565b8015611c8e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3683611cf385600088611b95565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611bbd565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611dbe576000600187019050600060046000838152602001908152602001600020541415611dbc576000548114611dbb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e28836000886001611be8565b600160008154809291906001019190505550505050505050565b8060076000611e4f611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efc611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f419190612be2565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611a80565b8786866040518563ffffffff1660e01b8152600401611f959493929190612b96565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd91906129f4565b60015b61205a573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b50600081511415612052576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120bc90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546120e890612e49565b80156121355780601f1061210a57610100808354040283529160200191612135565b820191906000526020600020905b81548152906001019060200180831161211857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561218357600184039350600a81066030018453600a810490508061217e57612183565b612158565b50828103602084039350808452505050919050565b6121b28282604051806020016040528060008152506121c5565b5050565b50505050565b60009392505050565b6121cf8383612262565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225d57600080549050600083820390505b61220f6000868380600101945086611f4d565b612245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fc57816000541461225a57600080fd5b50505b505050565b60008054905060008214156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b06000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612327836123186000866000611b95565b6123218561241f565b17611bbd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238d565b506000821415612404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061241a6000848385611be8565b505050565b60006001821460e11b9050919050565b82805461243b90612e49565b90600052602060002090601f01602090048101928261245d57600085556124a4565b82601f1061247657805160ff19168380011785556124a4565b828001600101855582156124a4579182015b828111156124a3578251825591602001919060010190612488565b5b5090506124b1919061253f565b5090565b82805482825590600052602060002090810192821561252e579160200282015b8281111561252d5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124d5565b5b50905061253b919061253f565b5090565b5b80821115612558576000816000905550600101612540565b5090565b600061256f61256a84612c5f565b612c3a565b9050808382526020820190508285602086028201111561258e57600080fd5b60005b858110156125be57816125a48882612644565b845260208401935060208301925050600181019050612591565b5050509392505050565b60006125db6125d684612c8b565b612c3a565b9050828152602081018484840111156125f357600080fd5b6125fe848285612e07565b509392505050565b600061261961261484612cbc565b612c3a565b90508281526020810184848401111561263157600080fd5b61263c848285612e07565b509392505050565b60008135905061265381612fbd565b92915050565b60008083601f84011261266b57600080fd5b8235905067ffffffffffffffff81111561268457600080fd5b60208301915083602082028301111561269c57600080fd5b9250929050565b600082601f8301126126b457600080fd5b81356126c484826020860161255c565b91505092915050565b6000813590506126dc81612fd4565b92915050565b6000813590506126f181612feb565b92915050565b60008151905061270681612feb565b92915050565b600082601f83011261271d57600080fd5b813561272d8482602086016125c8565b91505092915050565b600082601f83011261274757600080fd5b8135612757848260208601612606565b91505092915050565b60008135905061276f81613002565b92915050565b60006020828403121561278757600080fd5b600061279584828501612644565b91505092915050565b600080604083850312156127b157600080fd5b60006127bf85828601612644565b92505060206127d085828601612644565b9150509250929050565b6000806000606084860312156127ef57600080fd5b60006127fd86828701612644565b935050602061280e86828701612644565b925050604061281f86828701612760565b9150509250925092565b6000806000806080858703121561283f57600080fd5b600061284d87828801612644565b945050602061285e87828801612644565b935050604061286f87828801612760565b925050606085013567ffffffffffffffff81111561288c57600080fd5b6128988782880161270c565b91505092959194509250565b600080604083850312156128b757600080fd5b60006128c585828601612644565b92505060206128d6858286016126cd565b9150509250929050565b600080604083850312156128f357600080fd5b600061290185828601612644565b925050602061291285828601612760565b9150509250929050565b6000806020838503121561292f57600080fd5b600083013567ffffffffffffffff81111561294957600080fd5b61295585828601612659565b92509250509250929050565b60006020828403121561297357600080fd5b600082013567ffffffffffffffff81111561298d57600080fd5b612999848285016126a3565b91505092915050565b6000602082840312156129b457600080fd5b60006129c2848285016126cd565b91505092915050565b6000602082840312156129dd57600080fd5b60006129eb848285016126e2565b91505092915050565b600060208284031215612a0657600080fd5b6000612a14848285016126f7565b91505092915050565b600060208284031215612a2f57600080fd5b600082013567ffffffffffffffff811115612a4957600080fd5b612a5584828501612736565b91505092915050565b600060208284031215612a7057600080fd5b6000612a7e84828501612760565b91505092915050565b612a9081612d86565b82525050565b612a9f81612d98565b82525050565b6000612ab082612ced565b612aba8185612d03565b9350612aca818560208601612e16565b612ad381612fac565b840191505092915050565b6000612ae982612cf8565b612af38185612d14565b9350612b03818560208601612e16565b612b0c81612fac565b840191505092915050565b6000612b2282612cf8565b612b2c8185612d25565b9350612b3c818560208601612e16565b80840191505092915050565b612b5181612df0565b82525050565b6000612b638285612b17565b9150612b6f8284612b17565b91508190509392505050565b6000602082019050612b906000830184612a87565b92915050565b6000608082019050612bab6000830187612a87565b612bb86020830186612a87565b612bc56040830185612b48565b8181036060830152612bd78184612aa5565b905095945050505050565b6000602082019050612bf76000830184612a96565b92915050565b60006020820190508181036000830152612c178184612ade565b905092915050565b6000602082019050612c346000830184612b48565b92915050565b6000612c44612c55565b9050612c508282612e7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7a57612c79612f7d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ca657612ca5612f7d565b5b612caf82612fac565b9050602081019050919050565b600067ffffffffffffffff821115612cd757612cd6612f7d565b5b612ce082612fac565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3b82612df0565b9150612d4683612df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7b57612d7a612f1f565b5b828201905092915050565b6000612d9182612dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e34578082015181840152602081019050612e19565b83811115612e43576000848401525b50505050565b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612f4e565b5b50919050565b612e8482612fac565b810181811067ffffffffffffffff82111715612ea357612ea2612f7d565b5b80604052505050565b6000612eb782612df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eea57612ee9612f1f565b5b600182019050919050565b6000612f0082612dfa565b915060ff821415612f1457612f13612f1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612fc681612d86565b8114612fd157600080fd5b50565b612fdd81612d98565b8114612fe857600080fd5b50565b612ff481612da4565b8114612fff57600080fd5b50565b61300b81612df0565b811461301657600080fd5b5056fea26469706673582212208540f6d320c6c8e4ce6df3902bce6d8f2df2bb575fb5f3b0d38cfa95ae64642864736f6c6343000804003368747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d6442794d4475684343765a377a50344173337a6f617079586f6f334d473344786f347867557775735a6866692f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063bc30d7641161007c578063bc30d764146103af578063c87b56dd146103df578063d67b06c11461040f578063df0b66371461042b578063e985e9c514610447578063f2fde38b1461047757610158565b806370a08231146102ef57806395d89b411461031f578063a22cb4651461033d578063ac8a584a14610359578063b187bd2614610375578063b88d4fde1461039357610158565b806323b872dd1161011557806323b872dd1461023157806342842e0e1461024d57806342966c681461026957806355f804b3146102855780636352211e146102a15780636c0360eb146102d157610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806316c38b3c146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906129cb565b610493565b6040516101849190612be2565b60405180910390f35b610195610525565b6040516101a29190612bfd565b60405180910390f35b6101c560048036038101906101c09190612a5e565b6105b7565b6040516101d29190612b7b565b60405180910390f35b6101f560048036038101906101f091906128e0565b610636565b005b610211600480360381019061020c91906129a2565b6106b8565b005b61021b61075c565b6040516102289190612c1f565b60405180910390f35b61024b600480360381019061024691906127da565b610773565b005b610267600480360381019061026291906127da565b610a98565b005b610283600480360381019061027e9190612a5e565b610ab8565b005b61029f600480360381019061029a9190612a1d565b610ac6565b005b6102bb60048036038101906102b69190612a5e565b610b67565b6040516102c89190612b7b565b60405180910390f35b6102d9610b79565b6040516102e69190612bfd565b60405180910390f35b61030960048036038101906103049190612775565b610c07565b6040516103169190612c1f565b60405180910390f35b610327610cc0565b6040516103349190612bfd565b60405180910390f35b610357600480360381019061035291906128a4565b610d52565b005b610373600480360381019061036e9190612775565b610da6565b005b61037d610fee565b60405161038a9190612be2565b60405180910390f35b6103ad60048036038101906103a89190612829565b611005565b005b6103c960048036038101906103c49190612775565b611078565b6040516103d69190612be2565b60405180910390f35b6103f960048036038101906103f49190612a5e565b6111d1565b6040516104069190612bfd565b60405180910390f35b61042960048036038101906104249190612961565b611270565b005b6104456004803603810190610440919061291c565b611419565b005b610461600480360381019061045c919061279e565b611576565b60405161046e9190612be2565b60405180910390f35b610491600480360381019061048c9190612775565b61160a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061051e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461053490612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612e49565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c2826117df565b6105f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106aa5761067382611078565b6106a9576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106b4828261183e565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073f576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b6000610766611982565b6001546000540303905090565b600061077e8261198b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107f184611a59565b915091506108078187610802611a80565b611a88565b6108535761081c86610817611a80565b611576565b610852576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c78686866001611acc565b80156108d257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109a08561097c888887611b95565b7c020000000000000000000000000000000000000000000000000000000017611bbd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a28576000600185019050600060046000838152602001908152602001600020541415610a26576000548114610a25578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a908686866001611be8565b505050505050565b610ab383838360405180602001604052806000815250611005565b505050565b610ac3816001611bee565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610b6392919061242f565b5050565b6000610b728261198b565b9050919050565b60098054610b8690612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290612e49565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610ccf90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612e49565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b8015610d9857610d6182611078565b610d97576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610da28282611e42565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610fd1578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbe57600b8181548110610f11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610fba90612eac565b9250505b8080610fc990612eac565b915050610e33565b5081600b9080519060200190610fe89291906124b5565b50505050565b6000600a60039054906101000a900460ff16905090565b611010848484610773565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110725761103b84848484611f4d565b611071576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b805490508110156111c657600b818154811061114b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b35760019150506111cc565b80806111be90612eac565b915050611104565b50600090505b919050565b60606111dc826117df565b611212576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061121c6120ad565b905060008151141561123d5760405180602001604052806000815250611268565b806112478461213f565b604051602001611258929190612b57565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161131661075c565b6113209190612d30565b1115611358576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156113a5576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561141557611402828260ff16815181106113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612198565b808061140d90612ef5565b9150506113a8565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561157157600b8383838181106114e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114fe9190612775565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061156990612eac565b9150506114a3565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611691576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611719576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816117ea611982565b111580156117f9575060005482105b8015611837575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061184982610b67565b90508073ffffffffffffffffffffffffffffffffffffffff1661186a611a80565b73ffffffffffffffffffffffffffffffffffffffff16146118cd5761189681611891611a80565b611576565b6118cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000808290508061199a611982565b11611a2257600054811015611a215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1f575b6000811415611a155760046000836001900393508381526020019081526020016000205490506119ea565b8092505050611a54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b611ad8848484846121b6565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611b425750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b8f57600a60039054906101000a900460ff1615611b8e576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008060e883901c905060e8611bac8686846121bc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611bf98361198b565b90506000819050600080611c0c86611a59565b915091508415611c7557611c288184611c23611a80565b611a88565b611c7457611c3d83611c38611a80565b611576565b611c73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611c83836000886001611acc565b8015611c8e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3683611cf385600088611b95565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611bbd565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611dbe576000600187019050600060046000838152602001908152602001600020541415611dbc576000548114611dbb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e28836000886001611be8565b600160008154809291906001019190505550505050505050565b8060076000611e4f611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efc611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f419190612be2565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611a80565b8786866040518563ffffffff1660e01b8152600401611f959493929190612b96565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd91906129f4565b60015b61205a573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b50600081511415612052576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120bc90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546120e890612e49565b80156121355780601f1061210a57610100808354040283529160200191612135565b820191906000526020600020905b81548152906001019060200180831161211857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561218357600184039350600a81066030018453600a810490508061217e57612183565b612158565b50828103602084039350808452505050919050565b6121b28282604051806020016040528060008152506121c5565b5050565b50505050565b60009392505050565b6121cf8383612262565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225d57600080549050600083820390505b61220f6000868380600101945086611f4d565b612245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fc57816000541461225a57600080fd5b50505b505050565b60008054905060008214156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b06000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612327836123186000866000611b95565b6123218561241f565b17611bbd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238d565b506000821415612404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061241a6000848385611be8565b505050565b60006001821460e11b9050919050565b82805461243b90612e49565b90600052602060002090601f01602090048101928261245d57600085556124a4565b82601f1061247657805160ff19168380011785556124a4565b828001600101855582156124a4579182015b828111156124a3578251825591602001919060010190612488565b5b5090506124b1919061253f565b5090565b82805482825590600052602060002090810192821561252e579160200282015b8281111561252d5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124d5565b5b50905061253b919061253f565b5090565b5b80821115612558576000816000905550600101612540565b5090565b600061256f61256a84612c5f565b612c3a565b9050808382526020820190508285602086028201111561258e57600080fd5b60005b858110156125be57816125a48882612644565b845260208401935060208301925050600181019050612591565b5050509392505050565b60006125db6125d684612c8b565b612c3a565b9050828152602081018484840111156125f357600080fd5b6125fe848285612e07565b509392505050565b600061261961261484612cbc565b612c3a565b90508281526020810184848401111561263157600080fd5b61263c848285612e07565b509392505050565b60008135905061265381612fbd565b92915050565b60008083601f84011261266b57600080fd5b8235905067ffffffffffffffff81111561268457600080fd5b60208301915083602082028301111561269c57600080fd5b9250929050565b600082601f8301126126b457600080fd5b81356126c484826020860161255c565b91505092915050565b6000813590506126dc81612fd4565b92915050565b6000813590506126f181612feb565b92915050565b60008151905061270681612feb565b92915050565b600082601f83011261271d57600080fd5b813561272d8482602086016125c8565b91505092915050565b600082601f83011261274757600080fd5b8135612757848260208601612606565b91505092915050565b60008135905061276f81613002565b92915050565b60006020828403121561278757600080fd5b600061279584828501612644565b91505092915050565b600080604083850312156127b157600080fd5b60006127bf85828601612644565b92505060206127d085828601612644565b9150509250929050565b6000806000606084860312156127ef57600080fd5b60006127fd86828701612644565b935050602061280e86828701612644565b925050604061281f86828701612760565b9150509250925092565b6000806000806080858703121561283f57600080fd5b600061284d87828801612644565b945050602061285e87828801612644565b935050604061286f87828801612760565b925050606085013567ffffffffffffffff81111561288c57600080fd5b6128988782880161270c565b91505092959194509250565b600080604083850312156128b757600080fd5b60006128c585828601612644565b92505060206128d6858286016126cd565b9150509250929050565b600080604083850312156128f357600080fd5b600061290185828601612644565b925050602061291285828601612760565b9150509250929050565b6000806020838503121561292f57600080fd5b600083013567ffffffffffffffff81111561294957600080fd5b61295585828601612659565b92509250509250929050565b60006020828403121561297357600080fd5b600082013567ffffffffffffffff81111561298d57600080fd5b612999848285016126a3565b91505092915050565b6000602082840312156129b457600080fd5b60006129c2848285016126cd565b91505092915050565b6000602082840312156129dd57600080fd5b60006129eb848285016126e2565b91505092915050565b600060208284031215612a0657600080fd5b6000612a14848285016126f7565b91505092915050565b600060208284031215612a2f57600080fd5b600082013567ffffffffffffffff811115612a4957600080fd5b612a5584828501612736565b91505092915050565b600060208284031215612a7057600080fd5b6000612a7e84828501612760565b91505092915050565b612a9081612d86565b82525050565b612a9f81612d98565b82525050565b6000612ab082612ced565b612aba8185612d03565b9350612aca818560208601612e16565b612ad381612fac565b840191505092915050565b6000612ae982612cf8565b612af38185612d14565b9350612b03818560208601612e16565b612b0c81612fac565b840191505092915050565b6000612b2282612cf8565b612b2c8185612d25565b9350612b3c818560208601612e16565b80840191505092915050565b612b5181612df0565b82525050565b6000612b638285612b17565b9150612b6f8284612b17565b91508190509392505050565b6000602082019050612b906000830184612a87565b92915050565b6000608082019050612bab6000830187612a87565b612bb86020830186612a87565b612bc56040830185612b48565b8181036060830152612bd78184612aa5565b905095945050505050565b6000602082019050612bf76000830184612a96565b92915050565b60006020820190508181036000830152612c178184612ade565b905092915050565b6000602082019050612c346000830184612b48565b92915050565b6000612c44612c55565b9050612c508282612e7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7a57612c79612f7d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ca657612ca5612f7d565b5b612caf82612fac565b9050602081019050919050565b600067ffffffffffffffff821115612cd757612cd6612f7d565b5b612ce082612fac565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3b82612df0565b9150612d4683612df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7b57612d7a612f1f565b5b828201905092915050565b6000612d9182612dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e34578082015181840152602081019050612e19565b83811115612e43576000848401525b50505050565b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612f4e565b5b50919050565b612e8482612fac565b810181811067ffffffffffffffff82111715612ea357612ea2612f7d565b5b80604052505050565b6000612eb782612df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eea57612ee9612f1f565b5b600182019050919050565b6000612f0082612dfa565b915060ff821415612f1457612f13612f1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612fc681612d86565b8114612fd157600080fd5b50565b612fdd81612d98565b8114612fe857600080fd5b50565b612ff481612da4565b8114612fff57600080fd5b50565b61300b81612df0565b811461301657600080fd5b5056fea26469706673582212208540f6d320c6c8e4ce6df3902bce6d8f2df2bb575fb5f3b0d38cfa95ae64642864736f6c63430008040033

Deployed Bytecode Sourcemap

53512:4211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18705:689;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19657:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26546:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57401:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55592:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15230:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30317:2995;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33408:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57635:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55055:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21147:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53611:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16414:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19833:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57098:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56305:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55496:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34191:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56752:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20043:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54576:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56064:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27577:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55169:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18705:689;18835:4;19179:10;19164:25;;:11;:25;;;;:102;;;;19256:10;19241:25;;:11;:25;;;;19164:102;:179;;;;19333:10;19318:25;;:11;:25;;;;19164:179;19144:199;;18705:689;;;:::o;19657:100::-;19711:13;19744:5;19737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19657:100;:::o;26546:268::-;26667:7;26697:16;26705:7;26697;:16::i;:::-;26692:64;;26722:34;;;;;;;;;;;;;;26692:64;26776:15;:24;26792:7;26776:24;;;;;;;;;;;:30;;;;;;;;;;;;26769:37;;26546:268;;;:::o;57401:226::-;57492:1;57478:16;;:2;:16;;;57474:109;;57516:24;57537:2;57516:20;:24::i;:::-;57511:60;;57549:22;;;;;;;;;;;;;;57511:60;57474:109;57593:26;57607:2;57611:7;57593:13;:26::i;:::-;57401:226;;:::o;55592:86::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;55664:6:::1;55654:7;;:16;;;;;;;;;;;;;;;;;;55592:86:::0;:::o;15230:323::-;15291:7;15519:15;:13;:15::i;:::-;15504:12;;15488:13;;:28;:46;15481:53;;15230:323;:::o;30317:2995::-;30451:27;30481;30500:7;30481:18;:27::i;:::-;30451:57;;30566:4;30525:45;;30541:19;30525:45;;;30521:99;;30592:28;;;;;;;;;;;;;;30521:99;30648:27;30690:23;30727:35;30754:7;30727:26;:35::i;:::-;30633:129;;;;30876:134;30919:15;30953:4;30976:19;:17;:19::i;:::-;30876:24;:134::i;:::-;30857:287;;31040:43;31057:4;31063:19;:17;:19::i;:::-;31040:16;:43::i;:::-;31035:109;;31109:35;;;;;;;;;;;;;;31035:109;30857:287;31175:1;31161:16;;:2;:16;;;31157:52;;;31186:23;;;;;;;;;;;;;;31157:52;31222:43;31244:4;31250:2;31254:7;31263:1;31222:21;:43::i;:::-;31358:15;31355:2;;;31498:1;31477:19;31470:30;31355:2;31895:18;:24;31914:4;31895:24;;;;;;;;;;;;;;;;31893:26;;;;;;;;;;;;31964:18;:22;31983:2;31964:22;;;;;;;;;;;;;;;;31962:24;;;;;;;;;;;32286:167;32323:2;32393:45;32408:4;32414:2;32418:19;32393:14;:45::i;:::-;11629:8;32344:94;32286:18;:167::i;:::-;32257:17;:26;32275:7;32257:26;;;;;;;;;;;:196;;;;32624:1;11629:8;32573:19;:47;:52;32569:627;;;32646:19;32678:1;32668:7;:11;32646:33;;32835:1;32801:17;:30;32819:11;32801:30;;;;;;;;;;;;:35;32797:384;;;32939:13;;32924:11;:28;32920:242;;33119:19;33086:17;:30;33104:11;33086:30;;;;;;;;;;;:52;;;;32920:242;32797:384;32569:627;;33243:7;33239:2;33224:27;;33233:4;33224:27;;;;;;;;;;;;33262:42;33283:4;33289:2;33293:7;33302:1;33262:20;:42::i;:::-;30317:2995;;;;;;:::o;33408:185::-;33546:39;33563:4;33569:2;33573:7;33546:39;;;;;;;;;;;;:16;:39::i;:::-;33408:185;;;:::o;57635:85::-;57692:20;57698:7;57707:4;57692:5;:20::i;:::-;57635:85;:::o;55055:106::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;55142:11:::1;55132:7;:21;;;;;;;;;;;;:::i;:::-;;55055:106:::0;:::o;21147:202::-;21264:7;21312:27;21331:7;21312:18;:27::i;:::-;21289:52;;21147:202;;;:::o;53611:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16414:283::-;16531:7;16577:1;16560:19;;:5;:19;;;16556:60;;;16588:28;;;;;;;;;;;;;;16556:60;10573:13;16634:18;:25;16653:5;16634:25;;;;;;;;;;;;;;;;:55;16627:62;;16414:283;;;:::o;19833:104::-;19889:13;19922:7;19915:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19833:104;:::o;57098:295::-;57229:8;57225:107;;;57259:30;57280:8;57259:20;:30::i;:::-;57254:66;;57298:22;;;;;;;;;;;;;;57254:66;57225:107;57342:43;57366:8;57376;57342:23;:43::i;:::-;57098:295;;:::o;56305:439::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;56377:34:::1;56422:13;56457:9:::0;56452:233:::1;56476:19;:26;;;;56472:1;:30;56452:233;;;56554:8;56528:34;;:19;56548:1;56528:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;56524:150;;56610:19;56630:1;56610:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56583:17;56601:5;56583:24;;;;;;;;;;;;;;;;;;;;;:49;;;;;;;;;::::0;::::1;56651:7;;;;;:::i;:::-;;;;56524:150;56504:3;;;;;:::i;:::-;;;;56452:233;;;;56719:17;56697:19;:39;;;;;;;;;;;;:::i;:::-;;54450:1;;56305:439:::0;:::o;55496:88::-;55545:4;55569:7;;;;;;;;;;;55562:14;;55496:88;:::o;34191:399::-;34358:31;34371:4;34377:2;34381:7;34358:12;:31::i;:::-;34422:1;34404:2;:14;;;:19;34400:183;;34443:56;34474:4;34480:2;34484:7;34493:5;34443:30;:56::i;:::-;34438:145;;34527:40;;;;;;;;;;;;;;34438:145;34400:183;34191:399;;;;:::o;56752:338::-;56867:4;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;56894:9:::1;56889:169;56913:19;:26;;;;56909:1;:30;56889:169;;;56977:19;56997:1;56977:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56965:34;;:8;:34;;;56961:86;;;57027:4;57020:11;;;;;56961:86;56941:3;;;;;:::i;:::-;;;;56889:169;;;;57077:5;57070:12;;54450:1;56752:338:::0;;;:::o;20043:415::-;20161:13;20197:16;20205:7;20197;:16::i;:::-;20192:59;;20222:29;;;;;;;;;;;;;;20192:59;20264:21;20288:10;:8;:10::i;:::-;20264:34;;20354:1;20335:7;20329:21;:26;;:121;;;;;;;;;;;;;;;;;20399:7;20408:18;20418:7;20408:9;:18::i;:::-;20382:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20329:121;20309:141;;;20043:415;;;:::o;54576:363::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;54692:8:::1;;;;;;;;;;;54657:43;;54673:9;:16;54657:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:43;54653:87;;;54722:18;;;;;;;;;;;;;;54653:87;54774:24;;;;;;;;;;;54755:43;;:9;:16;:43;54751:70;;;54807:14;;;;;;;;;;;;;;54751:70;54839:7;54834:98;54856:9;:16;54852:1;:20;;;54834:98;;;54894:26;54904:9;54914:1;54904:12;;;;;;;;;;;;;;;;;;;;;;;;54918:1;54894:9;:26::i;:::-;54874:3;;;;;:::i;:::-;;;;54834:98;;;;54576:363:::0;:::o;56064:233::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;56183:9:::1;56178:112;56202:9;;:16;;56198:1;:20;56178:112;;;56240:19;56265:9;;56275:1;56265:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56240:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56220:3;;;;;:::i;:::-;;;;56178:112;;;;56064:233:::0;;:::o;27577:214::-;27719:4;27748:18;:25;27767:5;27748:25;;;;;;;;;;;;;;;:35;27774:8;27748:35;;;;;;;;;;;;;;;;;;;;;;;;;27741:42;;27577:214;;;;:::o;55169:227::-;54408:6;;;;;;;;;;;54394:20;;:10;:20;;;54390:49;;54423:16;;;;;;;;;;;;;;54390:49;55252:2:::1;55242:12;;:6;;;;;;;;;;;:12;;;55238:42;;;55263:17;;;;;;;;;;;;;;55238:42;55291:16;55310:6;;;;;;;;;;;55291:25;;55336:2;55327:6;;:11;;;;;;;;;;;;;;;;;;55385:2;55354:34;;55375:8;55354:34;;;;;;;;;;;;54450:1;55169:227:::0;:::o;28049:282::-;28114:4;28170:7;28151:15;:13;:15::i;:::-;:26;;:66;;;;;28204:13;;28194:7;:23;28151:66;:153;;;;;28303:1;11349:8;28255:17;:26;28273:7;28255:26;;;;;;;;;;;;:44;:49;28151:153;28131:173;;28049:282;;;:::o;25987:400::-;26068:13;26084:16;26092:7;26084;:16::i;:::-;26068:32;;26140:5;26117:28;;:19;:17;:19::i;:::-;:28;;;26113:175;;26165:44;26182:5;26189:19;:17;:19::i;:::-;26165:16;:44::i;:::-;26160:128;;26237:35;;;;;;;;;;;;;;26160:128;26113:175;26333:2;26300:15;:24;26316:7;26300:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26371:7;26367:2;26351:28;;26360:5;26351:28;;;;;;;;;;;;25987:400;;;:::o;54467:101::-;54532:7;54559:1;54552:8;;54467:101;:::o;22434:1307::-;22528:7;22553:12;22568:7;22553:22;;22636:4;22617:15;:13;:15::i;:::-;:23;22613:1061;;22670:13;;22663:4;:20;22659:1015;;;22708:14;22725:17;:23;22743:4;22725:23;;;;;;;;;;;;22708:40;;22842:1;11349:8;22814:6;:24;:29;22810:845;;;23479:113;23496:1;23486:6;:11;23479:113;;;23539:17;:25;23557:6;;;;;;;23539:25;;;;;;;;;;;;23530:34;;23479:113;;;23625:6;23618:13;;;;;;22810:845;22659:1015;;22613:1061;23702:31;;;;;;;;;;;;;;22434:1307;;;;:::o;29212:485::-;29314:27;29343:23;29384:38;29425:15;:24;29441:7;29425:24;;;;;;;;;;;29384:65;;29602:18;29579:41;;29659:19;29653:26;29634:45;;29564:126;;;;:::o;51242:105::-;51302:7;51329:10;51322:17;;51242:105;:::o;28440:659::-;28589:11;28754:16;28747:5;28743:28;28734:37;;28914:16;28903:9;28899:32;28886:45;;29064:15;29053:9;29050:30;29042:5;29031:9;29028:20;29025:56;29015:66;;28622:470;;;;;:::o;55686:370::-;55863:61;55891:4;55897:2;55901:12;55915:8;55863:27;:61::i;:::-;55957:1;55941:18;;:4;:18;;;;:38;;;;;55977:1;55963:16;;:2;:16;;;;55941:38;55937:112;;;56000:7;;;;;;;;;;;55996:41;;;56016:21;;;;;;;;;;;;;;55996:41;55937:112;55686:370;;;;:::o;50551:311::-;50686:7;50706:16;11753:3;50732:19;:41;;50706:68;;11753:3;50800:31;50811:4;50817:2;50821:9;50800:10;:31::i;:::-;50792:40;;:62;;50785:69;;;50551:311;;;;;:::o;24321:531::-;24428:14;24601:16;24594:5;24590:28;24581:37;;24813:5;24799:11;24774:23;24770:41;24767:52;24743:5;24722:112;24712:122;;24469:376;;;;:::o;36076:158::-;;;;;:::o;45552:3274::-;45632:27;45662;45681:7;45662:18;:27::i;:::-;45632:57;;45702:12;45733:19;45702:52;;45782:27;45824:23;45861:35;45888:7;45861:26;:35::i;:::-;45767:129;;;;45913:13;45909:451;;;46052:150;46099:15;46137:4;46164:19;:17;:19::i;:::-;46052:24;:150::i;:::-;46029:319;;46240:43;46257:4;46263:19;:17;:19::i;:::-;46240:16;:43::i;:::-;46235:113;;46313:35;;;;;;;;;;;;;;46235:113;46029:319;45909:451;46372:51;46394:4;46408:1;46412:7;46421:1;46372:21;:51::i;:::-;46516:15;46513:2;;;46656:1;46635:19;46628:30;46513:2;47334:1;10838:3;47304:1;:26;;47303:32;47275:18;:24;47294:4;47275:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;47602:197;47639:4;47731:53;47746:4;47760:1;47764:19;47731:14;:53::i;:::-;11629:8;11349;47663:43;47662:122;47602:18;:197::i;:::-;47573:17;:26;47591:7;47573:26;;;;;;;;;;;:226;;;;47970:1;11629:8;47919:19;:47;:52;47915:627;;;47992:19;48024:1;48014:7;:11;47992:33;;48181:1;48147:17;:30;48165:11;48147:30;;;;;;;;;;;;:35;48143:384;;;48285:13;;48270:11;:28;48266:242;;48465:19;48432:17;:30;48450:11;48432:30;;;;;;;;;;;:52;;;;48266:242;48143:384;47915:627;;48597:7;48593:1;48570:35;;48579:4;48570:35;;;;;;;;;;;;48616:50;48637:4;48651:1;48655:7;48664:1;48616:20;:50::i;:::-;48793:12;;:14;;;;;;;;;;;;;45552:3274;;;;;;:::o;27154:266::-;27333:8;27281:18;:39;27300:19;:17;:19::i;:::-;27281:39;;;;;;;;;;;;;;;:49;27321:8;27281:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27393:8;27357:55;;27372:19;:17;:19::i;:::-;27357:55;;;27403:8;27357:55;;;;;;:::i;:::-;;;;;;;;27154:266;;:::o;36674:831::-;36837:4;36896:2;36871:45;;;36935:19;:17;:19::i;:::-;36973:4;36996:7;37022:5;36871:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36854:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37273:1;37256:6;:13;:18;37252:235;;;37302:40;;;;;;;;;;;;;;37252:235;37445:6;37439:13;37430:6;37426:2;37422:15;37415:38;36854:644;37142:54;;;37115:81;;;:6;:81;;;;37091:105;;;36674:831;;;;;;:::o;54947:100::-;54999:13;55032:7;55025:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54947:100;:::o;51449:1786::-;51550:17;51989:4;51982;51976:11;51972:22;52081:1;52075:4;52068:15;52156:4;52153:1;52149:12;52142:19;;52238:1;52233:3;52226:14;52342:3;52581:5;52563:428;52589:1;52563:428;;;52629:1;52624:3;52620:11;52613:18;;52800:2;52794:4;52790:13;52786:2;52782:22;52777:3;52769:36;52894:2;52888:4;52884:13;52876:21;;52961:4;52951:2;;52969:5;;52951:2;52563:428;;;52567:21;53030:3;53025;53021:13;53145:4;53140:3;53136:14;53129:21;;53210:6;53205:3;53198:19;51594:1634;;;;;;:::o;44855:112::-;44932:27;44942:2;44946:8;44932:27;;;;;;;;;;;;:9;:27::i;:::-;44855:112;;:::o;35252:159::-;;;;;:::o;50252:147::-;50389:6;50252:147;;;;;:::o;43891:880::-;44022:19;44028:2;44032:8;44022:5;:19::i;:::-;44101:1;44083:2;:14;;;:19;44079:674;;44123:11;44137:13;;44123:27;;44169:13;44191:8;44185:3;:14;44169:30;;44218:424;44275:205;44344:1;44377:2;44410:7;;;;;;44448:5;44275:30;:205::i;:::-;44244:358;;44538:40;;;;;;;;;;;;;;44244:358;44637:3;44629:5;:11;44218:424;;44724:3;44707:13;;:20;44703:34;;44729:8;;;44703:34;44079:674;;;43891:880;;;:::o;37967:3021::-;38040:20;38063:13;;38040:36;;38103:1;38091:8;:13;38087:44;;;38113:18;;;;;;;;;;;;;;38087:44;38144:61;38174:1;38178:2;38182:12;38196:8;38144:21;:61::i;:::-;38722:1;10711:2;38692:1;:26;;38691:32;38662:8;:62;38619:18;:22;38638:2;38619:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;39001:160;39038:2;39113:33;39136:1;39140:2;39144:1;39113:14;:33::i;:::-;39059:30;39080:8;39059:20;:30::i;:::-;:87;39001:18;:160::i;:::-;38967:17;:31;38985:12;38967:31;;;;;;;;;;;:194;;;;39178:16;39209:11;39238:8;39223:12;:23;39209:37;;39759:16;39755:2;39751:25;39739:37;;40131:12;40091:8;40050:1;39988:25;39929:1;39868;39841:335;40502:1;40488:12;40484:20;40442:346;40543:3;40534:7;40531:16;40442:346;;40761:7;40751:8;40748:1;40721:25;40718:1;40715;40710:59;40596:1;40587:7;40583:15;40572:26;;40442:346;;;40446:77;40833:1;40821:8;:13;40817:45;;;40843:19;;;;;;;;;;;;;;40817:45;40895:3;40879:13;:19;;;;37967:3021;;40920:60;40949:1;40953:2;40957:12;40971:8;40920:20;:60::i;:::-;37967:3021;;;:::o;24954:356::-;25051:14;25289:1;25279:8;25276:15;25250:24;25246:46;25236:56;;25158:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:367::-;1620:8;1630:6;1680:3;1673:4;1665:6;1661:17;1657:27;1647:2;;1698:1;1695;1688:12;1647:2;1734:6;1721:20;1711:30;;1764:18;1756:6;1753:30;1750:2;;;1796:1;1793;1786:12;1750:2;1833:4;1825:6;1821:17;1809:29;;1887:3;1879:4;1871:6;1867:17;1857:8;1853:32;1850:41;1847:2;;;1904:1;1901;1894:12;1847:2;1637:277;;;;;:::o;1937:303::-;2008:5;2057:3;2050:4;2042:6;2038:17;2034:27;2024:2;;2075:1;2072;2065:12;2024:2;2115:6;2102:20;2140:94;2230:3;2222:6;2215:4;2207:6;2203:17;2140:94;:::i;:::-;2131:103;;2014:226;;;;;:::o;2246:133::-;2289:5;2327:6;2314:20;2305:29;;2343:30;2367:5;2343:30;:::i;:::-;2295:84;;;;:::o;2385:137::-;2430:5;2468:6;2455:20;2446:29;;2484:32;2510:5;2484:32;:::i;:::-;2436:86;;;;:::o;2528:141::-;2584:5;2615:6;2609:13;2600:22;;2631:32;2657:5;2631:32;:::i;:::-;2590:79;;;;:::o;2688:271::-;2743:5;2792:3;2785:4;2777:6;2773:17;2769:27;2759:2;;2810:1;2807;2800:12;2759:2;2850:6;2837:20;2875:78;2949:3;2941:6;2934:4;2926:6;2922:17;2875:78;:::i;:::-;2866:87;;2749:210;;;;;:::o;2979:273::-;3035:5;3084:3;3077:4;3069:6;3065:17;3061:27;3051:2;;3102:1;3099;3092:12;3051:2;3142:6;3129:20;3167:79;3242:3;3234:6;3227:4;3219:6;3215:17;3167:79;:::i;:::-;3158:88;;3041:211;;;;;:::o;3258:139::-;3304:5;3342:6;3329:20;3320:29;;3358:33;3385:5;3358:33;:::i;:::-;3310:87;;;;:::o;3403:262::-;3462:6;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3527:1;3524;3517:12;3479:2;3570:1;3595:53;3640:7;3631:6;3620:9;3616:22;3595:53;:::i;:::-;3585:63;;3541:117;3469:196;;;;:::o;3671:407::-;3739:6;3747;3796:2;3784:9;3775:7;3771:23;3767:32;3764:2;;;3812:1;3809;3802:12;3764:2;3855:1;3880:53;3925:7;3916:6;3905:9;3901:22;3880:53;:::i;:::-;3870:63;;3826:117;3982:2;4008:53;4053:7;4044:6;4033:9;4029:22;4008:53;:::i;:::-;3998:63;;3953:118;3754:324;;;;;:::o;4084:552::-;4161:6;4169;4177;4226:2;4214:9;4205:7;4201:23;4197:32;4194:2;;;4242:1;4239;4232:12;4194:2;4285:1;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4256:117;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4540:2;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;:::i;:::-;4556:63;;4511:118;4184:452;;;;;:::o;4642:809::-;4737:6;4745;4753;4761;4810:3;4798:9;4789:7;4785:23;4781:33;4778:2;;;4827:1;4824;4817:12;4778:2;4870:1;4895:53;4940:7;4931:6;4920:9;4916:22;4895:53;:::i;:::-;4885:63;;4841:117;4997:2;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4968:118;5125:2;5151:53;5196:7;5187:6;5176:9;5172:22;5151:53;:::i;:::-;5141:63;;5096:118;5281:2;5270:9;5266:18;5253:32;5312:18;5304:6;5301:30;5298:2;;;5344:1;5341;5334:12;5298:2;5372:62;5426:7;5417:6;5406:9;5402:22;5372:62;:::i;:::-;5362:72;;5224:220;4768:683;;;;;;;:::o;5457:401::-;5522:6;5530;5579:2;5567:9;5558:7;5554:23;5550:32;5547:2;;;5595:1;5592;5585:12;5547:2;5638:1;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5609:117;5765:2;5791:50;5833:7;5824:6;5813:9;5809:22;5791:50;:::i;:::-;5781:60;;5736:115;5537:321;;;;;:::o;5864:407::-;5932:6;5940;5989:2;5977:9;5968:7;5964:23;5960:32;5957:2;;;6005:1;6002;5995:12;5957:2;6048:1;6073:53;6118:7;6109:6;6098:9;6094:22;6073:53;:::i;:::-;6063:63;;6019:117;6175:2;6201:53;6246:7;6237:6;6226:9;6222:22;6201:53;:::i;:::-;6191:63;;6146:118;5947:324;;;;;:::o;6277:425::-;6363:6;6371;6420:2;6408:9;6399:7;6395:23;6391:32;6388:2;;;6436:1;6433;6426:12;6388:2;6507:1;6496:9;6492:17;6479:31;6537:18;6529:6;6526:30;6523:2;;;6569:1;6566;6559:12;6523:2;6605:80;6677:7;6668:6;6657:9;6653:22;6605:80;:::i;:::-;6587:98;;;;6450:245;6378:324;;;;;:::o;6708:405::-;6792:6;6841:2;6829:9;6820:7;6816:23;6812:32;6809:2;;;6857:1;6854;6847:12;6809:2;6928:1;6917:9;6913:17;6900:31;6958:18;6950:6;6947:30;6944:2;;;6990:1;6987;6980:12;6944:2;7018:78;7088:7;7079:6;7068:9;7064:22;7018:78;:::i;:::-;7008:88;;6871:235;6799:314;;;;:::o;7119:256::-;7175:6;7224:2;7212:9;7203:7;7199:23;7195:32;7192:2;;;7240:1;7237;7230:12;7192:2;7283:1;7308:50;7350:7;7341:6;7330:9;7326:22;7308:50;:::i;:::-;7298:60;;7254:114;7182:193;;;;:::o;7381:260::-;7439:6;7488:2;7476:9;7467:7;7463:23;7459:32;7456:2;;;7504:1;7501;7494:12;7456:2;7547:1;7572:52;7616:7;7607:6;7596:9;7592:22;7572:52;:::i;:::-;7562:62;;7518:116;7446:195;;;;:::o;7647:282::-;7716:6;7765:2;7753:9;7744:7;7740:23;7736:32;7733:2;;;7781:1;7778;7771:12;7733:2;7824:1;7849:63;7904:7;7895:6;7884:9;7880:22;7849:63;:::i;:::-;7839:73;;7795:127;7723:206;;;;:::o;7935:375::-;8004:6;8053:2;8041:9;8032:7;8028:23;8024:32;8021:2;;;8069:1;8066;8059:12;8021:2;8140:1;8129:9;8125:17;8112:31;8170:18;8162:6;8159:30;8156:2;;;8202:1;8199;8192:12;8156:2;8230:63;8285:7;8276:6;8265:9;8261:22;8230:63;:::i;:::-;8220:73;;8083:220;8011:299;;;;:::o;8316:262::-;8375:6;8424:2;8412:9;8403:7;8399:23;8395:32;8392:2;;;8440:1;8437;8430:12;8392:2;8483:1;8508:53;8553:7;8544:6;8533:9;8529:22;8508:53;:::i;:::-;8498:63;;8454:117;8382:196;;;;:::o;8584:118::-;8671:24;8689:5;8671:24;:::i;:::-;8666:3;8659:37;8649:53;;:::o;8708:109::-;8789:21;8804:5;8789:21;:::i;:::-;8784:3;8777:34;8767:50;;:::o;8823:360::-;8909:3;8937:38;8969:5;8937:38;:::i;:::-;8991:70;9054:6;9049:3;8991:70;:::i;:::-;8984:77;;9070:52;9115:6;9110:3;9103:4;9096:5;9092:16;9070:52;:::i;:::-;9147:29;9169:6;9147:29;:::i;:::-;9142:3;9138:39;9131:46;;8913:270;;;;;:::o;9189:364::-;9277:3;9305:39;9338:5;9305:39;:::i;:::-;9360:71;9424:6;9419:3;9360:71;:::i;:::-;9353:78;;9440:52;9485:6;9480:3;9473:4;9466:5;9462:16;9440:52;:::i;:::-;9517:29;9539:6;9517:29;:::i;:::-;9512:3;9508:39;9501:46;;9281:272;;;;;:::o;9559:377::-;9665:3;9693:39;9726:5;9693:39;:::i;:::-;9748:89;9830:6;9825:3;9748:89;:::i;:::-;9741:96;;9846:52;9891:6;9886:3;9879:4;9872:5;9868:16;9846:52;:::i;:::-;9923:6;9918:3;9914:16;9907:23;;9669:267;;;;;:::o;9942:118::-;10029:24;10047:5;10029:24;:::i;:::-;10024:3;10017:37;10007:53;;:::o;10066:435::-;10246:3;10268:95;10359:3;10350:6;10268:95;:::i;:::-;10261:102;;10380:95;10471:3;10462:6;10380:95;:::i;:::-;10373:102;;10492:3;10485:10;;10250:251;;;;;:::o;10507:222::-;10600:4;10638:2;10627:9;10623:18;10615:26;;10651:71;10719:1;10708:9;10704:17;10695:6;10651:71;:::i;:::-;10605:124;;;;:::o;10735:640::-;10930:4;10968:3;10957:9;10953:19;10945:27;;10982:71;11050:1;11039:9;11035:17;11026:6;10982:71;:::i;:::-;11063:72;11131:2;11120:9;11116:18;11107:6;11063:72;:::i;:::-;11145;11213:2;11202:9;11198:18;11189:6;11145:72;:::i;:::-;11264:9;11258:4;11254:20;11249:2;11238:9;11234:18;11227:48;11292:76;11363:4;11354:6;11292:76;:::i;:::-;11284:84;;10935:440;;;;;;;:::o;11381:210::-;11468:4;11506:2;11495:9;11491:18;11483:26;;11519:65;11581:1;11570:9;11566:17;11557:6;11519:65;:::i;:::-;11473:118;;;;:::o;11597:313::-;11710:4;11748:2;11737:9;11733:18;11725:26;;11797:9;11791:4;11787:20;11783:1;11772:9;11768:17;11761:47;11825:78;11898:4;11889:6;11825:78;:::i;:::-;11817:86;;11715:195;;;;:::o;11916:222::-;12009:4;12047:2;12036:9;12032:18;12024:26;;12060:71;12128:1;12117:9;12113:17;12104:6;12060:71;:::i;:::-;12014:124;;;;:::o;12144:129::-;12178:6;12205:20;;:::i;:::-;12195:30;;12234:33;12262:4;12254:6;12234:33;:::i;:::-;12185:88;;;:::o;12279:75::-;12312:6;12345:2;12339:9;12329:19;;12319:35;:::o;12360:311::-;12437:4;12527:18;12519:6;12516:30;12513:2;;;12549:18;;:::i;:::-;12513:2;12599:4;12591:6;12587:17;12579:25;;12659:4;12653;12649:15;12641:23;;12442:229;;;:::o;12677:307::-;12738:4;12828:18;12820:6;12817:30;12814:2;;;12850:18;;:::i;:::-;12814:2;12888:29;12910:6;12888:29;:::i;:::-;12880:37;;12972:4;12966;12962:15;12954:23;;12743:241;;;:::o;12990:308::-;13052:4;13142:18;13134:6;13131:30;13128:2;;;13164:18;;:::i;:::-;13128:2;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;13057:241;;;:::o;13304:98::-;13355:6;13389:5;13383:12;13373:22;;13362:40;;;:::o;13408:99::-;13460:6;13494:5;13488:12;13478:22;;13467:40;;;:::o;13513:168::-;13596:11;13630:6;13625:3;13618:19;13670:4;13665:3;13661:14;13646:29;;13608:73;;;;:::o;13687:169::-;13771:11;13805:6;13800:3;13793:19;13845:4;13840:3;13836:14;13821:29;;13783:73;;;;:::o;13862:148::-;13964:11;14001:3;13986:18;;13976:34;;;;:::o;14016:305::-;14056:3;14075:20;14093:1;14075:20;:::i;:::-;14070:25;;14109:20;14127:1;14109:20;:::i;:::-;14104:25;;14263:1;14195:66;14191:74;14188:1;14185:81;14182:2;;;14269:18;;:::i;:::-;14182:2;14313:1;14310;14306:9;14299:16;;14060:261;;;;:::o;14327:96::-;14364:7;14393:24;14411:5;14393:24;:::i;:::-;14382:35;;14372:51;;;:::o;14429:90::-;14463:7;14506:5;14499:13;14492:21;14481:32;;14471:48;;;:::o;14525:149::-;14561:7;14601:66;14594:5;14590:78;14579:89;;14569:105;;;:::o;14680:126::-;14717:7;14757:42;14750:5;14746:54;14735:65;;14725:81;;;:::o;14812:77::-;14849:7;14878:5;14867:16;;14857:32;;;:::o;14895:86::-;14930:7;14970:4;14963:5;14959:16;14948:27;;14938:43;;;:::o;14987:154::-;15071:6;15066:3;15061;15048:30;15133:1;15124:6;15119:3;15115:16;15108:27;15038:103;;;:::o;15147:307::-;15215:1;15225:113;15239:6;15236:1;15233:13;15225:113;;;15324:1;15319:3;15315:11;15309:18;15305:1;15300:3;15296:11;15289:39;15261:2;15258:1;15254:10;15249:15;;15225:113;;;15356:6;15353:1;15350:13;15347:2;;;15436:1;15427:6;15422:3;15418:16;15411:27;15347:2;15196:258;;;;:::o;15460:320::-;15504:6;15541:1;15535:4;15531:12;15521:22;;15588:1;15582:4;15578:12;15609:18;15599:2;;15665:4;15657:6;15653:17;15643:27;;15599:2;15727;15719:6;15716:14;15696:18;15693:38;15690:2;;;15746:18;;:::i;:::-;15690:2;15511:269;;;;:::o;15786:281::-;15869:27;15891:4;15869:27;:::i;:::-;15861:6;15857:40;15999:6;15987:10;15984:22;15963:18;15951:10;15948:34;15945:62;15942:2;;;16010:18;;:::i;:::-;15942:2;16050:10;16046:2;16039:22;15829:238;;;:::o;16073:233::-;16112:3;16135:24;16153:5;16135:24;:::i;:::-;16126:33;;16181:66;16174:5;16171:77;16168:2;;;16251:18;;:::i;:::-;16168:2;16298:1;16291:5;16287:13;16280:20;;16116:190;;;:::o;16312:167::-;16349:3;16372:22;16388:5;16372:22;:::i;:::-;16363:31;;16416:4;16409:5;16406:15;16403:2;;;16424:18;;:::i;:::-;16403:2;16471:1;16464:5;16460:13;16453:20;;16353:126;;;:::o;16485:180::-;16533:77;16530:1;16523:88;16630:4;16627:1;16620:15;16654:4;16651:1;16644:15;16671:180;16719:77;16716:1;16709:88;16816:4;16813:1;16806:15;16840:4;16837:1;16830:15;16857:180;16905:77;16902:1;16895:88;17002:4;16999:1;16992:15;17026:4;17023:1;17016:15;17043:102;17084:6;17135:2;17131:7;17126:2;17119:5;17115:14;17111:28;17101:38;;17091:54;;;:::o;17151:122::-;17224:24;17242:5;17224:24;:::i;:::-;17217:5;17214:35;17204:2;;17263:1;17260;17253:12;17204:2;17194:79;:::o;17279:116::-;17349:21;17364:5;17349:21;:::i;:::-;17342:5;17339:32;17329:2;;17385:1;17382;17375:12;17329:2;17319:76;:::o;17401:120::-;17473:23;17490:5;17473:23;:::i;:::-;17466:5;17463:34;17453:2;;17511:1;17508;17501:12;17453:2;17443:78;:::o;17527:122::-;17600:24;17618:5;17600:24;:::i;:::-;17593:5;17590:35;17580:2;;17639:1;17636;17629:12;17580:2;17570:79;:::o

Swarm Source

ipfs://8540f6d320c6c8e4ce6df3902bce6d8f2df2bb575fb5f3b0d38cfa95ae646428
Loading...
Loading
Loading...
Loading
[ 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.