ETH Price: $3,486.73 (+7.41%)
Gas: 6 Gwei

Token

WhoDunIt (WDI)
 

Overview

Max Total Supply

3,334 WDI

Holders

1,645

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 WDI
0x2f7416ea8e91c4c01c05a10e659c22037b953f0d
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:
WhoDoneIt

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-08-03
*/

// 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) public 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 WhoDoneIt is Ownable, ERC721A, ReentrancyGuard  {
    using Strings for uint256;
    string public uri;

    uint public status = 0;
    uint MAX_PER_ADDRESS_PRESALE = 2;
    uint MAX_PER_ADDRESS_PUBLICSALE = 2;
    uint COLLECTION_SIZE = 3333;

    // uint public WhoDunIt_2_status = 0;
    address public Season_2_Address;
    // function setWhoDunIt_2_Status(uint s) public onlyOwner{
    //     WhoDunIt_2_status = s;
    // }
    function set_Season_2_Address(address a) public onlyOwner{
        Season_2_Address = a;
    }

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

    function _burn(uint tokenId) public override{
        require(msg.sender == Season_2_Address, "Unauthorized burn");
        _burn(tokenId, false);
    }

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

    constructor() ERC721A("WhoDunIt", "WDI") {
        uri = "https://bafybeifpqrrktm4caokbnhkezhbdzc5qg4ff7c7hc2wxtvxd2n7zmuatru.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 setStatus(uint s) public onlyOwner{
        status = s;
    }

    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":[],"name":"Season_2_Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"s","type":"uint256"}],"name":"setStatus","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":[{"internalType":"address","name":"a","type":"address"}],"name":"set_Season_2_Address","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"}]

