ETH Price: $1,872.02 (+1.24%)
 

Overview

Max Total Supply

11,111 CMCNFT

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CMCNFT
0x29043554f9230E6D1628F0e52Fb0B9301afB3B50
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:
CryptoMafiaCrew

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Created by: [email protected]

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    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);
    }

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

}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

/**
 * Creator: Chiru Labs
 *
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxSupply;
    uint256 internal immutable maxBatchSize;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxSupply_
    ) {
        require(maxSupply_ > 0, 'ERC721A: max supply must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxSupply = maxSupply_;
        maxBatchSize = 5; // we need this to make the contract working more effective
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @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 tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require((quantity + currentIndex) <= maxSupply, 'ERC721A: quantity to mint too high');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );

            // hack to make the contract working with a grater batch size
            if (i % maxBatchSize == 0) {
                _ownerships[updatedIndex] = TokenOwnership(to, uint64(block.timestamp));
                _afterTokenTransfers(address(0), to, updatedIndex, quantity);
            }

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

/**
 * Crypto Mafia Crew Contract
 */
contract CryptoMafiaCrew is ERC721A, Ownable {
    string private _baseTokenURI;
    using Strings for uint256;

    constructor() ERC721A("Crypto Mafia Crew", "CMCNFT", 11111) { }

    /**
     * This is the json with the contract data shown at the collection
     */
    function contractURI() public pure returns (string memory) {
        return 'https://api.cryptomafiacrew.com/nft-contract';
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        uint256 _id = tokenId + 1;
        return string(
                abi.encodePacked(
                    'ipfs://QmPhXqcV44QpUJRpFPRsywCKSZuGFVqk7DEWpcE9fHPx52/cmc_metadata_',
                    _id.toString(),
                    '.json'
                )
            );
    }

    /**
     * Mint an amount of tokens
     */
    function batchMint(uint256 quantity) public onlyOwner {
        _safeMint(msg.sender, quantity);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60c0604052600080553480156200001557600080fd5b506040518060400160405280601181526020017043727970746f204d61666961204372657760781b8152506040518060400160405280600681526020016510d350d3919560d21b815250612b6760008111620000c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a206d617820737570706c79206d757374206265206e6f6e7a60448201526265726f60e81b606482015260840160405180910390fd5b8251620000d890600190602086019062000142565b508151620000ee90600290602085019062000142565b506080525050600560a052600780546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000225565b8280546200015090620001e8565b90600052602060002090601f016020900481019282620001745760008555620001bf565b82601f106200018f57805160ff1916838001178555620001bf565b82800160010185558215620001bf579182015b82811115620001bf578251825591602001919060010190620001a2565b50620001cd929150620001d1565b5090565b5b80821115620001cd5760008155600101620001d2565b600181811c90821680620001fd57607f821691505b602082108114156200021f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611c056200025960003960008181610fd8015281816110020152611599015260006113e70152611c056000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a22cb4651161007c578063a22cb46514610271578063b88d4fde14610284578063c87b56dd14610297578063e8a3d485146102aa578063e985e9c5146102b2578063f2fde38b146102ee57600080fd5b806370a082311461022a578063715018a61461023d5780638467be0d146102455780638da5cb5b1461025857806395d89b411461026957600080fd5b806323b872dd116100ff57806323b872dd146101cb5780632f745c59146101de57806342842e0e146101f15780634f6ccce7146102045780636352211e1461021757600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a36600461183d565b610301565b60405190151581526020015b60405180910390f35b61016c61036e565b60405161015b919061197f565b61018c610187366004611877565b610400565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611813565b610490565b005b6000545b60405190815260200161015b565b6101b76101d93660046116bf565b6105a8565b6101bd6101ec366004611813565b6105b3565b6101b76101ff3660046116bf565b610721565b6101bd610212366004611877565b61073c565b61018c610225366004611877565b61079e565b6101bd61023836600461166a565b6107b0565b6101b7610841565b6101b7610253366004611877565b6108b5565b6007546001600160a01b031661018c565b61016c6108ec565b6101b761027f3660046117d7565b6108fb565b6101b76102923660046116fb565b6109c0565b61016c6102a5366004611877565b6109f9565b61016c610aa9565b61014f6102c036600461168c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101b76102fc36600461166a565b610ac9565b60006001600160e01b031982166380ac58cd60e01b148061033257506001600160e01b03198216635b5e139f60e01b145b8061034d57506001600160e01b0319821663780e9d6360e01b145b8061036857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461037d90611acb565b80601f01602080910402602001604051908101604052809291908181526020018280546103a990611acb565b80156103f65780601f106103cb576101008083540402835291602001916103f6565b820191906000526020600020905b8154815290600101906020018083116103d957829003601f168201915b5050505050905090565b600061040d826000541190565b6104745760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061049b8261079e565b9050806001600160a01b0316836001600160a01b0316141561050a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161046b565b336001600160a01b0382161480610526575061052681336102c0565b6105985760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161046b565b6105a3838383610bb4565b505050565b6105a3838383610c10565b60006105be836107b0565b82106106175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161046b565b600080549080805b838110156106c1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561067257805192505b876001600160a01b0316836001600160a01b031614156106ae57868414156106a05750935061036892505050565b836106aa81611b06565b9450505b50806106b981611b06565b91505061061f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161046b565b6105a3838383604051806020016040528060008152506109c0565b60008054821061079a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161046b565b5090565b60006107a982610f56565b5192915050565b60006001600160a01b03821661081c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161046b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461086b5760405162461bcd60e51b815260040161046b90611992565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146108df5760405162461bcd60e51b815260040161046b90611992565b6108e93382611100565b50565b60606002805461037d90611acb565b6001600160a01b0382163314156109545760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161046b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109cb848484610c10565b6109d78484848461111e565b6109f35760405162461bcd60e51b815260040161046b906119c7565b50505050565b6060610a06826000541190565b610a6a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161046b565b6000610a77836001611a45565b9050610a828161122c565b604051602001610a9291906118bc565b604051602081830303815290604052915050919050565b60606040518060600160405280602c8152602001611ba4602c9139905090565b6007546001600160a01b03163314610af35760405162461bcd60e51b815260040161046b90611992565b6001600160a01b038116610b585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046b565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c1b82610f56565b80519091506000906001600160a01b0316336001600160a01b03161480610c52575033610c4784610400565b6001600160a01b0316145b80610c6457508151610c6490336102c0565b905080610cce5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161046b565b846001600160a01b031682600001516001600160a01b031614610d425760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161046b565b6001600160a01b038416610da65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161046b565b610db66000848460000151610bb4565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590610e7b908590611a45565b6000818152600360205260409020549091506001600160a01b0316610f0d57610ea5816000541190565b15610f0d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152610f75826000541190565b610fd45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161046b565b60007f00000000000000000000000000000000000000000000000000000000000000008310611035576110277f000000000000000000000000000000000000000000000000000000000000000084611a71565b611032906001611a45565b90505b825b81811061109f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561108c57949350505050565b508061109781611ab4565b915050611037565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161046b565b61111a82826040518060200160405280600081525061132a565b5050565b60006001600160a01b0384163b1561122057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611162903390899088908890600401611942565b602060405180830381600087803b15801561117c57600080fd5b505af19250505080156111ac575060408051601f3d908101601f191682019092526111a99181019061185a565b60015b611206573d8080156111da576040519150601f19603f3d011682016040523d82523d6000602084013e6111df565b606091505b5080516111fe5760405162461bcd60e51b815260040161046b906119c7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611224565b5060015b949350505050565b6060816112505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561127a578061126481611b06565b91506112739050600a83611a5d565b9150611254565b60008167ffffffffffffffff81111561129557611295611b77565b6040519080825280601f01601f1916602001820160405280156112bf576020820181803683370190505b5090505b8415611224576112d4600183611a71565b91506112e1600a86611b21565b6112ec906030611a45565b60f81b81838151811061130157611301611b61565b60200101906001600160f81b031916908160001a905350611323600a86611a5d565b94506112c3565b6000546001600160a01b03841661138d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161046b565b611398816000541190565b156113e55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161046b565b7f0000000000000000000000000000000000000000000000000000000000000000600054846114149190611a45565b111561146d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161046b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906114c9908790611a1a565b6001600160801b031681526020018583602001516114e79190611a1a565b6001600160801b039081169091526001600160a01b03871660009081526004602090815260408220845194909101518316600160801b029390921692909217905582905b858110156116435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611578600088848861111e565b6115945760405162461bcd60e51b815260040161046b906119c7565b6115be7f000000000000000000000000000000000000000000000000000000000000000082611b21565b611623576040805180820182526001600160a01b03808a16825267ffffffffffffffff428116602080850191825260008881526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116239050565b8161162d81611b06565b925050808061163b90611b06565b91505061152b565b506000555050505050565b80356001600160a01b038116811461166557600080fd5b919050565b60006020828403121561167c57600080fd5b6116858261164e565b9392505050565b6000806040838503121561169f57600080fd5b6116a88361164e565b91506116b66020840161164e565b90509250929050565b6000806000606084860312156116d457600080fd5b6116dd8461164e565b92506116eb6020850161164e565b9150604084013590509250925092565b6000806000806080858703121561171157600080fd5b61171a8561164e565b93506117286020860161164e565b925060408501359150606085013567ffffffffffffffff8082111561174c57600080fd5b818701915087601f83011261176057600080fd5b81358181111561177257611772611b77565b604051601f8201601f19908116603f0116810190838211818310171561179a5761179a611b77565b816040528281528a60208487010111156117b357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117ea57600080fd5b6117f38361164e565b91506020830135801515811461180857600080fd5b809150509250929050565b6000806040838503121561182657600080fd5b61182f8361164e565b946020939093013593505050565b60006020828403121561184f57600080fd5b813561168581611b8d565b60006020828403121561186c57600080fd5b815161168581611b8d565b60006020828403121561188957600080fd5b5035919050565b600081518084526118a8816020860160208601611a88565b601f01601f19169290920160200192915050565b7f697066733a2f2f516d50685871635634345170554a5270465052737977434b5381527f5a75474656716b37444557706345396648507835322f636d635f6d657461646160208201526274615f60e81b604082015260008251611926816043850160208701611a88565b64173539b7b760d91b6043939091019283015250604801919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061197590830184611890565b9695505050505050565b6020815260006116856020830184611890565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611a3c57611a3c611b35565b01949350505050565b60008219821115611a5857611a58611b35565b500190565b600082611a6c57611a6c611b4b565b500490565b600082821015611a8357611a83611b35565b500390565b60005b83811015611aa3578181015183820152602001611a8b565b838111156109f35750506000910152565b600081611ac357611ac3611b35565b506000190190565b600181811c90821680611adf57607f821691505b60208210811415611b0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1a57611b1a611b35565b5060010190565b600082611b3057611b30611b4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e957600080fdfe68747470733a2f2f6170692e63727970746f6d61666961637265772e636f6d2f6e66742d636f6e7472616374a2646970667358221220815bb117ddc9ffd3df891b782743b87d551fe518b59f65d38cbe119a51ffc0db64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a22cb4651161007c578063a22cb46514610271578063b88d4fde14610284578063c87b56dd14610297578063e8a3d485146102aa578063e985e9c5146102b2578063f2fde38b146102ee57600080fd5b806370a082311461022a578063715018a61461023d5780638467be0d146102455780638da5cb5b1461025857806395d89b411461026957600080fd5b806323b872dd116100ff57806323b872dd146101cb5780632f745c59146101de57806342842e0e146101f15780634f6ccce7146102045780636352211e1461021757600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a36600461183d565b610301565b60405190151581526020015b60405180910390f35b61016c61036e565b60405161015b919061197f565b61018c610187366004611877565b610400565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611813565b610490565b005b6000545b60405190815260200161015b565b6101b76101d93660046116bf565b6105a8565b6101bd6101ec366004611813565b6105b3565b6101b76101ff3660046116bf565b610721565b6101bd610212366004611877565b61073c565b61018c610225366004611877565b61079e565b6101bd61023836600461166a565b6107b0565b6101b7610841565b6101b7610253366004611877565b6108b5565b6007546001600160a01b031661018c565b61016c6108ec565b6101b761027f3660046117d7565b6108fb565b6101b76102923660046116fb565b6109c0565b61016c6102a5366004611877565b6109f9565b61016c610aa9565b61014f6102c036600461168c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101b76102fc36600461166a565b610ac9565b60006001600160e01b031982166380ac58cd60e01b148061033257506001600160e01b03198216635b5e139f60e01b145b8061034d57506001600160e01b0319821663780e9d6360e01b145b8061036857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461037d90611acb565b80601f01602080910402602001604051908101604052809291908181526020018280546103a990611acb565b80156103f65780601f106103cb576101008083540402835291602001916103f6565b820191906000526020600020905b8154815290600101906020018083116103d957829003601f168201915b5050505050905090565b600061040d826000541190565b6104745760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061049b8261079e565b9050806001600160a01b0316836001600160a01b0316141561050a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161046b565b336001600160a01b0382161480610526575061052681336102c0565b6105985760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161046b565b6105a3838383610bb4565b505050565b6105a3838383610c10565b60006105be836107b0565b82106106175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161046b565b600080549080805b838110156106c1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561067257805192505b876001600160a01b0316836001600160a01b031614156106ae57868414156106a05750935061036892505050565b836106aa81611b06565b9450505b50806106b981611b06565b91505061061f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161046b565b6105a3838383604051806020016040528060008152506109c0565b60008054821061079a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161046b565b5090565b60006107a982610f56565b5192915050565b60006001600160a01b03821661081c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161046b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461086b5760405162461bcd60e51b815260040161046b90611992565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146108df5760405162461bcd60e51b815260040161046b90611992565b6108e93382611100565b50565b60606002805461037d90611acb565b6001600160a01b0382163314156109545760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161046b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109cb848484610c10565b6109d78484848461111e565b6109f35760405162461bcd60e51b815260040161046b906119c7565b50505050565b6060610a06826000541190565b610a6a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161046b565b6000610a77836001611a45565b9050610a828161122c565b604051602001610a9291906118bc565b604051602081830303815290604052915050919050565b60606040518060600160405280602c8152602001611ba4602c9139905090565b6007546001600160a01b03163314610af35760405162461bcd60e51b815260040161046b90611992565b6001600160a01b038116610b585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046b565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c1b82610f56565b80519091506000906001600160a01b0316336001600160a01b03161480610c52575033610c4784610400565b6001600160a01b0316145b80610c6457508151610c6490336102c0565b905080610cce5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161046b565b846001600160a01b031682600001516001600160a01b031614610d425760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161046b565b6001600160a01b038416610da65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161046b565b610db66000848460000151610bb4565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590610e7b908590611a45565b6000818152600360205260409020549091506001600160a01b0316610f0d57610ea5816000541190565b15610f0d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152610f75826000541190565b610fd45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161046b565b60007f00000000000000000000000000000000000000000000000000000000000000058310611035576110277f000000000000000000000000000000000000000000000000000000000000000584611a71565b611032906001611a45565b90505b825b81811061109f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561108c57949350505050565b508061109781611ab4565b915050611037565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161046b565b61111a82826040518060200160405280600081525061132a565b5050565b60006001600160a01b0384163b1561122057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611162903390899088908890600401611942565b602060405180830381600087803b15801561117c57600080fd5b505af19250505080156111ac575060408051601f3d908101601f191682019092526111a99181019061185a565b60015b611206573d8080156111da576040519150601f19603f3d011682016040523d82523d6000602084013e6111df565b606091505b5080516111fe5760405162461bcd60e51b815260040161046b906119c7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611224565b5060015b949350505050565b6060816112505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561127a578061126481611b06565b91506112739050600a83611a5d565b9150611254565b60008167ffffffffffffffff81111561129557611295611b77565b6040519080825280601f01601f1916602001820160405280156112bf576020820181803683370190505b5090505b8415611224576112d4600183611a71565b91506112e1600a86611b21565b6112ec906030611a45565b60f81b81838151811061130157611301611b61565b60200101906001600160f81b031916908160001a905350611323600a86611a5d565b94506112c3565b6000546001600160a01b03841661138d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161046b565b611398816000541190565b156113e55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161046b565b7f0000000000000000000000000000000000000000000000000000000000002b67600054846114149190611a45565b111561146d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161046b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906114c9908790611a1a565b6001600160801b031681526020018583602001516114e79190611a1a565b6001600160801b039081169091526001600160a01b03871660009081526004602090815260408220845194909101518316600160801b029390921692909217905582905b858110156116435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611578600088848861111e565b6115945760405162461bcd60e51b815260040161046b906119c7565b6115be7f000000000000000000000000000000000000000000000000000000000000000582611b21565b611623576040805180820182526001600160a01b03808a16825267ffffffffffffffff428116602080850191825260008881526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116239050565b8161162d81611b06565b925050808061163b90611b06565b91505061152b565b506000555050505050565b80356001600160a01b038116811461166557600080fd5b919050565b60006020828403121561167c57600080fd5b6116858261164e565b9392505050565b6000806040838503121561169f57600080fd5b6116a88361164e565b91506116b66020840161164e565b90509250929050565b6000806000606084860312156116d457600080fd5b6116dd8461164e565b92506116eb6020850161164e565b9150604084013590509250925092565b6000806000806080858703121561171157600080fd5b61171a8561164e565b93506117286020860161164e565b925060408501359150606085013567ffffffffffffffff8082111561174c57600080fd5b818701915087601f83011261176057600080fd5b81358181111561177257611772611b77565b604051601f8201601f19908116603f0116810190838211818310171561179a5761179a611b77565b816040528281528a60208487010111156117b357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117ea57600080fd5b6117f38361164e565b91506020830135801515811461180857600080fd5b809150509250929050565b6000806040838503121561182657600080fd5b61182f8361164e565b946020939093013593505050565b60006020828403121561184f57600080fd5b813561168581611b8d565b60006020828403121561186c57600080fd5b815161168581611b8d565b60006020828403121561188957600080fd5b5035919050565b600081518084526118a8816020860160208601611a88565b601f01601f19169290920160200192915050565b7f697066733a2f2f516d50685871635634345170554a5270465052737977434b5381527f5a75474656716b37444557706345396648507835322f636d635f6d657461646160208201526274615f60e81b604082015260008251611926816043850160208701611a88565b64173539b7b760d91b6043939091019283015250604801919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061197590830184611890565b9695505050505050565b6020815260006116856020830184611890565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611a3c57611a3c611b35565b01949350505050565b60008219821115611a5857611a58611b35565b500190565b600082611a6c57611a6c611b4b565b500490565b600082821015611a8357611a83611b35565b500390565b60005b83811015611aa3578181015183820152602001611a8b565b838111156109f35750506000910152565b600081611ac357611ac3611b35565b506000190190565b600181811c90821680611adf57607f821691505b60208210811415611b0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1a57611b1a611b35565b5060010190565b600082611b3057611b30611b4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e957600080fdfe68747470733a2f2f6170692e63727970746f6d61666961637265772e636f6d2f6e66742d636f6e7472616374a2646970667358221220815bb117ddc9ffd3df891b782743b87d551fe518b59f65d38cbe119a51ffc0db64736f6c63430008070033

Deployed Bytecode Sourcemap

37753:1115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25385:356;;;;;;:::i;:::-;;:::i;:::-;;;5266:14:1;;5259:22;5241:41;;5229:2;5214:18;25385:356:0;;;;;;;;27174:100;;;:::i;:::-;;;;;;;:::i;28735:214::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4564:32:1;;;4546:51;;4534:2;4519:18;28735:214:0;4400:203:1;28256:413:0;;;;;;:::i;:::-;;:::i;:::-;;23826:100;23879:7;23906:12;23826:100;;;13721:25:1;;;13709:2;13694:18;23826:100:0;13575:177:1;29611:162:0;;;;;;:::i;:::-;;:::i;24490:823::-;;;;;;:::i;:::-;;:::i;29844:177::-;;;;;;:::i;:::-;;:::i;24003:187::-;;;;;;:::i;:::-;;:::i;26983:124::-;;;;;;:::i;:::-;;:::i;25805:221::-;;;;;;:::i;:::-;;:::i;2638:148::-;;;:::i;38761:104::-;;;;;;:::i;:::-;;:::i;1987:87::-;2060:6;;-1:-1:-1;;;;;2060:6:0;1987:87;;27343:104;;;:::i;29021:288::-;;;;;;:::i;:::-;;:::i;30092:355::-;;;;;;:::i;:::-;;:::i;38237:465::-;;;;;;:::i;:::-;;:::i;38035:131::-;;;:::i;29380:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29501:25:0;;;29477:4;29501:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29380:164;2941:244;;;;;;:::i;:::-;;:::i;25385:356::-;25487:4;-1:-1:-1;;;;;;25520:40:0;;-1:-1:-1;;;25520:40:0;;:101;;-1:-1:-1;;;;;;;25573:48:0;;-1:-1:-1;;;25573:48:0;25520:101;:164;;;-1:-1:-1;;;;;;;25634:50:0;;-1:-1:-1;;;25634:50:0;25520:164;:213;;;-1:-1:-1;;;;;;;;;;21595:40:0;;;25697:36;25504:229;25385:356;-1:-1:-1;;25385:356:0:o;27174:100::-;27228:13;27261:5;27254:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27174:100;:::o;28735:214::-;28803:7;28831:16;28839:7;30759:4;30793:12;-1:-1:-1;30783:22:0;30702:111;28831:16;28823:74;;;;-1:-1:-1;;;28823:74:0;;12960:2:1;28823:74:0;;;12942:21:1;12999:2;12979:18;;;12972:30;13038:34;13018:18;;;13011:62;-1:-1:-1;;;13089:18:1;;;13082:43;13142:19;;28823:74:0;;;;;;;;;-1:-1:-1;28917:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28917:24:0;;28735:214::o;28256:413::-;28329:13;28345:24;28361:7;28345:15;:24::i;:::-;28329:40;;28394:5;-1:-1:-1;;;;;28388:11:0;:2;-1:-1:-1;;;;;28388:11:0;;;28380:58;;;;-1:-1:-1;;;28380:58:0;;10546:2:1;28380:58:0;;;10528:21:1;10585:2;10565:18;;;10558:30;10624:34;10604:18;;;10597:62;-1:-1:-1;;;10675:18:1;;;10668:32;10717:19;;28380:58:0;10344:398:1;28380:58:0;711:10;-1:-1:-1;;;;;28473:21:0;;;;:62;;-1:-1:-1;28498:37:0;28515:5;711:10;29380:164;:::i;28498:37::-;28451:169;;;;-1:-1:-1;;;28451:169:0;;7750:2:1;28451:169:0;;;7732:21:1;7789:2;7769:18;;;7762:30;7828:34;7808:18;;;7801:62;7899:27;7879:18;;;7872:55;7944:19;;28451:169:0;7548:421:1;28451:169:0;28633:28;28642:2;28646:7;28655:5;28633:8;:28::i;:::-;28318:351;28256:413;;:::o;29611:162::-;29737:28;29747:4;29753:2;29757:7;29737:9;:28::i;24490:823::-;24579:7;24615:16;24625:5;24615:9;:16::i;:::-;24607:5;:24;24599:71;;;;-1:-1:-1;;;24599:71:0;;5719:2:1;24599:71:0;;;5701:21:1;5758:2;5738:18;;;5731:30;5797:34;5777:18;;;5770:62;-1:-1:-1;;;5848:18:1;;;5841:32;5890:19;;24599:71:0;5517:398:1;24599:71:0;24681:22;23906:12;;;24681:22;;24813:426;24837:14;24833:1;:18;24813:426;;;24873:31;24907:14;;;:11;:14;;;;;;;;;24873:48;;;;;;;;;-1:-1:-1;;;;;24873:48:0;;;;;-1:-1:-1;;;24873:48:0;;;;;;;;;;;;24940:28;24936:103;;25009:14;;;-1:-1:-1;24936:103:0;25078:5;-1:-1:-1;;;;;25057:26:0;:17;-1:-1:-1;;;;;25057:26:0;;25053:175;;;25123:5;25108:11;:20;25104:77;;;-1:-1:-1;25160:1:0;-1:-1:-1;25153:8:0;;-1:-1:-1;;;25153:8:0;25104:77;25199:13;;;;:::i;:::-;;;;25053:175;-1:-1:-1;24853:3:0;;;;:::i;:::-;;;;24813:426;;;-1:-1:-1;25249:56:0;;-1:-1:-1;;;25249:56:0;;12129:2:1;25249:56:0;;;12111:21:1;12168:2;12148:18;;;12141:30;12207:34;12187:18;;;12180:62;-1:-1:-1;;;12258:18:1;;;12251:44;12312:19;;25249:56:0;11927:410:1;29844:177:0;29974:39;29991:4;29997:2;30001:7;29974:39;;;;;;;;;;;;:16;:39::i;24003:187::-;24070:7;23906:12;;24098:5;:21;24090:69;;;;-1:-1:-1;;;24090:69:0;;6940:2:1;24090:69:0;;;6922:21:1;6979:2;6959:18;;;6952:30;7018:34;6998:18;;;6991:62;-1:-1:-1;;;7069:18:1;;;7062:33;7112:19;;24090:69:0;6738:399:1;24090:69:0;-1:-1:-1;24177:5:0;24003:187::o;26983:124::-;27047:7;27074:20;27086:7;27074:11;:20::i;:::-;:25;;26983:124;-1:-1:-1;;26983:124:0:o;25805:221::-;25869:7;-1:-1:-1;;;;;25897:19:0;;25889:75;;;;-1:-1:-1;;;25889:75:0;;8176:2:1;25889:75:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:34;8234:18;;;8227:62;-1:-1:-1;;;8305:18:1;;;8298:41;8356:19;;25889:75:0;7974:407:1;25889:75:0;-1:-1:-1;;;;;;25990:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25990:27:0;;25805:221::o;2638:148::-;2060:6;;-1:-1:-1;;;;;2060:6:0;711:10;2207:23;2199:68;;;;-1:-1:-1;;;2199:68:0;;;;;;;:::i;:::-;2729:6:::1;::::0;2708:40:::1;::::0;2745:1:::1;::::0;-1:-1:-1;;;;;2729:6:0::1;::::0;2708:40:::1;::::0;2745:1;;2708:40:::1;2759:6;:19:::0;;-1:-1:-1;;;;;;2759:19:0::1;::::0;;2638:148::o;38761:104::-;2060:6;;-1:-1:-1;;;;;2060:6:0;711:10;2207:23;2199:68;;;;-1:-1:-1;;;2199:68:0;;;;;;;:::i;:::-;38826:31:::1;38836:10;38848:8;38826:9;:31::i;:::-;38761:104:::0;:::o;27343:::-;27399:13;27432:7;27425:14;;;;;:::i;29021:288::-;-1:-1:-1;;;;;29116:24:0;;711:10;29116:24;;29108:63;;;;-1:-1:-1;;;29108:63:0;;9772:2:1;29108:63:0;;;9754:21:1;9811:2;9791:18;;;9784:30;9850:28;9830:18;;;9823:56;9896:18;;29108:63:0;9570:350:1;29108:63:0;711:10;29184:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29184:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29184:53:0;;;;;;;;;;29253:48;;5241:41:1;;;29184:42:0;;711:10;29253:48;;5214:18:1;29253:48:0;;;;;;;29021:288;;:::o;30092:355::-;30251:28;30261:4;30267:2;30271:7;30251:9;:28::i;:::-;30312:48;30335:4;30341:2;30345:7;30354:5;30312:22;:48::i;:::-;30290:149;;;;-1:-1:-1;;;30290:149:0;;;;;;;:::i;:::-;30092:355;;;;:::o;38237:465::-;38302:13;38336:16;38344:7;30759:4;30793:12;-1:-1:-1;30783:22:0;30702:111;38336:16;38328:76;;;;-1:-1:-1;;;38328:76:0;;9356:2:1;38328:76:0;;;9338:21:1;9395:2;9375:18;;;9368:30;9434:34;9414:18;;;9407:62;-1:-1:-1;;;9485:18:1;;;9478:45;9540:19;;38328:76:0;9154:411:1;38328:76:0;38417:11;38431;:7;38441:1;38431:11;:::i;:::-;38417:25;;38616:14;:3;:12;:14::i;:::-;38485:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;38453:241;;;38237:465;;;:::o;38035:131::-;38079:13;38105:53;;;;;;;;;;;;;;;;;;;38035:131;:::o;2941:244::-;2060:6;;-1:-1:-1;;;;;2060:6:0;711:10;2207:23;2199:68;;;;-1:-1:-1;;;2199:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3030:22:0;::::1;3022:73;;;::::0;-1:-1:-1;;;3022:73:0;;6122:2:1;3022:73:0::1;::::0;::::1;6104:21:1::0;6161:2;6141:18;;;6134:30;6200:34;6180:18;;;6173:62;-1:-1:-1;;;6251:18:1;;;6244:36;6297:19;;3022:73:0::1;5920:402:1::0;3022:73:0::1;3132:6;::::0;3111:38:::1;::::0;-1:-1:-1;;;;;3111:38:0;;::::1;::::0;3132:6:::1;::::0;3111:38:::1;::::0;3132:6:::1;::::0;3111:38:::1;3160:6;:17:::0;;-1:-1:-1;;;;;;3160:17:0::1;-1:-1:-1::0;;;;;3160:17:0;;;::::1;::::0;;;::::1;::::0;;2941:244::o;34923:196::-;35038:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35038:29:0;-1:-1:-1;;;;;35038:29:0;;;;;;;;;35083:28;;35038:24;;35083:28;;;;;;;34923:196;;;:::o;33022:1783::-;33137:35;33175:20;33187:7;33175:11;:20::i;:::-;33250:18;;33137:58;;-1:-1:-1;33208:22:0;;-1:-1:-1;;;;;33234:34:0;711:10;-1:-1:-1;;;;;33234:34:0;;:87;;;-1:-1:-1;711:10:0;33285:20;33297:7;33285:11;:20::i;:::-;-1:-1:-1;;;;;33285:36:0;;33234:87;:154;;;-1:-1:-1;33355:18:0;;33338:50;;711:10;29380:164;:::i;33338:50::-;33208:181;;33410:17;33402:80;;;;-1:-1:-1;;;33402:80:0;;10127:2:1;33402:80:0;;;10109:21:1;10166:2;10146:18;;;10139:30;10205:34;10185:18;;;10178:62;-1:-1:-1;;;10256:18:1;;;10249:48;10314:19;;33402:80:0;9925:414:1;33402:80:0;33525:4;-1:-1:-1;;;;;33503:26:0;:13;:18;;;-1:-1:-1;;;;;33503:26:0;;33495:77;;;;-1:-1:-1;;;33495:77:0;;8588:2:1;33495:77:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:36;8763:19;;33495:77:0;8386:402:1;33495:77:0;-1:-1:-1;;;;;33591:16:0;;33583:66;;;;-1:-1:-1;;;33583:66:0;;7344:2:1;33583:66:0;;;7326:21:1;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:35;7518:19;;33583:66:0;7142:401:1;33583:66:0;33770:49;33787:1;33791:7;33800:13;:18;;;33770:8;:49::i;:::-;-1:-1:-1;;;;;34024:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34024:31:0;;;-1:-1:-1;;;;;34024:31:0;;;-1:-1:-1;;34024:31:0;;;;;;;34070:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34070:29:0;;;;;;;;;;;;;34146:43;;;;;;;;;;34172:15;34146:43;;;;;;;;;;34123:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;34123:66:0;;;;;;;-1:-1:-1;;;34123:66:0;;;;;;;;;;;;34024:18;34451:11;;34123:20;;34451:11;:::i;:::-;34518:1;34477:24;;;:11;:24;;;;;:29;34429:33;;-1:-1:-1;;;;;;34477:29:0;34473:227;;34541:20;34549:11;30759:4;30793:12;-1:-1:-1;30783:22:0;30702:111;34541:20;34537:152;;;34609:64;;;;;;;;34624:18;;-1:-1:-1;;;;;34609:64:0;;;;;;34644:28;;;;34609:64;;;;;;;;;;-1:-1:-1;34582:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;34582:91:0;-1:-1:-1;;;;;;34582:91:0;;;;;;;;;;;;34537:152;34736:7;34732:2;-1:-1:-1;;;;;34717:27:0;34726:4;-1:-1:-1;;;;;34717:27:0;;;;;;;;;;;33126:1679;;;33022:1783;;;:::o;26271:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;26374:16:0;26382:7;30759:4;30793:12;-1:-1:-1;30783:22:0;30702:111;26374:16;26366:71;;;;-1:-1:-1;;;26366:71:0;;6529:2:1;26366:71:0;;;6511:21:1;6568:2;6548:18;;;6541:30;6607:34;6587:18;;;6580:62;-1:-1:-1;;;6658:18:1;;;6651:40;6708:19;;26366:71:0;6327:406:1;26366:71:0;26450:26;26502:12;26491:7;:23;26487:103;;26552:22;26562:12;26552:7;:22;:::i;:::-;:26;;26577:1;26552:26;:::i;:::-;26531:47;;26487:103;26622:7;26602:242;26639:18;26631:4;:26;26602:242;;26682:31;26716:17;;;:11;:17;;;;;;;;;26682:51;;;;;;;;;-1:-1:-1;;;;;26682:51:0;;;;;-1:-1:-1;;;26682:51:0;;;;;;;;;;;;26752:28;26748:85;;26808:9;26271:650;-1:-1:-1;;;;26271:650:0:o;26748:85::-;-1:-1:-1;26659:6:0;;;;:::i;:::-;;;;26602:242;;;-1:-1:-1;26856:57:0;;-1:-1:-1;;;26856:57:0;;12544:2:1;26856:57:0;;;12526:21:1;12583:2;12563:18;;;12556:30;12622:34;12602:18;;;12595:62;-1:-1:-1;;;12673:18:1;;;12666:45;12728:19;;26856:57:0;12342:411:1;30821:104:0;30890:27;30900:2;30904:8;30890:27;;;;;;;;;;;;:9;:27::i;:::-;30821:104;;:::o;35684:804::-;35839:4;-1:-1:-1;;;;;35860:13:0;;11917:20;11956:8;35856:625;;35896:72;;-1:-1:-1;;;35896:72:0;;-1:-1:-1;;;;;35896:36:0;;;;;:72;;711:10;;35947:4;;35953:7;;35962:5;;35896:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35896:72:0;;;;;;;;-1:-1:-1;;35896:72:0;;;;;;;;;;;;:::i;:::-;;;35892:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36142:13:0;;36138:273;;36185:61;;-1:-1:-1;;;36185:61:0;;;;;;;:::i;36138:273::-;36361:6;36355:13;36346:6;36342:2;36338:15;36331:38;35892:534;-1:-1:-1;;;;;;36019:55:0;-1:-1:-1;;;36019:55:0;;-1:-1:-1;36012:62:0;;35856:625;-1:-1:-1;36465:4:0;35856:625;35684:804;;;;;;:::o;19031:723::-;19087:13;19308:10;19304:53;;-1:-1:-1;;19335:10:0;;;;;;;;;;;;-1:-1:-1;;;19335:10:0;;;;;19031:723::o;19304:53::-;19382:5;19367:12;19423:78;19430:9;;19423:78;;19456:8;;;;:::i;:::-;;-1:-1:-1;19479:10:0;;-1:-1:-1;19487:2:0;19479:10;;:::i;:::-;;;19423:78;;;19511:19;19543:6;19533:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19533:17:0;;19511:39;;19561:154;19568:10;;19561:154;;19595:11;19605:1;19595:11;;:::i;:::-;;-1:-1:-1;19664:10:0;19672:2;19664:5;:10;:::i;:::-;19651:24;;:2;:24;:::i;:::-;19638:39;;19621:6;19628;19621:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19621:56:0;;;;;;;;-1:-1:-1;19692:11:0;19701:2;19692:11;;:::i;:::-;;;19561:154;;31202:1566;31325:20;31348:12;-1:-1:-1;;;;;31379:16:0;;31371:62;;;;-1:-1:-1;;;31371:62:0;;11727:2:1;31371:62:0;;;11709:21:1;11766:2;11746:18;;;11739:30;11805:34;11785:18;;;11778:62;-1:-1:-1;;;11856:18:1;;;11849:31;11897:19;;31371:62:0;11525:397:1;31371:62:0;31578:21;31586:12;30759:4;30793:12;-1:-1:-1;30783:22:0;30702:111;31578:21;31577:22;31569:64;;;;-1:-1:-1;;;31569:64:0;;11369:2:1;31569:64:0;;;11351:21:1;11408:2;11388:18;;;11381:30;11447:31;11427:18;;;11420:59;11496:18;;31569:64:0;11167:353:1;31569:64:0;31681:9;31664:12;;31653:8;:23;;;;:::i;:::-;31652:38;;31644:85;;;;-1:-1:-1;;;31644:85:0;;13374:2:1;31644:85:0;;;13356:21:1;13413:2;13393:18;;;13386:30;13452:34;13432:18;;;13425:62;-1:-1:-1;;;13503:18:1;;;13496:32;13545:19;;31644:85:0;13172:398:1;31644:85:0;-1:-1:-1;;;;;31849:16:0;;31816:30;31849:16;;;:12;:16;;;;;;;;;31816:49;;;;;;;;;-1:-1:-1;;;;;31816:49:0;;;;;-1:-1:-1;;;31816:49:0;;;;;;;;;;;31895:135;;;;;;;;31921:19;;31816:49;;31895:135;;;31921:39;;31951:8;;31921:39;:::i;:::-;-1:-1:-1;;;;;31895:135:0;;;;;32010:8;31975:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31895:135:0;;;;;;-1:-1:-1;;;;;31876:16:0;;;;;;:12;:16;;;;;;;:154;;;;;;;;;-1:-1:-1;;;31876:154:0;;;;;;;;;;;32066:12;;32091:630;32115:8;32111:1;:12;32091:630;;;32150:38;;32175:12;;-1:-1:-1;;;;;32150:38:0;;;32167:1;;32150:38;;32167:1;;32150:38;32229:59;32260:1;32264:2;32268:12;32282:5;32229:22;:59::i;:::-;32203:172;;;;-1:-1:-1;;;32203:172:0;;;;;;;:::i;:::-;32471:16;32475:12;32471:1;:16;:::i;:::-;32467:212;;32541:43;;;;;;;;-1:-1:-1;;;;;32541:43:0;;;;;;32567:15;32541:43;;;;;;;;;-1:-1:-1;32513:25:0;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32513:71:0;-1:-1:-1;;;;;;32513:71:0;;;;;;;;;;;32603:60;;30092:355;;32603:60;32695:14;;;;:::i;:::-;;;;32125:3;;;;;:::i;:::-;;;;32091:630;;;-1:-1:-1;32733:12:0;:27;-1:-1:-1;;;;;31202:1566:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:709::-;4049:34;4044:3;4037:47;4114:34;4109:2;4104:3;4100:12;4093:56;-1:-1:-1;;;4174:2:1;4169:3;4165:12;4158:27;4019:3;4214:6;4208:13;4230:60;4283:6;4278:2;4273:3;4269:12;4264:2;4256:6;4252:15;4230:60;:::i;:::-;-1:-1:-1;;;4349:2:1;4309:16;;;;4341:11;;;4334:28;-1:-1:-1;4386:2:1;4378:11;;3686:709;-1:-1:-1;3686:709:1:o;4608:488::-;-1:-1:-1;;;;;4877:15:1;;;4859:34;;4929:15;;4924:2;4909:18;;4902:43;4976:2;4961:18;;4954:34;;;5024:3;5019:2;5004:18;;4997:31;;;4802:4;;5045:45;;5070:19;;5062:6;5045:45;:::i;:::-;5037:53;4608:488;-1:-1:-1;;;;;;4608:488:1:o;5293:219::-;5442:2;5431:9;5424:21;5405:4;5462:44;5502:2;5491:9;5487:18;5479:6;5462:44;:::i;8793:356::-;8995:2;8977:21;;;9014:18;;;9007:30;9073:34;9068:2;9053:18;;9046:62;9140:2;9125:18;;8793:356::o;10747:415::-;10949:2;10931:21;;;10988:2;10968:18;;;10961:30;11027:34;11022:2;11007:18;;11000:62;-1:-1:-1;;;11093:2:1;11078:18;;11071:49;11152:3;11137:19;;10747:415::o;13757:253::-;13797:3;-1:-1:-1;;;;;13886:2:1;13883:1;13879:10;13916:2;13913:1;13909:10;13947:3;13943:2;13939:12;13934:3;13931:21;13928:47;;;13955:18;;:::i;:::-;13991:13;;13757:253;-1:-1:-1;;;;13757:253:1:o;14015:128::-;14055:3;14086:1;14082:6;14079:1;14076:13;14073:39;;;14092:18;;:::i;:::-;-1:-1:-1;14128:9:1;;14015:128::o;14148:120::-;14188:1;14214;14204:35;;14219:18;;:::i;:::-;-1:-1:-1;14253:9:1;;14148:120::o;14273:125::-;14313:4;14341:1;14338;14335:8;14332:34;;;14346:18;;:::i;:::-;-1:-1:-1;14383:9:1;;14273:125::o;14403:258::-;14475:1;14485:113;14499:6;14496:1;14493:13;14485:113;;;14575:11;;;14569:18;14556:11;;;14549:39;14521:2;14514:10;14485:113;;;14616:6;14613:1;14610:13;14607:48;;;-1:-1:-1;;14651:1:1;14633:16;;14626:27;14403:258::o;14666:136::-;14705:3;14733:5;14723:39;;14742:18;;:::i;:::-;-1:-1:-1;;;14778:18:1;;14666:136::o;14807:380::-;14886:1;14882:12;;;;14929;;;14950:61;;15004:4;14996:6;14992:17;14982:27;;14950:61;15057:2;15049:6;15046:14;15026:18;15023:38;15020:161;;;15103:10;15098:3;15094:20;15091:1;15084:31;15138:4;15135:1;15128:15;15166:4;15163:1;15156:15;15020:161;;14807:380;;;:::o;15192:135::-;15231:3;-1:-1:-1;;15252:17:1;;15249:43;;;15272:18;;:::i;:::-;-1:-1:-1;15319:1:1;15308:13;;15192:135::o;15332:112::-;15364:1;15390;15380:35;;15395:18;;:::i;:::-;-1:-1:-1;15429:9:1;;15332:112::o;15449:127::-;15510:10;15505:3;15501:20;15498:1;15491:31;15541:4;15538:1;15531:15;15565:4;15562:1;15555:15;15581:127;15642:10;15637:3;15633:20;15630:1;15623:31;15673:4;15670:1;15663:15;15697:4;15694:1;15687:15;15713:127;15774:10;15769:3;15765:20;15762:1;15755:31;15805:4;15802:1;15795:15;15829:4;15826:1;15819:15;15845:127;15906:10;15901:3;15897:20;15894:1;15887:31;15937:4;15934:1;15927:15;15961:4;15958:1;15951:15;15977:131;-1:-1:-1;;;;;;16051:32:1;;16041:43;;16031:71;;16098:1;16095;16088:12

Swarm Source

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