ETH Price: $3,248.81 (+2.33%)
Gas: 3 Gwei

Token

Probably Nothing Genesis Charms (PNCHRM)
 

Overview

Max Total Supply

197 PNCHRM

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PNCHRM
0xef7158e8fad9857e767f9335f0b54519f8526375
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:
Charms

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 16: Charms.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "./ERC721A.sol";
import "./ReentrancyGuard.sol";
import "./MerkleProof.sol";

contract Charms is ERC721A, Ownable, ReentrancyGuard {

    IERC721 public PN;
    bytes32 public root;

    // Max Per TX
    uint256 public maxPerTx;

    // Mint Count Mapping
    mapping(address => mapping(uint256=>uint256)) public mints;

    // Events
    event minted(address minter, uint256 price, address recipient, uint256 index, uint256 amount);
    event burned(address from, address to, uint256 id);
    event charmAdded(string name, uint256 max, uint256 currentAmount, uint256 price, uint256 maxPerWallet, string uri, bool PNOnly, bool alOnly, bool hasEP, address exclusiveProject, bool isActive, uint256 index);
    event charmChanged(string name, uint256 max, uint256 currentAmount, uint256 price, string uri, uint256 index);

    // Struct with charm types
    struct Charm {
        string name;
        uint256 max;
        uint256 currentAmount;
        uint256 price;
        uint256 maxPerWallet;
        string uri;
        bool PNOnly;
        bool alOnly;
        bool hasEP;
        address exclusiveProject;
        bool isActive;
    }
    Charm[] public charms;

    constructor(
        string memory name,     // Probably Nothing Genesis Charms
        string memory symbol,   // PNCHRM
        uint256 _maxSupply     // 115792089237316195423570985008687907853269984665640564039457584007913129639935
    ) 
    ERC721A(name, symbol, 100, _maxSupply) 
    {
        maxPerTx = 1;
        URI =  "https://us-central1-photosynthesis2.cloudfunctions.net/charm-uri?token_id=";
        PN = IERC721(0xB9aEcB63908c13b6167aD2eab9bAcD7e0DaBa78A);
    }

    function isAllowListed(address _recipient, bytes32[] calldata _merkleProof) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_recipient));
        bool isal = MerkleProof.verify(_merkleProof, root, leaf);
        return isal;
    }
    
    function mint(uint256 index, uint256 amount, bytes32[] calldata merkleProof) external payable nonReentrant {
        require(index < charms.length, "Charm does not exist");
        require(charms[index].currentAmount + amount <= charms[index].max, "Exceeds max supply of charm type");
        require(charms[index].isActive, "Charm is not in season");
        require(msg.value == charms[index].price * amount, "Incorrect amount of ETH sent");
        require(amount <= maxPerTx, "Exceeds maximum per transaction");
        require(mints[_msgSender()][index] + amount <= charms[index].maxPerWallet, "Exceeds max per wallet");

        mints[_msgSender()][index] += amount;
        if(charms[index].alOnly) {
            bool isAL = isAllowListed(_msgSender(), merkleProof);
            require(isAL, "Not allow listed for this charm");
        }

        if(charms[index].PNOnly) {
            require(PN.balanceOf(_msgSender()) > 0, "Sender must hold a Probably Nothing NFT");
        }

        if(charms[index].hasEP){
            IERC721 EP;
            EP = IERC721(charms[index].exclusiveProject);
            require(EP.balanceOf(_msgSender()) > 0, "Sender must hold a specific NFT to mint this charm");
        }

        charms[index].currentAmount += amount;

        _safeMint(_msgSender(), amount);
        emit minted(_msgSender(), charms[index].price * amount, _msgSender(), index, amount);
    }

    function addCharm(string memory _name, uint256 _maxSupply, uint256 _price, uint256 _maxPerWallet, string memory _uri, bool alOnly, bool _PNOnly, bool _hasEP, address exclusiveProject) external onlyOwner {
        uint256 index = charms.length;
        charms.push(Charm(_name, _maxSupply, 0, _price, _maxPerWallet, _uri, _PNOnly, alOnly, _hasEP, exclusiveProject, true));
        emit charmAdded(_name, _maxSupply, 0, _price, _maxPerWallet, _uri, _PNOnly, alOnly, _hasEP, exclusiveProject, true, index);
    }

    function burn(uint256 tokenId) external {
        transferFrom(_msgSender(), address(0), tokenId);
        emit burned(_msgSender(), address(0), tokenId);
    }

    function ownerMint(uint256 index, uint256 amount, address _recipient) external onlyOwner {
        require(charms[index].currentAmount + amount <= charms[index].max, "Not enough left to mint");
        _safeMint(_recipient, amount);
        emit minted(_msgSender(), 0, _recipient, index, amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success,) = _msgSender().call{value: balance}("");
        require(success, "Transfer fail");
    }

    function changeMax(uint256 index, uint256 max) external onlyOwner {
        charms[index].max = max;
    }

    function setURI(uint256 index,string memory _uri) external onlyOwner {
        charms[index].uri = _uri;
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        URI = _uri;
    }

    function setPrice(uint256 index, uint256 _price) external onlyOwner {
        charms[index].price = _price;
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxPerWallet(uint256 index, uint256 _amount) external onlyOwner {
        charms[index].maxPerWallet = _amount;
    }

    function flipHasEP(uint256 index) external onlyOwner {
        charms[index].hasEP = !charms[index].hasEP;
    }

    function setEP(uint256 index, address exclusiveProject) external onlyOwner {
        charms[index].exclusiveProject = exclusiveProject;
    }

    function flipActive(uint256 index) external onlyOwner {
        charms[index].isActive = !charms[index].isActive;
    }

    function flipPNOnly(uint256 index) external onlyOwner {
        charms[index].PNOnly = !charms[index].PNOnly;
    }

    function setPN(address _PN) external onlyOwner {
        PN = IERC721(_PN);
    }

    function flipALOnly(uint256 index) external onlyOwner {
        charms[index].alOnly = !charms[index].alOnly;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function pay() external payable {

    }

}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 16: Context.sol
// SPDX-License-Identifier: MIT

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

File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 16: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Ownable.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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())) : "";
        //https://google-project/nft/123
    }

    /**
     * @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.
     */
    string URI;
    function _baseURI() internal view virtual returns (string memory) {
        return URI; //https://google-project/nft/
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 16: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
//import "@openzeppelin/contracts/utils/Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Ownable.sol";

/**
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
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 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  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) private _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.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @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(collectionSize). 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.
   */
  string URI;
  function _baseURI() internal view virtual returns (string memory) {
    return URI;
  }

  /**
   * @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:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `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 <= maxBatchSize, "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)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    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"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

File 7 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 16: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

File 11 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 12 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 16: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 14 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 15 of 16: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"uint256","name":"max","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"currentAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"},{"indexed":false,"internalType":"bool","name":"PNOnly","type":"bool"},{"indexed":false,"internalType":"bool","name":"alOnly","type":"bool"},{"indexed":false,"internalType":"bool","name":"hasEP","type":"bool"},{"indexed":false,"internalType":"address","name":"exclusiveProject","type":"address"},{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"charmAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"uint256","name":"max","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"currentAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"charmChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"minted","type":"event"},{"inputs":[],"name":"PN","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bool","name":"alOnly","type":"bool"},{"internalType":"bool","name":"_PNOnly","type":"bool"},{"internalType":"bool","name":"_hasEP","type":"bool"},{"internalType":"address","name":"exclusiveProject","type":"address"}],"name":"addCharm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"changeMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"charms","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"currentAmount","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"bool","name":"PNOnly","type":"bool"},{"internalType":"bool","name":"alOnly","type":"bool"},{"internalType":"bool","name":"hasEP","type":"bool"},{"internalType":"address","name":"exclusiveProject","type":"address"},{"internalType":"bool","name":"isActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"flipALOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"flipActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"flipHasEP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"flipPNOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"exclusiveProject","type":"address"}],"name":"setEP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_PN","type":"address"}],"name":"setPN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006008553480156200001a57600080fd5b5060405162004756380380620047568339810160408190526200003d91620002c8565b828260648360008111620000af5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001115760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000a6565b60016200011f8582620003ca565b5060026200012e8482620003ca565b5060a0919091526080525062000146905033620001a9565b6001600a819055600d556040805160808101909152604a8082526200470c6020830139600790620001789082620003ca565b5050600b80546001600160a01b03191673b9aecb63908c13b6167ad2eab9bacd7e0daba78a17905550620004969050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022357600080fd5b81516001600160401b0380821115620002405762000240620001fb565b604051601f8301601f19908116603f011681019082821181831017156200026b576200026b620001fb565b816040528381526020925086838588010111156200028857600080fd5b600091505b83821015620002ac57858201830151818301840152908201906200028d565b83821115620002be5760008385830101525b9695505050505050565b600080600060608486031215620002de57600080fd5b83516001600160401b0380821115620002f657600080fd5b620003048783880162000211565b945060208601519150808211156200031b57600080fd5b506200032a8682870162000211565b925050604084015190509250925092565b600181811c908216806200035057607f821691505b6020821081036200037157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003c557600081815260208120601f850160051c81016020861015620003a05750805b601f850160051c820191505b81811015620003c157828155600101620003ac565b5050505b505050565b81516001600160401b03811115620003e657620003e6620001fb565b620003fe81620003f784546200033b565b8462000377565b602080601f8311600181146200043657600084156200041d5750858301515b600019600386901b1c1916600185901b178555620003c1565b600085815260208120601f198616915b82811015620004675788860151825594840194600190910190840162000446565b5085821015620004865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051614245620004c760003960008181612ed301528181612efd01526134590152600050506142456000f3fe6080604052600436106102f25760003560e01c8063677621691161018f578063c87b56dd116100e1578063e985e9c51161008a578063f732ed0311610064578063f732ed031461085f578063f7d975771461087f578063f968adbe1461089f57600080fd5b8063e985e9c5146107e0578063ebf0c71714610829578063f2fde38b1461083f57600080fd5b8063d89e15f6116100bb578063d89e15f61461078d578063dab5f340146107ad578063e6d37b88146107cd57600080fd5b8063c87b56dd14610737578063d7224ba014610757578063d7d45a2b1461076d57600080fd5b80638da5cb5b11610143578063a22cb4651161011d578063a22cb465146106d7578063b88d4fde146106f7578063c6f6f2161461071757600080fd5b80638da5cb5b1461066d57806395d89b411461068b5780639af37ca5146106a057600080fd5b806370da488a1161017457806370da488a14610618578063715018a614610638578063862440e21461064d57600080fd5b806367762169146105d857806370a08231146105f857600080fd5b80632f745c59116102485780634d588a91116101fc57806356ad15f6116101d657806356ad15f6146105785780636091977f146105985780636352211e146105b857600080fd5b80634d588a91146105185780634f6ccce71461053857806355f804b31461055857600080fd5b806342842e0e1161022d57806342842e0e146104b857806342966c68146104d85780634716b2c3146104f857600080fd5b80632f745c59146104835780633ccfd60b146104a357600080fd5b80630bedd3a7116102aa5780631b9265b8116102845780631b9265b8146103a65780631c3db0d91461044357806323b872dd1461046357600080fd5b80630bedd3a7146103c85780630e8801eb1461040e57806318160ddd1461042e57600080fd5b8063081812fc116102db578063081812fc1461034e578063095ea7b3146103865780630a431101146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c575b600080fd5b34801561030357600080fd5b506103176103123660046137e8565b6108b5565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b506103416109e6565b604051610323919061385d565b34801561035a57600080fd5b5061036e610369366004613870565b610a78565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a13660046138a5565b610b18565b005b3480156103b457600080fd5b506103a66103c3366004613870565b610c4a565b3480156103d457600080fd5b506104006103e33660046138a5565b600e60209081526000928352604080842090915290825290205481565b604051908152602001610323565b34801561041a57600080fd5b506103a6610429366004613870565b610d15565b34801561043a57600080fd5b50600054610400565b34801561044f57600080fd5b506103a661045e3660046138cf565b610de2565b34801561046f57600080fd5b506103a661047e3660046138ea565b610e76565b34801561048f57600080fd5b5061040061049e3660046138a5565b610e81565b3480156104af57600080fd5b506103a6611028565b3480156104c457600080fd5b506103a66104d33660046138ea565b611120565b3480156104e457600080fd5b506103a66104f3366004613870565b61113b565b34801561050457600080fd5b506103a6610513366004613926565b61118a565b34801561052457600080fd5b506103a6610533366004613948565b611211565b34801561054457600080fd5b50610400610553366004613870565b611373565b34801561056457600080fd5b506103a6610573366004613a42565b6113ef565b34801561058457600080fd5b506103a6610593366004613926565b611455565b3480156105a457600080fd5b506103a66105b3366004613870565b6114dc565b3480156105c457600080fd5b5061036e6105d3366004613870565b6115a7565b3480156105e457600080fd5b506103176105f3366004613ac3565b6115b9565b34801561060457600080fd5b506104006106133660046138cf565b611655565b34801561062457600080fd5b506103a6610633366004613870565b611701565b34801561064457600080fd5b506103a66117e4565b34801561065957600080fd5b506103a6610668366004613b16565b611848565b34801561067957600080fd5b506009546001600160a01b031661036e565b34801561069757600080fd5b506103416118d3565b3480156106ac57600080fd5b506106c06106bb366004613870565b6118e2565b6040516103239b9a99989796959493929190613b5d565b3480156106e357600080fd5b506103a66106f2366004613bea565b611a89565b34801561070357600080fd5b506103a6610712366004613c1d565b611b6b565b34801561072357600080fd5b506103a6610732366004613870565b611bfa565b34801561074357600080fd5b50610341610752366004613870565b611c59565b34801561076357600080fd5b5061040060085481565b34801561077957600080fd5b50600b5461036e906001600160a01b031681565b34801561079957600080fd5b506103a66107a8366004613c99565b611d34565b3480156107b957600080fd5b506103a66107c8366004613870565b611ddb565b6103a66107db366004613cbc565b611e3a565b3480156107ec57600080fd5b506103176107fb366004613d0f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561083557600080fd5b50610400600c5481565b34801561084b57600080fd5b506103a661085a3660046138cf565b6125d0565b34801561086b57600080fd5b506103a661087a366004613d39565b6126b2565b34801561088b57600080fd5b506103a661089a366004613926565b612976565b3480156108ab57600080fd5b50610400600d5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061094857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061099457507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806109e057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109f590613dfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190613dfd565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a85826000541190565b610afc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b23826115a7565b9050806001600160a01b0316836001600160a01b031603610bac5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b336001600160a01b0382161480610bc85750610bc881336107fb565b610c3a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610af3565b610c458383836129fd565b505050565b6009546001600160a01b03163314610ca45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f8181548110610cb757610cb7613e50565b906000526020600020906007020160060160029054906101000a900460ff1615600f8281548110610cea57610cea613e50565b906000526020600020906007020160060160026101000a81548160ff02191690831515021790555050565b6009546001600160a01b03163314610d6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f8181548110610d8257610d82613e50565b906000526020600020906007020160060160019054906101000a900460ff1615600f8281548110610db557610db5613e50565b906000526020600020906007020160060160016101000a81548160ff02191690831515021790555050565b565b6009546001600160a01b03163314610e3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610c45838383612a71565b6000610e8c83611655565b8210610f005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b600080549080805b83811015610fb9576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f6c57805192505b876001600160a01b0316836001600160a01b031603610fa657868403610f98575093506109e092505050565b83610fa281613eae565b9450505b5080610fb181613eae565b915050610f08565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610af3565b6009546001600160a01b031633146110825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6040514790600090339083908381818185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b505090508061111c5760405162461bcd60e51b815260206004820152600d60248201527f5472616e73666572206661696c000000000000000000000000000000000000006044820152606401610af3565b5050565b610c4583838360405180602001604052806000815250611b6b565b61114733600083610e76565b604080513381526000602082015280820183905290517f4911fc0126af9455d0aa4a23d3cf11a705afa45b85f7721bf29a93ccbbf76a879181900360600190a150565b6009546001600160a01b031633146111e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106111f8576111f8613e50565b9060005260206000209060070201600101819055505050565b6009546001600160a01b0316331461126b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f838154811061127e5761127e613e50565b90600052602060002090600702016001015482600f85815481106112a4576112a4613e50565b9060005260206000209060070201600201546112c09190613ec8565b111561130e5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206c65667420746f206d696e740000000000000000006044820152606401610af3565b6113188183612e24565b60408051338152600060208201526001600160a01b03831681830152606081018590526080810184905290517f37752b65d44961d82d0a18c4bdf1003afc8194930e656165da3e1eea0b6a52409181900360a00190a1505050565b6000805482106113eb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b5090565b6009546001600160a01b031633146114495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600761111c8282613f26565b6009546001600160a01b031633146114af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106114c3576114c3613e50565b9060005260206000209060070201600401819055505050565b6009546001600160a01b031633146115365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f818154811061154957611549613e50565b906000526020600020906007020160060160179054906101000a900460ff1615600f828154811061157c5761157c613e50565b906000526020600020906007020160060160176101000a81548160ff02191690831515021790555050565b60006115b282612e3e565b5192915050565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050600061164b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c54915085905061301a565b9695505050505050565b60006001600160a01b0382166116d35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610af3565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6009546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f818154811061176e5761176e613e50565b906000526020600020906007020160060160009054906101000a900460ff1615600f82815481106117a1576117a1613e50565b6000918252602090912060079091020160060180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905550565b6009546001600160a01b0316331461183e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b610de06000613030565b6009546001600160a01b031633146118a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106118b6576118b6613e50565b90600052602060002090600702016005019081610c459190613f26565b6060600280546109f590613dfd565b600f81815481106118f257600080fd5b906000526020600020906007020160009150905080600001805461191590613dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461194190613dfd565b801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050180546119bb90613dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546119e790613dfd565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050506006909301549192505060ff8082169161010081048216916201000082048116916001600160a01b0363010000008204169177010000000000000000000000000000000000000000000000909104168b565b336001600160a01b03831603611ae15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610af3565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b76848484612a71565b611b828484848461309a565b611bf45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b50505050565b6009546001600160a01b03163314611c545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600d55565b6060611c66826000541190565b611cd85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610af3565b6000611ce261323c565b90506000815111611d025760405180602001604052806000815250611d2d565b80611d0c8461324b565b604051602001611d1d929190613fe6565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314611d8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f8381548110611da257611da2613e50565b906000526020600020906007020160060160036101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6009546001600160a01b03163314611e355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600c55565b6002600a5403611e8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af3565b6002600a55600f548410611ee25760405162461bcd60e51b815260206004820152601460248201527f436861726d20646f6573206e6f742065786973740000000000000000000000006044820152606401610af3565b600f8481548110611ef557611ef5613e50565b90600052602060002090600702016001015483600f8681548110611f1b57611f1b613e50565b906000526020600020906007020160020154611f379190613ec8565b1115611f855760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d617820737570706c79206f6620636861726d20747970656044820152606401610af3565b600f8481548110611f9857611f98613e50565b906000526020600020906007020160060160179054906101000a900460ff166120035760405162461bcd60e51b815260206004820152601660248201527f436861726d206973206e6f7420696e20736561736f6e000000000000000000006044820152606401610af3565b82600f858154811061201757612017613e50565b9060005260206000209060070201600301546120339190614015565b34146120815760405162461bcd60e51b815260206004820152601c60248201527f496e636f727265637420616d6f756e74206f66204554482073656e74000000006044820152606401610af3565b600d548311156120d35760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d20706572207472616e73616374696f6e006044820152606401610af3565b600f84815481106120e6576120e6613e50565b90600052602060002090600702016004015483600e60006121043390565b6001600160a01b03166001600160a01b031681526020019081526020016000206000878152602001908152602001600020546121409190613ec8565b111561218e5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178207065722077616c6c6574000000000000000000006044820152606401610af3565b336000908152600e60209081526040808320878452909152812080548592906121b8908490613ec8565b9091555050600f8054859081106121d1576121d1613e50565b906000526020600020906007020160060160019054906101000a900460ff16156122535760006122023384846115b9565b9050806122515760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420616c6c6f77206c697374656420666f72207468697320636861726d006044820152606401610af3565b505b600f848154811061226657612266613e50565b600091825260209091206006600790920201015460ff161561238a57600b546000906001600160a01b03166370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156122f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123179190614034565b1161238a5760405162461bcd60e51b815260206004820152602760248201527f53656e646572206d75737420686f6c6420612050726f6261626c79204e6f746860448201527f696e67204e4654000000000000000000000000000000000000000000000000006064820152608401610af3565b600f848154811061239d5761239d613e50565b906000526020600020906007020160060160029054906101000a900460ff16156124f8576000600f85815481106123d6576123d6613e50565b6000918252602082206007919091020160060154630100000090046001600160a01b03169150816370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561245f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124839190614034565b116124f65760405162461bcd60e51b815260206004820152603260248201527f53656e646572206d75737420686f6c642061207370656369666963204e46542060448201527f746f206d696e74207468697320636861726d00000000000000000000000000006064820152608401610af3565b505b82600f858154811061250c5761250c613e50565b9060005260206000209060070201600201600082825461252c9190613ec8565b9091555061253c90503384612e24565b7f37752b65d44961d82d0a18c4bdf1003afc8194930e656165da3e1eea0b6a52403384600f878154811061257257612572613e50565b90600052602060002090600702016003015461258e9190614015565b604080516001600160a01b03939093168352602083019190915233828201526060820187905260808201869052519081900360a00190a150506001600a555050565b6009546001600160a01b0316331461262a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6001600160a01b0381166126a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6126af81613030565b50565b6009546001600160a01b0316331461270c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f805460408051610160810182528c8152602081018c90526000918101829052606081018b9052608081018a905260a0810189905286151560c082015287151560e08201528515156101008201526001600160a01b03851661012082015260016101408201819052830184559290528151909190600783027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802019081906127b49082613f26565b506020820151600182015560408201516002820155606082015160038201556080820151600482015560a082015160058201906127f19082613f26565b5060c0820151600691909101805460e084015161010080860151610120870151610140909701517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009094169515157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169590951791151502177fffffffffffffffffff000000000000000000000000000000000000000000ffff1662010000931515939093027fffffffffffffffffff0000000000000000000000000000000000000000ffffff169290921763010000006001600160a01b0390941693909302929092177fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff1677010000000000000000000000000000000000000000000000911515919091021790556040517fa4ecba51d2ce090b993b2bf208b94a9389c836ce59df206a574ff4cab3fb607690612962908c908c906000908d908d908d908c908e908d908d906001908e9061404d565b60405180910390a150505050505050505050565b6009546001600160a01b031633146129d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106129e4576129e4613e50565b9060005260206000209060070201600301819055505050565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a7c82612e3e565b80519091506000906001600160a01b0316336001600160a01b03161480612ab3575033612aa884610a78565b6001600160a01b0316145b80612ac557508151612ac590336107fb565b905080612b3a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610af3565b846001600160a01b031682600001516001600160a01b031614612bc55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610af3565b612bd560008484600001516129fd565b6001600160a01b0385166000908152600460205260408120805460019290612c109084906fffffffffffffffffffffffffffffffff166140df565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612c6591859116614110565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612d1f846001613ec8565b6000818152600360205260409020549091506001600160a01b0316612dda57612d49816000541190565b15612dda5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61111c828260405180602001604052806000815250613380565b6040805180820190915260008082526020820152612e5d826000541190565b612ecf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610af3565b60007f00000000000000000000000000000000000000000000000000000000000000008310612f3057612f227f00000000000000000000000000000000000000000000000000000000000000008461413b565b612f2d906001613ec8565b90505b825b818110612fab576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612f9857949350505050565b5080612fa381614152565b915050612f32565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610af3565b6000826130278584613746565b14949350505050565b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15613230576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906130f7903390899088908890600401614169565b6020604051808303816000875af1925050508015613132575060408051601f3d908101601f1916820190925261312f9181019061419b565b60015b6131e5573d808015613160576040519150601f19603f3d011682016040523d82523d6000602084013e613165565b606091505b5080516000036131dd5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613234565b5060015b949350505050565b6060600780546109f590613dfd565b60608160000361328e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132b857806132a281613eae565b91506132b19050600a836141e7565b9150613292565b60008167ffffffffffffffff8111156132d3576132d361397d565b6040519080825280601f01601f1916602001820160405280156132fd576020820181803683370190505b5090505b84156132345761331260018361413b565b915061331f600a866141fb565b61332a906030613ec8565b60f81b81838151811061333f5761333f613e50565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613379600a866141e7565b9450613301565b6000546001600160a01b0384166133ff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b61340a816000541190565b156134575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610af3565b7f00000000000000000000000000000000000000000000000000000000000000008311156134ed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104169181019190915281518083019092528051909190819061355f908790614110565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135869190614110565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b8581101561373b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46136a9600088848861309a565b61371b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b8161372581613eae565b925050808061373390613eae565b91505061365c565b506000819055612e1c565b600081815b84518110156137b257600085828151811061376857613768613e50565b6020026020010151905080831161378e576000838152602082905260409020925061379f565b600081815260208490526040902092505b50806137aa81613eae565b91505061374b565b509392505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126af57600080fd5b6000602082840312156137fa57600080fd5b8135611d2d816137ba565b60005b83811015613820578181015183820152602001613808565b83811115611bf45750506000910152565b60008151808452613849816020860160208601613805565b601f01601f19169290920160200192915050565b602081526000611d2d6020830184613831565b60006020828403121561388257600080fd5b5035919050565b80356001600160a01b03811681146138a057600080fd5b919050565b600080604083850312156138b857600080fd5b6138c183613889565b946020939093013593505050565b6000602082840312156138e157600080fd5b611d2d82613889565b6000806000606084860312156138ff57600080fd5b61390884613889565b925061391660208501613889565b9150604084013590509250925092565b6000806040838503121561393957600080fd5b50508035926020909101359150565b60008060006060848603121561395d57600080fd5b833592506020840135915061397460408501613889565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156139c7576139c761397d565b604051601f8501601f19908116603f011681019082821181831017156139ef576139ef61397d565b81604052809350858152868686011115613a0857600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613a3357600080fd5b611d2d838335602085016139ac565b600060208284031215613a5457600080fd5b813567ffffffffffffffff811115613a6b57600080fd5b61323484828501613a22565b60008083601f840112613a8957600080fd5b50813567ffffffffffffffff811115613aa157600080fd5b6020830191508360208260051b8501011115613abc57600080fd5b9250929050565b600080600060408486031215613ad857600080fd5b613ae184613889565b9250602084013567ffffffffffffffff811115613afd57600080fd5b613b0986828701613a77565b9497909650939450505050565b60008060408385031215613b2957600080fd5b82359150602083013567ffffffffffffffff811115613b4757600080fd5b613b5385828601613a22565b9150509250929050565b6000610160808352613b718184018f613831565b90508c60208401528b60408401528a606084015289608084015282810360a0840152613b9d818a613831565b97151560c0840152505093151560e08501529115156101008401526001600160a01b03166101208301521515610140909101529695505050505050565b803580151581146138a057600080fd5b60008060408385031215613bfd57600080fd5b613c0683613889565b9150613c1460208401613bda565b90509250929050565b60008060008060808587031215613c3357600080fd5b613c3c85613889565b9350613c4a60208601613889565b925060408501359150606085013567ffffffffffffffff811115613c6d57600080fd5b8501601f81018713613c7e57600080fd5b613c8d878235602084016139ac565b91505092959194509250565b60008060408385031215613cac57600080fd5b82359150613c1460208401613889565b60008060008060608587031215613cd257600080fd5b8435935060208501359250604085013567ffffffffffffffff811115613cf757600080fd5b613d0387828801613a77565b95989497509550505050565b60008060408385031215613d2257600080fd5b613d2b83613889565b9150613c1460208401613889565b60008060008060008060008060006101208a8c031215613d5857600080fd5b893567ffffffffffffffff80821115613d7057600080fd5b613d7c8d838e01613a22565b9a5060208c0135995060408c0135985060608c0135975060808c0135915080821115613da757600080fd5b50613db48c828d01613a22565b955050613dc360a08b01613bda565b9350613dd160c08b01613bda565b9250613ddf60e08b01613bda565b9150613dee6101008b01613889565b90509295985092959850929598565b600181811c90821680613e1157607f821691505b602082108103613e4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006000198203613ec157613ec1613e7f565b5060010190565b60008219821115613edb57613edb613e7f565b500190565b601f821115610c4557600081815260208120601f850160051c81016020861015613f075750805b601f850160051c820191505b81811015612e1c57828155600101613f13565b815167ffffffffffffffff811115613f4057613f4061397d565b613f5481613f4e8454613dfd565b84613ee0565b602080601f831160018114613f895760008415613f715750858301515b600019600386901b1c1916600185901b178555612e1c565b600085815260208120601f198616915b82811015613fb857888601518255948401946001909101908401613f99565b5085821015613fd65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351613ff8818460208801613805565b83519083019061400c818360208801613805565b01949350505050565b600081600019048311821515161561402f5761402f613e7f565b500290565b60006020828403121561404657600080fd5b5051919050565b6101808152600061406261018083018f613831565b8d60208401528c60408401528b60608401528a608084015282810360a084015261408c818b613831565b91505087151560c083015286151560e08301528515156101008301526001600160a01b0385166101208301526140c761014083018515159052565b826101608301529d9c50505050505050505050505050565b60006fffffffffffffffffffffffffffffffff8381169083168181101561410857614108613e7f565b039392505050565b60006fffffffffffffffffffffffffffffffff80831681851680830382111561400c5761400c613e7f565b60008282101561414d5761414d613e7f565b500390565b60008161416157614161613e7f565b506000190190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261164b6080830184613831565b6000602082840312156141ad57600080fd5b8151611d2d816137ba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826141f6576141f66141b8565b500490565b60008261420a5761420a6141b8565b50069056fea2646970667358221220c9fe67d5c9a05b04e24e801dceff4f638817ca8489e6daef7f258905363703d464736f6c634300080f003368747470733a2f2f75732d63656e7472616c312d70686f746f73796e746865736973322e636c6f756466756e6374696f6e732e6e65742f636861726d2d7572693f746f6b656e5f69643d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000001f50726f6261626c79204e6f7468696e672047656e6573697320436861726d73000000000000000000000000000000000000000000000000000000000000000006504e4348524d0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102f25760003560e01c8063677621691161018f578063c87b56dd116100e1578063e985e9c51161008a578063f732ed0311610064578063f732ed031461085f578063f7d975771461087f578063f968adbe1461089f57600080fd5b8063e985e9c5146107e0578063ebf0c71714610829578063f2fde38b1461083f57600080fd5b8063d89e15f6116100bb578063d89e15f61461078d578063dab5f340146107ad578063e6d37b88146107cd57600080fd5b8063c87b56dd14610737578063d7224ba014610757578063d7d45a2b1461076d57600080fd5b80638da5cb5b11610143578063a22cb4651161011d578063a22cb465146106d7578063b88d4fde146106f7578063c6f6f2161461071757600080fd5b80638da5cb5b1461066d57806395d89b411461068b5780639af37ca5146106a057600080fd5b806370da488a1161017457806370da488a14610618578063715018a614610638578063862440e21461064d57600080fd5b806367762169146105d857806370a08231146105f857600080fd5b80632f745c59116102485780634d588a91116101fc57806356ad15f6116101d657806356ad15f6146105785780636091977f146105985780636352211e146105b857600080fd5b80634d588a91146105185780634f6ccce71461053857806355f804b31461055857600080fd5b806342842e0e1161022d57806342842e0e146104b857806342966c68146104d85780634716b2c3146104f857600080fd5b80632f745c59146104835780633ccfd60b146104a357600080fd5b80630bedd3a7116102aa5780631b9265b8116102845780631b9265b8146103a65780631c3db0d91461044357806323b872dd1461046357600080fd5b80630bedd3a7146103c85780630e8801eb1461040e57806318160ddd1461042e57600080fd5b8063081812fc116102db578063081812fc1461034e578063095ea7b3146103865780630a431101146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c575b600080fd5b34801561030357600080fd5b506103176103123660046137e8565b6108b5565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b506103416109e6565b604051610323919061385d565b34801561035a57600080fd5b5061036e610369366004613870565b610a78565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a13660046138a5565b610b18565b005b3480156103b457600080fd5b506103a66103c3366004613870565b610c4a565b3480156103d457600080fd5b506104006103e33660046138a5565b600e60209081526000928352604080842090915290825290205481565b604051908152602001610323565b34801561041a57600080fd5b506103a6610429366004613870565b610d15565b34801561043a57600080fd5b50600054610400565b34801561044f57600080fd5b506103a661045e3660046138cf565b610de2565b34801561046f57600080fd5b506103a661047e3660046138ea565b610e76565b34801561048f57600080fd5b5061040061049e3660046138a5565b610e81565b3480156104af57600080fd5b506103a6611028565b3480156104c457600080fd5b506103a66104d33660046138ea565b611120565b3480156104e457600080fd5b506103a66104f3366004613870565b61113b565b34801561050457600080fd5b506103a6610513366004613926565b61118a565b34801561052457600080fd5b506103a6610533366004613948565b611211565b34801561054457600080fd5b50610400610553366004613870565b611373565b34801561056457600080fd5b506103a6610573366004613a42565b6113ef565b34801561058457600080fd5b506103a6610593366004613926565b611455565b3480156105a457600080fd5b506103a66105b3366004613870565b6114dc565b3480156105c457600080fd5b5061036e6105d3366004613870565b6115a7565b3480156105e457600080fd5b506103176105f3366004613ac3565b6115b9565b34801561060457600080fd5b506104006106133660046138cf565b611655565b34801561062457600080fd5b506103a6610633366004613870565b611701565b34801561064457600080fd5b506103a66117e4565b34801561065957600080fd5b506103a6610668366004613b16565b611848565b34801561067957600080fd5b506009546001600160a01b031661036e565b34801561069757600080fd5b506103416118d3565b3480156106ac57600080fd5b506106c06106bb366004613870565b6118e2565b6040516103239b9a99989796959493929190613b5d565b3480156106e357600080fd5b506103a66106f2366004613bea565b611a89565b34801561070357600080fd5b506103a6610712366004613c1d565b611b6b565b34801561072357600080fd5b506103a6610732366004613870565b611bfa565b34801561074357600080fd5b50610341610752366004613870565b611c59565b34801561076357600080fd5b5061040060085481565b34801561077957600080fd5b50600b5461036e906001600160a01b031681565b34801561079957600080fd5b506103a66107a8366004613c99565b611d34565b3480156107b957600080fd5b506103a66107c8366004613870565b611ddb565b6103a66107db366004613cbc565b611e3a565b3480156107ec57600080fd5b506103176107fb366004613d0f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561083557600080fd5b50610400600c5481565b34801561084b57600080fd5b506103a661085a3660046138cf565b6125d0565b34801561086b57600080fd5b506103a661087a366004613d39565b6126b2565b34801561088b57600080fd5b506103a661089a366004613926565b612976565b3480156108ab57600080fd5b50610400600d5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061094857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061099457507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806109e057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109f590613dfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190613dfd565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a85826000541190565b610afc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b23826115a7565b9050806001600160a01b0316836001600160a01b031603610bac5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b336001600160a01b0382161480610bc85750610bc881336107fb565b610c3a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610af3565b610c458383836129fd565b505050565b6009546001600160a01b03163314610ca45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f8181548110610cb757610cb7613e50565b906000526020600020906007020160060160029054906101000a900460ff1615600f8281548110610cea57610cea613e50565b906000526020600020906007020160060160026101000a81548160ff02191690831515021790555050565b6009546001600160a01b03163314610d6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f8181548110610d8257610d82613e50565b906000526020600020906007020160060160019054906101000a900460ff1615600f8281548110610db557610db5613e50565b906000526020600020906007020160060160016101000a81548160ff02191690831515021790555050565b565b6009546001600160a01b03163314610e3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610c45838383612a71565b6000610e8c83611655565b8210610f005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b600080549080805b83811015610fb9576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f6c57805192505b876001600160a01b0316836001600160a01b031603610fa657868403610f98575093506109e092505050565b83610fa281613eae565b9450505b5080610fb181613eae565b915050610f08565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610af3565b6009546001600160a01b031633146110825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6040514790600090339083908381818185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b505090508061111c5760405162461bcd60e51b815260206004820152600d60248201527f5472616e73666572206661696c000000000000000000000000000000000000006044820152606401610af3565b5050565b610c4583838360405180602001604052806000815250611b6b565b61114733600083610e76565b604080513381526000602082015280820183905290517f4911fc0126af9455d0aa4a23d3cf11a705afa45b85f7721bf29a93ccbbf76a879181900360600190a150565b6009546001600160a01b031633146111e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106111f8576111f8613e50565b9060005260206000209060070201600101819055505050565b6009546001600160a01b0316331461126b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f838154811061127e5761127e613e50565b90600052602060002090600702016001015482600f85815481106112a4576112a4613e50565b9060005260206000209060070201600201546112c09190613ec8565b111561130e5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206c65667420746f206d696e740000000000000000006044820152606401610af3565b6113188183612e24565b60408051338152600060208201526001600160a01b03831681830152606081018590526080810184905290517f37752b65d44961d82d0a18c4bdf1003afc8194930e656165da3e1eea0b6a52409181900360a00190a1505050565b6000805482106113eb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b5090565b6009546001600160a01b031633146114495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600761111c8282613f26565b6009546001600160a01b031633146114af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106114c3576114c3613e50565b9060005260206000209060070201600401819055505050565b6009546001600160a01b031633146115365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f818154811061154957611549613e50565b906000526020600020906007020160060160179054906101000a900460ff1615600f828154811061157c5761157c613e50565b906000526020600020906007020160060160176101000a81548160ff02191690831515021790555050565b60006115b282612e3e565b5192915050565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050600061164b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c54915085905061301a565b9695505050505050565b60006001600160a01b0382166116d35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610af3565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6009546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f818154811061176e5761176e613e50565b906000526020600020906007020160060160009054906101000a900460ff1615600f82815481106117a1576117a1613e50565b6000918252602090912060079091020160060180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905550565b6009546001600160a01b0316331461183e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b610de06000613030565b6009546001600160a01b031633146118a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106118b6576118b6613e50565b90600052602060002090600702016005019081610c459190613f26565b6060600280546109f590613dfd565b600f81815481106118f257600080fd5b906000526020600020906007020160009150905080600001805461191590613dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461194190613dfd565b801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b5050505050908060010154908060020154908060030154908060040154908060050180546119bb90613dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546119e790613dfd565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050506006909301549192505060ff8082169161010081048216916201000082048116916001600160a01b0363010000008204169177010000000000000000000000000000000000000000000000909104168b565b336001600160a01b03831603611ae15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610af3565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b76848484612a71565b611b828484848461309a565b611bf45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b50505050565b6009546001600160a01b03163314611c545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600d55565b6060611c66826000541190565b611cd85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610af3565b6000611ce261323c565b90506000815111611d025760405180602001604052806000815250611d2d565b80611d0c8461324b565b604051602001611d1d929190613fe6565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314611d8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f8381548110611da257611da2613e50565b906000526020600020906007020160060160036101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6009546001600160a01b03163314611e355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600c55565b6002600a5403611e8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af3565b6002600a55600f548410611ee25760405162461bcd60e51b815260206004820152601460248201527f436861726d20646f6573206e6f742065786973740000000000000000000000006044820152606401610af3565b600f8481548110611ef557611ef5613e50565b90600052602060002090600702016001015483600f8681548110611f1b57611f1b613e50565b906000526020600020906007020160020154611f379190613ec8565b1115611f855760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d617820737570706c79206f6620636861726d20747970656044820152606401610af3565b600f8481548110611f9857611f98613e50565b906000526020600020906007020160060160179054906101000a900460ff166120035760405162461bcd60e51b815260206004820152601660248201527f436861726d206973206e6f7420696e20736561736f6e000000000000000000006044820152606401610af3565b82600f858154811061201757612017613e50565b9060005260206000209060070201600301546120339190614015565b34146120815760405162461bcd60e51b815260206004820152601c60248201527f496e636f727265637420616d6f756e74206f66204554482073656e74000000006044820152606401610af3565b600d548311156120d35760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d20706572207472616e73616374696f6e006044820152606401610af3565b600f84815481106120e6576120e6613e50565b90600052602060002090600702016004015483600e60006121043390565b6001600160a01b03166001600160a01b031681526020019081526020016000206000878152602001908152602001600020546121409190613ec8565b111561218e5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178207065722077616c6c6574000000000000000000006044820152606401610af3565b336000908152600e60209081526040808320878452909152812080548592906121b8908490613ec8565b9091555050600f8054859081106121d1576121d1613e50565b906000526020600020906007020160060160019054906101000a900460ff16156122535760006122023384846115b9565b9050806122515760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420616c6c6f77206c697374656420666f72207468697320636861726d006044820152606401610af3565b505b600f848154811061226657612266613e50565b600091825260209091206006600790920201015460ff161561238a57600b546000906001600160a01b03166370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156122f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123179190614034565b1161238a5760405162461bcd60e51b815260206004820152602760248201527f53656e646572206d75737420686f6c6420612050726f6261626c79204e6f746860448201527f696e67204e4654000000000000000000000000000000000000000000000000006064820152608401610af3565b600f848154811061239d5761239d613e50565b906000526020600020906007020160060160029054906101000a900460ff16156124f8576000600f85815481106123d6576123d6613e50565b6000918252602082206007919091020160060154630100000090046001600160a01b03169150816370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561245f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124839190614034565b116124f65760405162461bcd60e51b815260206004820152603260248201527f53656e646572206d75737420686f6c642061207370656369666963204e46542060448201527f746f206d696e74207468697320636861726d00000000000000000000000000006064820152608401610af3565b505b82600f858154811061250c5761250c613e50565b9060005260206000209060070201600201600082825461252c9190613ec8565b9091555061253c90503384612e24565b7f37752b65d44961d82d0a18c4bdf1003afc8194930e656165da3e1eea0b6a52403384600f878154811061257257612572613e50565b90600052602060002090600702016003015461258e9190614015565b604080516001600160a01b03939093168352602083019190915233828201526060820187905260808201869052519081900360a00190a150506001600a555050565b6009546001600160a01b0316331461262a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6001600160a01b0381166126a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6126af81613030565b50565b6009546001600160a01b0316331461270c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600f805460408051610160810182528c8152602081018c90526000918101829052606081018b9052608081018a905260a0810189905286151560c082015287151560e08201528515156101008201526001600160a01b03851661012082015260016101408201819052830184559290528151909190600783027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802019081906127b49082613f26565b506020820151600182015560408201516002820155606082015160038201556080820151600482015560a082015160058201906127f19082613f26565b5060c0820151600691909101805460e084015161010080860151610120870151610140909701517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009094169515157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169590951791151502177fffffffffffffffffff000000000000000000000000000000000000000000ffff1662010000931515939093027fffffffffffffffffff0000000000000000000000000000000000000000ffffff169290921763010000006001600160a01b0390941693909302929092177fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff1677010000000000000000000000000000000000000000000000911515919091021790556040517fa4ecba51d2ce090b993b2bf208b94a9389c836ce59df206a574ff4cab3fb607690612962908c908c906000908d908d908d908c908e908d908d906001908e9061404d565b60405180910390a150505050505050505050565b6009546001600160a01b031633146129d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b80600f83815481106129e4576129e4613e50565b9060005260206000209060070201600301819055505050565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a7c82612e3e565b80519091506000906001600160a01b0316336001600160a01b03161480612ab3575033612aa884610a78565b6001600160a01b0316145b80612ac557508151612ac590336107fb565b905080612b3a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610af3565b846001600160a01b031682600001516001600160a01b031614612bc55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610af3565b612bd560008484600001516129fd565b6001600160a01b0385166000908152600460205260408120805460019290612c109084906fffffffffffffffffffffffffffffffff166140df565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612c6591859116614110565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612d1f846001613ec8565b6000818152600360205260409020549091506001600160a01b0316612dda57612d49816000541190565b15612dda5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61111c828260405180602001604052806000815250613380565b6040805180820190915260008082526020820152612e5d826000541190565b612ecf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610af3565b60007f00000000000000000000000000000000000000000000000000000000000000648310612f3057612f227f00000000000000000000000000000000000000000000000000000000000000648461413b565b612f2d906001613ec8565b90505b825b818110612fab576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612f9857949350505050565b5080612fa381614152565b915050612f32565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610af3565b6000826130278584613746565b14949350505050565b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15613230576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906130f7903390899088908890600401614169565b6020604051808303816000875af1925050508015613132575060408051601f3d908101601f1916820190925261312f9181019061419b565b60015b6131e5573d808015613160576040519150601f19603f3d011682016040523d82523d6000602084013e613165565b606091505b5080516000036131dd5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613234565b5060015b949350505050565b6060600780546109f590613dfd565b60608160000361328e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132b857806132a281613eae565b91506132b19050600a836141e7565b9150613292565b60008167ffffffffffffffff8111156132d3576132d361397d565b6040519080825280601f01601f1916602001820160405280156132fd576020820181803683370190505b5090505b84156132345761331260018361413b565b915061331f600a866141fb565b61332a906030613ec8565b60f81b81838151811061333f5761333f613e50565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613379600a866141e7565b9450613301565b6000546001600160a01b0384166133ff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b61340a816000541190565b156134575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610af3565b7f00000000000000000000000000000000000000000000000000000000000000648311156134ed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104169181019190915281518083019092528051909190819061355f908790614110565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135869190614110565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b8581101561373b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46136a9600088848861309a565b61371b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610af3565b8161372581613eae565b925050808061373390613eae565b91505061365c565b506000819055612e1c565b600081815b84518110156137b257600085828151811061376857613768613e50565b6020026020010151905080831161378e576000838152602082905260409020925061379f565b600081815260208490526040902092505b50806137aa81613eae565b91505061374b565b509392505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126af57600080fd5b6000602082840312156137fa57600080fd5b8135611d2d816137ba565b60005b83811015613820578181015183820152602001613808565b83811115611bf45750506000910152565b60008151808452613849816020860160208601613805565b601f01601f19169290920160200192915050565b602081526000611d2d6020830184613831565b60006020828403121561388257600080fd5b5035919050565b80356001600160a01b03811681146138a057600080fd5b919050565b600080604083850312156138b857600080fd5b6138c183613889565b946020939093013593505050565b6000602082840312156138e157600080fd5b611d2d82613889565b6000806000606084860312156138ff57600080fd5b61390884613889565b925061391660208501613889565b9150604084013590509250925092565b6000806040838503121561393957600080fd5b50508035926020909101359150565b60008060006060848603121561395d57600080fd5b833592506020840135915061397460408501613889565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156139c7576139c761397d565b604051601f8501601f19908116603f011681019082821181831017156139ef576139ef61397d565b81604052809350858152868686011115613a0857600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613a3357600080fd5b611d2d838335602085016139ac565b600060208284031215613a5457600080fd5b813567ffffffffffffffff811115613a6b57600080fd5b61323484828501613a22565b60008083601f840112613a8957600080fd5b50813567ffffffffffffffff811115613aa157600080fd5b6020830191508360208260051b8501011115613abc57600080fd5b9250929050565b600080600060408486031215613ad857600080fd5b613ae184613889565b9250602084013567ffffffffffffffff811115613afd57600080fd5b613b0986828701613a77565b9497909650939450505050565b60008060408385031215613b2957600080fd5b82359150602083013567ffffffffffffffff811115613b4757600080fd5b613b5385828601613a22565b9150509250929050565b6000610160808352613b718184018f613831565b90508c60208401528b60408401528a606084015289608084015282810360a0840152613b9d818a613831565b97151560c0840152505093151560e08501529115156101008401526001600160a01b03166101208301521515610140909101529695505050505050565b803580151581146138a057600080fd5b60008060408385031215613bfd57600080fd5b613c0683613889565b9150613c1460208401613bda565b90509250929050565b60008060008060808587031215613c3357600080fd5b613c3c85613889565b9350613c4a60208601613889565b925060408501359150606085013567ffffffffffffffff811115613c6d57600080fd5b8501601f81018713613c7e57600080fd5b613c8d878235602084016139ac565b91505092959194509250565b60008060408385031215613cac57600080fd5b82359150613c1460208401613889565b60008060008060608587031215613cd257600080fd5b8435935060208501359250604085013567ffffffffffffffff811115613cf757600080fd5b613d0387828801613a77565b95989497509550505050565b60008060408385031215613d2257600080fd5b613d2b83613889565b9150613c1460208401613889565b60008060008060008060008060006101208a8c031215613d5857600080fd5b893567ffffffffffffffff80821115613d7057600080fd5b613d7c8d838e01613a22565b9a5060208c0135995060408c0135985060608c0135975060808c0135915080821115613da757600080fd5b50613db48c828d01613a22565b955050613dc360a08b01613bda565b9350613dd160c08b01613bda565b9250613ddf60e08b01613bda565b9150613dee6101008b01613889565b90509295985092959850929598565b600181811c90821680613e1157607f821691505b602082108103613e4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006000198203613ec157613ec1613e7f565b5060010190565b60008219821115613edb57613edb613e7f565b500190565b601f821115610c4557600081815260208120601f850160051c81016020861015613f075750805b601f850160051c820191505b81811015612e1c57828155600101613f13565b815167ffffffffffffffff811115613f4057613f4061397d565b613f5481613f4e8454613dfd565b84613ee0565b602080601f831160018114613f895760008415613f715750858301515b600019600386901b1c1916600185901b178555612e1c565b600085815260208120601f198616915b82811015613fb857888601518255948401946001909101908401613f99565b5085821015613fd65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351613ff8818460208801613805565b83519083019061400c818360208801613805565b01949350505050565b600081600019048311821515161561402f5761402f613e7f565b500290565b60006020828403121561404657600080fd5b5051919050565b6101808152600061406261018083018f613831565b8d60208401528c60408401528b60608401528a608084015282810360a084015261408c818b613831565b91505087151560c083015286151560e08301528515156101008301526001600160a01b0385166101208301526140c761014083018515159052565b826101608301529d9c50505050505050505050505050565b60006fffffffffffffffffffffffffffffffff8381169083168181101561410857614108613e7f565b039392505050565b60006fffffffffffffffffffffffffffffffff80831681851680830382111561400c5761400c613e7f565b60008282101561414d5761414d613e7f565b500390565b60008161416157614161613e7f565b506000190190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261164b6080830184613831565b6000602082840312156141ad57600080fd5b8151611d2d816137ba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826141f6576141f66141b8565b500490565b60008261420a5761420a6141b8565b50069056fea2646970667358221220c9fe67d5c9a05b04e24e801dceff4f638817ca8489e6daef7f258905363703d464736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000001f50726f6261626c79204e6f7468696e672047656e6573697320436861726d73000000000000000000000000000000000000000000000000000000000000000006504e4348524d0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Probably Nothing Genesis Charms
Arg [1] : symbol (string): PNCHRM
Arg [2] : _maxSupply (uint256): 115792089237316195423570985008687907853269984665640564039457584007913129639935

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [4] : 50726f6261626c79204e6f7468696e672047656e6573697320436861726d7300
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 504e4348524d0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

149:5989:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880:358:5;;;;;;;;;;-1:-1:-1;3880:358:5;;;;;:::i;:::-;;:::i;:::-;;;707:14:16;;700:22;682:41;;670:2;655:18;3880:358:5;;;;;;;;5544:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7024:200::-;;;;;;;;;;-1:-1:-1;7024:200:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1893:55:16;;;1875:74;;1863:2;1848:18;7024:200:5;1729:226:16;6602:369:5;;;;;;;;;;-1:-1:-1;6602:369:5;;;;;:::i;:::-;;:::i;:::-;;5290:112:1;;;;;;;;;;-1:-1:-1;5290:112:1;;;;;:::i;:::-;;:::i;332:58::-;;;;;;;;;;-1:-1:-1;332:58:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;2566:25:16;;;2554:2;2539:18;332:58:1;2420:177:16;5888:115:1;;;;;;;;;;-1:-1:-1;5888:115:1;;;;;:::i;:::-;;:::i;2486:92:5:-;;;;;;;;;;-1:-1:-1;2539:7:5;2561:12;2486:92;;5801:81:1;;;;;;;;;;-1:-1:-1;5801:81:1;;;;;:::i;:::-;;:::i;7842:136:5:-;;;;;;;;;;-1:-1:-1;7842:136:5;;;;;:::i;:::-;;:::i;3100:721::-;;;;;;;;;;-1:-1:-1;3100:721:5;;;;;:::i;:::-;;:::i;4405:203:1:-;;;;;;;;;;;;;:::i;8036:151:5:-;;;;;;;;;;-1:-1:-1;8036:151:5;;;;;:::i;:::-;;:::i;3930:160:1:-;;;;;;;;;;-1:-1:-1;3930:160:1;;;;;:::i;:::-;;:::i;4614:106::-;;;;;;;;;;-1:-1:-1;4614:106:1;;;;;:::i;:::-;;:::i;4096:303::-;;;;;;;;;;-1:-1:-1;4096:303:1;;;;;:::i;:::-;;:::i;2642:174:5:-;;;;;;;;;;-1:-1:-1;2642:174:5;;;;;:::i;:::-;;:::i;4842:86:1:-;;;;;;;;;;-1:-1:-1;4842:86:1;;;;;:::i;:::-;;:::i;5155:129::-;;;;;;;;;;-1:-1:-1;5155:129:1;;;;;:::i;:::-;;:::i;5555:119::-;;;;;;;;;;-1:-1:-1;5555:119:1;;;;;:::i;:::-;;:::i;5374:116:5:-;;;;;;;;;;-1:-1:-1;5374:116:5;;;;;:::i;:::-;;:::i;1729:260:1:-;;;;;;;;;;-1:-1:-1;1729:260:1;;;;;:::i;:::-;;:::i;4289:208:5:-;;;;;;;;;;-1:-1:-1;4289:208:5;;;;;:::i;:::-;;:::i;5680:115:1:-;;;;;;;;;;-1:-1:-1;5680:115:1;;;;;:::i;:::-;;:::i;1661:101:13:-;;;;;;;;;;;;;:::i;4726:110:1:-;;;;;;;;;;-1:-1:-1;4726:110:1;;;;;:::i;:::-;;:::i;1029:85:13:-;;;;;;;;;;-1:-1:-1;1101:6:13;;-1:-1:-1;;;;;1101:6:13;1029:85;;5692:96:5;;;;;;;;;;;;;:::i;1217:21:1:-;;;;;;;;;;-1:-1:-1;1217:21:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;7283:269:5:-;;;;;;;;;;-1:-1:-1;7283:269:5;;;;;:::i;:::-;;:::i;8245:300::-;;;;;;;;;;-1:-1:-1;8245:300:5;;;;;:::i;:::-;;:::i;5053:96:1:-;;;;;;;;;;-1:-1:-1;5053:96:1;;;;;:::i;:::-;;:::i;5846:377:5:-;;;;;;;;;;-1:-1:-1;5846:377:5;;;;;:::i;:::-;;:::i;12517:43::-;;;;;;;;;;;;;;;;209:17:1;;;;;;;;;;-1:-1:-1;209:17:1;;;;-1:-1:-1;;;;;209:17:1;;;5408:141;;;;;;;;;;-1:-1:-1;5408:141:1;;;;;:::i;:::-;;:::i;6009:80::-;;;;;;;;;;-1:-1:-1;6009:80:1;;;;;:::i;:::-;;:::i;1999:1410::-;;;;;;:::i;:::-;;:::i;7610:178:5:-;;;;;;;;;;-1:-1:-1;7610:178:5;;;;;:::i;:::-;-1:-1:-1;;;;;7748:25:5;;;7727:4;7748:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7610:178;232:19:1;;;;;;;;;;;;;;;;1911:198:13;;;;;;;;;;-1:-1:-1;1911:198:13;;;;;:::i;:::-;;:::i;3415:509:1:-;;;;;;;;;;-1:-1:-1;3415:509:1;;;;;:::i;:::-;;:::i;4934:113::-;;;;;;;;;;-1:-1:-1;4934:113:1;;;;;:::i;:::-;;:::i;276:23::-;;;;;;;;;;;;;;;;3880:358:5;4002:4;4029:40;;;4044:25;4029:40;;:98;;-1:-1:-1;4079:48:5;;;4094:33;4079:48;4029:98;:158;;;-1:-1:-1;4137:50:5;;;4152:35;4137:50;4029:158;:204;;;-1:-1:-1;886:25:3;871:40;;;;4197:36:5;4016:217;3880:358;-1:-1:-1;;3880:358:5:o;5544:92::-;5598:13;5626:5;5619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5544:92;:::o;7024:200::-;7092:7;7115:16;7123:7;8832:4;8861:12;-1:-1:-1;8851:22:5;8775:103;7115:16;7107:74;;;;-1:-1:-1;;;7107:74:5;;12067:2:16;7107:74:5;;;12049:21:16;12106:2;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12216:15;12196:18;;;12189:43;12249:19;;7107:74:5;;;;;;;;;-1:-1:-1;7195:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;7195:24:5;;7024:200::o;6602:369::-;6670:13;6686:24;6702:7;6686:15;:24::i;:::-;6670:40;;6730:5;-1:-1:-1;;;;;6724:11:5;:2;-1:-1:-1;;;;;6724:11:5;;6716:58;;;;-1:-1:-1;;;6716:58:5;;12481:2:16;6716:58:5;;;12463:21:16;12520:2;12500:18;;;12493:30;12559:34;12539:18;;;12532:62;12630:4;12610:18;;;12603:32;12652:19;;6716:58:5;12279:398:16;6716:58:5;667:10:2;-1:-1:-1;;;;;6796:21:5;;;;:62;;-1:-1:-1;6821:37:5;6838:5;667:10:2;7610:178:5;:::i;6821:37::-;6781:150;;;;-1:-1:-1;;;6781:150:5;;12884:2:16;6781:150:5;;;12866:21:16;12923:2;12903:18;;;12896:30;12962:34;12942:18;;;12935:62;13033:27;13013:18;;;13006:55;13078:19;;6781:150:5;12682:421:16;6781:150:5;6938:28;6947:2;6951:7;6960:5;6938:8;:28::i;:::-;6664:307;6602:369;;:::o;5290:112:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5376:6:1::1;5383:5;5376:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;;;;;;;;;;5375:20;5353:6;5360:5;5353:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;:42;;;;;;;;;;;;;;;;;;5290:112:::0;:::o;5888:115::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5976:6:1::1;5983:5;5976:13;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;;;;;;;;;;;5975:21;5952:6;5959:5;5952:13;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;;:44;;;;;;;;;;;;;;;;;;5888:115:::0;:::o;6095:40::-;:::o;5801:81::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5858:2:1::1;:17:::0;;;::::1;-1:-1:-1::0;;;;;5858:17:1;;;::::1;::::0;;;::::1;::::0;;5801:81::o;7842:136:5:-;7945:28;7955:4;7961:2;7965:7;7945:9;:28::i;3100:721::-;3205:7;3238:16;3248:5;3238:9;:16::i;:::-;3230:5;:24;3222:71;;;;-1:-1:-1;;;3222:71:5;;13860:2:16;3222:71:5;;;13842:21:16;13899:2;13879:18;;;13872:30;13938:34;13918:18;;;13911:62;14009:4;13989:18;;;13982:32;14031:19;;3222:71:5;13658:398:16;3222:71:5;3299:22;2561:12;;;3299:22;;3416:339;3440:14;3436:1;:18;3416:339;;;3469:31;3503:14;;;:11;:14;;;;;;;;;3469:48;;;;;;;;;-1:-1:-1;;;;;3469:48:5;;;;;;;;;;;;;;;;;;3529:28;3525:87;;3589:14;;;-1:-1:-1;3525:87:5;3644:5;-1:-1:-1;;;;;3623:26:5;:17;-1:-1:-1;;;;;3623:26:5;;3619:130;;3680:5;3665:11;:20;3661:57;;-1:-1:-1;3706:1:5;-1:-1:-1;3699:8:5;;-1:-1:-1;;;3699:8:5;3661:57;3727:13;;;;:::i;:::-;;;;3619:130;-1:-1:-1;3456:3:5;;;;:::i;:::-;;;;3416:339;;;-1:-1:-1;3760:56:5;;-1:-1:-1;;;3760:56:5;;14652:2:16;3760:56:5;;;14634:21:16;14691:2;14671:18;;;14664:30;14730:34;14710:18;;;14703:62;14801:16;14781:18;;;14774:44;14835:19;;3760:56:5;14450:410:16;4405:203:1;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;4521:37:1::1;::::0;4472:21:::1;::::0;4454:15:::1;::::0;667:10:2;;4472:21:1;;4454:15;4521:37;4454:15;4521:37;4472:21;667:10:2;4521:37:1::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4503:55;;;4576:7;4568:33;;;::::0;-1:-1:-1;;;4568:33:1;;15277:2:16;4568:33:1::1;::::0;::::1;15259:21:16::0;15316:2;15296:18;;;15289:30;15355:15;15335:18;;;15328:43;15388:18;;4568:33:1::1;15075:337:16::0;4568:33:1::1;4444:164;;4405:203::o:0;8036:151:5:-;8143:39;8160:4;8166:2;8170:7;8143:39;;;;;;;;;;;;:16;:39::i;3930:160:1:-;3980:47;667:10:2;4015:1:1;4019:7;3980:12;:47::i;:::-;4042:41;;;667:10:2;15680:34:16;;4071:1:1;15745:2:16;15730:18;;15723:43;15782:18;;;15775:34;;;4042:41:1;;;;;;;15607:2:16;4042:41:1;;;3930:160;:::o;4614:106::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;4710:3:1::1;4690:6;4697:5;4690:13;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;:23;;;;4614:106:::0;;:::o;4096:303::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;4243:6:1::1;4250:5;4243:13;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;;4233:6;4203;4210:5;4203:13;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;:36;;;;:::i;:::-;:57;;4195:93;;;::::0;-1:-1:-1;;;4195:93:1;;16155:2:16;4195:93:1::1;::::0;::::1;16137:21:16::0;16194:2;16174:18;;;16167:30;16233:25;16213:18;;;16206:53;16276:18;;4195:93:1::1;15953:347:16::0;4195:93:1::1;4298:29;4308:10;4320:6;4298:9;:29::i;:::-;4342:50;::::0;;667:10:2;16633:34:16;;4363:1:1::1;16698:2:16::0;16683:18;;16676:34;-1:-1:-1;;;;;16746:15:16;;16726:18;;;16719:43;16793:2;16778:18;;16771:34;;;16836:3;16821:19;;16814:35;;;4342:50:1;;::::1;::::0;;;;16559:3:16;4342:50:1;;::::1;4096:303:::0;;;:::o;2642:174:5:-;2709:7;2561:12;;2732:5;:21;2724:69;;;;-1:-1:-1;;;2724:69:5;;17062:2:16;2724:69:5;;;17044:21:16;17101:2;17081:18;;;17074:30;17140:34;17120:18;;;17113:62;17211:5;17191:18;;;17184:33;17234:19;;2724:69:5;16860:399:16;2724:69:5;-1:-1:-1;2806:5:5;2642:174::o;4842:86:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;4911:3:1::1;:10;4917:4:::0;4911:3;:10:::1;:::i;5155:129::-:0;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5270:7:1::1;5241:6;5248:5;5241:13;;;;;;;;:::i;:::-;;;;;;;;;;;:26;;:36;;;;5155:129:::0;;:::o;5555:119::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5645:6:1::1;5652:5;5645:13;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;;;;;;;;;;5644:23;5619:6;5626:5;5619:13;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;:48;;;;;;;;;;;;;;;;;;5555:119:::0;:::o;5374:116:5:-;5438:7;5460:20;5472:7;5460:11;:20::i;:::-;:25;;5374:116;-1:-1:-1;;5374:116:5:o;1729:260:1:-;1866:28;;19809:66:16;19796:2;19792:15;;;19788:88;1866:28:1;;;19776:101:16;1825:4:1;;;;19893:12:16;;1866:28:1;;;;;;;;;;;;1856:39;;;;;;1841:54;;1905:9;1917:44;1936:12;;1917:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1950:4:1;;;-1:-1:-1;1956:4:1;;-1:-1:-1;1917:18:1;:44::i;:::-;1905:56;1729:260;-1:-1:-1;;;;;;1729:260:1:o;4289:208:5:-;4353:7;-1:-1:-1;;;;;4376:19:5;;4368:75;;;;-1:-1:-1;;;4368:75:5;;20118:2:16;4368:75:5;;;20100:21:16;20157:2;20137:18;;;20130:30;20196:34;20176:18;;;20169:62;20267:13;20247:18;;;20240:41;20298:19;;4368:75:5;19916:407:16;4368:75:5;-1:-1:-1;;;;;;4464:19:5;;;;;:12;:19;;;;;:27;;;;4289:208::o;5680:115:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5768:6:1::1;5775:5;5768:13;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;;;;;;;;;;;5767:21;5744:6;5751:5;5744:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:20;;:44:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;5680:115:1:o;1661:101:13:-;1101:6;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;1725:30:::1;1752:1;1725:18;:30::i;4726:110:1:-:0;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;4825:4:1::1;4805:6;4812:5;4805:13;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;:24;;;;;;:::i;5692:96:5:-:0;5748:13;5776:7;5769:14;;;;;:::i;1217:21:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1217:21:1;;;;;;;-1:-1:-1;;1217:21:1;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1217:21:1;;;;;;;;;;;:::o;7283:269:5:-;667:10:2;-1:-1:-1;;;;;7373:24:5;;;7365:63;;;;-1:-1:-1;;;7365:63:5;;20530:2:16;7365:63:5;;;20512:21:16;20569:2;20549:18;;;20542:30;20608:28;20588:18;;;20581:56;20654:18;;7365:63:5;20328:350:16;7365:63:5;667:10:2;7435:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7435:42:5;;;;;;;;;;;;:53;;;;;;;;;;;;;7499:48;;682:41:16;;;7435:42:5;;667:10:2;7499:48:5;;655:18:16;7499:48:5;;;;;;;7283:269;;:::o;8245:300::-;8376:28;8386:4;8392:2;8396:7;8376:9;:28::i;:::-;8425:48;8448:4;8454:2;8458:7;8467:5;8425:22;:48::i;:::-;8410:130;;;;-1:-1:-1;;;8410:130:5;;20885:2:16;8410:130:5;;;20867:21:16;20924:2;20904:18;;;20897:30;20963:34;20943:18;;;20936:62;21034:21;21014:18;;;21007:49;21073:19;;8410:130:5;20683:415:16;8410:130:5;8245:300;;;;:::o;5053:96:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5122:8:1::1;:20:::0;5053:96::o;5846:377:5:-;5939:13;5977:16;5985:7;8832:4;8861:12;-1:-1:-1;8851:22:5;8775:103;5977:16;5962:94;;;;-1:-1:-1;;;5962:94:5;;21305:2:16;5962:94:5;;;21287:21:16;21344:2;21324:18;;;21317:30;21383:34;21363:18;;;21356:62;21454:17;21434:18;;;21427:45;21489:19;;5962:94:5;21103:411:16;5962:94:5;6063:21;6087:10;:8;:10::i;:::-;6063:34;;6140:1;6122:7;6116:21;:25;:102;;;;;;;;;;;;;;;;;6176:7;6185:18;:7;:16;:18::i;:::-;6159:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6116:102;6103:115;5846:377;-1:-1:-1;;;5846:377:5:o;5408:141:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5526:16:1::1;5493:6;5500:5;5493:13;;;;;;;;:::i;:::-;;;;;;;;;;;:30;;;:49;;;;;-1:-1:-1::0;;;;;5493:49:1::1;;;;;-1:-1:-1::0;;;;;5493:49:1::1;;;;;;5408:141:::0;;:::o;6009:80::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;6070:4:1::1;:12:::0;6009:80::o;1999:1410::-;1680:1:14;2259:7;;:19;2251:63;;;;-1:-1:-1;;;2251:63:14;;22196:2:16;2251:63:14;;;22178:21:16;22235:2;22215:18;;;22208:30;22274:33;22254:18;;;22247:61;22325:18;;2251:63:14;21994:355:16;2251:63:14;1680:1;2389:7;:18;2132:6:1::1;:13:::0;2124:21;::::1;2116:54;;;::::0;-1:-1:-1;;;2116:54:1;;22556:2:16;2116:54:1::1;::::0;::::1;22538:21:16::0;22595:2;22575:18;;;22568:30;22634:22;22614:18;;;22607:50;22674:18;;2116:54:1::1;22354:344:16::0;2116:54:1::1;2228:6;2235:5;2228:13;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;;2218:6;2188;2195:5;2188:13;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;:36;;;;:::i;:::-;:57;;2180:102;;;::::0;-1:-1:-1;;;2180:102:1;;22905:2:16;2180:102:1::1;::::0;::::1;22887:21:16::0;;;22924:18;;;22917:30;22983:34;22963:18;;;22956:62;23035:18;;2180:102:1::1;22703:356:16::0;2180:102:1::1;2300:6;2307:5;2300:13;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;;;;;;;;;;2292:57;;;::::0;-1:-1:-1;;;2292:57:1;;23266:2:16;2292:57:1::1;::::0;::::1;23248:21:16::0;23305:2;23285:18;;;23278:30;23344:24;23324:18;;;23317:52;23386:18;;2292:57:1::1;23064:346:16::0;2292:57:1::1;2402:6;2380;2387:5;2380:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;:28;;;;:::i;:::-;2367:9;:41;2359:82;;;::::0;-1:-1:-1;;;2359:82:1;;23850:2:16;2359:82:1::1;::::0;::::1;23832:21:16::0;23889:2;23869:18;;;23862:30;23928;23908:18;;;23901:58;23976:18;;2359:82:1::1;23648:352:16::0;2359:82:1::1;2469:8;;2459:6;:18;;2451:62;;;::::0;-1:-1:-1;;;2451:62:1;;24207:2:16;2451:62:1::1;::::0;::::1;24189:21:16::0;24246:2;24226:18;;;24219:30;24285:33;24265:18;;;24258:61;24336:18;;2451:62:1::1;24005:355:16::0;2451:62:1::1;2570:6;2577:5;2570:13;;;;;;;;:::i;:::-;;;;;;;;;;;:26;;;2560:6;2531:5;:19;2537:12;667:10:2::0;;588:96;2537:12:1::1;-1:-1:-1::0;;;;;2531:19:1::1;-1:-1:-1::0;;;;;2531:19:1::1;;;;;;;;;;;;:26;2551:5;2531:26;;;;;;;;;;;;:35;;;;:::i;:::-;:65;;2523:100;;;::::0;-1:-1:-1;;;2523:100:1;;24567:2:16;2523:100:1::1;::::0;::::1;24549:21:16::0;24606:2;24586:18;;;24579:30;24645:24;24625:18;;;24618:52;24687:18;;2523:100:1::1;24365:346:16::0;2523:100:1::1;667:10:2::0;2634:19:1::1;::::0;;;:5:::1;:19;::::0;;;;;;;:26;;;;;;;;:36;;2664:6;;2634:19;:36:::1;::::0;2664:6;;2634:36:::1;:::i;:::-;::::0;;;-1:-1:-1;;2683:6:1::1;:13:::0;;2690:5;;2683:13;::::1;;;;;:::i;:::-;;;;;;;;;;;:20;;;;;;;;;;;;2680:164;;;2719:9;2731:40;667:10:2::0;2759:11:1::1;;2731:13;:40::i;:::-;2719:52;;2793:4;2785:48;;;::::0;-1:-1:-1;;;2785:48:1;;24918:2:16;2785:48:1::1;::::0;::::1;24900:21:16::0;24957:2;24937:18;;;24930:30;24996:33;24976:18;;;24969:61;25047:18;;2785:48:1::1;24716:355:16::0;2785:48:1::1;2705:139;2680:164;2857:6;2864:5;2857:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:20:::1;:13;::::0;;::::1;;:20;::::0;::::1;;2854:132;;;2901:2;::::0;2930:1:::1;::::0;-1:-1:-1;;;;;2901:2:1::1;:12;667:10:2::0;2901:26:1::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;1893:55:16;;;2901:26:1::1;::::0;::::1;1875:74:16::0;1848:18;;2901:26:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;2893:82;;;::::0;-1:-1:-1;;;2893:82:1;;25467:2:16;2893:82:1::1;::::0;::::1;25449:21:16::0;25506:2;25486:18;;;25479:30;25545:34;25525:18;;;25518:62;25616:9;25596:18;;;25589:37;25643:19;;2893:82:1::1;25265:403:16::0;2893:82:1::1;2999:6;3006:5;2999:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;;;;;;;;;;2996:223;;;3033:10;3070:6;3077:5;3070:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;::::0;;;::::1;;:30;;::::0;;;::::1;-1:-1:-1::0;;;;;3070:30:1::1;::::0;-1:-1:-1;3070:30:1;3123:12:::1;667:10:2::0;3123:26:1::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;1893:55:16;;;3123:26:1::1;::::0;::::1;1875:74:16::0;1848:18;;3123:26:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;3115:93;;;::::0;-1:-1:-1;;;3115:93:1;;25875:2:16;3115:93:1::1;::::0;::::1;25857:21:16::0;25914:2;25894:18;;;25887:30;25953:34;25933:18;;;25926:62;26024:20;26004:18;;;25997:48;26062:19;;3115:93:1::1;25673:414:16::0;3115:93:1::1;3019:200;2996:223;3260:6;3229;3236:5;3229:13;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3277:31:1::1;::::0;-1:-1:-1;667:10:2;3301:6:1::1;3277:9;:31::i;:::-;3323:79;667:10:2::0;3366:6:1::1;3344;3351:5;3344:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;:28;;;;:::i;:::-;3323:79;::::0;;-1:-1:-1;;;;;16651:15:16;;;;16633:34;;16698:2;16683:18;;16676:34;;;;667:10:2;16726:18:16;;;16719:43;16793:2;16778:18;;16771:34;;;16836:3;16821:19;;16814:35;;;3323:79:1;;;;;16559:3:16;3323:79:1;;::::1;-1:-1:-1::0;;1637:1:14;2562:7;:22;-1:-1:-1;;1999:1410:1:o;1911:198:13:-;1101:6;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;-1:-1:-1;;;;;1999:22:13;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:13;;26841:2:16;1991:73:13::1;::::0;::::1;26823:21:16::0;26880:2;26860:18;;;26853:30;26919:34;26899:18;;;26892:62;26990:8;26970:18;;;26963:36;27016:19;;1991:73:13::1;26639:402:16::0;1991:73:13::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;3415:509:1:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;3644:6:1::1;:13:::0;;3679:105:::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;3628:13:::1;3679:105:::0;;;;;;;;;;;;;;;;;;;;;;;;;::::1;;::::0;;;;;::::1;;::::0;;;;;::::1;;::::0;;;;-1:-1:-1;;;;;3679:105:1;::::1;::::0;;;;3779:4:::1;3679:105:::0;;;;;;3667:118;::::1;::::0;;;;;;;3644:13;;3679:105;3667:118:::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;3667:118:1::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;3667:118:1::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;::::1;;::::0;;;;;;;::::1;;;;::::0;;;;::::1;;::::0;;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3667:118:1;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;;::::0;;;::::1;;::::0;;3800:117:::1;::::0;::::1;::::0;::::1;::::0;3811:5;;3818:10;;-1:-1:-1;;3833:6:1;;3841:13;;3856:4;;3862:7;;3871:6;;3879;;3887:16;;-1:-1:-1;;3911:5:1;;3800:117:::1;:::i;:::-;;;;;;;;3618:306;3415:509:::0;;;;;;;;;:::o;4934:113::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;667:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;13310:2:16;1233:68:13;;;13292:21:16;;;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;13440:18;;1233:68:13;13108:356:16;1233:68:13;5034:6:1::1;5012;5019:5;5012:13;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;:28;;;;4934:113:::0;;:::o;12348:165:5:-;12440:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;12440:29:5;;;;;;;;;12480:28;;12440:24;;12480:28;;;;;;;12348:165;;;:::o;10763:1486::-;10855:35;10893:20;10905:7;10893:11;:20::i;:::-;10962:18;;10855:58;;-1:-1:-1;10920:22:5;;-1:-1:-1;;;;;10946:34:5;667:10:2;-1:-1:-1;;;;;10946:34:5;;:80;;;-1:-1:-1;667:10:2;10990:20:5;11002:7;10990:11;:20::i;:::-;-1:-1:-1;;;;;10990:36:5;;10946:80;:140;;;-1:-1:-1;11053:18:5;;11036:50;;667:10:2;7610:178:5;:::i;11036:50::-;10920:167;;11109:17;11094:98;;;;-1:-1:-1;;;11094:98:5;;28450:2:16;11094:98:5;;;28432:21:16;28489:2;28469:18;;;28462:30;28528:34;28508:18;;;28501:62;28599:20;28579:18;;;28572:48;28637:19;;11094:98:5;28248:414:16;11094:98:5;11236:4;-1:-1:-1;;;;;11214:26:5;:13;:18;;;-1:-1:-1;;;;;11214:26:5;;11199:95;;;;-1:-1:-1;;;11199:95:5;;28869:2:16;11199:95:5;;;28851:21:16;28908:2;28888:18;;;28881:30;28947:34;28927:18;;;28920:62;29018:8;28998:18;;;28991:36;29044:19;;11199:95:5;28667:402:16;11199:95:5;11472:49;11489:1;11493:7;11502:13;:18;;;11472:8;:49::i;:::-;-1:-1:-1;;;;;11528:18:5;;;;;;:12;:18;;;;;:31;;11558:1;;11528:18;:31;;11558:1;;11528:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11565:16:5;;-1:-1:-1;11565:16:5;;;:12;:16;;;;;:29;;-1:-1:-1;;;11565:16:5;;:29;;-1:-1:-1;;11565:29:5;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11623:43:5;;;;;;;;-1:-1:-1;;;;;11623:43:5;;;;;;11649:15;11623:43;;;;;;;;;-1:-1:-1;11600:20:5;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;11912:11;11612:7;-1:-1:-1;11912:11:5;:::i;:::-;11974:1;11933:24;;;:11;:24;;;;;:29;11890:33;;-1:-1:-1;;;;;;11933:29:5;11929:229;;11990:20;11998:11;8832:4;8861:12;-1:-1:-1;8851:22:5;8775:103;11990:20;11986:166;;;12049:94;;;;;;;;12075:18;;-1:-1:-1;;;;;12049:94:5;;;;;;12105:28;;;;12049:94;;;;;;;;;;-1:-1:-1;12022:24:5;;;:11;:24;;;;;;;:121;;;;;;;;;;;;;;;;;;;;;;;;11986:166;12188:7;12184:2;-1:-1:-1;;;;;12169:27:5;12178:4;-1:-1:-1;;;;;12169:27:5;;;;;;;;;;;12202:42;10849:1400;;;10763:1486;;;:::o;8882:96::-;8946:27;8956:2;8960:8;8946:27;;;;;;;;;;;;:9;:27::i;4739:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4851:16:5;4859:7;8832:4;8861:12;-1:-1:-1;8851:22:5;8775:103;4851:16;4843:71;;;;-1:-1:-1;;;4843:71:5;;29785:2:16;4843:71:5;;;29767:21:16;29824:2;29804:18;;;29797:30;29863:34;29843:18;;;29836:62;29934:12;29914:18;;;29907:40;29964:19;;4843:71:5;29583:406:16;4843:71:5;4921:26;4968:12;4957:7;:23;4953:91;;5011:22;5021:12;5011:7;:22;:::i;:::-;:26;;5036:1;5011:26;:::i;:::-;4990:47;;4953:91;5070:7;5050:207;5087:18;5079:4;:26;5050:207;;5123:31;5157:17;;;:11;:17;;;;;;;;;5123:51;;;;;;;;;-1:-1:-1;;;;;5123:51:5;;;;;;;;;;;;;;;;;;5186:28;5182:69;;5233:9;4739:586;-1:-1:-1;;;;4739:586:5:o;5182:69::-;-1:-1:-1;5107:6:5;;;;:::i;:::-;;;;5050:207;;;-1:-1:-1;5263:57:5;;-1:-1:-1;;;5263:57:5;;30527:2:16;5263:57:5;;;30509:21:16;30566:2;30546:18;;;30539:30;30605:34;30585:18;;;30578:62;30676:17;30656:18;;;30649:45;30711:19;;5263:57:5;30325:411:16;1154:184:12;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:12:o;2263:187:13:-;2355:6;;;-1:-1:-1;;;;;2371:17:13;;;;;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;14018:667:5:-;14150:4;-1:-1:-1;;;;;14166:13:5;;1078:20:0;1116:8;14162:519:5;;14203:72;;;;;-1:-1:-1;;;;;14203:36:5;;;;;:72;;667:10:2;;14254:4:5;;14260:7;;14269:5;;14203:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14203:72:5;;;;;;;;-1:-1:-1;;14203:72:5;;;;;;;;;;;;:::i;:::-;;;14191:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14430:6;:13;14447:1;14430:18;14426:209;;14462:61;;-1:-1:-1;;;14462:61:5;;20885:2:16;14462:61:5;;;20867:21:16;20924:2;20904:18;;;20897:30;20963:34;20943:18;;;20936:62;21034:21;21014:18;;;21007:49;21073:19;;14462:61:5;20683:415:16;14426:209:5;14605:6;14599:13;14590:6;14586:2;14582:15;14575:38;14191:452;14323:55;;14333:45;14323:55;;-1:-1:-1;14316:62:5;;14162:519;-1:-1:-1;14670:4:5;14162:519;14018:667;;;;;;:::o;6466:87::-;6517:13;6545:3;6538:10;;;;;:::i;275:703:15:-;331:13;548:5;557:1;548:10;544:51;;-1:-1:-1;;574:10:15;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:15;;-1:-1:-1;720:2:15;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:15;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:15;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:15;928:2;919:11;;:::i;:::-;;;791:150;;9304:1239:5;9404:20;9427:12;-1:-1:-1;;;;;9453:16:5;;9445:62;;;;-1:-1:-1;;;9445:62:5;;32145:2:16;9445:62:5;;;32127:21:16;32184:2;32164:18;;;32157:30;32223:34;32203:18;;;32196:62;32294:3;32274:18;;;32267:31;32315:19;;9445:62:5;31943:397:16;9445:62:5;9642:21;9650:12;8832:4;8861:12;-1:-1:-1;8851:22:5;8775:103;9642:21;9641:22;9633:64;;;;-1:-1:-1;;;9633:64:5;;32547:2:16;9633:64:5;;;32529:21:16;32586:2;32566:18;;;32559:30;32625:31;32605:18;;;32598:59;32674:18;;9633:64:5;32345:353:16;9633:64:5;9723:12;9711:8;:24;;9703:71;;;;-1:-1:-1;;;9703:71:5;;32905:2:16;9703:71:5;;;32887:21:16;32944:2;32924:18;;;32917:30;32983:34;32963:18;;;32956:62;33054:4;33034:18;;;33027:32;33076:19;;9703:71:5;32703:398:16;9703:71:5;-1:-1:-1;;;;;9882:16:5;;9849:30;9882:16;;;:12;:16;;;;;;;;;9849:49;;;;;;;;;;;;;;;;;;;;;;;;;;;9923:116;;;;;;;;9942:19;;9849:49;;9923:116;;;9942:39;;9972:8;;9942:39;:::i;:::-;9923:116;;;;;;10024:8;9989:11;:24;;;:44;;;;:::i;:::-;9923:116;;;;;;;-1:-1:-1;;;;;9904:16:5;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;;;;;;;;;;;;10073:43;;;;;;;;;;;10099:15;10073:43;;;;;;;;10045:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10057:12;;10165:274;10189:8;10185:1;:12;10165:274;;;10217:38;;10242:12;;-1:-1:-1;;;;;10217:38:5;;;10234:1;;10217:38;;10234:1;;10217:38;10280:59;10311:1;10315:2;10319:12;10333:5;10280:22;:59::i;:::-;10263:147;;;;-1:-1:-1;;;10263:147:5;;20885:2:16;10263:147:5;;;20867:21:16;20924:2;20904:18;;;20897:30;20963:34;20943:18;;;20936:62;21034:21;21014:18;;;21007:49;21073:19;;10263:147:5;20683:415:16;10263:147:5;10418:14;;;;:::i;:::-;;;;10199:3;;;;;:::i;:::-;;;;10165:274;;;-1:-1:-1;10445:12:5;:27;;;10478:60;8245:300;1689:662:12;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2060:57;;1930:376;;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2234:57;;1930:376;-1:-1:-1;1866:3:12;;;;:::i;:::-;;;;1828:488;;;-1:-1:-1;2332:12:12;1689:662;-1:-1:-1;;;1689:662:12:o;14:177:16:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;734:258::-;806:1;816:113;830:6;827:1;824:13;816:113;;;906:11;;;900:18;887:11;;;880:39;852:2;845:10;816:113;;;947:6;944:1;941:13;938:48;;;-1:-1:-1;;982:1:16;964:16;;957:27;734:258::o;997:317::-;1039:3;1077:5;1071:12;1104:6;1099:3;1092:19;1120:63;1176:6;1169:4;1164:3;1160:14;1153:4;1146:5;1142:16;1120:63;:::i;:::-;1228:2;1216:15;-1:-1:-1;;1212:88:16;1203:98;;;;1303:4;1199:109;;997:317;-1:-1:-1;;997:317:16:o;1319:220::-;1468:2;1457:9;1450:21;1431:4;1488:45;1529:2;1518:9;1514:18;1506:6;1488:45;:::i;1544:180::-;1603:6;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;-1:-1:-1;1695:23:16;;1544:180;-1:-1:-1;1544:180:16:o;1960:196::-;2028:20;;-1:-1:-1;;;;;2077:54:16;;2067:65;;2057:93;;2146:1;2143;2136:12;2057:93;1960:196;;;:::o;2161:254::-;2229:6;2237;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;:::-;2319:39;2405:2;2390:18;;;;2377:32;;-1:-1:-1;;;2161:254:16:o;2602:186::-;2661:6;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;2793:328::-;2870:6;2878;2886;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2978:29;2997:9;2978:29;:::i;:::-;2968:39;;3026:38;3060:2;3049:9;3045:18;3026:38;:::i;:::-;3016:48;;3111:2;3100:9;3096:18;3083:32;3073:42;;2793:328;;;;;:::o;3126:248::-;3194:6;3202;3255:2;3243:9;3234:7;3230:23;3226:32;3223:52;;;3271:1;3268;3261:12;3223:52;-1:-1:-1;;3294:23:16;;;3364:2;3349:18;;;3336:32;;-1:-1:-1;3126:248:16:o;3379:322::-;3456:6;3464;3472;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3577:9;3564:23;3554:33;;3634:2;3623:9;3619:18;3606:32;3596:42;;3657:38;3691:2;3680:9;3676:18;3657:38;:::i;:::-;3647:48;;3379:322;;;;;:::o;3706:184::-;3758:77;3755:1;3748:88;3855:4;3852:1;3845:15;3879:4;3876:1;3869:15;3895:691;3960:5;3990:18;4031:2;4023:6;4020:14;4017:40;;;4037:18;;:::i;:::-;4171:2;4165:9;4237:2;4225:15;;-1:-1:-1;;4221:24:16;;;4247:2;4217:33;4213:42;4201:55;;;4271:18;;;4291:22;;;4268:46;4265:72;;;4317:18;;:::i;:::-;4357:10;4353:2;4346:22;4386:6;4377:15;;4416:6;4408;4401:22;4456:3;4447:6;4442:3;4438:16;4435:25;4432:45;;;4473:1;4470;4463:12;4432:45;4523:6;4518:3;4511:4;4503:6;4499:17;4486:44;4578:1;4571:4;4562:6;4554;4550:19;4546:30;4539:41;;;;3895:691;;;;;:::o;4591:222::-;4634:5;4687:3;4680:4;4672:6;4668:17;4664:27;4654:55;;4705:1;4702;4695:12;4654:55;4727:80;4803:3;4794:6;4781:20;4774:4;4766:6;4762:17;4727:80;:::i;4818:322::-;4887:6;4940:2;4928:9;4919:7;4915:23;4911:32;4908:52;;;4956:1;4953;4946:12;4908:52;4996:9;4983:23;5029:18;5021:6;5018:30;5015:50;;;5061:1;5058;5051:12;5015:50;5084;5126:7;5117:6;5106:9;5102:22;5084:50;:::i;5145:367::-;5208:8;5218:6;5272:3;5265:4;5257:6;5253:17;5249:27;5239:55;;5290:1;5287;5280:12;5239:55;-1:-1:-1;5313:20:16;;5356:18;5345:30;;5342:50;;;5388:1;5385;5378:12;5342:50;5425:4;5417:6;5413:17;5401:29;;5485:3;5478:4;5468:6;5465:1;5461:14;5453:6;5449:27;5445:38;5442:47;5439:67;;;5502:1;5499;5492:12;5439:67;5145:367;;;;;:::o;5517:511::-;5612:6;5620;5628;5681:2;5669:9;5660:7;5656:23;5652:32;5649:52;;;5697:1;5694;5687:12;5649:52;5720:29;5739:9;5720:29;:::i;:::-;5710:39;;5800:2;5789:9;5785:18;5772:32;5827:18;5819:6;5816:30;5813:50;;;5859:1;5856;5849:12;5813:50;5898:70;5960:7;5951:6;5940:9;5936:22;5898:70;:::i;:::-;5517:511;;5987:8;;-1:-1:-1;5872:96:16;;-1:-1:-1;;;;5517:511:16:o;6033:390::-;6111:6;6119;6172:2;6160:9;6151:7;6147:23;6143:32;6140:52;;;6188:1;6185;6178:12;6140:52;6224:9;6211:23;6201:33;;6285:2;6274:9;6270:18;6257:32;6312:18;6304:6;6301:30;6298:50;;;6344:1;6341;6334:12;6298:50;6367;6409:7;6400:6;6389:9;6385:22;6367:50;:::i;:::-;6357:60;;;6033:390;;;;;:::o;6428:1142::-;6817:4;6846:3;6876:2;6865:9;6858:21;6902:45;6943:2;6932:9;6928:18;6920:6;6902:45;:::i;:::-;6888:59;;6983:6;6978:2;6967:9;6963:18;6956:34;7026:6;7021:2;7010:9;7006:18;6999:34;7069:6;7064:2;7053:9;7049:18;7042:34;7113:6;7107:3;7096:9;7092:19;7085:35;7169:9;7161:6;7157:22;7151:3;7140:9;7136:19;7129:51;7197:33;7223:6;7215;7197:33;:::i;:::-;7274:14;;7267:22;7261:3;7246:19;;7239:51;-1:-1:-1;;7334:14:16;;7327:22;7321:3;7306:19;;7299:51;7394:14;;7387:22;7381:3;7366:19;;7359:51;-1:-1:-1;;;;;7447:55:16;7441:3;7426:19;;7419:84;7547:15;7540:23;7534:3;7519:19;;;7512:52;7189:41;6428:1142;-1:-1:-1;;;;;;6428:1142:16:o;7575:160::-;7640:20;;7696:13;;7689:21;7679:32;;7669:60;;7725:1;7722;7715:12;7740:254;7805:6;7813;7866:2;7854:9;7845:7;7841:23;7837:32;7834:52;;;7882:1;7879;7872:12;7834:52;7905:29;7924:9;7905:29;:::i;:::-;7895:39;;7953:35;7984:2;7973:9;7969:18;7953:35;:::i;:::-;7943:45;;7740:254;;;;;:::o;7999:667::-;8094:6;8102;8110;8118;8171:3;8159:9;8150:7;8146:23;8142:33;8139:53;;;8188:1;8185;8178:12;8139:53;8211:29;8230:9;8211:29;:::i;:::-;8201:39;;8259:38;8293:2;8282:9;8278:18;8259:38;:::i;:::-;8249:48;;8344:2;8333:9;8329:18;8316:32;8306:42;;8399:2;8388:9;8384:18;8371:32;8426:18;8418:6;8415:30;8412:50;;;8458:1;8455;8448:12;8412:50;8481:22;;8534:4;8526:13;;8522:27;-1:-1:-1;8512:55:16;;8563:1;8560;8553:12;8512:55;8586:74;8652:7;8647:2;8634:16;8629:2;8625;8621:11;8586:74;:::i;:::-;8576:84;;;7999:667;;;;;;;:::o;8918:254::-;8986:6;8994;9047:2;9035:9;9026:7;9022:23;9018:32;9015:52;;;9063:1;9060;9053:12;9015:52;9099:9;9086:23;9076:33;;9128:38;9162:2;9151:9;9147:18;9128:38;:::i;9362:573::-;9466:6;9474;9482;9490;9543:2;9531:9;9522:7;9518:23;9514:32;9511:52;;;9559:1;9556;9549:12;9511:52;9595:9;9582:23;9572:33;;9652:2;9641:9;9637:18;9624:32;9614:42;;9707:2;9696:9;9692:18;9679:32;9734:18;9726:6;9723:30;9720:50;;;9766:1;9763;9756:12;9720:50;9805:70;9867:7;9858:6;9847:9;9843:22;9805:70;:::i;:::-;9362:573;;;;-1:-1:-1;9894:8:16;-1:-1:-1;;;;9362:573:16:o;9940:260::-;10008:6;10016;10069:2;10057:9;10048:7;10044:23;10040:32;10037:52;;;10085:1;10082;10075:12;10037:52;10108:29;10127:9;10108:29;:::i;:::-;10098:39;;10156:38;10190:2;10179:9;10175:18;10156:38;:::i;10387:1031::-;10529:6;10537;10545;10553;10561;10569;10577;10585;10593;10646:3;10634:9;10625:7;10621:23;10617:33;10614:53;;;10663:1;10660;10653:12;10614:53;10703:9;10690:23;10732:18;10773:2;10765:6;10762:14;10759:34;;;10789:1;10786;10779:12;10759:34;10812:50;10854:7;10845:6;10834:9;10830:22;10812:50;:::i;:::-;10802:60;;10909:2;10898:9;10894:18;10881:32;10871:42;;10960:2;10949:9;10945:18;10932:32;10922:42;;11011:2;11000:9;10996:18;10983:32;10973:42;;11068:3;11057:9;11053:19;11040:33;11024:49;;11098:2;11088:8;11085:16;11082:36;;;11114:1;11111;11104:12;11082:36;;11137:52;11181:7;11170:8;11159:9;11155:24;11137:52;:::i;:::-;11127:62;;;11208:36;11239:3;11228:9;11224:19;11208:36;:::i;:::-;11198:46;;11263:36;11294:3;11283:9;11279:19;11263:36;:::i;:::-;11253:46;;11318:36;11349:3;11338:9;11334:19;11318:36;:::i;:::-;11308:46;;11373:39;11407:3;11396:9;11392:19;11373:39;:::i;:::-;11363:49;;10387:1031;;;;;;;;;;;:::o;11423:437::-;11502:1;11498:12;;;;11545;;;11566:61;;11620:4;11612:6;11608:17;11598:27;;11566:61;11673:2;11665:6;11662:14;11642:18;11639:38;11636:218;;11710:77;11707:1;11700:88;11811:4;11808:1;11801:15;11839:4;11836:1;11829:15;11636:218;;11423:437;;;:::o;13469:184::-;13521:77;13518:1;13511:88;13618:4;13615:1;13608:15;13642:4;13639:1;13632:15;14061:184;14113:77;14110:1;14103:88;14210:4;14207:1;14200:15;14234:4;14231:1;14224:15;14250:195;14289:3;-1:-1:-1;;14313:5:16;14310:77;14307:103;;14390:18;;:::i;:::-;-1:-1:-1;14437:1:16;14426:13;;14250:195::o;15820:128::-;15860:3;15891:1;15887:6;15884:1;15881:13;15878:39;;;15897:18;;:::i;:::-;-1:-1:-1;15933:9:16;;15820:128::o;17390:545::-;17492:2;17487:3;17484:11;17481:448;;;17528:1;17553:5;17549:2;17542:17;17598:4;17594:2;17584:19;17668:2;17656:10;17652:19;17649:1;17645:27;17639:4;17635:38;17704:4;17692:10;17689:20;17686:47;;;-1:-1:-1;17727:4:16;17686:47;17782:2;17777:3;17773:12;17770:1;17766:20;17760:4;17756:31;17746:41;;17837:82;17855:2;17848:5;17845:13;17837:82;;;17900:17;;;17881:1;17870:13;17837:82;;18171:1471;18297:3;18291:10;18324:18;18316:6;18313:30;18310:56;;;18346:18;;:::i;:::-;18375:97;18465:6;18425:38;18457:4;18451:11;18425:38;:::i;:::-;18419:4;18375:97;:::i;:::-;18527:4;;18591:2;18580:14;;18608:1;18603:782;;;;19429:1;19446:6;19443:89;;;-1:-1:-1;19498:19:16;;;19492:26;19443:89;-1:-1:-1;;18068:1:16;18064:11;;;18060:84;18056:89;18046:100;18152:1;18148:11;;;18043:117;19545:81;;18573:1063;;18603:782;17337:1;17330:14;;;17374:4;17361:18;;-1:-1:-1;;18639:79:16;;;18816:236;18830:7;18827:1;18824:14;18816:236;;;18919:19;;;18913:26;18898:42;;19011:27;;;;18979:1;18967:14;;;;18846:19;;18816:236;;;18820:3;19080:6;19071:7;19068:19;19065:261;;;19141:19;;;19135:26;-1:-1:-1;;19224:1:16;19220:14;;;19236:3;19216:24;19212:97;19208:102;19193:118;19178:134;;19065:261;-1:-1:-1;;;;;19372:1:16;19356:14;;;19352:22;19339:36;;-1:-1:-1;18171:1471:16:o;21519:470::-;21698:3;21736:6;21730:13;21752:53;21798:6;21793:3;21786:4;21778:6;21774:17;21752:53;:::i;:::-;21868:13;;21827:16;;;;21890:57;21868:13;21827:16;21924:4;21912:17;;21890:57;:::i;:::-;21963:20;;21519:470;-1:-1:-1;;;;21519:470:16:o;23415:228::-;23455:7;23581:1;-1:-1:-1;;23509:74:16;23506:1;23503:81;23498:1;23491:9;23484:17;23480:105;23477:131;;;23588:18;;:::i;:::-;-1:-1:-1;23628:9:16;;23415:228::o;25076:184::-;25146:6;25199:2;25187:9;25178:7;25174:23;25170:32;25167:52;;;25215:1;25212;25205:12;25167:52;-1:-1:-1;25238:16:16;;25076:184;-1:-1:-1;25076:184:16:o;27046:1197::-;27509:3;27498:9;27491:22;27472:4;27536:46;27577:3;27566:9;27562:19;27554:6;27536:46;:::i;:::-;27618:6;27613:2;27602:9;27598:18;27591:34;27661:6;27656:2;27645:9;27641:18;27634:34;27704:6;27699:2;27688:9;27684:18;27677:34;27748:6;27742:3;27731:9;27727:19;27720:35;27804:9;27796:6;27792:22;27786:3;27775:9;27771:19;27764:51;27832:33;27858:6;27850;27832:33;:::i;:::-;27824:41;;;27916:6;27909:14;27902:22;27896:3;27885:9;27881:19;27874:51;27976:6;27969:14;27962:22;27956:3;27945:9;27941:19;27934:51;28036:6;28029:14;28022:22;28016:3;28005:9;28001:19;27994:51;-1:-1:-1;;;;;28086:6:16;28082:55;28076:3;28065:9;28061:19;28054:84;28147:45;28187:3;28176:9;28172:19;28163:7;516:13;509:21;497:34;;446:91;28147:45;28229:7;28223:3;28212:9;28208:19;28201:36;27046:1197;;;;;;;;;;;;;;;:::o;29074:246::-;29114:4;29143:34;29227:10;;;;29197;;29249:12;;;29246:38;;;29264:18;;:::i;:::-;29301:13;;29074:246;-1:-1:-1;;;29074:246:16:o;29325:253::-;29365:3;29393:34;29454:2;29451:1;29447:10;29484:2;29481:1;29477:10;29515:3;29511:2;29507:12;29502:3;29499:21;29496:47;;;29523:18;;:::i;29994:125::-;30034:4;30062:1;30059;30056:8;30053:34;;;30067:18;;:::i;:::-;-1:-1:-1;30104:9:16;;29994:125::o;30124:196::-;30163:3;30191:5;30181:39;;30200:18;;:::i;:::-;-1:-1:-1;;;30236:78:16;;30124:196::o;30741:512::-;30935:4;-1:-1:-1;;;;;31045:2:16;31037:6;31033:15;31022:9;31015:34;31097:2;31089:6;31085:15;31080:2;31069:9;31065:18;31058:43;;31137:6;31132:2;31121:9;31117:18;31110:34;31180:3;31175:2;31164:9;31160:18;31153:31;31201:46;31242:3;31231:9;31227:19;31219:6;31201:46;:::i;31258:249::-;31327:6;31380:2;31368:9;31359:7;31355:23;31351:32;31348:52;;;31396:1;31393;31386:12;31348:52;31428:9;31422:16;31447:30;31471:5;31447:30;:::i;31512:184::-;31564:77;31561:1;31554:88;31661:4;31658:1;31651:15;31685:4;31682:1;31675:15;31701:120;31741:1;31767;31757:35;;31772:18;;:::i;:::-;-1:-1:-1;31806:9:16;;31701:120::o;31826:112::-;31858:1;31884;31874:35;;31889:18;;:::i;:::-;-1:-1:-1;31923:9:16;;31826:112::o

Swarm Source

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