60806040526000600b556002600c556002600d55610d05600e557fa6938c1d2dab3b17b942ea8c0c214f87c95a145b8726e8466e2e8118f7d0d8cd60001b6010553480156200004d57600080fd5b506040518060400160405280600881526020017f57686f44756e49740000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5744490000000000000000000000000000000000000000000000000000000000815250620000da620000ce6200016460201b60201c565b6200016c60201b60201c565b8160039080519060200190620000f292919062000239565b5080600490805190602001906200010b92919062000239565b506200011c6200023060201b60201c565b6001819055505050600160098190555060405180608001604052806059815260200162003d3f60599139600a90805190602001906200015d92919062000239565b506200034e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200024790620002e9565b90600052602060002090601f0160209004810192826200026b5760008555620002b7565b82601f106200028657805160ff1916838001178555620002b7565b82800160010185558215620002b7579182015b82811115620002b657825182559160200191906001019062000299565b5b509050620002c69190620002ca565b5090565b5b80821115620002e5576000816000905550600101620002cb565b5090565b600060028204905060018216806200030257607f821691505b602082108114156200031957620003186200031f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6139e1806200035e6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063ae401118116100a2578063e3e1e8ef11610071578063e3e1e8ef1461057b578063e985e9c514610597578063eac989f8146105c7578063f2fde38b146105e5576101f0565b8063ae401118146104e3578063b88d4fde146104ff578063c87b56dd1461051b578063dc33e6811461054b576101f0565b806395d89b41116100de57806395d89b41146104715780639b1f9e741461048f578063a0712d68146104ab578063a22cb465146104c7576101f0565b8063715018a61461040f5780637cb64759146104195780638a82d440146104355780638da5cb5b14610453576101f0565b80632eb4a7ab116101875780636352211e116101565780636352211e1461037557806369ba1a75146103a55780636c0360eb146103c157806370a08231146103df576101f0565b80632eb4a7ab1461030357806338cc7c4c1461032157806342842e0e1461033d57806355f804b314610359576101f0565b8063095ea7b3116101c3578063095ea7b31461028f57806318160ddd146102ab578063200d2ed2146102c957806323b872dd146102e7576101f0565b806301ffc9a7146101f5578063050225ea1461022557806306fdde0314610241578063081812fc1461025f575b600080fd5b61020f600480360381019061020a9190612c05565b610601565b60405161021c91906130c0565b60405180910390f35b61023f600480360381019061023a9190612b98565b610693565b005b6102496107e7565b60405161025691906130f6565b60405180910390f35b61027960048036038101906102749190612ca8565b610879565b6040516102869190613059565b60405180910390f35b6102a960048036038101906102a49190612b98565b6108f5565b005b6102b3610a36565b6040516102c09190613278565b60405180910390f35b6102d1610a4d565b6040516102de9190613278565b60405180910390f35b61030160048036038101906102fc9190612a82565b610a53565b005b61030b610d78565b60405161031891906130db565b60405180910390f35b61033b60048036038101906103369190612d35565b610d7e565b005b61035760048036038101906103529190612a82565b610e0c565b005b610373600480360381019061036e9190612c5f565b610e2c565b005b61038f600480360381019061038a9190612ca8565b610ec2565b60405161039c9190613059565b60405180910390f35b6103bf60048036038101906103ba9190612ca8565b610ed4565b005b6103c9610f5a565b6040516103d691906130f6565b60405180910390f35b6103f960048036038101906103f49190612a15565b610fec565b6040516104069190613278565b60405180910390f35b6104176110a5565b005b610433600480360381019061042e9190612bd8565b61112d565b005b61043d6111b3565b60405161044a9190613059565b60405180910390f35b61045b6111d9565b6040516104689190613059565b60405180910390f35b610479611202565b60405161048691906130f6565b60405180910390f35b6104a960048036038101906104a49190612ca8565b611294565b005b6104c560048036038101906104c09190612ca8565b611332565b005b6104e160048036038101906104dc9190612b58565b6114a6565b005b6104fd60048036038101906104f89190612a15565b61161e565b005b61051960048036038101906105149190612ad5565b6116de565b005b61053560048036038101906105309190612ca8565b611751565b60405161054291906130f6565b60405180910390f35b61056560048036038101906105609190612a15565b6117f9565b6040516105729190613278565b60405180910390f35b61059560048036038101906105909190612cd5565b61180b565b005b6105b160048036038101906105ac9190612a42565b611a3a565b6040516105be91906130c0565b60405180910390f35b6105cf611ace565b6040516105dc91906130f6565b60405180910390f35b6105ff60048036038101906105fa9190612a15565b611b5c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61069b611c54565b73ffffffffffffffffffffffffffffffffffffffff166106b96111d9565b73ffffffffffffffffffffffffffffffffffffffff161461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690613218565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490613198565b60405180910390fd5b600e54610788610a36565b11156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090613178565b60405180910390fd5b6107e3828260405180602001604052806000815250611c5c565b5050565b6060600380546107f6906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610822906134d8565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611cfa565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610ec2565b90508073ffffffffffffffffffffffffffffffffffffffff16610921611d59565b73ffffffffffffffffffffffffffffffffffffffff16146109845761094d81610948611d59565b611a3a565b610983576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a40611d61565b6002546001540303905090565b600b5481565b6000610a5e82611d6a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad184611e38565b91509150610ae78187610ae2611d59565b611e5a565b610b3357610afc86610af7611d59565b611a3a565b610b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba78686866001611e9e565b8015610bb257600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8085610c5c888887611ea4565b7c020000000000000000000000000000000000000000000000000000000017611ecc565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d08576000600185019050600060056000838152602001908152602001600020541415610d06576001548114610d05578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d708686866001611ef7565b505050505050565b60105481565b610d86611c54565b73ffffffffffffffffffffffffffffffffffffffff16610da46111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613218565b60405180910390fd5b81600c8190555080600d819055505050565b610e27838383604051806020016040528060008152506116de565b505050565b610e34611c54565b73ffffffffffffffffffffffffffffffffffffffff16610e526111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613218565b60405180910390fd5b80600a9080519060200190610ebe9291906127be565b5050565b6000610ecd82611d6a565b9050919050565b610edc611c54565b73ffffffffffffffffffffffffffffffffffffffff16610efa6111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613218565b60405180910390fd5b80600b8190555050565b6060600a8054610f69906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f95906134d8565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611054576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ad611c54565b73ffffffffffffffffffffffffffffffffffffffff166110cb6111d9565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613218565b60405180910390fd5b61112b6000611efd565b565b611135611c54565b73ffffffffffffffffffffffffffffffffffffffff166111536111d9565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613218565b60405180910390fd5b8060108190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611211906134d8565b80601f016020809104026020016040519081016040528092919081815260200182805461123d906134d8565b801561128a5780601f1061125f5761010080835404028352916020019161128a565b820191906000526020600020905b81548152906001019060200180831161126d57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b906131f8565b60405180910390fd5b61132f816000611fc1565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613198565b60405180910390fd5b6002600b54146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613238565b60405180910390fd5b600d54816113f2336117f9565b6113fc919061335d565b111561143d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611434906131d8565b60405180910390fd5b600e54611448610a36565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613178565b60405180910390fd5b6114a3338260405180602001604052806000815250611c5c565b50565b6114ae611d59565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611513576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611520611d59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cd611d59565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161291906130c0565b60405180910390a35050565b611626611c54565b73ffffffffffffffffffffffffffffffffffffffff166116446111d9565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613218565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116e9848484610a53565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461174b5761171484848484612215565b61174a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061175c82611cfa565b61179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613158565b60405180910390fd5b60006117a5610f5a565b51116117c057604051806020016040528060008152506117f2565b6117c8610f5a565b6117d183612375565b6040516020016117e292919061302a565b6040516020818303038152906040525b9050919050565b6000611804826124d6565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613198565b60405180910390fd5b6001600b54146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613118565b60405180910390fd5b6000336040516020016118d1919061300f565b604051602081830303815290604052805190602001209050611937838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506010548361252d565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906131b8565b60405180910390fd5b600c5484611983336117f9565b61198d919061335d565b11156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613258565b60405180910390fd5b600e546119d9610a36565b1115611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613178565b60405180910390fd5b611a34338560405180602001604052806000815250611c5c565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611adb906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b07906134d8565b8015611b545780601f10611b2957610100808354040283529160200191611b54565b820191906000526020600020905b815481529060010190602001808311611b3757829003601f168201915b505050505081565b611b64611c54565b73ffffffffffffffffffffffffffffffffffffffff16611b826111d9565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613138565b60405180910390fd5b611c5181611efd565b50565b600033905090565b611c668383612544565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf55760006001549050600083820390505b611ca76000868380600101945086612215565b611cdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c94578160015414611cf257600080fd5b50505b505050565b600081611d05611d61565b11158015611d14575060015482105b8015611d52575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d79611d61565b11611e0157600154811015611e005760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dfe575b6000811415611df4576005600083600190039350838152602001908152602001600020549050611dc9565b8092505050611e33565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ebb868684612719565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611fcc83611d6a565b90506000819050600080611fdf86611e38565b91509150841561204857611ffb8184611ff6611d59565b611e5a565b612047576120108361200b611d59565b611a3a565b612046576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612056836000886001611e9e565b801561206157600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612109836120c685600088611ea4565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611ecc565b600560008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561219157600060018701905060006005600083815260200190815260200160002054141561218f57600154811461218e578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121fb836000886001611ef7565b600260008154809291906001019190505550505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223b611d59565b8786866040518563ffffffff1660e01b815260040161225d9493929190613074565b602060405180830381600087803b15801561227757600080fd5b505af19250505080156122a857506040513d601f19601f820116820180604052508101906122a59190612c32565b60015b612322573d80600081146122d8576040519150601f19603f3d011682016040523d82523d6000602084013e6122dd565b606091505b5060008151141561231a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d1565b600082905060005b600082146123ef5780806123d89061353b565b915050600a826123e891906133b3565b91506123c5565b60008167ffffffffffffffff81111561240b5761240a613695565b5b6040519080825280601f01601f19166020018201604052801561243d5781602001600182028036833780820191505090505b5090505b600085146124ca5760018261245691906133e4565b9150600a8561246591906135a8565b6030612471919061335d565b60f81b81838151811061248757612486613666565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124c391906133b3565b9450612441565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008261253a8584612722565b1490509392505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fa6000848385611e9e565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612671836126626000866000611ea4565b61266b85612797565b17611ecc565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612695578060018190555050506127146000848385611ef7565b505050565b60009392505050565b60008082905060005b845181101561278c57600085828151811061274957612748613666565b5b6020026020010151905080831161276b5761276483826127a7565b9250612778565b61277581846127a7565b92505b5080806127849061353b565b91505061272b565b508091505092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546127ca906134d8565b90600052602060002090601f0160209004810192826127ec5760008555612833565b82601f1061280557805160ff1916838001178555612833565b82800160010185558215612833579182015b82811115612832578251825591602001919060010190612817565b5b5090506128409190612844565b5090565b5b8082111561285d576000816000905550600101612845565b5090565b600061287461286f846132b8565b613293565b9050828152602081018484840111156128905761288f6136d3565b5b61289b848285613496565b509392505050565b60006128b66128b1846132e9565b613293565b9050828152602081018484840111156128d2576128d16136d3565b5b6128dd848285613496565b509392505050565b6000813590506128f481613938565b92915050565b60008083601f8401126129105761290f6136c9565b5b8235905067ffffffffffffffff81111561292d5761292c6136c4565b5b602083019150836020820283011115612949576129486136ce565b5b9250929050565b60008135905061295f8161394f565b92915050565b60008135905061297481613966565b92915050565b6000813590506129898161397d565b92915050565b60008151905061299e8161397d565b92915050565b600082601f8301126129b9576129b86136c9565b5b81356129c9848260208601612861565b91505092915050565b600082601f8301126129e7576129e66136c9565b5b81356129f78482602086016128a3565b91505092915050565b600081359050612a0f81613994565b92915050565b600060208284031215612a2b57612a2a6136dd565b5b6000612a39848285016128e5565b91505092915050565b60008060408385031215612a5957612a586136dd565b5b6000612a67858286016128e5565b9250506020612a78858286016128e5565b9150509250929050565b600080600060608486031215612a9b57612a9a6136dd565b5b6000612aa9868287016128e5565b9350506020612aba868287016128e5565b9250506040612acb86828701612a00565b9150509250925092565b60008060008060808587031215612aef57612aee6136dd565b5b6000612afd878288016128e5565b9450506020612b0e878288016128e5565b9350506040612b1f87828801612a00565b925050606085013567ffffffffffffffff811115612b4057612b3f6136d8565b5b612b4c878288016129a4565b91505092959194509250565b60008060408385031215612b6f57612b6e6136dd565b5b6000612b7d858286016128e5565b9250506020612b8e85828601612950565b9150509250929050565b60008060408385031215612baf57612bae6136dd565b5b6000612bbd858286016128e5565b9250506020612bce85828601612a00565b9150509250929050565b600060208284031215612bee57612bed6136dd565b5b6000612bfc84828501612965565b91505092915050565b600060208284031215612c1b57612c1a6136dd565b5b6000612c298482850161297a565b91505092915050565b600060208284031215612c4857612c476136dd565b5b6000612c568482850161298f565b91505092915050565b600060208284031215612c7557612c746136dd565b5b600082013567ffffffffffffffff811115612c9357612c926136d8565b5b612c9f848285016129d2565b91505092915050565b600060208284031215612cbe57612cbd6136dd565b5b6000612ccc84828501612a00565b91505092915050565b600080600060408486031215612cee57612ced6136dd565b5b6000612cfc86828701612a00565b935050602084013567ffffffffffffffff811115612d1d57612d1c6136d8565b5b612d29868287016128fa565b92509250509250925092565b60008060408385031215612d4c57612d4b6136dd565b5b6000612d5a85828601612a00565b9250506020612d6b85828601612a00565b9150509250929050565b612d7e81613418565b82525050565b612d95612d9082613418565b613584565b82525050565b612da48161342a565b82525050565b612db381613436565b82525050565b6000612dc48261331a565b612dce8185613330565b9350612dde8185602086016134a5565b612de7816136e2565b840191505092915050565b6000612dfd82613325565b612e078185613341565b9350612e178185602086016134a5565b612e20816136e2565b840191505092915050565b6000612e3682613325565b612e408185613352565b9350612e508185602086016134a5565b80840191505092915050565b6000612e69601683613341565b9150612e7482613700565b602082019050919050565b6000612e8c602683613341565b9150612e9782613729565b604082019050919050565b6000612eaf603083613341565b9150612eba82613778565b604082019050919050565b6000612ed2600a83613341565b9150612edd826137c7565b602082019050919050565b6000612ef5601e83613341565b9150612f00826137f0565b602082019050919050565b6000612f18600f83613341565b9150612f2382613819565b602082019050919050565b6000612f3b601b83613341565b9150612f4682613842565b602082019050919050565b6000612f5e601183613341565b9150612f698261386b565b602082019050919050565b6000612f81600583613352565b9150612f8c82613894565b600582019050919050565b6000612fa4602083613341565b9150612faf826138bd565b602082019050919050565b6000612fc7601883613341565b9150612fd2826138e6565b602082019050919050565b6000612fea601783613341565b9150612ff58261390f565b602082019050919050565b6130098161348c565b82525050565b600061301b8284612d84565b60148201915081905092915050565b60006130368285612e2b565b91506130428284612e2b565b915061304d82612f74565b91508190509392505050565b600060208201905061306e6000830184612d75565b92915050565b60006080820190506130896000830187612d75565b6130966020830186612d75565b6130a36040830185613000565b81810360608301526130b58184612db9565b905095945050505050565b60006020820190506130d56000830184612d9b565b92915050565b60006020820190506130f06000830184612daa565b92915050565b600060208201905081810360008301526131108184612df2565b905092915050565b6000602082019050818103600083015261313181612e5c565b9050919050565b6000602082019050818103600083015261315181612e7f565b9050919050565b6000602082019050818103600083015261317181612ea2565b9050919050565b6000602082019050818103600083015261319181612ec5565b9050919050565b600060208201905081810360008301526131b181612ee8565b9050919050565b600060208201905081810360008301526131d181612f0b565b9050919050565b600060208201905081810360008301526131f181612f2e565b9050919050565b6000602082019050818103600083015261321181612f51565b9050919050565b6000602082019050818103600083015261323181612f97565b9050919050565b6000602082019050818103600083015261325181612fba565b9050919050565b6000602082019050818103600083015261327181612fdd565b9050919050565b600060208201905061328d6000830184613000565b92915050565b600061329d6132ae565b90506132a9828261350a565b919050565b6000604051905090565b600067ffffffffffffffff8211156132d3576132d2613695565b5b6132dc826136e2565b9050602081019050919050565b600067ffffffffffffffff82111561330457613303613695565b5b61330d826136e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133688261348c565b91506133738361348c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133a8576133a76135d9565b5b828201905092915050565b60006133be8261348c565b91506133c98361348c565b9250826133d9576133d8613608565b5b828204905092915050565b60006133ef8261348c565b91506133fa8361348c565b92508282101561340d5761340c6135d9565b5b828203905092915050565b60006134238261346c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134c35780820151818401526020810190506134a8565b838111156134d2576000848401525b50505050565b600060028204905060018216806134f057607f821691505b6020821081141561350457613503613637565b5b50919050565b613513826136e2565b810181811067ffffffffffffffff8211171561353257613531613695565b5b80604052505050565b60006135468261348c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613579576135786135d9565b5b600182019050919050565b600061358f82613596565b9050919050565b60006135a1826136f3565b9050919050565b60006135b38261348c565b91506135be8361348c565b9250826135ce576135cd613608565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f556e617574686f72697a6564206275726e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b61394181613418565b811461394c57600080fd5b50565b6139588161342a565b811461396357600080fd5b50565b61396f81613436565b811461397a57600080fd5b50565b61398681613440565b811461399157600080fd5b50565b61399d8161348c565b81146139a857600080fd5b5056fea26469706673582212201f1a54715ffdf3efe45fd26b43c6d3d6bfe6c22a807a4e1d0823d4904102f09c64736f6c6343000807003368747470733a2f2f6261667962656966707172726b746d3463616f6b626e686b657a6862647a63357167346666376337686332777874767864326e377a6d75617472752e697066732e6e667473746f726167652e6c696e6b2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063ae401118116100a2578063e3e1e8ef11610071578063e3e1e8ef1461057b578063e985e9c514610597578063eac989f8146105c7578063f2fde38b146105e5576101f0565b8063ae401118146104e3578063b88d4fde146104ff578063c87b56dd1461051b578063dc33e6811461054b576101f0565b806395d89b41116100de57806395d89b41146104715780639b1f9e741461048f578063a0712d68146104ab578063a22cb465146104c7576101f0565b8063715018a61461040f5780637cb64759146104195780638a82d440146104355780638da5cb5b14610453576101f0565b80632eb4a7ab116101875780636352211e116101565780636352211e1461037557806369ba1a75146103a55780636c0360eb146103c157806370a08231146103df576101f0565b80632eb4a7ab1461030357806338cc7c4c1461032157806342842e0e1461033d57806355f804b314610359576101f0565b8063095ea7b3116101c3578063095ea7b31461028f57806318160ddd146102ab578063200d2ed2146102c957806323b872dd146102e7576101f0565b806301ffc9a7146101f5578063050225ea1461022557806306fdde0314610241578063081812fc1461025f575b600080fd5b61020f600480360381019061020a9190612c05565b610601565b60405161021c91906130c0565b60405180910390f35b61023f600480360381019061023a9190612b98565b610693565b005b6102496107e7565b60405161025691906130f6565b60405180910390f35b61027960048036038101906102749190612ca8565b610879565b6040516102869190613059565b60405180910390f35b6102a960048036038101906102a49190612b98565b6108f5565b005b6102b3610a36565b6040516102c09190613278565b60405180910390f35b6102d1610a4d565b6040516102de9190613278565b60405180910390f35b61030160048036038101906102fc9190612a82565b610a53565b005b61030b610d78565b60405161031891906130db565b60405180910390f35b61033b60048036038101906103369190612d35565b610d7e565b005b61035760048036038101906103529190612a82565b610e0c565b005b610373600480360381019061036e9190612c5f565b610e2c565b005b61038f600480360381019061038a9190612ca8565b610ec2565b60405161039c9190613059565b60405180910390f35b6103bf60048036038101906103ba9190612ca8565b610ed4565b005b6103c9610f5a565b6040516103d691906130f6565b60405180910390f35b6103f960048036038101906103f49190612a15565b610fec565b6040516104069190613278565b60405180910390f35b6104176110a5565b005b610433600480360381019061042e9190612bd8565b61112d565b005b61043d6111b3565b60405161044a9190613059565b60405180910390f35b61045b6111d9565b6040516104689190613059565b60405180910390f35b610479611202565b60405161048691906130f6565b60405180910390f35b6104a960048036038101906104a49190612ca8565b611294565b005b6104c560048036038101906104c09190612ca8565b611332565b005b6104e160048036038101906104dc9190612b58565b6114a6565b005b6104fd60048036038101906104f89190612a15565b61161e565b005b61051960048036038101906105149190612ad5565b6116de565b005b61053560048036038101906105309190612ca8565b611751565b60405161054291906130f6565b60405180910390f35b61056560048036038101906105609190612a15565b6117f9565b6040516105729190613278565b60405180910390f35b61059560048036038101906105909190612cd5565b61180b565b005b6105b160048036038101906105ac9190612a42565b611a3a565b6040516105be91906130c0565b60405180910390f35b6105cf611ace565b6040516105dc91906130f6565b60405180910390f35b6105ff60048036038101906105fa9190612a15565b611b5c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61069b611c54565b73ffffffffffffffffffffffffffffffffffffffff166106b96111d9565b73ffffffffffffffffffffffffffffffffffffffff161461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690613218565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490613198565b60405180910390fd5b600e54610788610a36565b11156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090613178565b60405180910390fd5b6107e3828260405180602001604052806000815250611c5c565b5050565b6060600380546107f6906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610822906134d8565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611cfa565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610ec2565b90508073ffffffffffffffffffffffffffffffffffffffff16610921611d59565b73ffffffffffffffffffffffffffffffffffffffff16146109845761094d81610948611d59565b611a3a565b610983576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a40611d61565b6002546001540303905090565b600b5481565b6000610a5e82611d6a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad184611e38565b91509150610ae78187610ae2611d59565b611e5a565b610b3357610afc86610af7611d59565b611a3a565b610b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba78686866001611e9e565b8015610bb257600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8085610c5c888887611ea4565b7c020000000000000000000000000000000000000000000000000000000017611ecc565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d08576000600185019050600060056000838152602001908152602001600020541415610d06576001548114610d05578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d708686866001611ef7565b505050505050565b60105481565b610d86611c54565b73ffffffffffffffffffffffffffffffffffffffff16610da46111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613218565b60405180910390fd5b81600c8190555080600d819055505050565b610e27838383604051806020016040528060008152506116de565b505050565b610e34611c54565b73ffffffffffffffffffffffffffffffffffffffff16610e526111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613218565b60405180910390fd5b80600a9080519060200190610ebe9291906127be565b5050565b6000610ecd82611d6a565b9050919050565b610edc611c54565b73ffffffffffffffffffffffffffffffffffffffff16610efa6111d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613218565b60405180910390fd5b80600b8190555050565b6060600a8054610f69906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f95906134d8565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611054576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ad611c54565b73ffffffffffffffffffffffffffffffffffffffff166110cb6111d9565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613218565b60405180910390fd5b61112b6000611efd565b565b611135611c54565b73ffffffffffffffffffffffffffffffffffffffff166111536111d9565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613218565b60405180910390fd5b8060108190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611211906134d8565b80601f016020809104026020016040519081016040528092919081815260200182805461123d906134d8565b801561128a5780601f1061125f5761010080835404028352916020019161128a565b820191906000526020600020905b81548152906001019060200180831161126d57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b906131f8565b60405180910390fd5b61132f816000611fc1565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613198565b60405180910390fd5b6002600b54146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613238565b60405180910390fd5b600d54816113f2336117f9565b6113fc919061335d565b111561143d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611434906131d8565b60405180910390fd5b600e54611448610a36565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613178565b60405180910390fd5b6114a3338260405180602001604052806000815250611c5c565b50565b6114ae611d59565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611513576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611520611d59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cd611d59565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161291906130c0565b60405180910390a35050565b611626611c54565b73ffffffffffffffffffffffffffffffffffffffff166116446111d9565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613218565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116e9848484610a53565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461174b5761171484848484612215565b61174a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061175c82611cfa565b61179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613158565b60405180910390fd5b60006117a5610f5a565b51116117c057604051806020016040528060008152506117f2565b6117c8610f5a565b6117d183612375565b6040516020016117e292919061302a565b6040516020818303038152906040525b9050919050565b6000611804826124d6565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613198565b60405180910390fd5b6001600b54146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613118565b60405180910390fd5b6000336040516020016118d1919061300f565b604051602081830303815290604052805190602001209050611937838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506010548361252d565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906131b8565b60405180910390fd5b600c5484611983336117f9565b61198d919061335d565b11156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613258565b60405180910390fd5b600e546119d9610a36565b1115611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613178565b60405180910390fd5b611a34338560405180602001604052806000815250611c5c565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611adb906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b07906134d8565b8015611b545780601f10611b2957610100808354040283529160200191611b54565b820191906000526020600020905b815481529060010190602001808311611b3757829003601f168201915b505050505081565b611b64611c54565b73ffffffffffffffffffffffffffffffffffffffff16611b826111d9565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613138565b60405180910390fd5b611c5181611efd565b50565b600033905090565b611c668383612544565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf55760006001549050600083820390505b611ca76000868380600101945086612215565b611cdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c94578160015414611cf257600080fd5b50505b505050565b600081611d05611d61565b11158015611d14575060015482105b8015611d52575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d79611d61565b11611e0157600154811015611e005760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dfe575b6000811415611df4576005600083600190039350838152602001908152602001600020549050611dc9565b8092505050611e33565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ebb868684612719565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611fcc83611d6a565b90506000819050600080611fdf86611e38565b91509150841561204857611ffb8184611ff6611d59565b611e5a565b612047576120108361200b611d59565b611a3a565b612046576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612056836000886001611e9e565b801561206157600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612109836120c685600088611ea4565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611ecc565b600560008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561219157600060018701905060006005600083815260200190815260200160002054141561218f57600154811461218e578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121fb836000886001611ef7565b600260008154809291906001019190505550505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223b611d59565b8786866040518563ffffffff1660e01b815260040161225d9493929190613074565b602060405180830381600087803b15801561227757600080fd5b505af19250505080156122a857506040513d601f19601f820116820180604052508101906122a59190612c32565b60015b612322573d80600081146122d8576040519150601f19603f3d011682016040523d82523d6000602084013e6122dd565b606091505b5060008151141561231a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d1565b600082905060005b600082146123ef5780806123d89061353b565b915050600a826123e891906133b3565b91506123c5565b60008167ffffffffffffffff81111561240b5761240a613695565b5b6040519080825280601f01601f19166020018201604052801561243d5781602001600182028036833780820191505090505b5090505b600085146124ca5760018261245691906133e4565b9150600a8561246591906135a8565b6030612471919061335d565b60f81b81838151811061248757612486613666565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124c391906133b3565b9450612441565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008261253a8584612722565b1490509392505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fa6000848385611e9e565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612671836126626000866000611ea4565b61266b85612797565b17611ecc565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612695578060018190555050506127146000848385611ef7565b505050565b60009392505050565b60008082905060005b845181101561278c57600085828151811061274957612748613666565b5b6020026020010151905080831161276b5761276483826127a7565b9250612778565b61277581846127a7565b92505b5080806127849061353b565b91505061272b565b508091505092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546127ca906134d8565b90600052602060002090601f0160209004810192826127ec5760008555612833565b82601f1061280557805160ff1916838001178555612833565b82800160010185558215612833579182015b82811115612832578251825591602001919060010190612817565b5b5090506128409190612844565b5090565b5b8082111561285d576000816000905550600101612845565b5090565b600061287461286f846132b8565b613293565b9050828152602081018484840111156128905761288f6136d3565b5b61289b848285613496565b509392505050565b60006128b66128b1846132e9565b613293565b9050828152602081018484840111156128d2576128d16136d3565b5b6128dd848285613496565b509392505050565b6000813590506128f481613938565b92915050565b60008083601f8401126129105761290f6136c9565b5b8235905067ffffffffffffffff81111561292d5761292c6136c4565b5b602083019150836020820283011115612949576129486136ce565b5b9250929050565b60008135905061295f8161394f565b92915050565b60008135905061297481613966565b92915050565b6000813590506129898161397d565b92915050565b60008151905061299e8161397d565b92915050565b600082601f8301126129b9576129b86136c9565b5b81356129c9848260208601612861565b91505092915050565b600082601f8301126129e7576129e66136c9565b5b81356129f78482602086016128a3565b91505092915050565b600081359050612a0f81613994565b92915050565b600060208284031215612a2b57612a2a6136dd565b5b6000612a39848285016128e5565b91505092915050565b60008060408385031215612a5957612a586136dd565b5b6000612a67858286016128e5565b9250506020612a78858286016128e5565b9150509250929050565b600080600060608486031215612a9b57612a9a6136dd565b5b6000612aa9868287016128e5565b9350506020612aba868287016128e5565b9250506040612acb86828701612a00565b9150509250925092565b60008060008060808587031215612aef57612aee6136dd565b5b6000612afd878288016128e5565b9450506020612b0e878288016128e5565b9350506040612b1f87828801612a00565b925050606085013567ffffffffffffffff811115612b4057612b3f6136d8565b5b612b4c878288016129a4565b91505092959194509250565b60008060408385031215612b6f57612b6e6136dd565b5b6000612b7d858286016128e5565b9250506020612b8e85828601612950565b9150509250929050565b60008060408385031215612baf57612bae6136dd565b5b6000612bbd858286016128e5565b9250506020612bce85828601612a00565b9150509250929050565b600060208284031215612bee57612bed6136dd565b5b6000612bfc84828501612965565b91505092915050565b600060208284031215612c1b57612c1a6136dd565b5b6000612c298482850161297a565b91505092915050565b600060208284031215612c4857612c476136dd565b5b6000612c568482850161298f565b91505092915050565b600060208284031215612c7557612c746136dd565b5b600082013567ffffffffffffffff811115612c9357612c926136d8565b5b612c9f848285016129d2565b91505092915050565b600060208284031215612cbe57612cbd6136dd565b5b6000612ccc84828501612a00565b91505092915050565b600080600060408486031215612cee57612ced6136dd565b5b6000612cfc86828701612a00565b935050602084013567ffffffffffffffff811115612d1d57612d1c6136d8565b5b612d29868287016128fa565b92509250509250925092565b60008060408385031215612d4c57612d4b6136dd565b5b6000612d5a85828601612a00565b9250506020612d6b85828601612a00565b9150509250929050565b612d7e81613418565b82525050565b612d95612d9082613418565b613584565b82525050565b612da48161342a565b82525050565b612db381613436565b82525050565b6000612dc48261331a565b612dce8185613330565b9350612dde8185602086016134a5565b612de7816136e2565b840191505092915050565b6000612dfd82613325565b612e078185613341565b9350612e178185602086016134a5565b612e20816136e2565b840191505092915050565b6000612e3682613325565b612e408185613352565b9350612e508185602086016134a5565b80840191505092915050565b6000612e69601683613341565b9150612e7482613700565b602082019050919050565b6000612e8c602683613341565b9150612e9782613729565b604082019050919050565b6000612eaf603083613341565b9150612eba82613778565b604082019050919050565b6000612ed2600a83613341565b9150612edd826137c7565b602082019050919050565b6000612ef5601e83613341565b9150612f00826137f0565b602082019050919050565b6000612f18600f83613341565b9150612f2382613819565b602082019050919050565b6000612f3b601b83613341565b9150612f4682613842565b602082019050919050565b6000612f5e601183613341565b9150612f698261386b565b602082019050919050565b6000612f81600583613352565b9150612f8c82613894565b600582019050919050565b6000612fa4602083613341565b9150612faf826138bd565b602082019050919050565b6000612fc7601883613341565b9150612fd2826138e6565b602082019050919050565b6000612fea601783613341565b9150612ff58261390f565b602082019050919050565b6130098161348c565b82525050565b600061301b8284612d84565b60148201915081905092915050565b60006130368285612e2b565b91506130428284612e2b565b915061304d82612f74565b91508190509392505050565b600060208201905061306e6000830184612d75565b92915050565b60006080820190506130896000830187612d75565b6130966020830186612d75565b6130a36040830185613000565b81810360608301526130b58184612db9565b905095945050505050565b60006020820190506130d56000830184612d9b565b92915050565b60006020820190506130f06000830184612daa565b92915050565b600060208201905081810360008301526131108184612df2565b905092915050565b6000602082019050818103600083015261313181612e5c565b9050919050565b6000602082019050818103600083015261315181612e7f565b9050919050565b6000602082019050818103600083015261317181612ea2565b9050919050565b6000602082019050818103600083015261319181612ec5565b9050919050565b600060208201905081810360008301526131b181612ee8565b9050919050565b600060208201905081810360008301526131d181612f0b565b9050919050565b600060208201905081810360008301526131f181612f2e565b9050919050565b6000602082019050818103600083015261321181612f51565b9050919050565b6000602082019050818103600083015261323181612f97565b9050919050565b6000602082019050818103600083015261325181612fba565b9050919050565b6000602082019050818103600083015261327181612fdd565b9050919050565b600060208201905061328d6000830184613000565b92915050565b600061329d6132ae565b90506132a9828261350a565b919050565b6000604051905090565b600067ffffffffffffffff8211156132d3576132d2613695565b5b6132dc826136e2565b9050602081019050919050565b600067ffffffffffffffff82111561330457613303613695565b5b61330d826136e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133688261348c565b91506133738361348c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133a8576133a76135d9565b5b828201905092915050565b60006133be8261348c565b91506133c98361348c565b9250826133d9576133d8613608565b5b828204905092915050565b60006133ef8261348c565b91506133fa8361348c565b92508282101561340d5761340c6135d9565b5b828203905092915050565b60006134238261346c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134c35780820151818401526020810190506134a8565b838111156134d2576000848401525b50505050565b600060028204905060018216806134f057607f821691505b6020821081141561350457613503613637565b5b50919050565b613513826136e2565b810181811067ffffffffffffffff8211171561353257613531613695565b5b80604052505050565b60006135468261348c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613579576135786135d9565b5b600182019050919050565b600061358f82613596565b9050919050565b60006135a1826136f3565b9050919050565b60006135b38261348c565b91506135be8361348c565b9250826135ce576135cd613608565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f556e617574686f72697a6564206275726e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b61394181613418565b811461394c57600080fd5b50565b6139588161342a565b811461396357600080fd5b50565b61396f81613436565b811461397a57600080fd5b50565b61398681613440565b811461399157600080fd5b50565b61399d8161348c565b81146139a857600080fd5b5056fea26469706673582212201f1a54715ffdf3efe45fd26b43c6d3d6bfe6c22a807a4e1d0823d4904102f09c64736f6c63430008070033

