ETH Price: $3,311.26 (-1.63%)
Gas: 14.5 Gwei

Working Class Degens (WCD)
 

Overview

TokenID

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-04
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7; 
library MerkleProof {
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }
   function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
abstract contract ReentrancyGuard { 
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }
    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
   _status = _ENTERED;

        _;
        _status = _NOT_ENTERED;
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
 
    function toString(uint256 value) internal pure returns (string memory) { 
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
 
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }
 
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    function owner() public view virtual returns (address) {
        return _owner;
    } 
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    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 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * 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) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

contract WorkingClassDegens is Ownable, ERC721A, ReentrancyGuard  {
    using Strings for uint256;
    string public uri;

    uint public status = 0;
    uint MAX_PER_ADDRESS_PRESALE = 1;
    uint MAX_PER_ADDRESS_PUBLICSALE = 2;
    uint COLLECTION_SIZE = 3455;

    bytes32 public merkleRoot;
    function setMerkleRoot(bytes32 m) public onlyOwner{
        merkleRoot = m;
    }

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

    constructor() ERC721A("Working Class Degens", "WCD") {
        uri = "https://bafybeid7hrvd44m26xskregmvkfph24kai4sqioy2susre6nlvs2wrl5ga.ipfs.nftstorage.link/";
    }

    function presaleMint(uint256 quantity, bytes32[] calldata merkleproof) public callerIsUser{
        require(status == 1, "Whitelist not active!!");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify( merkleproof, merkleRoot, leaf),"Not whitelisted");
        require(numberMinted(msg.sender) + quantity <= MAX_PER_ADDRESS_PRESALE, "Minted max on presale!!");
        require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!");
        
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) public callerIsUser{
        require(status == 2, "Public Sale not active!!");
        require(numberMinted(msg.sender) + quantity <= MAX_PER_ADDRESS_PUBLICSALE, "Minted max on Public Sale!!");
        require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!");

        _safeMint(msg.sender, quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function giveaway(address to, uint256 quantity) public onlyOwner callerIsUser{
        require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!");
        _safeMint(to, quantity);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token!");
        return bytes(baseURI()).length > 0 ? string(abi.encodePacked(baseURI(), tokenId.toString(), ".json")) : "";
    }

    function baseURI() public view returns (string memory) {
        return uri;
    }

    function setBaseURI(string memory u) public onlyOwner{
        uri = u;
    }

    function setWalletLimits(uint presale, uint publicSale) public onlyOwner{
        MAX_PER_ADDRESS_PRESALE = presale;
        MAX_PER_ADDRESS_PUBLICSALE = publicSale;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleproof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"u","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"m","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presale","type":"uint256"},{"internalType":"uint256","name":"publicSale","type":"uint256"}],"name":"setWalletLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526000600b556001600c556002600d55610d7f600e553480156200002657600080fd5b506040518060400160405280601481526020017f576f726b696e6720436c61737320446567656e730000000000000000000000008152506040518060400160405280600381526020017f5743440000000000000000000000000000000000000000000000000000000000815250620000b3620000a76200013d60201b60201c565b6200014560201b60201c565b8160039080519060200190620000cb92919062000212565b508060049080519060200190620000e492919062000212565b50620000f56200020960201b60201c565b600181905550505060016009819055506040518060800160405280605981526020016200379e60599139600a90805190602001906200013692919062000212565b5062000327565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200022090620002c2565b90600052602060002090601f01602090048101928262000244576000855562000290565b82601f106200025f57805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200028f57825182559160200191906001019062000272565b5b5090506200029f9190620002a3565b5090565b5b80821115620002be576000816000905550600101620002a4565b5090565b60006002820490506001821680620002db57607f821691505b60208210811415620002f257620002f1620002f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61346780620003376000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b88d4fde11610097578063e3e1e8ef11610071578063e3e1e8ef146104dd578063e985e9c5146104f9578063eac989f814610529578063f2fde38b14610547576101c4565b8063b88d4fde14610461578063c87b56dd1461047d578063dc33e681146104ad576101c4565b80638da5cb5b116100d35780638da5cb5b146103ed57806395d89b411461040b578063a0712d6814610429578063a22cb46514610445576101c4565b806370a0823114610397578063715018a6146103c75780637cb64759146103d1576101c4565b806323b872dd1161016657806342842e0e1161014057806342842e0e1461031157806355f804b31461032d5780636352211e146103495780636c0360eb14610379576101c4565b806323b872dd146102bb5780632eb4a7ab146102d757806338cc7c4c146102f5576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f578063200d2ed21461029d576101c4565b806301ffc9a7146101c9578063050225ea146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de91906126f7565b610563565b6040516101f09190612b8f565b60405180910390f35b610213600480360381019061020e919061268a565b6105f5565b005b61021d610739565b60405161022a9190612bc5565b60405180910390f35b61024d6004803603810190610248919061279a565b6107cb565b60405161025a9190612b28565b60405180910390f35b61027d6004803603810190610278919061268a565b610847565b005b610287610988565b6040516102949190612d27565b60405180910390f35b6102a561099f565b6040516102b29190612d27565b60405180910390f35b6102d560048036038101906102d09190612574565b6109a5565b005b6102df610cca565b6040516102ec9190612baa565b60405180910390f35b61030f600480360381019061030a9190612827565b610cd0565b005b61032b60048036038101906103269190612574565b610d5e565b005b61034760048036038101906103429190612751565b610d7e565b005b610363600480360381019061035e919061279a565b610e14565b6040516103709190612b28565b60405180910390f35b610381610e26565b60405161038e9190612bc5565b60405180910390f35b6103b160048036038101906103ac9190612507565b610eb8565b6040516103be9190612d27565b60405180910390f35b6103cf610f71565b005b6103eb60048036038101906103e691906126ca565b610ff9565b005b6103f561107f565b6040516104029190612b28565b60405180910390f35b6104136110a8565b6040516104209190612bc5565b60405180910390f35b610443600480360381019061043e919061279a565b61113a565b005b61045f600480360381019061045a919061264a565b61129e565b005b61047b600480360381019061047691906125c7565b611416565b005b6104976004803603810190610492919061279a565b611489565b6040516104a49190612bc5565b60405180910390f35b6104c760048036038101906104c29190612507565b611531565b6040516104d49190612d27565b60405180910390f35b6104f760048036038101906104f291906127c7565b611543565b005b610513600480360381019061050e9190612534565b611762565b6040516105209190612b8f565b60405180910390f35b6105316117f6565b60405161053e9190612bc5565b60405180910390f35b610561600480360381019061055c9190612507565b611884565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6105fd61197c565b73ffffffffffffffffffffffffffffffffffffffff1661061b61107f565b73ffffffffffffffffffffffffffffffffffffffff1614610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066890612cc7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146106df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d690612c67565b60405180910390fd5b600e546106ea610988565b111561072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290612c47565b60405180910390fd5b6107358282611984565b5050565b60606003805461074890612f87565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612f87565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826119a2565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610e14565b90508073ffffffffffffffffffffffffffffffffffffffff16610873611a01565b73ffffffffffffffffffffffffffffffffffffffff16146108d65761089f8161089a611a01565b611762565b6108d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610992611a09565b6002546001540303905090565b600b5481565b60006109b082611a12565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a17576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2384611ae0565b91509150610a398187610a34611a01565b611b02565b610a8557610a4e86610a49611a01565b611762565b610a84576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af98686866001611b46565b8015610b0457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd285610bae888887611b4c565b7c020000000000000000000000000000000000000000000000000000000017611b74565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c5a576000600185019050600060056000838152602001908152602001600020541415610c58576001548114610c57578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc28686866001611b9f565b505050505050565b600f5481565b610cd861197c565b73ffffffffffffffffffffffffffffffffffffffff16610cf661107f565b73ffffffffffffffffffffffffffffffffffffffff1614610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612cc7565b60405180910390fd5b81600c8190555080600d819055505050565b610d7983838360405180602001604052806000815250611416565b505050565b610d8661197c565b73ffffffffffffffffffffffffffffffffffffffff16610da461107f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612cc7565b60405180910390fd5b80600a9080519060200190610e109291906122b0565b5050565b6000610e1f82611a12565b9050919050565b6060600a8054610e3590612f87565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6190612f87565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7961197c565b73ffffffffffffffffffffffffffffffffffffffff16610f9761107f565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612cc7565b60405180910390fd5b610ff76000611ba5565b565b61100161197c565b73ffffffffffffffffffffffffffffffffffffffff1661101f61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612cc7565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110b790612f87565b80601f01602080910402602001604051908101604052809291908181526020018280546110e390612f87565b80156111305780601f1061110557610100808354040283529160200191611130565b820191906000526020600020905b81548152906001019060200180831161111357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612c67565b60405180910390fd5b6002600b54146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490612ce7565b60405180910390fd5b600d54816111fa33611531565b6112049190612e0c565b1115611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612ca7565b60405180910390fd5b600e54611250610988565b1115611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612c47565b60405180910390fd5b61129b3382611984565b50565b6112a6611a01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611318611a01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c5611a01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140a9190612b8f565b60405180910390a35050565b6114218484846109a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114835761144c84848484611c69565b611482576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611494826119a2565b6114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612c27565b60405180910390fd5b60006114dd610e26565b51116114f8576040518060200160405280600081525061152a565b611500610e26565b61150983611dc9565b60405160200161151a929190612af9565b6040516020818303038152906040525b9050919050565b600061153c82611f2a565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890612c67565b60405180910390fd5b6001600b54146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612be7565b60405180910390fd5b6000336040516020016116099190612ade565b60405160208183030381529060405280519060200120905061166f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483611f81565b6116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612c87565b60405180910390fd5b600c54846116bb33611531565b6116c59190612e0c565b1115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612d07565b60405180910390fd5b600e54611711610988565b1115611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990612c47565b60405180910390fd5b61175c3385611984565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461180390612f87565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90612f87565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b505050505081565b61188c61197c565b73ffffffffffffffffffffffffffffffffffffffff166118aa61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790612cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790612c07565b60405180910390fd5b61197981611ba5565b50565b600033905090565b61199e828260405180602001604052806000815250611f98565b5050565b6000816119ad611a09565b111580156119bc575060015482105b80156119fa575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a21611a09565b11611aa957600154811015611aa85760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aa6575b6000811415611a9c576005600083600190039350838152602001908152602001600020549050611a71565b8092505050611adb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b63868684612036565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8f611a01565b8786866040518563ffffffff1660e01b8152600401611cb19493929190612b43565b602060405180830381600087803b158015611ccb57600080fd5b505af1925050508015611cfc57506040513d601f19601f82011682018060405250810190611cf99190612724565b60015b611d76573d8060008114611d2c576040519150601f19603f3d011682016040523d82523d6000602084013e611d31565b606091505b50600081511415611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f25565b600082905060005b60008214611e43578080611e2c90612fea565b915050600a82611e3c9190612e62565b9150611e19565b60008167ffffffffffffffff811115611e5f57611e5e613144565b5b6040519080825280601f01601f191660200182016040528015611e915781602001600182028036833780820191505090505b5090505b60008514611f1e57600182611eaa9190612e93565b9150600a85611eb99190613057565b6030611ec59190612e0c565b60f81b818381518110611edb57611eda613115565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f179190612e62565b9450611e95565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082611f8e858461203f565b1490509392505050565b611fa283836120b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120315760006001549050600083820390505b611fe36000868380600101945086611c69565b612019576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fd057816001541461202e57600080fd5b50505b505050565b60009392505050565b60008082905060005b84518110156120a957600085828151811061206657612065613115565b5b60200260200101519050808311612088576120818382612289565b9250612095565b6120928184612289565b92505b5080806120a190612fea565b915050612048565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612122576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561215d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216a6000848385611b46565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e1836121d26000866000611b4c565b6121db856122a0565b17611b74565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612205578060018190555050506122846000848385611b9f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546122bc90612f87565b90600052602060002090601f0160209004810192826122de5760008555612325565b82601f106122f757805160ff1916838001178555612325565b82800160010185558215612325579182015b82811115612324578251825591602001919060010190612309565b5b5090506123329190612336565b5090565b5b8082111561234f576000816000905550600101612337565b5090565b600061236661236184612d67565b612d42565b90508281526020810184848401111561238257612381613182565b5b61238d848285612f45565b509392505050565b60006123a86123a384612d98565b612d42565b9050828152602081018484840111156123c4576123c3613182565b5b6123cf848285612f45565b509392505050565b6000813590506123e6816133be565b92915050565b60008083601f84011261240257612401613178565b5b8235905067ffffffffffffffff81111561241f5761241e613173565b5b60208301915083602082028301111561243b5761243a61317d565b5b9250929050565b600081359050612451816133d5565b92915050565b600081359050612466816133ec565b92915050565b60008135905061247b81613403565b92915050565b60008151905061249081613403565b92915050565b600082601f8301126124ab576124aa613178565b5b81356124bb848260208601612353565b91505092915050565b600082601f8301126124d9576124d8613178565b5b81356124e9848260208601612395565b91505092915050565b6000813590506125018161341a565b92915050565b60006020828403121561251d5761251c61318c565b5b600061252b848285016123d7565b91505092915050565b6000806040838503121561254b5761254a61318c565b5b6000612559858286016123d7565b925050602061256a858286016123d7565b9150509250929050565b60008060006060848603121561258d5761258c61318c565b5b600061259b868287016123d7565b93505060206125ac868287016123d7565b92505060406125bd868287016124f2565b9150509250925092565b600080600080608085870312156125e1576125e061318c565b5b60006125ef878288016123d7565b9450506020612600878288016123d7565b9350506040612611878288016124f2565b925050606085013567ffffffffffffffff81111561263257612631613187565b5b61263e87828801612496565b91505092959194509250565b600080604083850312156126615761266061318c565b5b600061266f858286016123d7565b925050602061268085828601612442565b9150509250929050565b600080604083850312156126a1576126a061318c565b5b60006126af858286016123d7565b92505060206126c0858286016124f2565b9150509250929050565b6000602082840312156126e0576126df61318c565b5b60006126ee84828501612457565b91505092915050565b60006020828403121561270d5761270c61318c565b5b600061271b8482850161246c565b91505092915050565b60006020828403121561273a5761273961318c565b5b600061274884828501612481565b91505092915050565b6000602082840312156127675761276661318c565b5b600082013567ffffffffffffffff81111561278557612784613187565b5b612791848285016124c4565b91505092915050565b6000602082840312156127b0576127af61318c565b5b60006127be848285016124f2565b91505092915050565b6000806000604084860312156127e0576127df61318c565b5b60006127ee868287016124f2565b935050602084013567ffffffffffffffff81111561280f5761280e613187565b5b61281b868287016123ec565b92509250509250925092565b6000806040838503121561283e5761283d61318c565b5b600061284c858286016124f2565b925050602061285d858286016124f2565b9150509250929050565b61287081612ec7565b82525050565b61288761288282612ec7565b613033565b82525050565b61289681612ed9565b82525050565b6128a581612ee5565b82525050565b60006128b682612dc9565b6128c08185612ddf565b93506128d0818560208601612f54565b6128d981613191565b840191505092915050565b60006128ef82612dd4565b6128f98185612df0565b9350612909818560208601612f54565b61291281613191565b840191505092915050565b600061292882612dd4565b6129328185612e01565b9350612942818560208601612f54565b80840191505092915050565b600061295b601683612df0565b9150612966826131af565b602082019050919050565b600061297e602683612df0565b9150612989826131d8565b604082019050919050565b60006129a1603083612df0565b91506129ac82613227565b604082019050919050565b60006129c4600a83612df0565b91506129cf82613276565b602082019050919050565b60006129e7601e83612df0565b91506129f28261329f565b602082019050919050565b6000612a0a600f83612df0565b9150612a15826132c8565b602082019050919050565b6000612a2d601b83612df0565b9150612a38826132f1565b602082019050919050565b6000612a50600583612e01565b9150612a5b8261331a565b600582019050919050565b6000612a73602083612df0565b9150612a7e82613343565b602082019050919050565b6000612a96601883612df0565b9150612aa18261336c565b602082019050919050565b6000612ab9601783612df0565b9150612ac482613395565b602082019050919050565b612ad881612f3b565b82525050565b6000612aea8284612876565b60148201915081905092915050565b6000612b05828561291d565b9150612b11828461291d565b9150612b1c82612a43565b91508190509392505050565b6000602082019050612b3d6000830184612867565b92915050565b6000608082019050612b586000830187612867565b612b656020830186612867565b612b726040830185612acf565b8181036060830152612b8481846128ab565b905095945050505050565b6000602082019050612ba4600083018461288d565b92915050565b6000602082019050612bbf600083018461289c565b92915050565b60006020820190508181036000830152612bdf81846128e4565b905092915050565b60006020820190508181036000830152612c008161294e565b9050919050565b60006020820190508181036000830152612c2081612971565b9050919050565b60006020820190508181036000830152612c4081612994565b9050919050565b60006020820190508181036000830152612c60816129b7565b9050919050565b60006020820190508181036000830152612c80816129da565b9050919050565b60006020820190508181036000830152612ca0816129fd565b9050919050565b60006020820190508181036000830152612cc081612a20565b9050919050565b60006020820190508181036000830152612ce081612a66565b9050919050565b60006020820190508181036000830152612d0081612a89565b9050919050565b60006020820190508181036000830152612d2081612aac565b9050919050565b6000602082019050612d3c6000830184612acf565b92915050565b6000612d4c612d5d565b9050612d588282612fb9565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8257612d81613144565b5b612d8b82613191565b9050602081019050919050565b600067ffffffffffffffff821115612db357612db2613144565b5b612dbc82613191565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e1782612f3b565b9150612e2283612f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5757612e56613088565b5b828201905092915050565b6000612e6d82612f3b565b9150612e7883612f3b565b925082612e8857612e876130b7565b5b828204905092915050565b6000612e9e82612f3b565b9150612ea983612f3b565b925082821015612ebc57612ebb613088565b5b828203905092915050565b6000612ed282612f1b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f72578082015181840152602081019050612f57565b83811115612f81576000848401525b50505050565b60006002820490506001821680612f9f57607f821691505b60208210811415612fb357612fb26130e6565b5b50919050565b612fc282613191565b810181811067ffffffffffffffff82111715612fe157612fe0613144565b5b80604052505050565b6000612ff582612f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561302857613027613088565b5b600182019050919050565b600061303e82613045565b9050919050565b6000613050826131a2565b9050919050565b600061306282612f3b565b915061306d83612f3b565b92508261307d5761307c6130b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b6133c781612ec7565b81146133d257600080fd5b50565b6133de81612ed9565b81146133e957600080fd5b50565b6133f581612ee5565b811461340057600080fd5b50565b61340c81612eef565b811461341757600080fd5b50565b61342381612f3b565b811461342e57600080fd5b5056fea26469706673582212206acbfd81f8a55c8c4e252e27a19016b77264a3ef02814998ad5044c4781b359264736f6c6343000807003368747470733a2f2f6261667962656964376872766434346d323678736b7265676d766b66706832346b6169347371696f79327375737265366e6c76733277726c3567612e697066732e6e667473746f726167652e6c696e6b2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b88d4fde11610097578063e3e1e8ef11610071578063e3e1e8ef146104dd578063e985e9c5146104f9578063eac989f814610529578063f2fde38b14610547576101c4565b8063b88d4fde14610461578063c87b56dd1461047d578063dc33e681146104ad576101c4565b80638da5cb5b116100d35780638da5cb5b146103ed57806395d89b411461040b578063a0712d6814610429578063a22cb46514610445576101c4565b806370a0823114610397578063715018a6146103c75780637cb64759146103d1576101c4565b806323b872dd1161016657806342842e0e1161014057806342842e0e1461031157806355f804b31461032d5780636352211e146103495780636c0360eb14610379576101c4565b806323b872dd146102bb5780632eb4a7ab146102d757806338cc7c4c146102f5576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f578063200d2ed21461029d576101c4565b806301ffc9a7146101c9578063050225ea146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de91906126f7565b610563565b6040516101f09190612b8f565b60405180910390f35b610213600480360381019061020e919061268a565b6105f5565b005b61021d610739565b60405161022a9190612bc5565b60405180910390f35b61024d6004803603810190610248919061279a565b6107cb565b60405161025a9190612b28565b60405180910390f35b61027d6004803603810190610278919061268a565b610847565b005b610287610988565b6040516102949190612d27565b60405180910390f35b6102a561099f565b6040516102b29190612d27565b60405180910390f35b6102d560048036038101906102d09190612574565b6109a5565b005b6102df610cca565b6040516102ec9190612baa565b60405180910390f35b61030f600480360381019061030a9190612827565b610cd0565b005b61032b60048036038101906103269190612574565b610d5e565b005b61034760048036038101906103429190612751565b610d7e565b005b610363600480360381019061035e919061279a565b610e14565b6040516103709190612b28565b60405180910390f35b610381610e26565b60405161038e9190612bc5565b60405180910390f35b6103b160048036038101906103ac9190612507565b610eb8565b6040516103be9190612d27565b60405180910390f35b6103cf610f71565b005b6103eb60048036038101906103e691906126ca565b610ff9565b005b6103f561107f565b6040516104029190612b28565b60405180910390f35b6104136110a8565b6040516104209190612bc5565b60405180910390f35b610443600480360381019061043e919061279a565b61113a565b005b61045f600480360381019061045a919061264a565b61129e565b005b61047b600480360381019061047691906125c7565b611416565b005b6104976004803603810190610492919061279a565b611489565b6040516104a49190612bc5565b60405180910390f35b6104c760048036038101906104c29190612507565b611531565b6040516104d49190612d27565b60405180910390f35b6104f760048036038101906104f291906127c7565b611543565b005b610513600480360381019061050e9190612534565b611762565b6040516105209190612b8f565b60405180910390f35b6105316117f6565b60405161053e9190612bc5565b60405180910390f35b610561600480360381019061055c9190612507565b611884565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6105fd61197c565b73ffffffffffffffffffffffffffffffffffffffff1661061b61107f565b73ffffffffffffffffffffffffffffffffffffffff1614610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066890612cc7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146106df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d690612c67565b60405180910390fd5b600e546106ea610988565b111561072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290612c47565b60405180910390fd5b6107358282611984565b5050565b60606003805461074890612f87565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612f87565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826119a2565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610e14565b90508073ffffffffffffffffffffffffffffffffffffffff16610873611a01565b73ffffffffffffffffffffffffffffffffffffffff16146108d65761089f8161089a611a01565b611762565b6108d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610992611a09565b6002546001540303905090565b600b5481565b60006109b082611a12565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a17576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2384611ae0565b91509150610a398187610a34611a01565b611b02565b610a8557610a4e86610a49611a01565b611762565b610a84576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af98686866001611b46565b8015610b0457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd285610bae888887611b4c565b7c020000000000000000000000000000000000000000000000000000000017611b74565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c5a576000600185019050600060056000838152602001908152602001600020541415610c58576001548114610c57578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc28686866001611b9f565b505050505050565b600f5481565b610cd861197c565b73ffffffffffffffffffffffffffffffffffffffff16610cf661107f565b73ffffffffffffffffffffffffffffffffffffffff1614610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612cc7565b60405180910390fd5b81600c8190555080600d819055505050565b610d7983838360405180602001604052806000815250611416565b505050565b610d8661197c565b73ffffffffffffffffffffffffffffffffffffffff16610da461107f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612cc7565b60405180910390fd5b80600a9080519060200190610e109291906122b0565b5050565b6000610e1f82611a12565b9050919050565b6060600a8054610e3590612f87565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6190612f87565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7961197c565b73ffffffffffffffffffffffffffffffffffffffff16610f9761107f565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612cc7565b60405180910390fd5b610ff76000611ba5565b565b61100161197c565b73ffffffffffffffffffffffffffffffffffffffff1661101f61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612cc7565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110b790612f87565b80601f01602080910402602001604051908101604052809291908181526020018280546110e390612f87565b80156111305780601f1061110557610100808354040283529160200191611130565b820191906000526020600020905b81548152906001019060200180831161111357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612c67565b60405180910390fd5b6002600b54146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490612ce7565b60405180910390fd5b600d54816111fa33611531565b6112049190612e0c565b1115611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612ca7565b60405180910390fd5b600e54611250610988565b1115611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612c47565b60405180910390fd5b61129b3382611984565b50565b6112a6611a01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611318611a01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c5611a01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140a9190612b8f565b60405180910390a35050565b6114218484846109a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114835761144c84848484611c69565b611482576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611494826119a2565b6114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612c27565b60405180910390fd5b60006114dd610e26565b51116114f8576040518060200160405280600081525061152a565b611500610e26565b61150983611dc9565b60405160200161151a929190612af9565b6040516020818303038152906040525b9050919050565b600061153c82611f2a565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890612c67565b60405180910390fd5b6001600b54146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612be7565b60405180910390fd5b6000336040516020016116099190612ade565b60405160208183030381529060405280519060200120905061166f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483611f81565b6116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612c87565b60405180910390fd5b600c54846116bb33611531565b6116c59190612e0c565b1115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612d07565b60405180910390fd5b600e54611711610988565b1115611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990612c47565b60405180910390fd5b61175c3385611984565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461180390612f87565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90612f87565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b505050505081565b61188c61197c565b73ffffffffffffffffffffffffffffffffffffffff166118aa61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790612cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790612c07565b60405180910390fd5b61197981611ba5565b50565b600033905090565b61199e828260405180602001604052806000815250611f98565b5050565b6000816119ad611a09565b111580156119bc575060015482105b80156119fa575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a21611a09565b11611aa957600154811015611aa85760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aa6575b6000811415611a9c576005600083600190039350838152602001908152602001600020549050611a71565b8092505050611adb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b63868684612036565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8f611a01565b8786866040518563ffffffff1660e01b8152600401611cb19493929190612b43565b602060405180830381600087803b158015611ccb57600080fd5b505af1925050508015611cfc57506040513d601f19601f82011682018060405250810190611cf99190612724565b60015b611d76573d8060008114611d2c576040519150601f19603f3d011682016040523d82523d6000602084013e611d31565b606091505b50600081511415611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f25565b600082905060005b60008214611e43578080611e2c90612fea565b915050600a82611e3c9190612e62565b9150611e19565b60008167ffffffffffffffff811115611e5f57611e5e613144565b5b6040519080825280601f01601f191660200182016040528015611e915781602001600182028036833780820191505090505b5090505b60008514611f1e57600182611eaa9190612e93565b9150600a85611eb99190613057565b6030611ec59190612e0c565b60f81b818381518110611edb57611eda613115565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f179190612e62565b9450611e95565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082611f8e858461203f565b1490509392505050565b611fa283836120b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120315760006001549050600083820390505b611fe36000868380600101945086611c69565b612019576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fd057816001541461202e57600080fd5b50505b505050565b60009392505050565b60008082905060005b84518110156120a957600085828151811061206657612065613115565b5b60200260200101519050808311612088576120818382612289565b9250612095565b6120928184612289565b92505b5080806120a190612fea565b915050612048565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612122576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561215d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216a6000848385611b46565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e1836121d26000866000611b4c565b6121db856122a0565b17611b74565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612205578060018190555050506122846000848385611b9f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546122bc90612f87565b90600052602060002090601f0160209004810192826122de5760008555612325565b82601f106122f757805160ff1916838001178555612325565b82800160010185558215612325579182015b82811115612324578251825591602001919060010190612309565b5b5090506123329190612336565b5090565b5b8082111561234f576000816000905550600101612337565b5090565b600061236661236184612d67565b612d42565b90508281526020810184848401111561238257612381613182565b5b61238d848285612f45565b509392505050565b60006123a86123a384612d98565b612d42565b9050828152602081018484840111156123c4576123c3613182565b5b6123cf848285612f45565b509392505050565b6000813590506123e6816133be565b92915050565b60008083601f84011261240257612401613178565b5b8235905067ffffffffffffffff81111561241f5761241e613173565b5b60208301915083602082028301111561243b5761243a61317d565b5b9250929050565b600081359050612451816133d5565b92915050565b600081359050612466816133ec565b92915050565b60008135905061247b81613403565b92915050565b60008151905061249081613403565b92915050565b600082601f8301126124ab576124aa613178565b5b81356124bb848260208601612353565b91505092915050565b600082601f8301126124d9576124d8613178565b5b81356124e9848260208601612395565b91505092915050565b6000813590506125018161341a565b92915050565b60006020828403121561251d5761251c61318c565b5b600061252b848285016123d7565b91505092915050565b6000806040838503121561254b5761254a61318c565b5b6000612559858286016123d7565b925050602061256a858286016123d7565b9150509250929050565b60008060006060848603121561258d5761258c61318c565b5b600061259b868287016123d7565b93505060206125ac868287016123d7565b92505060406125bd868287016124f2565b9150509250925092565b600080600080608085870312156125e1576125e061318c565b5b60006125ef878288016123d7565b9450506020612600878288016123d7565b9350506040612611878288016124f2565b925050606085013567ffffffffffffffff81111561263257612631613187565b5b61263e87828801612496565b91505092959194509250565b600080604083850312156126615761266061318c565b5b600061266f858286016123d7565b925050602061268085828601612442565b9150509250929050565b600080604083850312156126a1576126a061318c565b5b60006126af858286016123d7565b92505060206126c0858286016124f2565b9150509250929050565b6000602082840312156126e0576126df61318c565b5b60006126ee84828501612457565b91505092915050565b60006020828403121561270d5761270c61318c565b5b600061271b8482850161246c565b91505092915050565b60006020828403121561273a5761273961318c565b5b600061274884828501612481565b91505092915050565b6000602082840312156127675761276661318c565b5b600082013567ffffffffffffffff81111561278557612784613187565b5b612791848285016124c4565b91505092915050565b6000602082840312156127b0576127af61318c565b5b60006127be848285016124f2565b91505092915050565b6000806000604084860312156127e0576127df61318c565b5b60006127ee868287016124f2565b935050602084013567ffffffffffffffff81111561280f5761280e613187565b5b61281b868287016123ec565b92509250509250925092565b6000806040838503121561283e5761283d61318c565b5b600061284c858286016124f2565b925050602061285d858286016124f2565b9150509250929050565b61287081612ec7565b82525050565b61288761288282612ec7565b613033565b82525050565b61289681612ed9565b82525050565b6128a581612ee5565b82525050565b60006128b682612dc9565b6128c08185612ddf565b93506128d0818560208601612f54565b6128d981613191565b840191505092915050565b60006128ef82612dd4565b6128f98185612df0565b9350612909818560208601612f54565b61291281613191565b840191505092915050565b600061292882612dd4565b6129328185612e01565b9350612942818560208601612f54565b80840191505092915050565b600061295b601683612df0565b9150612966826131af565b602082019050919050565b600061297e602683612df0565b9150612989826131d8565b604082019050919050565b60006129a1603083612df0565b91506129ac82613227565b604082019050919050565b60006129c4600a83612df0565b91506129cf82613276565b602082019050919050565b60006129e7601e83612df0565b91506129f28261329f565b602082019050919050565b6000612a0a600f83612df0565b9150612a15826132c8565b602082019050919050565b6000612a2d601b83612df0565b9150612a38826132f1565b602082019050919050565b6000612a50600583612e01565b9150612a5b8261331a565b600582019050919050565b6000612a73602083612df0565b9150612a7e82613343565b602082019050919050565b6000612a96601883612df0565b9150612aa18261336c565b602082019050919050565b6000612ab9601783612df0565b9150612ac482613395565b602082019050919050565b612ad881612f3b565b82525050565b6000612aea8284612876565b60148201915081905092915050565b6000612b05828561291d565b9150612b11828461291d565b9150612b1c82612a43565b91508190509392505050565b6000602082019050612b3d6000830184612867565b92915050565b6000608082019050612b586000830187612867565b612b656020830186612867565b612b726040830185612acf565b8181036060830152612b8481846128ab565b905095945050505050565b6000602082019050612ba4600083018461288d565b92915050565b6000602082019050612bbf600083018461289c565b92915050565b60006020820190508181036000830152612bdf81846128e4565b905092915050565b60006020820190508181036000830152612c008161294e565b9050919050565b60006020820190508181036000830152612c2081612971565b9050919050565b60006020820190508181036000830152612c4081612994565b9050919050565b60006020820190508181036000830152612c60816129b7565b9050919050565b60006020820190508181036000830152612c80816129da565b9050919050565b60006020820190508181036000830152612ca0816129fd565b9050919050565b60006020820190508181036000830152612cc081612a20565b9050919050565b60006020820190508181036000830152612ce081612a66565b9050919050565b60006020820190508181036000830152612d0081612a89565b9050919050565b60006020820190508181036000830152612d2081612aac565b9050919050565b6000602082019050612d3c6000830184612acf565b92915050565b6000612d4c612d5d565b9050612d588282612fb9565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8257612d81613144565b5b612d8b82613191565b9050602081019050919050565b600067ffffffffffffffff821115612db357612db2613144565b5b612dbc82613191565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e1782612f3b565b9150612e2283612f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5757612e56613088565b5b828201905092915050565b6000612e6d82612f3b565b9150612e7883612f3b565b925082612e8857612e876130b7565b5b828204905092915050565b6000612e9e82612f3b565b9150612ea983612f3b565b925082821015612ebc57612ebb613088565b5b828203905092915050565b6000612ed282612f1b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f72578082015181840152602081019050612f57565b83811115612f81576000848401525b50505050565b60006002820490506001821680612f9f57607f821691505b60208210811415612fb357612fb26130e6565b5b50919050565b612fc282613191565b810181811067ffffffffffffffff82111715612fe157612fe0613144565b5b80604052505050565b6000612ff582612f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561302857613027613088565b5b600182019050919050565b600061303e82613045565b9050919050565b6000613050826131a2565b9050919050565b600061306282612f3b565b915061306d83612f3b565b92508261307d5761307c6130b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b6133c781612ec7565b81146133d257600080fd5b50565b6133de81612ed9565b81146133e957600080fd5b50565b6133f581612ee5565b811461340057600080fd5b50565b61340c81612eef565b811461341757600080fd5b50565b61342381612f3b565b811461342e57600080fd5b5056fea26469706673582212206acbfd81f8a55c8c4e252e27a19016b77264a3ef02814998ad5044c4781b359264736f6c63430008070033

Deployed Bytecode Sourcemap

48040:2680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17908:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49762:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23555:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25501:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25049:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16962:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48171:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34766:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48317:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50442:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26391:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50355:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23344:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50263:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18587:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3673:103;;;:::i;:::-;;48349:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3450:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23724:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49289:344;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25777:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26647:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49955:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49641:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48746:535;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26156:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48145:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3785:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17908:615;17993:4;18308:10;18293:25;;:11;:25;;;;:102;;;;18385:10;18370:25;;:11;:25;;;;18293:102;:179;;;;18462:10;18447:25;;:11;:25;;;;18293:179;18273:199;;17908:615;;;:::o;49762:185::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48496:10:::1;48483:23;;:9;:23;;;48475:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49875:15:::2;;49858:13;:11;:13::i;:::-;:32;;49850:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49916:23;49926:2;49930:8;49916:9;:23::i;:::-;49762:185:::0;;:::o;23555:100::-;23609:13;23642:5;23635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23555:100;:::o;25501:204::-;25569:7;25594:16;25602:7;25594;:16::i;:::-;25589:64;;25619:34;;;;;;;;;;;;;;25589:64;25673:15;:24;25689:7;25673:24;;;;;;;;;;;;;;;;;;;;;25666:31;;25501:204;;;:::o;25049:386::-;25122:13;25138:16;25146:7;25138;:16::i;:::-;25122:32;;25194:5;25171:28;;:19;:17;:19::i;:::-;:28;;;25167:175;;25219:44;25236:5;25243:19;:17;:19::i;:::-;25219:16;:44::i;:::-;25214:128;;25291:35;;;;;;;;;;;;;;25214:128;25167:175;25381:2;25354:15;:24;25370:7;25354:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25419:7;25415:2;25399:28;;25408:5;25399:28;;;;;;;;;;;;25111:324;25049:386;;:::o;16962:315::-;17015:7;17243:15;:13;:15::i;:::-;17228:12;;17212:13;;:28;:46;17205:53;;16962:315;:::o;48171:22::-;;;;:::o;34766:2800::-;34900:27;34930;34949:7;34930:18;:27::i;:::-;34900:57;;35015:4;34974:45;;34990:19;34974:45;;;34970:86;;35028:28;;;;;;;;;;;;;;34970:86;35070:27;35099:23;35126:28;35146:7;35126:19;:28::i;:::-;35069:85;;;;35254:62;35273:15;35290:4;35296:19;:17;:19::i;:::-;35254:18;:62::i;:::-;35249:174;;35336:43;35353:4;35359:19;:17;:19::i;:::-;35336:16;:43::i;:::-;35331:92;;35388:35;;;;;;;;;;;;;;35331:92;35249:174;35454:1;35440:16;;:2;:16;;;35436:52;;;35465:23;;;;;;;;;;;;;;35436:52;35501:43;35523:4;35529:2;35533:7;35542:1;35501:21;:43::i;:::-;35637:15;35634:160;;;35777:1;35756:19;35749:30;35634:160;36172:18;:24;36191:4;36172:24;;;;;;;;;;;;;;;;36170:26;;;;;;;;;;;;36241:18;:22;36260:2;36241:22;;;;;;;;;;;;;;;;36239:24;;;;;;;;;;;36563:145;36600:2;36648:45;36663:4;36669:2;36673:19;36648:14;:45::i;:::-;14190:8;36621:72;36563:18;:145::i;:::-;36534:17;:26;36552:7;36534:26;;;;;;;;;;;:174;;;;36878:1;14190:8;36828:19;:46;:51;36824:626;;;36900:19;36932:1;36922:7;:11;36900:33;;37089:1;37055:17;:30;37073:11;37055:30;;;;;;;;;;;;:35;37051:384;;;37193:13;;37178:11;:28;37174:242;;37373:19;37340:17;:30;37358:11;37340:30;;;;;;;;;;;:52;;;;37174:242;37051:384;36881:569;36824:626;37497:7;37493:2;37478:27;;37487:4;37478:27;;;;;;;;;;;;37516:42;37537:4;37543:2;37547:7;37556:1;37516:20;:42::i;:::-;34889:2677;;;34766:2800;;;:::o;48317:25::-;;;;:::o;50442:174::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50551:7:::1;50525:23;:33;;;;50598:10;50569:26;:39;;;;50442:174:::0;;:::o;26391:185::-;26529:39;26546:4;26552:2;26556:7;26529:39;;;;;;;;;;;;:16;:39::i;:::-;26391:185;;;:::o;50355:79::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50425:1:::1;50419:3;:7;;;;;;;;;;;;:::i;:::-;;50355:79:::0;:::o;23344:144::-;23408:7;23451:27;23470:7;23451:18;:27::i;:::-;23428:52;;23344:144;;;:::o;50263:84::-;50303:13;50336:3;50329:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50263:84;:::o;18587:224::-;18651:7;18692:1;18675:19;;:5;:19;;;18671:60;;;18703:28;;;;;;;;;;;;;;18671:60;13142:13;18749:18;:25;18768:5;18749:25;;;;;;;;;;;;;;;;:54;18742:61;;18587:224;;;:::o;3673:103::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3738:30:::1;3765:1;3738:18;:30::i;:::-;3673:103::o:0;48349:83::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48423:1:::1;48410:10;:14;;;;48349:83:::0;:::o;3450:87::-;3496:7;3523:6;;;;;;;;;;;3516:13;;3450:87;:::o;23724:104::-;23780:13;23813:7;23806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23724:104;:::o;49289:344::-;48496:10;48483:23;;:9;:23;;;48475:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49369:1:::1;49359:6;;:11;49351:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49457:26;;49445:8;49418:24;49431:10;49418:12;:24::i;:::-;:35;;;;:::i;:::-;:65;;49410:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;49551:15;;49534:13;:11;:13::i;:::-;:32;;49526:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49594:31;49604:10;49616:8;49594:9;:31::i;:::-;49289:344:::0;:::o;25777:308::-;25888:19;:17;:19::i;:::-;25876:31;;:8;:31;;;25872:61;;;25916:17;;;;;;;;;;;;;;25872:61;25998:8;25946:18;:39;25965:19;:17;:19::i;:::-;25946:39;;;;;;;;;;;;;;;:49;25986:8;25946:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26058:8;26022:55;;26037:19;:17;:19::i;:::-;26022:55;;;26068:8;26022:55;;;;;;:::i;:::-;;;;;;;;25777:308;;:::o;26647:399::-;26814:31;26827:4;26833:2;26837:7;26814:12;:31::i;:::-;26878:1;26860:2;:14;;;:19;26856:183;;26899:56;26930:4;26936:2;26940:7;26949:5;26899:30;:56::i;:::-;26894:145;;26983:40;;;;;;;;;;;;;;26894:145;26856:183;26647:399;;;;:::o;49955:300::-;50028:13;50062:16;50070:7;50062;:16::i;:::-;50054:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50174:1;50154:9;:7;:9::i;:::-;50148:23;:27;:99;;;;;;;;;;;;;;;;;50202:9;:7;:9::i;:::-;50213:18;:7;:16;:18::i;:::-;50185:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50148:99;50141:106;;49955:300;;;:::o;49641:113::-;49699:7;49726:20;49740:5;49726:13;:20::i;:::-;49719:27;;49641:113;;;:::o;48746:535::-;48496:10;48483:23;;:9;:23;;;48475:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48865:1:::1;48855:6;;:11;48847:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48904:12;48946:10;48929:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48919:39;;;;;;48904:54;;48977:50;48997:11;;48977:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49010:10;;49022:4;48977:18;:50::i;:::-;48969:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49104:23;;49092:8;49065:24;49078:10;49065:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;49057:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49191:15;;49174:13;:11;:13::i;:::-;:32;;49166:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49242:31;49252:10;49264:8;49242:9;:31::i;:::-;48836:445;48746:535:::0;;;:::o;26156:164::-;26253:4;26277:18;:25;26296:5;26277:25;;;;;;;;;;;;;;;:35;26303:8;26277:35;;;;;;;;;;;;;;;;;;;;;;;;;26270:42;;26156:164;;;;:::o;48145:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3785:201::-;3595:12;:10;:12::i;:::-;3584:23;;:7;:5;:7::i;:::-;:23;;;3576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3894:1:::1;3874:22;;:8;:22;;;;3866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3950:28;3969:8;3950:18;:28::i;:::-;3785:201:::0;:::o;2993:98::-;3046:7;3073:10;3066:17;;2993:98;:::o;27658:104::-;27727:27;27737:2;27741:8;27727:27;;;;;;;;;;;;:9;:27::i;:::-;27658:104;;:::o;27301:273::-;27358:4;27414:7;27395:15;:13;:15::i;:::-;:26;;:66;;;;;27448:13;;27438:7;:23;27395:66;:152;;;;;27546:1;13912:8;27499:17;:26;27517:7;27499:26;;;;;;;;;;;;:43;:48;27395:152;27375:172;;27301:273;;;:::o;45862:105::-;45922:7;45949:10;45942:17;;45862:105;:::o;50624:93::-;50681:7;50708:1;50701:8;;50624:93;:::o;20261:1129::-;20328:7;20348:12;20363:7;20348:22;;20431:4;20412:15;:13;:15::i;:::-;:23;20408:915;;20465:13;;20458:4;:20;20454:869;;;20503:14;20520:17;:23;20538:4;20520:23;;;;;;;;;;;;20503:40;;20636:1;13912:8;20609:6;:23;:28;20605:699;;;21128:113;21145:1;21135:6;:11;21128:113;;;21188:17;:25;21206:6;;;;;;;21188:25;;;;;;;;;;;;21179:34;;21128:113;;;21274:6;21267:13;;;;;;20605:699;20480:843;20454:869;20408:915;21351:31;;;;;;;;;;;;;;20261:1129;;;;:::o;33102:652::-;33197:27;33226:23;33267:53;33323:15;33267:71;;33509:7;33503:4;33496:21;33544:22;33538:4;33531:36;33620:4;33614;33604:21;33581:44;;33716:19;33710:26;33691:45;;33447:300;33102:652;;;:::o;33867:645::-;34009:11;34171:15;34165:4;34161:26;34153:34;;34330:15;34319:9;34315:31;34302:44;;34477:15;34466:9;34463:30;34456:4;34445:9;34442:19;34439:55;34429:65;;33867:645;;;;;:::o;44695:159::-;;;;;:::o;43007:309::-;43142:7;43162:16;14313:3;43188:19;:40;;43162:67;;14313:3;43255:31;43266:4;43272:2;43276:9;43255:10;:31::i;:::-;43247:40;;:61;;43240:68;;;43007:309;;;;;:::o;22835:447::-;22915:14;23083:15;23076:5;23072:27;23063:36;;23257:5;23243:11;23219:22;23215:40;23212:51;23205:5;23202:62;23192:72;;22835:447;;;;:::o;45513:158::-;;;;;:::o;3995:191::-;4069:16;4088:6;;;;;;;;;;;4069:25;;4114:8;4105:6;;:17;;;;;;;;;;;;;;;;;;4169:8;4138:40;;4159:8;4138:40;;;;;;;;;;;;4058:128;3995:191;:::o;41517:716::-;41680:4;41726:2;41701:45;;;41747:19;:17;:19::i;:::-;41768:4;41774:7;41783:5;41701:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41697:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42001:1;41984:6;:13;:18;41980:235;;;42030:40;;;;;;;;;;;;;;41980:235;42173:6;42167:13;42158:6;42154:2;42150:15;42143:38;41697:529;41870:54;;;41860:64;;;:6;:64;;;;41853:71;;;41517:716;;;;;;:::o;1610:533::-;1666:13;1706:1;1697:5;:10;1693:53;;;1724:10;;;;;;;;;;;;;;;;;;;;;1693:53;1756:12;1771:5;1756:20;;1787:14;1812:78;1827:1;1819:4;:9;1812:78;;1845:8;;;;;:::i;:::-;;;;1876:2;1868:10;;;;;:::i;:::-;;;1812:78;;;1900:19;1932:6;1922:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900:39;;1950:154;1966:1;1957:5;:10;1950:154;;1994:1;1984:11;;;;;:::i;:::-;;;2061:2;2053:5;:10;;;;:::i;:::-;2040:2;:24;;;;:::i;:::-;2027:39;;2010:6;2017;2010:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2090:2;2081:11;;;;;:::i;:::-;;;1950:154;;;2128:6;2114:21;;;;;1610:533;;;;:::o;18893:176::-;18954:7;13142:13;13279:2;18982:18;:25;19001:5;18982:25;;;;;;;;;;;;;;;;:49;;18981:80;18974:87;;18893:176;;;:::o;157:190::-;282:4;335;306:25;319:5;326:4;306:12;:25::i;:::-;:33;299:40;;157:190;;;;;:::o;28178:681::-;28301:19;28307:2;28311:8;28301:5;:19::i;:::-;28380:1;28362:2;:14;;;:19;28358:483;;28402:11;28416:13;;28402:27;;28448:13;28470:8;28464:3;:14;28448:30;;28497:233;28528:62;28567:1;28571:2;28575:7;;;;;;28584:5;28528:30;:62::i;:::-;28523:167;;28626:40;;;;;;;;;;;;;;28523:167;28725:3;28717:5;:11;28497:233;;28812:3;28795:13;;:20;28791:34;;28817:8;;;28791:34;28383:458;;28358:483;28178:681;;;:::o;43892:147::-;44029:6;43892:147;;;;;:::o;352:517::-;435:7;455:20;478:4;455:27;;498:9;493:339;517:5;:12;513:1;:16;493:339;;;551:20;574:5;580:1;574:8;;;;;;;;:::i;:::-;;;;;;;;551:31;;617:12;601;:28;597:224;;665:42;680:12;694;665:14;:42::i;:::-;650:57;;597:224;;;763:42;778:12;792;763:14;:42::i;:::-;748:57;;597:224;536:296;531:3;;;;;:::i;:::-;;;;493:339;;;;849:12;842:19;;;352:517;;;;:::o;29132:1529::-;29197:20;29220:13;;29197:36;;29262:1;29248:16;;:2;:16;;;29244:48;;;29273:19;;;;;;;;;;;;;;29244:48;29319:1;29307:8;:13;29303:44;;;29329:18;;;;;;;;;;;;;;29303:44;29360:61;29390:1;29394:2;29398:12;29412:8;29360:21;:61::i;:::-;29903:1;13279:2;29874:1;:25;;29873:31;29861:8;:44;29835:18;:22;29854:2;29835:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30182:139;30219:2;30273:33;30296:1;30300:2;30304:1;30273:14;:33::i;:::-;30240:30;30261:8;30240:20;:30::i;:::-;:66;30182:18;:139::i;:::-;30148:17;:31;30166:12;30148:31;;;;;;;;;;;:173;;;;30338:15;30356:12;30338:30;;30383:11;30412:8;30397:12;:23;30383:37;;30435:101;30487:9;;;;;;30483:2;30462:35;;30479:1;30462:35;;;;;;;;;;;;30531:3;30521:7;:13;30435:101;;30568:3;30552:13;:19;;;;29609:974;;30593:60;30622:1;30626:2;30630:12;30644:8;30593:20;:60::i;:::-;29186:1475;29132:1529;;:::o;877:224::-;945:13;1008:1;1002:4;995:15;1037:1;1031:4;1024:15;1078:4;1072;1062:21;1053:30;;877:224;;;;:::o;24665:322::-;24735:14;24966:1;24956:8;24953:15;24928:23;24924:45;24914:55;;24665:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:474::-;9007:6;9015;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9190:1;9215:53;9260:7;9251:6;9240:9;9236:22;9215:53;:::i;:::-;9205:63;;9161:117;9317:2;9343:53;9388:7;9379:6;9368:9;9364:22;9343:53;:::i;:::-;9333:63;;9288:118;8939:474;;;;;:::o;9419:118::-;9506:24;9524:5;9506:24;:::i;:::-;9501:3;9494:37;9419:118;;:::o;9543:157::-;9648:45;9668:24;9686:5;9668:24;:::i;:::-;9648:45;:::i;:::-;9643:3;9636:58;9543:157;;:::o;9706:109::-;9787:21;9802:5;9787:21;:::i;:::-;9782:3;9775:34;9706:109;;:::o;9821:118::-;9908:24;9926:5;9908:24;:::i;:::-;9903:3;9896:37;9821:118;;:::o;9945:360::-;10031:3;10059:38;10091:5;10059:38;:::i;:::-;10113:70;10176:6;10171:3;10113:70;:::i;:::-;10106:77;;10192:52;10237:6;10232:3;10225:4;10218:5;10214:16;10192:52;:::i;:::-;10269:29;10291:6;10269:29;:::i;:::-;10264:3;10260:39;10253:46;;10035:270;9945:360;;;;:::o;10311:364::-;10399:3;10427:39;10460:5;10427:39;:::i;:::-;10482:71;10546:6;10541:3;10482:71;:::i;:::-;10475:78;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10403:272;10311:364;;;;:::o;10681:377::-;10787:3;10815:39;10848:5;10815:39;:::i;:::-;10870:89;10952:6;10947:3;10870:89;:::i;:::-;10863:96;;10968:52;11013:6;11008:3;11001:4;10994:5;10990:16;10968:52;:::i;:::-;11045:6;11040:3;11036:16;11029:23;;10791:267;10681:377;;;;:::o;11064:366::-;11206:3;11227:67;11291:2;11286:3;11227:67;:::i;:::-;11220:74;;11303:93;11392:3;11303:93;:::i;:::-;11421:2;11416:3;11412:12;11405:19;;11064:366;;;:::o;11436:::-;11578:3;11599:67;11663:2;11658:3;11599:67;:::i;:::-;11592:74;;11675:93;11764:3;11675:93;:::i;:::-;11793:2;11788:3;11784:12;11777:19;;11436:366;;;:::o;11808:::-;11950:3;11971:67;12035:2;12030:3;11971:67;:::i;:::-;11964:74;;12047:93;12136:3;12047:93;:::i;:::-;12165:2;12160:3;12156:12;12149:19;;11808:366;;;:::o;12180:::-;12322:3;12343:67;12407:2;12402:3;12343:67;:::i;:::-;12336:74;;12419:93;12508:3;12419:93;:::i;:::-;12537:2;12532:3;12528:12;12521:19;;12180:366;;;:::o;12552:::-;12694:3;12715:67;12779:2;12774:3;12715:67;:::i;:::-;12708:74;;12791:93;12880:3;12791:93;:::i;:::-;12909:2;12904:3;12900:12;12893:19;;12552:366;;;:::o;12924:::-;13066:3;13087:67;13151:2;13146:3;13087:67;:::i;:::-;13080:74;;13163:93;13252:3;13163:93;:::i;:::-;13281:2;13276:3;13272:12;13265:19;;12924:366;;;:::o;13296:::-;13438:3;13459:67;13523:2;13518:3;13459:67;:::i;:::-;13452:74;;13535:93;13624:3;13535:93;:::i;:::-;13653:2;13648:3;13644:12;13637:19;;13296:366;;;:::o;13668:400::-;13828:3;13849:84;13931:1;13926:3;13849:84;:::i;:::-;13842:91;;13942:93;14031:3;13942:93;:::i;:::-;14060:1;14055:3;14051:11;14044:18;;13668:400;;;:::o;14074:366::-;14216:3;14237:67;14301:2;14296:3;14237:67;:::i;:::-;14230:74;;14313:93;14402:3;14313:93;:::i;:::-;14431:2;14426:3;14422:12;14415:19;;14074:366;;;:::o;14446:::-;14588:3;14609:67;14673:2;14668:3;14609:67;:::i;:::-;14602:74;;14685:93;14774:3;14685:93;:::i;:::-;14803:2;14798:3;14794:12;14787:19;;14446:366;;;:::o;14818:::-;14960:3;14981:67;15045:2;15040:3;14981:67;:::i;:::-;14974:74;;15057:93;15146:3;15057:93;:::i;:::-;15175:2;15170:3;15166:12;15159:19;;14818:366;;;:::o;15190:118::-;15277:24;15295:5;15277:24;:::i;:::-;15272:3;15265:37;15190:118;;:::o;15314:256::-;15426:3;15441:75;15512:3;15503:6;15441:75;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15561:3;15554:10;;15314:256;;;;:::o;15576:701::-;15857:3;15879:95;15970:3;15961:6;15879:95;:::i;:::-;15872:102;;15991:95;16082:3;16073:6;15991:95;:::i;:::-;15984:102;;16103:148;16247:3;16103:148;:::i;:::-;16096:155;;16268:3;16261:10;;15576:701;;;;;:::o;16283:222::-;16376:4;16414:2;16403:9;16399:18;16391:26;;16427:71;16495:1;16484:9;16480:17;16471:6;16427:71;:::i;:::-;16283:222;;;;:::o;16511:640::-;16706:4;16744:3;16733:9;16729:19;16721:27;;16758:71;16826:1;16815:9;16811:17;16802:6;16758:71;:::i;:::-;16839:72;16907:2;16896:9;16892:18;16883:6;16839:72;:::i;:::-;16921;16989:2;16978:9;16974:18;16965:6;16921:72;:::i;:::-;17040:9;17034:4;17030:20;17025:2;17014:9;17010:18;17003:48;17068:76;17139:4;17130:6;17068:76;:::i;:::-;17060:84;;16511:640;;;;;;;:::o;17157:210::-;17244:4;17282:2;17271:9;17267:18;17259:26;;17295:65;17357:1;17346:9;17342:17;17333:6;17295:65;:::i;:::-;17157:210;;;;:::o;17373:222::-;17466:4;17504:2;17493:9;17489:18;17481:26;;17517:71;17585:1;17574:9;17570:17;17561:6;17517:71;:::i;:::-;17373:222;;;;:::o;17601:313::-;17714:4;17752:2;17741:9;17737:18;17729:26;;17801:9;17795:4;17791:20;17787:1;17776:9;17772:17;17765:47;17829:78;17902:4;17893:6;17829:78;:::i;:::-;17821:86;;17601:313;;;;:::o;17920:419::-;18086:4;18124:2;18113:9;18109:18;18101:26;;18173:9;18167:4;18163:20;18159:1;18148:9;18144:17;18137:47;18201:131;18327:4;18201:131;:::i;:::-;18193:139;;17920:419;;;:::o;18345:::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:::-;18936:4;18974:2;18963:9;18959:18;18951:26;;19023:9;19017:4;19013:20;19009:1;18998:9;18994:17;18987:47;19051:131;19177:4;19051:131;:::i;:::-;19043:139;;18770:419;;;:::o;19195:::-;19361:4;19399:2;19388:9;19384:18;19376:26;;19448:9;19442:4;19438:20;19434:1;19423:9;19419:17;19412:47;19476:131;19602:4;19476:131;:::i;:::-;19468:139;;19195:419;;;:::o;19620:::-;19786:4;19824:2;19813:9;19809:18;19801:26;;19873:9;19867:4;19863:20;19859:1;19848:9;19844:17;19837:47;19901:131;20027:4;19901:131;:::i;:::-;19893:139;;19620:419;;;:::o;20045:::-;20211:4;20249:2;20238:9;20234:18;20226:26;;20298:9;20292:4;20288:20;20284:1;20273:9;20269:17;20262:47;20326:131;20452:4;20326:131;:::i;:::-;20318:139;;20045:419;;;:::o;20470:::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20723:9;20717:4;20713:20;20709:1;20698:9;20694:17;20687:47;20751:131;20877:4;20751:131;:::i;:::-;20743:139;;20470:419;;;:::o;20895:::-;21061:4;21099:2;21088:9;21084:18;21076:26;;21148:9;21142:4;21138:20;21134:1;21123:9;21119:17;21112:47;21176:131;21302:4;21176:131;:::i;:::-;21168:139;;20895:419;;;:::o;21320:::-;21486:4;21524:2;21513:9;21509:18;21501:26;;21573:9;21567:4;21563:20;21559:1;21548:9;21544:17;21537:47;21601:131;21727:4;21601:131;:::i;:::-;21593:139;;21320:419;;;:::o;21745:::-;21911:4;21949:2;21938:9;21934:18;21926:26;;21998:9;21992:4;21988:20;21984:1;21973:9;21969:17;21962:47;22026:131;22152:4;22026:131;:::i;:::-;22018:139;;21745:419;;;:::o;22170:222::-;22263:4;22301:2;22290:9;22286:18;22278:26;;22314:71;22382:1;22371:9;22367:17;22358:6;22314:71;:::i;:::-;22170:222;;;;:::o;22398:129::-;22432:6;22459:20;;:::i;:::-;22449:30;;22488:33;22516:4;22508:6;22488:33;:::i;:::-;22398:129;;;:::o;22533:75::-;22566:6;22599:2;22593:9;22583:19;;22533:75;:::o;22614:307::-;22675:4;22765:18;22757:6;22754:30;22751:56;;;22787:18;;:::i;:::-;22751:56;22825:29;22847:6;22825:29;:::i;:::-;22817:37;;22909:4;22903;22899:15;22891:23;;22614:307;;;:::o;22927:308::-;22989:4;23079:18;23071:6;23068:30;23065:56;;;23101:18;;:::i;:::-;23065:56;23139:29;23161:6;23139:29;:::i;:::-;23131:37;;23223:4;23217;23213:15;23205:23;;22927:308;;;:::o;23241:98::-;23292:6;23326:5;23320:12;23310:22;;23241:98;;;:::o;23345:99::-;23397:6;23431:5;23425:12;23415:22;;23345:99;;;:::o;23450:168::-;23533:11;23567:6;23562:3;23555:19;23607:4;23602:3;23598:14;23583:29;;23450:168;;;;:::o;23624:169::-;23708:11;23742:6;23737:3;23730:19;23782:4;23777:3;23773:14;23758:29;;23624:169;;;;:::o;23799:148::-;23901:11;23938:3;23923:18;;23799:148;;;;:::o;23953:305::-;23993:3;24012:20;24030:1;24012:20;:::i;:::-;24007:25;;24046:20;24064:1;24046:20;:::i;:::-;24041:25;;24200:1;24132:66;24128:74;24125:1;24122:81;24119:107;;;24206:18;;:::i;:::-;24119:107;24250:1;24247;24243:9;24236:16;;23953:305;;;;:::o;24264:185::-;24304:1;24321:20;24339:1;24321:20;:::i;:::-;24316:25;;24355:20;24373:1;24355:20;:::i;:::-;24350:25;;24394:1;24384:35;;24399:18;;:::i;:::-;24384:35;24441:1;24438;24434:9;24429:14;;24264:185;;;;:::o;24455:191::-;24495:4;24515:20;24533:1;24515:20;:::i;:::-;24510:25;;24549:20;24567:1;24549:20;:::i;:::-;24544:25;;24588:1;24585;24582:8;24579:34;;;24593:18;;:::i;:::-;24579:34;24638:1;24635;24631:9;24623:17;;24455:191;;;;:::o;24652:96::-;24689:7;24718:24;24736:5;24718:24;:::i;:::-;24707:35;;24652:96;;;:::o;24754:90::-;24788:7;24831:5;24824:13;24817:21;24806:32;;24754:90;;;:::o;24850:77::-;24887:7;24916:5;24905:16;;24850:77;;;:::o;24933:149::-;24969:7;25009:66;25002:5;24998:78;24987:89;;24933:149;;;:::o;25088:126::-;25125:7;25165:42;25158:5;25154:54;25143:65;;25088:126;;;:::o;25220:77::-;25257:7;25286:5;25275:16;;25220:77;;;:::o;25303:154::-;25387:6;25382:3;25377;25364:30;25449:1;25440:6;25435:3;25431:16;25424:27;25303:154;;;:::o;25463:307::-;25531:1;25541:113;25555:6;25552:1;25549:13;25541:113;;;25640:1;25635:3;25631:11;25625:18;25621:1;25616:3;25612:11;25605:39;25577:2;25574:1;25570:10;25565:15;;25541:113;;;25672:6;25669:1;25666:13;25663:101;;;25752:1;25743:6;25738:3;25734:16;25727:27;25663:101;25512:258;25463:307;;;:::o;25776:320::-;25820:6;25857:1;25851:4;25847:12;25837:22;;25904:1;25898:4;25894:12;25925:18;25915:81;;25981:4;25973:6;25969:17;25959:27;;25915:81;26043:2;26035:6;26032:14;26012:18;26009:38;26006:84;;;26062:18;;:::i;:::-;26006:84;25827:269;25776:320;;;:::o;26102:281::-;26185:27;26207:4;26185:27;:::i;:::-;26177:6;26173:40;26315:6;26303:10;26300:22;26279:18;26267:10;26264:34;26261:62;26258:88;;;26326:18;;:::i;:::-;26258:88;26366:10;26362:2;26355:22;26145:238;26102:281;;:::o;26389:233::-;26428:3;26451:24;26469:5;26451:24;:::i;:::-;26442:33;;26497:66;26490:5;26487:77;26484:103;;;26567:18;;:::i;:::-;26484:103;26614:1;26607:5;26603:13;26596:20;;26389:233;;;:::o;26628:100::-;26667:7;26696:26;26716:5;26696:26;:::i;:::-;26685:37;;26628:100;;;:::o;26734:94::-;26773:7;26802:20;26816:5;26802:20;:::i;:::-;26791:31;;26734:94;;;:::o;26834:176::-;26866:1;26883:20;26901:1;26883:20;:::i;:::-;26878:25;;26917:20;26935:1;26917:20;:::i;:::-;26912:25;;26956:1;26946:35;;26961:18;;:::i;:::-;26946:35;27002:1;26999;26995:9;26990:14;;26834:176;;;;:::o;27016:180::-;27064:77;27061:1;27054:88;27161:4;27158:1;27151:15;27185:4;27182:1;27175:15;27202:180;27250:77;27247:1;27240:88;27347:4;27344:1;27337:15;27371:4;27368:1;27361:15;27388:180;27436:77;27433:1;27426:88;27533:4;27530:1;27523:15;27557:4;27554:1;27547:15;27574:180;27622:77;27619:1;27612:88;27719:4;27716:1;27709:15;27743:4;27740:1;27733:15;27760:180;27808:77;27805:1;27798:88;27905:4;27902:1;27895:15;27929:4;27926:1;27919:15;27946:117;28055:1;28052;28045:12;28069:117;28178:1;28175;28168:12;28192:117;28301:1;28298;28291:12;28315:117;28424:1;28421;28414:12;28438:117;28547:1;28544;28537:12;28561:117;28670:1;28667;28660:12;28684:102;28725:6;28776:2;28772:7;28767:2;28760:5;28756:14;28752:28;28742:38;;28684:102;;;:::o;28792:94::-;28825:8;28873:5;28869:2;28865:14;28844:35;;28792:94;;;:::o;28892:172::-;29032:24;29028:1;29020:6;29016:14;29009:48;28892:172;:::o;29070:225::-;29210:34;29206:1;29198:6;29194:14;29187:58;29279:8;29274:2;29266:6;29262:15;29255:33;29070:225;:::o;29301:235::-;29441:34;29437:1;29429:6;29425:14;29418:58;29510:18;29505:2;29497:6;29493:15;29486:43;29301:235;:::o;29542:160::-;29682:12;29678:1;29670:6;29666:14;29659:36;29542:160;:::o;29708:180::-;29848:32;29844:1;29836:6;29832:14;29825:56;29708:180;:::o;29894:165::-;30034:17;30030:1;30022:6;30018:14;30011:41;29894:165;:::o;30065:177::-;30205:29;30201:1;30193:6;30189:14;30182:53;30065:177;:::o;30248:155::-;30388:7;30384:1;30376:6;30372:14;30365:31;30248:155;:::o;30409:182::-;30549:34;30545:1;30537:6;30533:14;30526:58;30409:182;:::o;30597:174::-;30737:26;30733:1;30725:6;30721:14;30714:50;30597:174;:::o;30777:173::-;30917:25;30913:1;30905:6;30901:14;30894:49;30777:173;:::o;30956:122::-;31029:24;31047:5;31029:24;:::i;:::-;31022:5;31019:35;31009:63;;31068:1;31065;31058:12;31009:63;30956:122;:::o;31084:116::-;31154:21;31169:5;31154:21;:::i;:::-;31147:5;31144:32;31134:60;;31190:1;31187;31180:12;31134:60;31084:116;:::o;31206:122::-;31279:24;31297:5;31279:24;:::i;:::-;31272:5;31269:35;31259:63;;31318:1;31315;31308:12;31259:63;31206:122;:::o;31334:120::-;31406:23;31423:5;31406:23;:::i;:::-;31399:5;31396:34;31386:62;;31444:1;31441;31434:12;31386:62;31334:120;:::o;31460:122::-;31533:24;31551:5;31533:24;:::i;:::-;31526:5;31523:35;31513:63;;31572:1;31569;31562:12;31513:63;31460:122;:::o

Swarm Source

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