Deployed Bytecode Sourcemap

47971:3277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17841:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50206:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23488:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25434:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24982:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16895:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48093:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34699:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48533:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50890:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26324:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50803:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23277:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51072:72;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50711:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18520:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3602:103;;;:::i;:::-;;48634:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48282:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3379:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23657:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48725:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49729:348;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25710:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48429:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26580:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50403:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50085:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49182:539;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26089:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48067:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17841:615;17926:4;18241:10;18226:25;;:11;:25;;;;:102;;;;18318:10;18303:25;;:11;:25;;;;18226:102;:179;;;;18395:10;18380:25;;:11;:25;;;;18226:179;18206:199;;17841:615;;;:::o;50206:189::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48944:10:::1;48931:23;;:9;:23;;;48923:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50319:15:::2;;50302:13;:11;:13::i;:::-;:32;;50294:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50360:27;50370:2;50374:8;50360:27;;;;;;;;;;;::::0;:9:::2;:27::i;:::-;50206:189:::0;;:::o;23488:100::-;23542:13;23575:5;23568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23488:100;:::o;25434:204::-;25502:7;25527:16;25535:7;25527;:16::i;:::-;25522:64;;25552:34;;;;;;;;;;;;;;25522:64;25606:15;:24;25622:7;25606:24;;;;;;;;;;;;;;;;;;;;;25599:31;;25434:204;;;:::o;24982:386::-;25055:13;25071:16;25079:7;25071;:16::i;:::-;25055:32;;25127:5;25104:28;;:19;:17;:19::i;:::-;:28;;;25100:175;;25152:44;25169:5;25176:19;:17;:19::i;:::-;25152:16;:44::i;:::-;25147:128;;25224:35;;;;;;;;;;;;;;25147:128;25100:175;25314:2;25287:15;:24;25303:7;25287:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25352:7;25348:2;25332:28;;25341:5;25332:28;;;;;;;;;;;;25044:324;24982:386;;:::o;16895:315::-;16948:7;17176:15;:13;:15::i;:::-;17161:12;;17145:13;;:28;:46;17138:53;;16895:315;:::o;48093:22::-;;;;:::o;34699:2800::-;34833:27;34863;34882:7;34863:18;:27::i;:::-;34833:57;;34948:4;34907:45;;34923:19;34907:45;;;34903:86;;34961:28;;;;;;;;;;;;;;34903:86;35003:27;35032:23;35059:28;35079:7;35059:19;:28::i;:::-;35002:85;;;;35187:62;35206:15;35223:4;35229:19;:17;:19::i;:::-;35187:18;:62::i;:::-;35182:174;;35269:43;35286:4;35292:19;:17;:19::i;:::-;35269:16;:43::i;:::-;35264:92;;35321:35;;;;;;;;;;;;;;35264:92;35182:174;35387:1;35373:16;;:2;:16;;;35369:52;;;35398:23;;;;;;;;;;;;;;35369:52;35434:43;35456:4;35462:2;35466:7;35475:1;35434:21;:43::i;:::-;35570:15;35567:160;;;35710:1;35689:19;35682:30;35567:160;36105:18;:24;36124:4;36105:24;;;;;;;;;;;;;;;;36103:26;;;;;;;;;;;;36174:18;:22;36193:2;36174:22;;;;;;;;;;;;;;;;36172:24;;;;;;;;;;;36496:145;36533:2;36581:45;36596:4;36602:2;36606:19;36581:14;:45::i;:::-;14123:8;36554:72;36496:18;:145::i;:::-;36467:17;:26;36485:7;36467:26;;;;;;;;;;;:174;;;;36811:1;14123:8;36761:19;:46;:51;36757:626;;;36833:19;36865:1;36855:7;:11;36833:33;;37022:1;36988:17;:30;37006:11;36988:30;;;;;;;;;;;;:35;36984:384;;;37126:13;;37111:11;:28;37107:242;;37306:19;37273:17;:30;37291:11;37273:30;;;;;;;;;;;:52;;;;37107:242;36984:384;36814:569;36757:626;37430:7;37426:2;37411:27;;37420:4;37411:27;;;;;;;;;;;;37449:42;37470:4;37476:2;37480:7;37489:1;37449:20;:42::i;:::-;34822:2677;;;34699:2800;;;:::o;48533:94::-;;;;:::o;50890:174::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50999:7:::1;50973:23;:33;;;;51046:10;51017:26;:39;;;;50890:174:::0;;:::o;26324:185::-;26462:39;26479:4;26485:2;26489:7;26462:39;;;;;;;;;;;;:16;:39::i;:::-;26324:185;;;:::o;50803:79::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50873:1:::1;50867:3;:7;;;;;;;;;;;;:::i;:::-;;50803:79:::0;:::o;23277:144::-;23341:7;23384:27;23403:7;23384:18;:27::i;:::-;23361:52;;23277:144;;;:::o;51072:72::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51135:1:::1;51126:6;:10;;;;51072:72:::0;:::o;50711:84::-;50751:13;50784:3;50777:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50711:84;:::o;18520:224::-;18584:7;18625:1;18608:19;;:5;:19;;;18604:60;;;18636:28;;;;;;;;;;;;;;18604:60;13075:13;18682:18;:25;18701:5;18682:25;;;;;;;;;;;;;;;;:54;18675:61;;18520:224;;;:::o;3602:103::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3667:30:::1;3694:1;3667:18;:30::i;:::-;3602:103::o:0;48634:83::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48708:1:::1;48695:10;:14;;;;48634:83:::0;:::o;48282:31::-;;;;;;;;;;;;;:::o;3379:87::-;3425:7;3452:6;;;;;;;;;;;3445:13;;3379:87;:::o;23657:104::-;23713:13;23746:7;23739:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23657:104;:::o;48725:155::-;48802:16;;;;;;;;;;;48788:30;;:10;:30;;;48780:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48851:21;48857:7;48866:5;48851;:21::i;:::-;48725:155;:::o;49729:348::-;48944:10;48931:23;;:9;:23;;;48923:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49809:1:::1;49799:6;;:11;49791:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49897:26;;49885:8;49858:24;49871:10;49858:12;:24::i;:::-;:35;;;;:::i;:::-;:65;;49850:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;49991:15;;49974:13;:11;:13::i;:::-;:32;;49966:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50034:35;50044:10;50056:8;50034:35;;;;;;;;;;;::::0;:9:::1;:35::i;:::-;49729:348:::0;:::o;25710:308::-;25821:19;:17;:19::i;:::-;25809:31;;:8;:31;;;25805:61;;;25849:17;;;;;;;;;;;;;;25805:61;25931:8;25879:18;:39;25898:19;:17;:19::i;:::-;25879:39;;;;;;;;;;;;;;;:49;25919:8;25879:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25991:8;25955:55;;25970:19;:17;:19::i;:::-;25955:55;;;26001:8;25955:55;;;;;;:::i;:::-;;;;;;;;25710:308;;:::o;48429:96::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48516:1:::1;48497:16;;:20;;;;;;;;;;;;;;;;;;48429:96:::0;:::o;26580:399::-;26747:31;26760:4;26766:2;26770:7;26747:12;:31::i;:::-;26811:1;26793:2;:14;;;:19;26789:183;;26832:56;26863:4;26869:2;26873:7;26882:5;26832:30;:56::i;:::-;26827:145;;26916:40;;;;;;;;;;;;;;26827:145;26789:183;26580:399;;;;:::o;50403:300::-;50476:13;50510:16;50518:7;50510;:16::i;:::-;50502:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50622:1;50602:9;:7;:9::i;:::-;50596:23;:27;:99;;;;;;;;;;;;;;;;;50650:9;:7;:9::i;:::-;50661:18;:7;:16;:18::i;:::-;50633:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50596:99;50589:106;;50403:300;;;:::o;50085:113::-;50143:7;50170:20;50184:5;50170:13;:20::i;:::-;50163:27;;50085:113;;;:::o;49182:539::-;48944:10;48931:23;;:9;:23;;;48923:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49301:1:::1;49291:6;;:11;49283:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49340:12;49382:10;49365:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;49355:39;;;;;;49340:54;;49413:50;49433:11;;49413:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49446:10;;49458:4;49413:18;:50::i;:::-;49405:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49540:23;;49528:8;49501:24;49514:10;49501:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;49493:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49627:15;;49610:13;:11;:13::i;:::-;:32;;49602:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49678:35;49688:10;49700:8;49678:35;;;;;;;;;;;::::0;:9:::1;:35::i;:::-;49272:449;49182:539:::0;;;:::o;26089:164::-;26186:4;26210:18;:25;26229:5;26210:25;;;;;;;;;;;;;;;:35;26236:8;26210:35;;;;;;;;;;;;;;;;;;;;;;;;;26203:42;;26089:164;;;;:::o;48067:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3714:201::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3823:1:::1;3803:22;;:8;:22;;;;3795:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3879:28;3898:8;3879:18;:28::i;:::-;3714:201:::0;:::o;2922:98::-;2975:7;3002:10;2995:17;;2922:98;:::o;28111:681::-;28234:19;28240:2;28244:8;28234:5;:19::i;:::-;28313:1;28295:2;:14;;;:19;28291:483;;28335:11;28349:13;;28335:27;;28381:13;28403:8;28397:3;:14;28381:30;;28430:233;28461:62;28500:1;28504:2;28508:7;;;;;;28517:5;28461:30;:62::i;:::-;28456:167;;28559:40;;;;;;;;;;;;;;28456:167;28658:3;28650:5;:11;28430:233;;28745:3;28728:13;;:20;28724:34;;28750:8;;;28724:34;28316:458;;28291:483;28111:681;;;:::o;27234:273::-;27291:4;27347:7;27328:15;:13;:15::i;:::-;:26;;:66;;;;;27381:13;;27371:7;:23;27328:66;:152;;;;;27479:1;13845:8;27432:17;:26;27450:7;27432:26;;;;;;;;;;;;:43;:48;27328:152;27308:172;;27234:273;;;:::o;45793:105::-;45853:7;45880:10;45873:17;;45793:105;:::o;51152:93::-;51209:7;51236:1;51229:8;;51152:93;:::o;20194:1129::-;20261:7;20281:12;20296:7;20281:22;;20364:4;20345:15;:13;:15::i;:::-;:23;20341:915;;20398:13;;20391:4;:20;20387:869;;;20436:14;20453:17;:23;20471:4;20453:23;;;;;;;;;;;;20436:40;;20569:1;13845:8;20542:6;:23;:28;20538:699;;;21061:113;21078:1;21068:6;:11;21061:113;;;21121:17;:25;21139:6;;;;;;;21121:25;;;;;;;;;;;;21112:34;;21061:113;;;21207:6;21200:13;;;;;;20538:699;20413:843;20387:869;20341:915;21284:31;;;;;;;;;;;;;;20194:1129;;;;:::o;33035:652::-;33130:27;33159:23;33200:53;33256:15;33200:71;;33442:7;33436:4;33429:21;33477:22;33471:4;33464:36;33553:4;33547;33537:21;33514:44;;33649:19;33643:26;33624:45;;33380:300;33035:652;;;:::o;33800:645::-;33942:11;34104:15;34098:4;34094:26;34086:34;;34263:15;34252:9;34248:31;34235:44;;34410:15;34399:9;34396:30;34389:4;34378:9;34375:19;34372:55;34362:65;;33800:645;;;;;:::o;44626:159::-;;;;;:::o;42938:309::-;43073:7;43093:16;14246:3;43119:19;:40;;43093:67;;14246:3;43186:31;43197:4;43203:2;43207:9;43186:10;:31::i;:::-;43178:40;;:61;;43171:68;;;42938:309;;;;;:::o;22768:447::-;22848:14;23016:15;23009:5;23005:27;22996:36;;23190:5;23176:11;23152:22;23148:40;23145:51;23138:5;23135:62;23125:72;;22768:447;;;;:::o;45444:158::-;;;;;:::o;3924:191::-;3998:16;4017:6;;;;;;;;;;;3998:25;;4043:8;4034:6;;:17;;;;;;;;;;;;;;;;;;4098:8;4067:40;;4088:8;4067:40;;;;;;;;;;;;3987:128;3924:191;:::o;37893:3063::-;37973:27;38003;38022:7;38003:18;:27::i;:::-;37973:57;;38043:12;38074:19;38043:52;;38109:27;38138:23;38165:28;38185:7;38165:19;:28::i;:::-;38108:85;;;;38210:13;38206:310;;;38331:62;38350:15;38367:4;38373:19;:17;:19::i;:::-;38331:18;:62::i;:::-;38326:178;;38417:43;38434:4;38440:19;:17;:19::i;:::-;38417:16;:43::i;:::-;38412:92;;38469:35;;;;;;;;;;;;;;38412:92;38326:178;38206:310;38528:51;38550:4;38564:1;38568:7;38577:1;38528:21;:51::i;:::-;38672:15;38669:160;;;38812:1;38791:19;38784:30;38669:160;39488:1;13338:3;39459:1;:25;;39458:31;39430:18;:24;39449:4;39430:24;;;;;;;;;;;;;;;;:59;;;;;;;;;;;39756:174;39793:4;39862:53;39877:4;39891:1;39895:19;39862:14;:53::i;:::-;14123:8;13845;39817:41;39816:99;39756:18;:174::i;:::-;39727:17;:26;39745:7;39727:26;;;;;;;;;;;:203;;;;40100:1;14123:8;40050:19;:46;:51;40046:626;;;40122:19;40154:1;40144:7;:11;40122:33;;40311:1;40277:17;:30;40295:11;40277:30;;;;;;;;;;;;:35;40273:384;;;40415:13;;40400:11;:28;40396:242;;40595:19;40562:17;:30;40580:11;40562:30;;;;;;;;;;;:52;;;;40396:242;40273:384;40103:569;40046:626;40727:7;40723:1;40700:35;;40709:4;40700:35;;;;;;;;;;;;40746:50;40767:4;40781:1;40785:7;40794:1;40746:20;:50::i;:::-;40923:12;;:14;;;;;;;;;;;;;37962:2994;;;;37893:3063;;:::o;41448:716::-;41611:4;41657:2;41632:45;;;41678:19;:17;:19::i;:::-;41699:4;41705:7;41714:5;41632:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41628:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41932:1;41915:6;:13;:18;41911:235;;;41961:40;;;;;;;;;;;;;;41911:235;42104:6;42098:13;42089:6;42085:2;42081:15;42074:38;41628:529;41801:54;;;41791:64;;;:6;:64;;;;41784:71;;;41448:716;;;;;;:::o;1539:533::-;1595:13;1635:1;1626:5;:10;1622:53;;;1653:10;;;;;;;;;;;;;;;;;;;;;1622:53;1685:12;1700:5;1685:20;;1716:14;1741:78;1756:1;1748:4;:9;1741:78;;1774:8;;;;;:::i;:::-;;;;1805:2;1797:10;;;;;:::i;:::-;;;1741:78;;;1829:19;1861:6;1851:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829:39;;1879:154;1895:1;1886:5;:10;1879:154;;1923:1;1913:11;;;;;:::i;:::-;;;1990:2;1982:5;:10;;;;:::i;:::-;1969:2;:24;;;;:::i;:::-;1956:39;;1939:6;1946;1939:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2019:2;2010:11;;;;;:::i;:::-;;;1879:154;;;2057:6;2043:21;;;;;1539:533;;;;:::o;18826:176::-;18887:7;13075:13;13212:2;18915:18;:25;18934:5;18915:25;;;;;;;;;;;;;;;;:49;;18914:80;18907:87;;18826:176;;;:::o;86:190::-;211:4;264;235:25;248:5;255:4;235:12;:25::i;:::-;:33;228:40;;86:190;;;;;:::o;29065:1529::-;29130:20;29153:13;;29130:36;;29195:1;29181:16;;:2;:16;;;29177:48;;;29206:19;;;;;;;;;;;;;;29177:48;29252:1;29240:8;:13;29236:44;;;29262:18;;;;;;;;;;;;;;29236:44;29293:61;29323:1;29327:2;29331:12;29345:8;29293:21;:61::i;:::-;29836:1;13212:2;29807:1;:25;;29806:31;29794:8;:44;29768:18;:22;29787:2;29768:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30115:139;30152:2;30206:33;30229:1;30233:2;30237:1;30206:14;:33::i;:::-;30173:30;30194:8;30173:20;:30::i;:::-;:66;30115:18;:139::i;:::-;30081:17;:31;30099:12;30081:31;;;;;;;;;;;:173;;;;30271:15;30289:12;30271:30;;30316:11;30345:8;30330:12;:23;30316:37;;30368:101;30420:9;;;;;;30416:2;30395:35;;30412:1;30395:35;;;;;;;;;;;;30464:3;30454:7;:13;30368:101;;30501:3;30485:13;:19;;;;29542:974;;30526:60;30555:1;30559:2;30563:12;30577:8;30526:20;:60::i;:::-;29119:1475;29065:1529;;:::o;43823:147::-;43960:6;43823:147;;;;;:::o;281:517::-;364:7;384:20;407:4;384:27;;427:9;422:339;446:5;:12;442:1;:16;422:339;;;480:20;503:5;509:1;503:8;;;;;;;;:::i;:::-;;;;;;;;480:31;;546:12;530;:28;526:224;;594:42;609:12;623;594:14;:42::i;:::-;579:57;;526:224;;;692:42;707:12;721;692:14;:42::i;:::-;677:57;;526:224;465:296;460:3;;;;;:::i;:::-;;;;422:339;;;;778:12;771:19;;;281:517;;;;:::o;24598:322::-;24668:14;24899:1;24889:8;24886:15;24861:23;24857:45;24847:55;;24598:322;;;:::o;806:224::-;874:13;937:1;931:4;924:15;966:1;960:4;953:15;1007:4;1001;991:21;982:30;;806:224;;;;:::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:::-;13810:3;13831:67;13895:2;13890:3;13831:67;:::i;:::-;13824:74;;13907:93;13996:3;13907:93;:::i;:::-;14025:2;14020:3;14016:12;14009:19;;13668:366;;;:::o;14040:400::-;14200:3;14221:84;14303:1;14298:3;14221:84;:::i;:::-;14214:91;;14314:93;14403:3;14314:93;:::i;:::-;14432:1;14427:3;14423:11;14416:18;;14040:400;;;:::o;14446:366::-;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:::-;15332:3;15353:67;15417:2;15412:3;15353:67;:::i;:::-;15346:74;;15429:93;15518:3;15429:93;:::i;:::-;15547:2;15542:3;15538:12;15531:19;;15190:366;;;:::o;15562:118::-;15649:24;15667:5;15649:24;:::i;:::-;15644:3;15637:37;15562:118;;:::o;15686:256::-;15798:3;15813:75;15884:3;15875:6;15813:75;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15933:3;15926:10;;15686:256;;;;:::o;15948:701::-;16229:3;16251:95;16342:3;16333:6;16251:95;:::i;:::-;16244:102;;16363:95;16454:3;16445:6;16363:95;:::i;:::-;16356:102;;16475:148;16619:3;16475:148;:::i;:::-;16468:155;;16640:3;16633:10;;15948:701;;;;;:::o;16655:222::-;16748:4;16786:2;16775:9;16771:18;16763:26;;16799:71;16867:1;16856:9;16852:17;16843:6;16799:71;:::i;:::-;16655:222;;;;:::o;16883:640::-;17078:4;17116:3;17105:9;17101:19;17093:27;;17130:71;17198:1;17187:9;17183:17;17174:6;17130:71;:::i;:::-;17211:72;17279:2;17268:9;17264:18;17255:6;17211:72;:::i;:::-;17293;17361:2;17350:9;17346:18;17337:6;17293:72;:::i;:::-;17412:9;17406:4;17402:20;17397:2;17386:9;17382:18;17375:48;17440:76;17511:4;17502:6;17440:76;:::i;:::-;17432:84;;16883:640;;;;;;;:::o;17529:210::-;17616:4;17654:2;17643:9;17639:18;17631:26;;17667:65;17729:1;17718:9;17714:17;17705:6;17667:65;:::i;:::-;17529:210;;;;:::o;17745:222::-;17838:4;17876:2;17865:9;17861:18;17853:26;;17889:71;17957:1;17946:9;17942:17;17933:6;17889:71;:::i;:::-;17745:222;;;;:::o;17973:313::-;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:78;18274:4;18265:6;18201:78;:::i;:::-;18193:86;;17973:313;;;;:::o;18292:419::-;18458:4;18496:2;18485:9;18481:18;18473:26;;18545:9;18539:4;18535:20;18531:1;18520:9;18516:17;18509:47;18573:131;18699:4;18573:131;:::i;:::-;18565:139;;18292:419;;;:::o;18717:::-;18883:4;18921:2;18910:9;18906:18;18898:26;;18970:9;18964:4;18960:20;18956:1;18945:9;18941:17;18934:47;18998:131;19124:4;18998:131;:::i;:::-;18990:139;;18717:419;;;:::o;19142:::-;19308:4;19346:2;19335:9;19331:18;19323:26;;19395:9;19389:4;19385:20;19381:1;19370:9;19366:17;19359:47;19423:131;19549:4;19423:131;:::i;:::-;19415:139;;19142:419;;;:::o;19567:::-;19733:4;19771:2;19760:9;19756:18;19748:26;;19820:9;19814:4;19810:20;19806:1;19795:9;19791:17;19784:47;19848:131;19974:4;19848:131;:::i;:::-;19840:139;;19567:419;;;:::o;19992:::-;20158:4;20196:2;20185:9;20181:18;20173:26;;20245:9;20239:4;20235:20;20231:1;20220:9;20216:17;20209:47;20273:131;20399:4;20273:131;:::i;:::-;20265:139;;19992:419;;;:::o;20417:::-;20583:4;20621:2;20610:9;20606:18;20598:26;;20670:9;20664:4;20660:20;20656:1;20645:9;20641:17;20634:47;20698:131;20824:4;20698:131;:::i;:::-;20690:139;;20417:419;;;:::o;20842:::-;21008:4;21046:2;21035:9;21031:18;21023:26;;21095:9;21089:4;21085:20;21081:1;21070:9;21066:17;21059:47;21123:131;21249:4;21123:131;:::i;:::-;21115:139;;20842:419;;;:::o;21267:::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21520:9;21514:4;21510:20;21506:1;21495:9;21491:17;21484:47;21548:131;21674:4;21548:131;:::i;:::-;21540:139;;21267:419;;;:::o;21692:::-;21858:4;21896:2;21885:9;21881:18;21873:26;;21945:9;21939:4;21935:20;21931:1;21920:9;21916:17;21909:47;21973:131;22099:4;21973:131;:::i;:::-;21965:139;;21692:419;;;:::o;22117:::-;22283:4;22321:2;22310:9;22306:18;22298:26;;22370:9;22364:4;22360:20;22356:1;22345:9;22341:17;22334:47;22398:131;22524:4;22398:131;:::i;:::-;22390:139;;22117:419;;;:::o;22542:::-;22708:4;22746:2;22735:9;22731:18;22723:26;;22795:9;22789:4;22785:20;22781:1;22770:9;22766:17;22759:47;22823:131;22949:4;22823:131;:::i;:::-;22815:139;;22542:419;;;:::o;22967:222::-;23060:4;23098:2;23087:9;23083:18;23075:26;;23111:71;23179:1;23168:9;23164:17;23155:6;23111:71;:::i;:::-;22967:222;;;;:::o;23195:129::-;23229:6;23256:20;;:::i;:::-;23246:30;;23285:33;23313:4;23305:6;23285:33;:::i;:::-;23195:129;;;:::o;23330:75::-;23363:6;23396:2;23390:9;23380:19;;23330:75;:::o;23411:307::-;23472:4;23562:18;23554:6;23551:30;23548:56;;;23584:18;;:::i;:::-;23548:56;23622:29;23644:6;23622:29;:::i;:::-;23614:37;;23706:4;23700;23696:15;23688:23;;23411:307;;;:::o;23724:308::-;23786:4;23876:18;23868:6;23865:30;23862:56;;;23898:18;;:::i;:::-;23862:56;23936:29;23958:6;23936:29;:::i;:::-;23928:37;;24020:4;24014;24010:15;24002:23;;23724:308;;;:::o;24038:98::-;24089:6;24123:5;24117:12;24107:22;;24038:98;;;:::o;24142:99::-;24194:6;24228:5;24222:12;24212:22;;24142:99;;;:::o;24247:168::-;24330:11;24364:6;24359:3;24352:19;24404:4;24399:3;24395:14;24380:29;;24247:168;;;;:::o;24421:169::-;24505:11;24539:6;24534:3;24527:19;24579:4;24574:3;24570:14;24555:29;;24421:169;;;;:::o;24596:148::-;24698:11;24735:3;24720:18;;24596:148;;;;:::o;24750:305::-;24790:3;24809:20;24827:1;24809:20;:::i;:::-;24804:25;;24843:20;24861:1;24843:20;:::i;:::-;24838:25;;24997:1;24929:66;24925:74;24922:1;24919:81;24916:107;;;25003:18;;:::i;:::-;24916:107;25047:1;25044;25040:9;25033:16;;24750:305;;;;:::o;25061:185::-;25101:1;25118:20;25136:1;25118:20;:::i;:::-;25113:25;;25152:20;25170:1;25152:20;:::i;:::-;25147:25;;25191:1;25181:35;;25196:18;;:::i;:::-;25181:35;25238:1;25235;25231:9;25226:14;;25061:185;;;;:::o;25252:191::-;25292:4;25312:20;25330:1;25312:20;:::i;:::-;25307:25;;25346:20;25364:1;25346:20;:::i;:::-;25341:25;;25385:1;25382;25379:8;25376:34;;;25390:18;;:::i;:::-;25376:34;25435:1;25432;25428:9;25420:17;;25252:191;;;;:::o;25449:96::-;25486:7;25515:24;25533:5;25515:24;:::i;:::-;25504:35;;25449:96;;;:::o;25551:90::-;25585:7;25628:5;25621:13;25614:21;25603:32;;25551:90;;;:::o;25647:77::-;25684:7;25713:5;25702:16;;25647:77;;;:::o;25730:149::-;25766:7;25806:66;25799:5;25795:78;25784:89;;25730:149;;;:::o;25885:126::-;25922:7;25962:42;25955:5;25951:54;25940:65;;25885:126;;;:::o;26017:77::-;26054:7;26083:5;26072:16;;26017:77;;;:::o;26100:154::-;26184:6;26179:3;26174;26161:30;26246:1;26237:6;26232:3;26228:16;26221:27;26100:154;;;:::o;26260:307::-;26328:1;26338:113;26352:6;26349:1;26346:13;26338:113;;;26437:1;26432:3;26428:11;26422:18;26418:1;26413:3;26409:11;26402:39;26374:2;26371:1;26367:10;26362:15;;26338:113;;;26469:6;26466:1;26463:13;26460:101;;;26549:1;26540:6;26535:3;26531:16;26524:27;26460:101;26309:258;26260:307;;;:::o;26573:320::-;26617:6;26654:1;26648:4;26644:12;26634:22;;26701:1;26695:4;26691:12;26722:18;26712:81;;26778:4;26770:6;26766:17;26756:27;;26712:81;26840:2;26832:6;26829:14;26809:18;26806:38;26803:84;;;26859:18;;:::i;:::-;26803:84;26624:269;26573:320;;;:::o;26899:281::-;26982:27;27004:4;26982:27;:::i;:::-;26974:6;26970:40;27112:6;27100:10;27097:22;27076:18;27064:10;27061:34;27058:62;27055:88;;;27123:18;;:::i;:::-;27055:88;27163:10;27159:2;27152:22;26942:238;26899:281;;:::o;27186:233::-;27225:3;27248:24;27266:5;27248:24;:::i;:::-;27239:33;;27294:66;27287:5;27284:77;27281:103;;;27364:18;;:::i;:::-;27281:103;27411:1;27404:5;27400:13;27393:20;;27186:233;;;:::o;27425:100::-;27464:7;27493:26;27513:5;27493:26;:::i;:::-;27482:37;;27425:100;;;:::o;27531:94::-;27570:7;27599:20;27613:5;27599:20;:::i;:::-;27588:31;;27531:94;;;:::o;27631:176::-;27663:1;27680:20;27698:1;27680:20;:::i;:::-;27675:25;;27714:20;27732:1;27714:20;:::i;:::-;27709:25;;27753:1;27743:35;;27758:18;;:::i;:::-;27743:35;27799:1;27796;27792:9;27787:14;;27631:176;;;;:::o;27813:180::-;27861:77;27858:1;27851:88;27958:4;27955:1;27948:15;27982:4;27979:1;27972:15;27999:180;28047:77;28044:1;28037:88;28144:4;28141:1;28134:15;28168:4;28165:1;28158:15;28185:180;28233:77;28230:1;28223:88;28330:4;28327:1;28320:15;28354:4;28351:1;28344:15;28371:180;28419:77;28416:1;28409:88;28516:4;28513:1;28506:15;28540:4;28537:1;28530:15;28557:180;28605:77;28602:1;28595:88;28702:4;28699:1;28692:15;28726:4;28723:1;28716:15;28743:117;28852:1;28849;28842:12;28866:117;28975:1;28972;28965:12;28989:117;29098:1;29095;29088:12;29112:117;29221:1;29218;29211:12;29235:117;29344:1;29341;29334:12;29358:117;29467:1;29464;29457:12;29481:102;29522:6;29573:2;29569:7;29564:2;29557:5;29553:14;29549:28;29539:38;;29481:102;;;:::o;29589:94::-;29622:8;29670:5;29666:2;29662:14;29641:35;;29589:94;;;:::o;29689:172::-;29829:24;29825:1;29817:6;29813:14;29806:48;29689:172;:::o;29867:225::-;30007:34;30003:1;29995:6;29991:14;29984:58;30076:8;30071:2;30063:6;30059:15;30052:33;29867:225;:::o;30098:235::-;30238:34;30234:1;30226:6;30222:14;30215:58;30307:18;30302:2;30294:6;30290:15;30283:43;30098:235;:::o;30339:160::-;30479:12;30475:1;30467:6;30463:14;30456:36;30339:160;:::o;30505:180::-;30645:32;30641:1;30633:6;30629:14;30622:56;30505:180;:::o;30691:165::-;30831:17;30827:1;30819:6;30815:14;30808:41;30691:165;:::o;30862:177::-;31002:29;30998:1;30990:6;30986:14;30979:53;30862:177;:::o;31045:167::-;31185:19;31181:1;31173:6;31169:14;31162:43;31045:167;:::o;31218:155::-;31358:7;31354:1;31346:6;31342:14;31335:31;31218:155;:::o;31379:182::-;31519:34;31515:1;31507:6;31503:14;31496:58;31379:182;:::o;31567:174::-;31707:26;31703:1;31695:6;31691:14;31684:50;31567:174;:::o;31747:173::-;31887:25;31883:1;31875:6;31871:14;31864:49;31747:173;:::o;31926:122::-;31999:24;32017:5;31999:24;:::i;:::-;31992:5;31989:35;31979:63;;32038:1;32035;32028:12;31979:63;31926:122;:::o;32054:116::-;32124:21;32139:5;32124:21;:::i;:::-;32117:5;32114:32;32104:60;;32160:1;32157;32150:12;32104:60;32054:116;:::o;32176:122::-;32249:24;32267:5;32249:24;:::i;:::-;32242:5;32239:35;32229:63;;32288:1;32285;32278:12;32229:63;32176:122;:::o;32304:120::-;32376:23;32393:5;32376:23;:::i;:::-;32369:5;32366:34;32356:62;;32414:1;32411;32404:12;32356:62;32304:120;:::o;32430:122::-;32503:24;32521:5;32503:24;:::i;:::-;32496:5;32493:35;32483:63;;32542:1;32539;32532:12;32483:63;32430:122;:::o

Swarm Source

ipfs://1f1a54715ffdf3efe45fd26b43c6d3d6bfe6c22a807a4e1d0823d4904102f09c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.